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>2022-02-22 15:03:00 +0300
committerContinuous Integration <ci@zabbix.com>2022-02-22 15:03:00 +0300
commit76c4155712cdc1482213523e0a52fec2e5e8380b (patch)
tree667715d87898f4ce99a5e590077a0cc8cc46c832
parent049b13a87cf652744467623cdd7ba7969efd7803 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.21rc1
-rw-r--r--create/src/data.tmpl2
-rw-r--r--create/src/templates.tmpl33769
2 files changed, 16919 insertions, 16852 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index cb0ec7dfb15..1dc670099d3 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -64,7 +64,7 @@ ROW |11 |4 |SIGNL4 | | |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new CurlHttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.SetProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.Post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.Log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.Log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
-ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Redmine.getSchema();&eol;&eol; if (schema) {&eol; data.issue.custom_fields = [];&eol;&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (var idx in schema.custom_fields) {&eol; if (schema.custom_fields[idx].id != field) {&eol; continue;&eol; }&eol;&eol; var field_value;&eol;&eol; switch (schema.custom_fields[idx].field_format) {&eol; case 'string':&eol; field_value = fields[field];&eol; break;&eol;&eol; case 'int':&eol; field_value = parseInt(fields[field]);&eol; break;&eol;&eol; case 'float':&eol; field_value = parseFloat(fields[field]);&eol; break;&eol;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/)) {&eol; field_value = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol; }&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({id: field, value: field_value});&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; getSchema: function() {&eol; var result = Redmine.request('get', 'custom_fields.json');&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function(note, fields) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
+ROW |15 |4 |Redmine | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Redmine = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Redmine.params = params;&eol; if (typeof Redmine.params.url === 'string') {&eol; if (!Redmine.params.url.endsWith('/')) {&eol; Redmine.params.url += '/';&eol; }&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol;&eol; data.issue.custom_fields = [];&eol; Object.keys(fields)&eol; .forEach(function (field) {&eol; var field_value = fields[field];&eol;&eol; if (field_value !== undefined) {&eol; data.issue.custom_fields.push({ id: field, value: field_value });&eol; }&eol; });&eol;&eol; }&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'access_key'].forEach(function (field) {&eol; if (typeof Redmine.params !== 'object' &pipe;&pipe; typeof Redmine.params[field] === 'undefined'&eol; &pipe;&pipe; Redmine.params[field] === '' ) {&eol; throw 'Required param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Redmine.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; if (typeof Redmine.HTTPProxy === 'string' && Redmine.HTTPProxy.trim() !== '') {&eol; request.SetProxy(Redmine.HTTPProxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Redmine-API-Key: ' + Redmine.params.access_key);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? (' ' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Redmine Webhook ] Received response with status code ' + request.Status() + ': ' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to parse response received from Redmine');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getProjectID: function(name) {&eol; var result = Redmine.request('get', 'projects.json'),&eol; project_id;&eol;&eol; if (result.response) {&eol; var projects = result.response.projects &pipe;&pipe; [];&eol;&eol; for (var i in projects) {&eol; if (projects[i].name === name) {&eol; project_id = projects[i].id;&eol; break;&eol; }&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Redmine Webhook ] Failed to retrieve project data.');&eol; }&eol;&eol; if (typeof project_id === 'undefined') {&eol; throw 'Cannot find project with name: ' + name;&eol; }&eol;&eol; return project_id;&eol; },&eol;&eol; createIssue: function(subject, description, priority, fields) {&eol; var project_id = /^\d+$/.test(Redmine.params.project)&eol; ? Redmine.params.project&eol; : Redmine.getProjectID(Redmine.params.project),&eol; data = {&eol; issue: {&eol; project_id: project_id,&eol; tracker_id: Redmine.params.tracker_id,&eol; subject: subject,&eol; description: description&eol; }&eol; },&eol; result;&eol;&eol; if (priority) {&eol; data.issue.priority_id = priority;&eol; }&eol;&eol; result = Redmine.request('post', 'issues.json', Redmine.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object'&eol; &pipe;&pipe; typeof result.response.issue.id === 'undefined'&eol; &pipe;&pipe; result.status != 201) {&eol; throw 'Cannot create Redmine issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.issue.id;&eol; },&eol;&eol; updateIssue: function (note, fields, status) {&eol; var data = {&eol; issue: {&eol; notes: note &pipe;&pipe; ''&eol; }&eol; };&eol;&eol; if (status) {&eol; data.issue.status_id = status;&eol; }&eol;&eol; Redmine.request('put', 'issues/' + Redmine.params.issue_key + '.json', Redmine.addCustomFields(data, fields));&eol; }&eol;&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; params_redmine = {},&eol; params_fields = {},&eol; params_update = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'tracker_id', 'project',&eol; 'event_source', 'event_value', 'event_update_status'&eol; ],&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: null, color: '#000000'}&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('redmine_')) {&eol; params_redmine[key.substring(8)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; params_fields[key.substring(12)] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; params_update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol;&eol; if (typeof params_redmine.close_status_id === 'string' && params_redmine.close_status_id.trim() !== '' && !parseInt(params_redmine.close_status_id, 10)) {&eol; throw 'Incorrect "redmine_close_status_id" parameter given! Must be an integer.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; if (params.event_source === '0'&eol; && ((params.event_value === '1' && params.event_update_status === '1')&eol; &pipe;&pipe; (params.event_value === '0'&eol; && (params.event_update_status === '0' &pipe;&pipe; params.event_update_status === '1')))&eol; && (isNaN(parseInt(params.redmine_issue_key)) &pipe;&pipe; parseInt(params.redmine_issue_key) < 1 )) {&eol; throw 'Incorrect "redmine_issue_key" parameter given: ' + params.redmine_issue_key +&eol; '\nMust be positive integer.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity].name];&eol; priority = priority && priority.trim() &pipe;&pipe; severities[7].name;&eol;&eol; Redmine.setParams(params_redmine);&eol; Redmine.HTTPProxy = params.HTTPProxy;&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0'&eol; && params.event_value !== '0') {&eol; Redmine.createIssue(params.alert_subject, params.alert_message, priority);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params_update.status === '0') {&eol; var issue_id = Redmine.createIssue(params.alert_subject,&eol; params.alert_subject + '\n' + params.alert_message + '\n' +&eol; params.zabbix_url + (params.zabbix_url.endsWith('/') ? '' : '/') +&eol; 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id + '\n',&eol; priority,&eol; params_fields);&eol;&eol; result.tags.__zbx_redmine_issue_id = issue_id;&eol; result.tags.__zbx_redmine_issuelink = params.redmine_url +&eol; (params.redmine_url.endsWith('/') ? '' : '/') + 'issues/' + issue_id;&eol; }&eol; // Close issue if parameter close_status_id is set and it is a recovery operation&eol; else if (params.event_value === '0' && typeof params_redmine.close_status_id === 'string' && params_redmine.close_status_id.trim() !== '') {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields, params_redmine.close_status_id);&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; Redmine.updateIssue(params.alert_subject + '\n' + params.alert_message, params_fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Redmine Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_redmine_issuelink} |Redmine: issue #{EVENT.TAGS.__zbx_redmine_issue_id} | |
ROW |16 |4 |Telegram | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Telegram = {&eol; token: null,&eol; to: null,&eol; message: null,&eol; proxy: null,&eol; parse_mode: null,&eol;&eol; escapeMarkup: function (str, mode) {&eol; switch (mode) {&eol; case 'markdown':&eol; return str.replace(/([_*\[`])/g, '\\$&');&eol;&eol; case 'markdownv2':&eol; return str.replace(/([_*\[\]()~`>#+\-=&pipe;{}.!])/g, '\\$&');&eol;&eol; default:&eol; return str;&eol; }&eol; },&eol;&eol; sendMessage: function () {&eol; var params = {&eol; chat_id: Telegram.to,&eol; text: Telegram.message,&eol; disable_web_page_preview: true,&eol; disable_notification: false&eol; },&eol; data,&eol; response,&eol; request = new CurlHttpRequest(),&eol; url = 'https://api.telegram.org/bot' + Telegram.token + '/sendMessage';&eol;&eol; if (Telegram.parse_mode !== null) {&eol; params['parse_mode'] = Telegram.parse_mode;&eol; }&eol;&eol; if (Telegram.proxy) {&eol; request.SetProxy(Telegram.proxy);&eol; }&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; data = JSON.stringify(params);&eol;&eol; // Remove replace() function if you want to see the exposed token in the log file.&eol; Zabbix.Log(4, '[Telegram Webhook] URL: ' + url.replace(Telegram.token, '<TOKEN>'));&eol; Zabbix.Log(4, '[Telegram Webhook] params: ' + data);&eol; response = request.Post(url, data);&eol; Zabbix.Log(4, '[Telegram Webhook] HTTP code: ' + request.Status());&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; response = null;&eol; }&eol;&eol; if (request.Status() !== 200 &pipe;&pipe; typeof response.ok !== 'boolean' &pipe;&pipe; response.ok !== true) {&eol; if (typeof response.description === 'string') {&eol; throw response.description;&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.Token === 'undefined') {&eol; throw 'Incorrect value is given for parameter "Token": parameter is missing';&eol; }&eol;&eol; Telegram.token = params.Token;&eol;&eol; if (params.HTTPProxy) {&eol; Telegram.proxy = params.HTTPProxy;&eol; } &eol;&eol; params.ParseMode = params.ParseMode.toLowerCase();&eol;&eol; if (['markdown', 'html', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.parse_mode = params.ParseMode;&eol; }&eol;&eol; Telegram.to = params.To;&eol; Telegram.message = params.Subject + '\n' + params.Message;&eol;&eol; if (['markdown', 'markdownv2'].indexOf(params.ParseMode) !== -1) {&eol; Telegram.message = Telegram.escapeMarkup(Telegram.message, params.ParseMode);&eol; }&eol;&eol; Telegram.sendMessage();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(4, '[Telegram Webhook] notification failed: ' + error);&eol; throw 'Sending failed: ' + error + '.';&eol;}|10s |0 |0 | | |https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/telegram&eol;&eol;1. Register bot: send "/newbot" to @BotFather and follow instructions&eol;2. Copy and paste the obtained token into the "Token" field above&eol;3. If you want to send personal notifications, you need to get chat id of the user you want to send messages to:&eol; 3.1. Send "/getid" to "@myidbot" in Telegram messenger&eol; 3.2. Copy returned chat id and save it in the "Telegram Webhook" media for the user&eol; 3.3. Ask the user to send "/start" to your bot (Telegram bot won't send anything to the user without it)&eol;4. If you want to send group notifications, you need to get group id of the group you want to send messages to:&eol; 4.1. Add "@myidbot" to your group&eol; 4.2. Send "/getgroupid@myidbot" in your group&eol; 4.3. Copy returned group id save it in the "Telegram Webhook" media for the user you created for group notifications&eol; 4.4. Send "/start@your_bot_name_here" in your group (Telegram bot won't send anything to the group without it)|
ROW |17 |4 |Zendesk | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Zendesk = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Zendesk.params = params;&eol; if (typeof Zendesk.params.url === 'string') {&eol; if (!Zendesk.params.url.endsWith('/')) {&eol; Zendesk.params.url += '/';&eol; }&eol; Zendesk.params.url += 'api/v2/';&eol; }&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Zendesk.getSchema(),&eol; arr = [],&eol; i,&eol; n;&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; for (i = 0, n = schema.ticket_fields.length; i < n; i++) {&eol; if (schema.ticket_fields[i].id == field&eol; && ['text', 'integer', 'date'].indexOf(schema.ticket_fields[i].type) !== -1){&eol;&eol; switch (schema.ticket_fields[i].type) {&eol; case 'integer':&eol; fields[field] = parseInt(fields[field]);&eol; break;&eol; case 'date':&eol; if (fields[field].match(/^\d{4}[.-]\d{2}[.-]\d{2}$/) !== null) {&eol; fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; fields[field] = '';&eol; }&eol; break;&eol; }&eol;&eol; arr.push({id: field, value: fields[field]});&eol; break;&eol; }&eol; }&eol; });&eol;&eol; if (arr.length) {&eol; data.ticket['custom_fields'] = arr;&eol; }&eol; }&eol; else {&eol; Zabbix.Log(4, '[Zendesk Webhook] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'token', 'type'].forEach(function (field) {&eol; if (typeof Zendesk.params !== 'object' &pipe;&pipe; typeof Zendesk.params[field] === 'undefined') {&eol; throw 'Required Zendesk param is not set: ' + field + '\n' + Zendesk.params[field];&eol; }&eol; });&eol;&eol; var response,&eol; url = Zendesk.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; 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; data.comments = 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; }&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} | |
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index b8029bcd229..7f86c2e9367 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -109,13 +109,13 @@ ROW |10272 |NULL |Template Module Linux CPU by Zabbix agent
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.39 |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.39 |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 |Template tooling version used: 0.39 |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.39 |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 |Template tooling version used: 0.39 |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.39 |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.39 |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.39 |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.39 |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 |Template tooling version used: 0.39 |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.39 |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 |Template tooling version used: 0.39 |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.39 |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.39 |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.39 |1 |1 | | | | | |1 |0 |
@@ -269,10 +269,10 @@ ROW |5 |10332 |{#DATACENTER.NAME} (vm) |NULL |NU
ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
ROW |24 |10364 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
ROW |26 |10365 |MongoDB sharded cluster/{#ID} |NULL |NULL |
-ROW |76 |10331 | |12 |NULL |
-ROW |77 |10332 | |12 |NULL |
-ROW |78 |10364 | |13 |NULL |
-ROW |79 |10365 | |13 |NULL |
+ROW |80 |10331 | |12 |NULL |
+ROW |81 |10332 | |12 |NULL |
+ROW |82 |10364 | |13 |NULL |
+ROW |83 |10365 | |13 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -401,339 +401,339 @@ ROW |9003 |61 |20 |1212 |500 |100 |0 |0 |1
ROW |9004 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |9005 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |9006 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9852 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9853 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9854 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9855 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9856 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9857 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9858 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9859 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9860 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9861 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9862 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9863 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9864 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9865 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9866 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9867 |48 |20 |1710 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9868 |48 |20 |1711 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9869 |48 |20 |1709 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9870 |49 |20 |1714 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9871 |49 |20 |1712 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9872 |49 |20 |1715 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9873 |49 |20 |1713 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9874 |50 |20 |1718 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9875 |50 |20 |1717 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9876 |50 |20 |1716 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9877 |51 |20 |1720 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9878 |51 |20 |1721 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9879 |51 |20 |1719 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9880 |52 |20 |1724 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9881 |52 |20 |1722 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9882 |52 |20 |1725 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9883 |52 |20 |1723 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9884 |53 |20 |1728 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9885 |53 |20 |1727 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9886 |53 |20 |1726 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9887 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9888 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9889 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9890 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9891 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9892 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9893 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9894 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9895 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9896 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9897 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9898 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9899 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9900 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9901 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9902 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9903 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9904 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9905 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9906 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9907 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9908 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9909 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9910 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9911 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9912 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9913 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9914 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9915 |17 |0 |1885 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9916 |17 |0 |1882 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9917 |17 |0 |1883 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9918 |17 |0 |1881 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9919 |22 |0 |1890 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9920 |22 |0 |1887 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9921 |22 |0 |1888 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9922 |22 |0 |1886 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9923 |4 |0 |1545 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9924 |4 |0 |1539 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9925 |4 |0 |1541 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9926 |4 |0 |1537 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9927 |4 |0 |1535 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9928 |4 |0 |1543 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9929 |79 |0 |1527 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9930 |79 |0 |1531 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9931 |79 |0 |1529 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9932 |79 |0 |1525 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9933 |21 |0 |1557 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9934 |21 |0 |1554 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9935 |21 |0 |1555 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9936 |21 |0 |1553 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9937 |21 |0 |1552 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9938 |21 |0 |1556 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9939 |80 |0 |1548 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9940 |80 |0 |1550 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9941 |80 |0 |1549 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9942 |80 |0 |1547 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9943 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9944 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9945 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9946 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9947 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9948 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9949 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9950 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9951 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9952 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9953 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9954 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9955 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9956 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9957 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9958 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9959 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9960 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9961 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9962 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9963 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |9964 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9965 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9966 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9967 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9968 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9969 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9970 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9971 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9972 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9973 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9974 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9975 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9976 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9977 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9978 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9979 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9980 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9981 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9982 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9983 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9984 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9985 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |9986 |84 |20 |1900 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9987 |84 |20 |1895 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9988 |84 |20 |1893 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9989 |84 |20 |1899 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9990 |84 |20 |1896 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9991 |84 |20 |1894 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9992 |84 |20 |1897 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9993 |84 |20 |1898 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9994 |85 |0 |1903 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9995 |85 |0 |1906 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9996 |85 |0 |1904 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9997 |85 |0 |1907 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9998 |85 |0 |1905 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |9999 |85 |0 |1908 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |10000 |85 |0 |1901 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |10001 |85 |0 |1902 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |10002 |86 |20 |1863 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10003 |86 |20 |1861 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10004 |86 |20 |1864 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10005 |86 |20 |1862 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10006 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10007 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10008 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10009 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10010 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10011 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10012 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10013 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10014 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10015 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10016 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10017 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10018 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10019 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10020 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10021 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10022 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10023 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10024 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10025 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10026 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10027 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10028 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10029 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10030 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10031 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10032 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10033 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10034 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10035 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10036 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10037 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10038 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10039 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10040 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10041 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10042 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10043 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10044 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10045 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10046 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10047 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10048 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10049 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10050 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10051 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10052 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10053 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10054 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10055 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10056 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10057 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10058 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10059 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10060 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10061 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10062 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10063 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10064 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10065 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10066 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
-ROW |10067 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10068 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10069 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10070 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10071 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10072 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10073 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10074 |19 |20 |1840 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10075 |82 |20 |1839 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10076 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10077 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10078 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10079 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10080 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10081 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10082 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10083 |37 |20 |1842 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10084 |83 |20 |1841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10085 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10086 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10087 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10088 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10089 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10090 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10091 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10092 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10093 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10094 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10095 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10096 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10097 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10098 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10099 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10100 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10101 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10102 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10103 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10104 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10105 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10106 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10107 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10108 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10109 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10110 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10111 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10112 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10113 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10114 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10115 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10116 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10117 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10118 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10119 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10120 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10121 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10122 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10123 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10124 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10125 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10126 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10127 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10128 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10129 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10130 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10131 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10132 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10133 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10134 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10135 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10136 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10137 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10138 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10139 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10140 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10141 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10142 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10143 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10144 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10145 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10146 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10147 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10148 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10149 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10150 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10151 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10152 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10153 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10154 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10155 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10156 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10157 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10158 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10159 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10160 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10161 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10162 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10163 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10164 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10165 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10166 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10167 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10168 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10169 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10170 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10171 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10172 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10173 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10174 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10175 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10176 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10177 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10178 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10179 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10180 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
-ROW |10181 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10182 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10183 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |10184 |81 |20 |1676 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10185 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10186 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10187 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10188 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10189 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10190 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10191 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10192 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10193 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10194 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10195 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10196 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10197 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10198 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10199 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10200 |48 |20 |1710 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10201 |48 |20 |1711 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10202 |48 |20 |1709 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10203 |49 |20 |1714 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10204 |49 |20 |1712 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10205 |49 |20 |1715 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10206 |49 |20 |1713 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10207 |50 |20 |1718 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10208 |50 |20 |1717 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10209 |50 |20 |1716 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10210 |51 |20 |1720 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10211 |51 |20 |1721 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10212 |51 |20 |1719 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10213 |52 |20 |1724 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10214 |52 |20 |1722 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10215 |52 |20 |1725 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10216 |52 |20 |1723 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10217 |53 |20 |1728 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10218 |53 |20 |1727 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10219 |53 |20 |1726 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10220 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10221 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10222 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10223 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10224 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10225 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10226 |62 |0 |1915 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10227 |62 |0 |1911 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10228 |62 |0 |1917 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10229 |62 |0 |1919 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10230 |62 |0 |1916 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10231 |63 |0 |1918 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10232 |63 |0 |1921 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10233 |63 |0 |1912 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10234 |63 |0 |1914 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10235 |63 |0 |1913 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10236 |63 |0 |1920 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10237 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10238 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10239 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10240 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10241 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10242 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10243 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10244 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10245 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10246 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10247 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10248 |17 |0 |1885 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10249 |17 |0 |1882 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10250 |17 |0 |1883 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10251 |17 |0 |1881 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10252 |22 |0 |1890 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10253 |22 |0 |1887 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10254 |22 |0 |1888 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10255 |22 |0 |1886 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10256 |4 |0 |1545 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10257 |4 |0 |1539 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10258 |4 |0 |1541 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10259 |4 |0 |1537 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10260 |4 |0 |1535 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10261 |4 |0 |1543 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10262 |79 |0 |1527 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10263 |79 |0 |1531 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10264 |79 |0 |1529 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10265 |79 |0 |1525 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10266 |21 |0 |1557 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10267 |21 |0 |1554 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10268 |21 |0 |1555 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10269 |21 |0 |1553 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10270 |21 |0 |1552 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10271 |21 |0 |1556 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10272 |80 |0 |1548 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10273 |80 |0 |1550 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10274 |80 |0 |1549 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10275 |80 |0 |1547 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10276 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10277 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10278 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10279 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10280 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10281 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10282 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10283 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10284 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10285 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10286 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10287 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10288 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10289 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10290 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10291 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10292 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10293 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10294 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10295 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10296 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |10297 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10298 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10299 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10300 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10301 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10302 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10303 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10304 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10305 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10306 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10307 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10308 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10309 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10310 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10311 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10312 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10313 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10314 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10315 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10316 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10317 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10318 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10319 |84 |20 |1900 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10320 |84 |20 |1895 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10321 |84 |20 |1893 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10322 |84 |20 |1899 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10323 |84 |20 |1896 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10324 |84 |20 |1894 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10325 |84 |20 |1897 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10326 |84 |20 |1898 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10327 |85 |0 |1903 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10328 |85 |0 |1906 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10329 |85 |0 |1904 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10330 |85 |0 |1907 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10331 |85 |0 |1905 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10332 |85 |0 |1908 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10333 |85 |0 |1901 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10334 |85 |0 |1902 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |10335 |86 |20 |1863 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10336 |86 |20 |1861 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10337 |86 |20 |1864 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10338 |86 |20 |1862 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10339 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10340 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10341 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10342 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10343 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10344 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10345 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10346 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10347 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10348 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10349 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10350 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10351 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10352 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10353 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10354 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10355 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10356 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10357 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10358 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10359 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10360 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10361 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10362 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10363 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10364 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10365 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10366 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10367 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10368 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10369 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10370 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10371 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10372 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10373 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10374 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10375 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10376 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10377 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10378 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10379 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10380 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10381 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10382 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10383 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10384 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10385 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10386 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10387 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10388 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10389 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10390 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10391 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10392 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10393 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10394 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10395 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10396 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10397 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10398 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10399 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |2 |
+ROW |10400 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10401 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10402 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10403 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10404 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10405 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10406 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10407 |19 |20 |1840 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10408 |82 |20 |1839 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10409 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10410 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10411 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10412 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10413 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10414 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10415 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10416 |37 |20 |1842 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10417 |83 |20 |1841 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10418 |69 |3 |33570 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10419 |69 |3 |33585 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10420 |69 |3 |33580 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10421 |69 |3 |33591 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10422 |69 |3 |33592 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10423 |69 |3 |33594 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10424 |69 |0 |1489 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10425 |69 |0 |1491 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10426 |69 |0 |1490 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10427 |70 |3 |33621 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10428 |70 |3 |33636 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10429 |70 |3 |33631 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10430 |70 |3 |33642 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10431 |70 |3 |33643 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10432 |70 |3 |33645 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10433 |70 |0 |1492 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10434 |70 |0 |1494 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10435 |70 |0 |1493 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10436 |71 |3 |33672 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10437 |71 |3 |33687 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10438 |71 |3 |33682 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10439 |71 |3 |33693 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10440 |71 |3 |33694 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10441 |71 |3 |33696 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10442 |71 |0 |1495 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10443 |71 |0 |1497 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10444 |71 |0 |1496 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10445 |72 |3 |33723 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10446 |72 |3 |33738 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10447 |72 |3 |33733 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10448 |72 |3 |33744 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10449 |72 |3 |33745 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10450 |72 |3 |33747 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10451 |72 |0 |1498 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10452 |72 |0 |1500 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10453 |72 |0 |1499 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10454 |73 |3 |33774 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10455 |73 |3 |33789 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10456 |73 |3 |33784 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10457 |73 |3 |33795 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10458 |73 |3 |33796 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10459 |73 |3 |33798 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10460 |73 |0 |1501 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10461 |73 |0 |1503 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10462 |73 |0 |1502 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10463 |74 |3 |33825 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10464 |74 |3 |33840 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10465 |74 |3 |33835 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10466 |74 |3 |33846 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10467 |74 |3 |33847 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10468 |74 |3 |33849 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10469 |74 |0 |1504 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10470 |74 |0 |1506 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10471 |74 |0 |1505 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10472 |75 |3 |33876 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10473 |75 |3 |33891 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10474 |75 |3 |33886 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10475 |75 |3 |33897 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10476 |75 |3 |33898 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10477 |75 |3 |33900 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10478 |75 |0 |1507 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10479 |75 |0 |1509 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10480 |75 |0 |1508 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10481 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10482 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10483 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10484 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10485 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10486 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10487 |68 |0 |1510 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10488 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10489 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10490 |76 |3 |33932 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10491 |76 |3 |33947 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10492 |76 |3 |33942 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10493 |76 |3 |33953 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10494 |76 |3 |33954 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10495 |76 |3 |33956 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10496 |76 |0 |1511 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10497 |76 |0 |1513 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10498 |76 |0 |1512 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10499 |77 |3 |33983 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10500 |77 |3 |33998 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10501 |77 |3 |33993 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10502 |77 |3 |34004 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10503 |77 |3 |34005 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10504 |77 |3 |34007 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10505 |77 |0 |1514 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10506 |77 |0 |1516 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10507 |77 |0 |1515 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10508 |78 |3 |34034 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10509 |78 |3 |34049 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10510 |78 |3 |34044 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10511 |78 |3 |34055 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10512 |78 |3 |34056 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10513 |78 |3 |34058 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |10514 |78 |0 |1517 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10515 |78 |0 |1519 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10516 |78 |0 |1518 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |10517 |81 |20 |1676 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
FIELDS|applicationid|hostid|name |flags|
@@ -1749,6 +1749,8 @@ ROW |1866 |10434 |Storage |0 |
ROW |1867 |10262 |Zabbix raw items |0 |
ROW |1868 |10417 |Network interfaces |0 |
ROW |1869 |10417 |Remote access session |0 |
+ROW |1870 |10175 |Zabbix raw items |0 |
+ROW |1871 |10331 |Zabbix raw items |0 |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -2015,7400 +2017,7404 @@ ROW |256 |Services status
ROW |257 |SNMPv2-TC::TruthValue |
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|discover|
-ROW |10061 |5 | |10047 |Zabbix server: Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10062 |5 | |10047 |Zabbix server: Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10063 |5 | |10047 |Zabbix server: Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10064 |5 | |10047 |Zabbix server: Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10065 |5 | |10047 |Zabbix server: Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10066 |5 | |10047 |Zabbix server: Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10067 |5 | |10048 |Zabbix proxy: Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10068 |5 | |10048 |Zabbix proxy: Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10069 |5 | |10048 |Zabbix proxy: Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10070 |5 | |10048 |Zabbix proxy: Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10071 |5 | |10048 |Zabbix proxy: Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10072 |5 | |10048 |Zabbix proxy: Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22183 |5 | |10047 |Zabbix server: History write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22185 |5 | |10047 |Zabbix server: Trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used trend buffer.&eol;Trend cache stores aggregate for the current hour for all items that receive data. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22187 |5 | |10047 |Zabbix server: Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22189 |5 | |10047 |Zabbix server: Configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22191 |5 | |10047 |Zabbix server: Value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix value cache. Percentage of used buffer |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22196 |5 | |10047 |Zabbix server: Value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache) |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22199 |5 | |10047 |Zabbix server: Value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database) |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22219 |5 | |10047 |Zabbix server: Queue over 10 minutes |zabbix[queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes |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 server: History index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22399 |5 | |10047 |Zabbix server: Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22400 |5 | |10047 |Zabbix server: Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22401 |5 | |10047 |Zabbix server: Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22402 |5 | |10047 |Zabbix server: Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22404 |5 | |10047 |Zabbix server: Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22406 |5 | |10047 |Zabbix server: Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22408 |5 | |10047 |Zabbix server: Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22412 |5 | |10047 |Zabbix server: Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22414 |5 | |10047 |Zabbix server: Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22416 |5 | |10047 |Zabbix server: Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22418 |5 | |10047 |Zabbix server: Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22420 |5 | |10047 |Zabbix server: Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time proxy poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22422 |5 | |10047 |Zabbix server: Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time escalator processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22424 |5 | |10047 |Zabbix server: Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alerter processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22426 |5 | |10047 |Zabbix server: Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time timer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22430 |5 | |10047 |Zabbix server: Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22689 |5 | |10047 |Zabbix server: Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute |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 |Zabbix server: Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23251 |5 | |10047 |Zabbix server: Queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds |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 |Zabbix proxy: Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23341 |5 | |10048 |Zabbix proxy: History index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23342 |5 | |10048 |Zabbix proxy: History write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23343 |5 | |10048 |Zabbix proxy: Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23344 |5 | |10048 |Zabbix proxy: Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23345 |5 | |10048 |Zabbix proxy: Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23346 |5 | |10048 |Zabbix proxy: Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23347 |5 | |10048 |Zabbix proxy: Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23348 |5 | |10048 |Zabbix proxy: Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23349 |5 | |10048 |Zabbix proxy: Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23350 |5 | |10048 |Zabbix proxy: Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23351 |5 | |10048 |Zabbix proxy: Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time heartbeat sender processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23352 |5 | |10048 |Zabbix proxy: Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23353 |5 | |10048 |Zabbix proxy: Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23354 |5 | |10048 |Zabbix proxy: Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23355 |5 | |10048 |Zabbix proxy: Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23356 |5 | |10048 |Zabbix proxy: Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23357 |5 | |10048 |Zabbix proxy: Configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23358 |5 | |10048 |Zabbix proxy: Queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23359 |5 | |10048 |Zabbix proxy: Queue over 10 minutes |zabbix[queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23360 |5 | |10048 |Zabbix proxy: Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time data sender processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |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 server: VMware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer |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 server: Value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL |Value cache operating mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23663 |5 | |10047 |Zabbix server: Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25366 |5 | |10047 |Zabbix server: Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25368 |5 | |10048 |Zabbix proxy: Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25369 |5 | |10048 |Zabbix proxy: Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25370 |5 | |10047 |Zabbix server: Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25665 |5 | |10047 |Zabbix server: Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25666 |5 | |10047 |Zabbix server: Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute |0 |0 |0 | |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 |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 |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 |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 |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |15m |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 |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |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 |The 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 Celsius.&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 |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).&eol;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}. Possible values:&eol;- ok(1) indicates that the agent can obtain the sensor value.&eol;- unavailable(2) indicates that the agent presently cannot obtain the sensor value.&eol;- nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings. |0 |30d |0 | |NULL |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 server: 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 |Zabbix proxy: Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28251 |5 | |10048 |Zabbix proxy: VMware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28305 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]|10254 |Get sensors |sensors.get |1h |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Gets sensors with type, description, and thresholds. |0 |30d |0 | |NULL |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 encountered 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] |1m |7d |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 |1m |7d |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 |1m |7d |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 I/O |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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 |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}] |1m |7d |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}] |1m |7d |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 |7d |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}] |1m |7d |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 |7d |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled.&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled.&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached.&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed.&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|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 |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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 |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 |28511 |16 | |10260 |Tomcat: Version |jmx["Catalina:type=Server",serverInfo] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |0 |NULL |The version of the Tomcat. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28533 |5 | |10047 |Zabbix server: LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28535 |5 | |10047 |Zabbix server: Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28537 |5 | |10047 |Zabbix server: Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28539 |5 | |10261 |Remote Zabbix server: Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0d |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 |Remote Zabbix server: Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28541 |5 | |10261 |Remote Zabbix server: Zabbix stats queue over 10m |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28617 |5 | |10048 |Zabbix proxy: 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 |Zabbix proxy: Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28619 |5 | |10048 |Zabbix proxy: Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute. |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 | |s | | |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |15m |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 |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |15m |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 |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |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 |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 |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 |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 |15m |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 |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 |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 |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 |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 |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 |15m |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 |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 |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 |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 |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 |29822 |5 | |10047 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |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] |15m |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] |15m |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] |15m |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] |1m |7d |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 |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 |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 |0 |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 |0 |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 |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |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 |0 |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 |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 |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 |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 |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 |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 |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 |30472 |0 | |10316 |Database discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |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 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |0 |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 |30520 |11 | |10317 |Database 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 |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |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 |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 |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 |30678 |0 | |10320 |Database discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |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 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |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 |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 |change(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( change(es.node.indices.search.query_total[{#ES.NODE}]) + (change(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |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 |change(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.flush.total[{#ES.NODE}]) + (change(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |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 |change(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |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 |change(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |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 |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 |30896 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&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 |30923 |3 | |10324 |Etcd: Service's TCP port state |net.tcp.service["{$ETCD.SCHEME}","{HOST.CONN}","{$ETCD.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 |30924 |19 | |10324 |Etcd: Node health |etcd.health |1m |7d |365d |0 |3 | | | | |NULL |96 | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/health | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30925 |19 | |10324 |Etcd: Get node metrics |etcd.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30926 |19 | |10324 |Etcd: Get version |etcd.get_version |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/version | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30968 |3 | |10325 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.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 |30969 |0 | |10325 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30970 |0 | |10325 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30971 |0 | |10325 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30972 |0 | |10325 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30973 |0 | |10325 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30974 |0 | |10325 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30975 |0 | |10325 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30976 |0 | |10325 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30977 |0 | |10325 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30978 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30979 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30980 |0 | |10325 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30981 |0 | |10325 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30982 |0 | |10325 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30983 |0 | |10325 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30984 |0 | |10325 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30985 |0 | |10325 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30986 |0 | |10325 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30987 |0 | |10325 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30988 |0 | |10325 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30989 |0 | |10325 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30990 |0 | |10325 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30991 |0 | |10325 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30992 |0 | |10325 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30993 |0 | |10325 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30994 |0 | |10325 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30995 |0 | |10325 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30996 |0 | |10325 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30997 |0 | |10325 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30998 |0 | |10325 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30999 |0 | |10325 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31000 |0 | |10325 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31001 |0 | |10325 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31002 |0 | |10325 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31003 |0 | |10325 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31004 |0 | |10325 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31005 |0 | |10325 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |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 |31006 |0 | |10325 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31007 |0 | |10325 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31008 |0 | |10325 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31009 |0 | |10325 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31010 |3 | |10326 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.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 |31011 |7 | |10326 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31012 |7 | |10326 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31013 |7 | |10326 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31014 |7 | |10326 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31015 |7 | |10326 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31016 |7 | |10326 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31017 |7 | |10326 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31018 |7 | |10326 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31019 |7 | |10326 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31020 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31021 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31022 |7 | |10326 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31023 |7 | |10326 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31024 |7 | |10326 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31025 |7 | |10326 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31026 |7 | |10326 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31027 |7 | |10326 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31028 |7 | |10326 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31029 |7 | |10326 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31030 |7 | |10326 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31031 |7 | |10326 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31032 |7 | |10326 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31033 |7 | |10326 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31034 |7 | |10326 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31035 |7 | |10326 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31036 |7 | |10326 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31037 |7 | |10326 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31038 |7 | |10326 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31039 |7 | |10326 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31040 |7 | |10326 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31041 |7 | |10326 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31042 |7 | |10326 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31043 |7 | |10326 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31044 |7 | |10326 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31045 |7 | |10326 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31046 |7 | |10326 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31047 |7 | |10326 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |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 |31048 |7 | |10326 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31049 |7 | |10326 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31050 |7 | |10326 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31051 |7 | |10326 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31054 |3 | |10323 |ClickHouse: Check port availability |net.tcp.service[{$CLICKHOUSE.SCHEME},"{HOST.CONN}","{$CLICKHOUSE.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 |31055 |11 | |10327 |MSSQL: Get performance counters |db.odbc.get[get_status_variables,"{$MSSQL.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT object_name,counter_name,instance_name,cntr_value&bsn;FROM sys.dm_os_performance_counters&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Version' as counter_name,@@version as instance_name,0 as cntr_value&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Uptime' as counter_name,'' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value&bsn;FROM sys.dm_os_sys_info&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}:Databases' as object_name,'State' as counter_name,name as instance_name,state as cntr_value&bsn;FROM sys.databases&bsn;UNION&bsn;SELECT a.object_name,'BufferCacheHitRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Buffer cache hit ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Buffer cache hit ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager'&bsn;UNION&bsn;SELECT a.object_name,'WorktablesFromCacheRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Worktables From Cache Base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Worktables From Cache Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods'&bsn;UNION&bsn;SELECT a.object_name,'CacheHitRatio' as counter_name,'_Total' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Cache Hit Ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Cache Hit Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total'| |0 |{$MSSQL.USER} |{$MSSQL.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 |31056 |15 | |10327 |MSSQL: Total average wait time |mssql.average_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_wait_time_raw) - prev(mssql.average_wait_time_raw)) /&bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base) + &bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base)=0)) | |0 | | | | |0 |NULL |The average wait time, in milliseconds, for each lock request that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31057 |3 | |10327 |MSSQL: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of MS SQL Server on a TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31058 |15 | |10327 |MSSQL: Average latch wait time |mssql.average_latch_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_latch_wait_time_raw) - prev(mssql.average_latch_wait_time_raw)) /&bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base) + &bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base)=0)) | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the existing availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31180 |0 | |10328 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31181 |0 | |10328 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31182 |0 | |10328 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31183 |0 | |10328 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31185 |0 | |10328 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31186 |0 | |10328 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31188 |0 | |10328 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31189 |0 | |10328 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31190 |0 | |10328 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31191 |0 | |10328 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31192 |0 | |10328 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31193 |0 | |10328 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31194 |0 | |10328 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31195 |0 | |10328 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31196 |0 | |10328 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31240 |0 | |10328 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31241 |0 | |10328 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31242 |0 | |10328 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |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 |31243 |0 | |10328 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31273 |0 | |10275 |Block devices discovery |vfs.dev.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 |31276 |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 |31277 |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 |31278 |0 | |10275 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31305 |7 | |10281 |Block devices discovery |vfs.dev.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 |31307 |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 |31308 |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 |31309 |7 | |10281 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31325 |0 | |10286 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31326 |0 | |10287 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31327 |15 | |10287 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31333 |0 | |10289 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31336 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |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 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31337 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31338 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31343 |7 | |10293 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31344 |7 | |10294 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31345 |15 | |10294 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31351 |7 | |10296 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31354 |7 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |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 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31355 |7 | |10296 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31356 |7 | |10296 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31499 |16 | |10169 |ClassLoading: Loaded class count |jmx["java.lang:type=ClassLoading","LoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays number of classes that are currently loaded in the Java virtual machine. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31500 |16 | |10169 |MemoryPool: PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31501 |16 | |10169 |MemoryPool: Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31502 |16 | |10169 |MemoryPool: CodeCache maximum size |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31503 |16 | |10169 |MemoryPool: Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31504 |16 | |10169 |MemoryPool: Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31505 |16 | |10169 |MemoryPool: Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31506 |16 | |10169 |MemoryPool: Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31507 |16 | |10169 |MemoryPool: PS Old Gen |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31508 |16 | |10169 |MemoryPool: PS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31509 |16 | |10169 |MemoryPool: PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31510 |16 | |10169 |MemoryPool: PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31511 |16 | |10169 |MemoryPool: PS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31512 |16 | |10169 |MemoryPool: Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31513 |16 | |10169 |MemoryPool: CMS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31514 |16 | |10169 |MemoryPool: Tenured Gen maximum size |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31515 |16 | |10169 |MemoryPool: Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31516 |16 | |10169 |OperatingSystem: File descriptors maximum count |jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31517 |16 | |10169 |OperatingSystem: File descriptors opened |jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you're are opening file descriptors and never closing them. |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 |31518 |16 | |10169 |OperatingSystem: Process CPU Load |jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |ProcessCpuLoad represents the CPU load in this process. |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 |31519 |16 | |10169 |Runtime: JVM uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |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 |31520 |16 | |10169 |Runtime: JVM name |jmx["java.lang:type=Runtime","VmName"] |1h |7d |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 |31521 |16 | |10169 |Runtime: JVM version |jmx["java.lang:type=Runtime","VmVersion"] |1h |7d |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 |31522 |16 | |10169 |Threading: Daemon thread count |jmx["java.lang:type=Threading","DaemonThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of daemon threads running. |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 |31523 |16 | |10169 |Threading: Peak thread count |jmx["java.lang:type=Threading","PeakThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of threads being executed at the same time since the JVM was started or the peak was reset. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31524 |16 | |10169 |Threading: Thread count |jmx["java.lang:type=Threading","ThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads running at the current moment. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31525 |16 | |10169 |MemoryPool: CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31526 |16 | |10169 |MemoryPool: CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31527 |16 | |10169 |ClassLoading: Total loaded class count |jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31528 |16 | |10169 |GarbageCollector: PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31529 |16 | |10169 |ClassLoading: Unloaded class count |jmx["java.lang:type=ClassLoading","UnloadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31530 |16 | |10169 |Compilation: Name of the current JIT compiler |jmx["java.lang:type=Compilation","Name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes unloaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31531 |16 | |10169 |Compilation: Accumulated time spent |jmx["java.lang:type=Compilation","TotalCompilationTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated elapsed time spent in compilation, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31532 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31533 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31534 |16 | |10169 |GarbageCollector: Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31535 |16 | |10169 |GarbageCollector: Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31536 |16 | |10169 |GarbageCollector: MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31537 |16 | |10169 |GarbageCollector: MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31538 |16 | |10169 |GarbageCollector: ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31539 |16 | |10169 |GarbageCollector: ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31540 |16 | |10169 |GarbageCollector: PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31541 |16 | |10169 |MemoryPool: CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31542 |16 | |10169 |GarbageCollector: PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31543 |16 | |10169 |GarbageCollector: PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31544 |16 | |10169 |Memory: Heap memory committed |jmx["java.lang:type=Memory","HeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31545 |16 | |10169 |Memory: Heap memory maximum size |jmx["java.lang:type=Memory","HeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31546 |16 | |10169 |Memory: Heap memory used |jmx["java.lang:type=Memory","HeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap. |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 |31547 |16 | |10169 |Memory: Non-Heap memory committed |jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31548 |16 | |10169 |Memory: Non-Heap memory maximum size |jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31549 |16 | |10169 |Memory: Non-Heap memory used |jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap |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 |31550 |16 | |10169 |Memory: Object pending finalization count |jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The approximate number of objects for which finalization is pending. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31551 |16 | |10169 |MemoryPool: CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31552 |16 | |10169 |MemoryPool: CMS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31553 |16 | |10169 |Threading: Total started thread count |jmx["java.lang:type=Threading","TotalStartedThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads started since the JVM was launched. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31554 |3 | |10173 |VMware: Event log |vmware.eventlog[{$VMWARE.URL},skip] |1m |7d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Collect VMware event log. See also: https://www.zabbix.com/documentation/5.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31555 |3 | |10173 |VMware: Full name |vmware.fullname[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service full name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31556 |3 | |10173 |VMware: Version |vmware.version[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31557 |3 | |10174 |VMware: Cluster name |vmware.vm.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31558 |3 | |10174 |VMware: Swapped memory |vmware.vm.memory.size.swapped[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31559 |3 | |10174 |VMware: Unshared storage space |vmware.vm.storage.unshared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31560 |3 | |10174 |VMware: Uncommitted storage space |vmware.vm.storage.uncommitted[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31561 |3 | |10174 |VMware: Committed storage space |vmware.vm.storage.committed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31562 |3 | |10174 |VMware: Power state |vmware.vm.powerstate[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |12 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31563 |3 | |10174 |VMware: Memory size |vmware.vm.memory.size[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31564 |3 | |10174 |VMware: Host memory usage |vmware.vm.memory.size.usage.host[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31565 |3 | |10174 |VMware: Guest memory usage |vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31566 |3 | |10174 |VMware: Shared memory |vmware.vm.memory.size.shared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31567 |3 | |10174 |VMware: Number of virtual CPUs |vmware.vm.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31568 |3 | |10174 |VMware: Private memory |vmware.vm.memory.size.private[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31569 |3 | |10174 |VMware: Compressed memory |vmware.vm.memory.size.compressed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31570 |3 | |10174 |VMware: Ballooned memory |vmware.vm.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31571 |3 | |10174 |VMware: Hypervisor name |vmware.vm.hv.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31572 |3 | |10174 |VMware: Datacenter name |vmware.vm.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31573 |3 | |10174 |VMware: CPU usage |vmware.vm.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the 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 |31574 |3 | |10174 |VMware: CPU ready |vmware.vm.cpu.ready[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31575 |3 | |10174 |VMware: Uptime |vmware.vm.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31576 |3 | |10175 |VMware: Cluster name |vmware.hv.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31577 |3 | |10175 |VMware: Vendor |vmware.hv.hw.vendor[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31578 |3 | |10175 |VMware: Version |vmware.hv.version[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31579 |3 | |10175 |VMware: Uptime |vmware.hv.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31580 |3 | |10175 |VMware: Overall status |vmware.hv.status[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, green - 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 |31581 |3 | |10175 |VMware: Health state rollup |vmware.hv.sensor.health.state[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The host health state rollup sensor value: gray - unknown, green - 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 |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31584 |3 | |10175 |VMware: Used memory |vmware.hv.memory.used[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31585 |3 | |10175 |VMware: Ballooned memory |vmware.hv.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31586 |3 | |10175 |VMware: Bios UUID |vmware.hv.hw.uuid[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31587 |3 | |10175 |VMware: CPU usage |vmware.hv.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31588 |3 | |10175 |VMware: Model |vmware.hv.hw.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31589 |3 | |10175 |VMware: Total memory |vmware.hv.hw.memory[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31590 |3 | |10175 |VMware: CPU threads |vmware.hv.hw.cpu.threads[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31591 |3 | |10175 |VMware: CPU cores |vmware.hv.hw.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31592 |3 | |10175 |VMware: CPU model |vmware.hv.hw.cpu.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31593 |3 | |10175 |VMware: CPU frequency |vmware.hv.hw.cpu.freq[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and 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 |31594 |3 | |10175 |VMware: Full name |vmware.hv.fullname[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31595 |3 | |10175 |VMware: Datacenter name |vmware.hv.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31596 |3 | |10175 |VMware: Number of guest VMs |vmware.hv.vm.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31597 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31598 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31599 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31600 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31601 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31602 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31603 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31604 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31605 |3 | |10173 |VMware: Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware cluster status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31606 |3 | |10173 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31607 |3 | |10173 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31608 |3 | |10173 |VMware: Total size of datastore {#DATASTORE} |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31609 |3 | |10173 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31610 |3 | |10174 |VMware: Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31611 |3 | |10174 |VMware: Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31612 |3 | |10174 |VMware: Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31613 |3 | |10174 |VMware: Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31614 |3 | |10174 |VMware: Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31615 |3 | |10174 |VMware: Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31616 |3 | |10174 |VMware: Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31617 |3 | |10174 |VMware: Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31618 |3 | |10174 |VMware: Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31619 |3 | |10174 |VMware: Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (percentages). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31620 |3 | |10174 |VMware: Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},total] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine total disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31621 |3 | |10174 |VMware: Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine used disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31623 |3 | |10175 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31624 |3 | |10175 |VMware: Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31626 |15 | |10327 |MSSQL: Percent of Adhoc queries running |mssql.percent_of_adhoc_queries |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_compilations_sec.rate) * 100 /&bsn;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31627 |15 | |10327 |MSSQL: Full scans to Index searches ratio |mssql.scan_to_search |0;m0-59s3 |7d |365d |0 |0 | | | | |NULL |NULL |last(mssql.full_scans_sec.rate) / (last(mssql.index_searches_sec.rate) + (last(mssql.index_searches_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31628 |15 | |10327 |MSSQL: Percent of Recompiled Transact-SQL Objects |mssql.percent_recompilations_to_compilations |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_recompilations_sec.rate) * 100 /&bsn;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31629 |0 | |10333 |Oracle: Ping |oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the connection to Oracle Database state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31630 |0 | |10333 |Oracle: Datafiles count |oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31631 |0 | |10333 |Oracle: Get FRA stats |oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get FRA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31632 |0 | |10333 |Oracle: Number of processes |oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |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 |31633 |0 | |10333 |Oracle: Get SGA stats |oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get SGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31634 |0 | |10333 |Oracle: Get PDB info |oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about PDB databases on instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31635 |0 | |10333 |Oracle: Get ASM stats |oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31636 |0 | |10333 |Oracle: Get system metrics |oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31637 |0 | |10333 |Oracle: Get instance state |oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31638 |0 | |10333 |Oracle: Get system parameters |oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get a set of system parameter values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31639 |0 | |10333 |Oracle: Get PGA stats |oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get PGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31640 |0 | |10333 |Oracle: Redo logs available to switch |oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31641 |0 | |10333 |Oracle: User's expire password |oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31642 |0 | |10333 |Oracle: Get archive log info |oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |5m |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 |31643 |0 | |10333 |Oracle: Get sessions stats |oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31644 |0 | |10333 |Oracle: Get CDB and No-CDB info |oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about CDB and No-CDB databases on instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31645 |0 | |10333 |Oracle: Get tablespaces stats |oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31706 |0 | |10333 |Archive log discovery |oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31707 |0 | |10333 |Database discovery |oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31708 |0 | |10333 |ASM disk groups discovery |oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31709 |0 | |10333 |PDB discovery |oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31710 |0 | |10333 |Tablespace discovery |oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31787 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10] |10233 |Temperature sensor discovery |mtxrHlTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlTemperature&eol;Since temperature sensor is not available on all Mikrotik hardware,&eol;this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31788 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7] |10233 |AP channel discovery |mtxrWlAp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlAp |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31789 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |CAPsMAN AP channel discovery |mtxrWlCMChannel.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlCMChannel |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31790 |20 |1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX} |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlTemperature Device temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..).&eol;&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 |31791 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31792 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP band |ssid.band[mtxrWlApBand.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApBand |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31793 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): SSID |ssid.name[mtxrWlApSsid.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApSsid Service Set Identifier. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31794 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP noise floor |ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApNoiseFloor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31795 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApClientCount Client established connection to AP, but didn't finish all authentication procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31796 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31797 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP channel |ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMChannel |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31798 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMRegClientCount Client established connection to AP, but didn't finish all authentication procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31799 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP state |ssid.state[mtxrWlCMState.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMState Wireless interface state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31800 |0 | |10334 |Ceph: Get df |ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31801 |0 | |10334 |Ceph: Get OSD dump |ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31802 |0 | |10334 |Ceph: Get overall cluster status |ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31803 |0 | |10334 |Ceph: Ping |ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31804 |0 | |10334 |Ceph: Get OSD stats |ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31851 |0 | |10334 |OSD |ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31852 |0 | |10334 |Pool |ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31868 |0 | |10335 |PHP-FPM: Get status page |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31869 |0 | |10335 |PHP-FPM: php-fpm_ping |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31870 |0 | |10335 |PHP-FPM: Number of processes running |proc.num["{$PHP_FPM.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 |31871 |15 | |10335 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+(last(php-fpm.listen_queue_len)=0))*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31872 |0 | |10335 |PHP-FPM: Memory usage (rss) |proc.mem["{$PHP_FPM.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 |31873 |0 | |10335 |PHP-FPM: Memory usage, % |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,pmem] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage relative to total memory available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31874 |0 | |10335 |PHP-FPM: CPU utilization |proc.cpu.util["{$PHP_FPM.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 |31891 |15 | |10336 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+(last(php-fpm.listen_queue_len)=0))*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31892 |19 | |10336 |PHP-FPM: Get status page |php-fpm.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31893 |19 | |10336 |PHP-FPM: Get ping page |php-fpm.get_ping |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
-ROW |31910 |3 | |10337 |Squid: Service ping |net.tcp.service[tcp,,{$SQUID.HTTP.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 |31911 |20 |1.3.6.1.4.1.3495.1.3.1.7.0 |10337 |Squid: Objects count |squid[cacheNumObjCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of objects stored by the cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31912 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.5 |10337 |Squid: ICP query service time per 5 minutes |squid[cacheIcpQuerySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31913 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.60 |10337 |Squid: ICP query service time per hour |squid[cacheIcpQuerySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31914 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.5 |10337 |Squid: ICP reply service time per 5 minutes |squid[cacheIcpReplySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31915 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.60 |10337 |Squid: ICP reply service time per hour |squid[cacheIcpReplySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31916 |20 |1.3.6.1.4.1.3495.1.4.1.3.0 |10337 |Squid: IP cache hits per second |squid[cacheIpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31917 |20 |1.3.6.1.4.1.3495.1.4.1.6.0 |10337 |Squid: IP cache misses per second |squid[cacheIpMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31918 |20 |1.3.6.1.4.1.3495.1.4.1.2.0 |10337 |Squid: IP cache requests per second |squid[cacheIpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31919 |20 |1.3.6.1.4.1.3495.1.3.1.6.0 |10337 |Squid: Memory maximum resident size |squid[cacheMaxResSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum Resident Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31920 |20 |1.3.6.1.4.1.3495.1.2.5.1.0 |10337 |Squid: Memory maximum cache size |squid[cacheMemMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The value of the cache_mem parameter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31921 |20 |1.3.6.1.4.1.3495.1.3.1.3.0 |10337 |Squid: Memory cache usage |squid[cacheMemUsage] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total accounted memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31922 |20 |1.3.6.1.4.1.3495.1.3.2.1.1.0 |10337 |Squid: HTTP requests received per second |squid[cacheProtoClientHttpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP requests received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31923 |20 |1.3.6.1.4.1.3495.1.3.2.1.7.0 |10337 |Squid: ICP messages received per second |squid[cacheIcpPktsRecv] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31924 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.1 |10337 |Squid: Byte hit ratio per 1 minute |squid[cacheRequestByteRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31925 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.5 |10337 |Squid: Byte hit ratio per 5 minutes |squid[cacheRequestByteRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31926 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.60 |10337 |Squid: Byte hit ratio per 1 hour |squid[cacheRequestByteRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31927 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.1 |10337 |Squid: Request hit ratio per 1 minute |squid[cacheRequestHitRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31928 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.5 |10337 |Squid: Request hit ratio per 5 minutes |squid[cacheRequestHitRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31929 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.60 |10337 |Squid: Request hit ratio per 1 hour |squid[cacheRequestHitRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31930 |20 |1.3.6.1.4.1.3495.1.2.5.3.0 |10337 |Squid: Cache swap high water mark |squid[cacheSwapHighWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap High Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31931 |20 |1.3.6.1.4.1.3495.1.2.5.4.0 |10337 |Squid: Cache swap low water mark |squid[cacheSwapLowWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap Low Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31932 |20 |1.3.6.1.4.1.3495.1.2.5.2.0 |10337 |Squid: Cache swap directory size |squid[cacheSwapMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total of the cache_dir space allocated |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31933 |20 |1.3.6.1.4.1.3495.1.3.1.1.0 |10337 |Squid: Sys page faults per second |squid[cacheSysPageFaults] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page faults with physical I/O |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31934 |20 |1.3.6.1.4.1.3495.1.1.3.0 |10337 |Squid: Uptime |squid[cacheUptime] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31935 |20 |1.3.6.1.4.1.3495.1.3.2.1.6.0 |10337 |Squid: ICP messages sent per second |squid[cacheIcpPktsSent] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages sent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31936 |20 |1.3.6.1.4.1.3495.1.3.2.1.8.0 |10337 |Squid: ICP traffic transmitted per second |squid[cacheIcpKbSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic transmitted |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31937 |20 |1.3.6.1.4.1.3495.1.3.1.5.0 |10337 |Squid: CPU usage |squid[cacheCpuUsage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage use of the CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31938 |20 |1.3.6.1.4.1.3495.1.4.2.3.0 |10337 |Squid: FQDN cache hits per second |squid[cacheFqdnHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31939 |20 |1.3.6.1.4.1.3495.1.3.1.12.0 |10337 |Squid: File descriptor count - current used |squid[cacheCurrentFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31940 |20 |1.3.6.1.4.1.3495.1.3.1.13.0 |10337 |Squid: File descriptor count - current maximum |squid[cacheCurrentFileDescrMax] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Highest number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31941 |20 |1.3.6.1.4.1.3495.1.3.1.8.0 |10337 |Squid: Objects LRU expiration age |squid[cacheCurrentLRUExpiration] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage LRU Expiration Age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31942 |20 |1.3.6.1.4.1.3495.1.3.1.11.0 |10337 |Squid: File descriptor count - current reserved |squid[cacheCurrentResFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reserved number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31943 |20 |1.3.6.1.4.1.3495.1.3.2.1.14.0 |10337 |Squid: Cache swap current size |squid[cacheCurrentSwapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage Swap Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31944 |20 |1.3.6.1.4.1.3495.1.3.1.9.0 |10337 |Squid: Objects unlinkd requests |squid[cacheCurrentUnlinkRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Requests given to unlinkd |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31945 |20 |1.3.6.1.4.1.3495.1.3.1.10.0 |10337 |Squid: File descriptor count - current available |squid[cacheCurrentUnusedFDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Available number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31946 |20 |1.3.6.1.4.1.3495.1.4.3.2.0 |10337 |Squid: DNS server replies per second |squid[cacheDnsReplies] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server replies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31947 |20 |1.3.6.1.4.1.3495.1.4.3.1.0 |10337 |Squid: DNS server requests per second |squid[cacheDnsRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31948 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.5 |10337 |Squid: DNS service time per 5 minutes |squid[cacheDnsSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31949 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.60 |10337 |Squid: DNS service time per hour |squid[cacheDnsSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31950 |20 |1.3.6.1.4.1.3495.1.4.2.6.0 |10337 |Squid: FQDN cache misses per second |squid[cacheFqdnMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31951 |20 |1.3.6.1.4.1.3495.1.3.2.1.9.0 |10337 |Squid: ICP traffic received per second |squid[cacheIcpKbRecv] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31952 |20 |1.3.6.1.4.1.3495.1.4.2.2.0 |10337 |Squid: FQDN cache requests per second |squid[cacheFqdnRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31953 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.5 |10337 |Squid: HTTP all service time per 5 minutes |squid[cacheHttpAllSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31954 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.60 |10337 |Squid: HTTP all service time per hour |squid[cacheHttpAllSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31955 |20 |1.3.6.1.4.1.3495.1.3.2.1.3.0 |10337 |Squid: HTTP Errors sent per second |squid[cacheHttpErrors] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Errors sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31956 |20 |1.3.6.1.4.1.3495.1.3.2.1.2.0 |10337 |Squid: HTTP Hits sent from cache per second |squid[cacheHttpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Hits sent to clients from cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31957 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpHitSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31958 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.60 |10337 |Squid: HTTP hit service time per hour |squid[cacheHttpHitSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31959 |20 |1.3.6.1.4.1.3495.1.3.2.1.4.0 |10337 |Squid: HTTP traffic received per second |squid[cacheHttpInKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic received from clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31960 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpMissSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31961 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.60 |10337 |Squid: HTTP miss service time per hour |squid[cacheHttpMissSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31962 |20 |1.3.6.1.4.1.3495.1.3.2.1.5.0 |10337 |Squid: HTTP traffic sent per second |squid[cacheHttpOutKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31963 |20 |1.3.6.1.4.1.3495.1.2.3.0 |10337 |Squid: Version |squid[cacheVersionId] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Software Version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31964 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |LTE modem discovery |mtxrLTEModem.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrLTEModemInterfaceIndex |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31965 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP |lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRP Reference Signal Received Power. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31966 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ |lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRQ Reference Signal Received Quality. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31967 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI |lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSSI Received Signal Strength Indicator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31968 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR |lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32012 |19 | |10339 |Get DataNodes states |hadoop.datanodes.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32013 |19 | |10339 |Get NodeManagers states |hadoop.nodemanagers.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32014 |3 | |10339 |NameNode: Service status |net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop NameNode API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32015 |3 | |10339 |ResourceManager: Service response time |net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop ResourceManager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32016 |3 | |10339 |NameNode: Service response time |net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop NameNode API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32017 |19 | |10339 |Get ResourceManager stats |hadoop.resourcemanager.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32018 |3 | |10339 |ResourceManager: Service status |net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop ResourceManager API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32019 |19 | |10339 |Get NameNode stats |hadoop.namenode.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32046 |19 | |10339 |Data node discovery |hadoop.datanode.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32047 |19 | |10339 |Node manager discovery |hadoop.nodemanager.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32048 |19 | |10339 |Hadoop DataNode {#HOSTNAME}: Get stats |hadoop.datanode.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#INFOADDR}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32049 |19 | |10339 |Hadoop NodeManager {#HOSTNAME}: Get stats |hadoop.nodemanager.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#NODEHTTPADDRESS}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32071 |16 | |10340 |Kafka: Leader election per second |jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of leader elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32072 |16 | |10340 |Kafka: Request handler average idle percent |jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Indicates the percentage of time that the request handler (IO) threads are not in use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32073 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time for a request to update metadata. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32074 |16 | |10340 |Kafka: Network processor average idle percent |jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The average percentage of time that the network processors are idle. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32075 |16 | |10340 |Kafka: Uptime |jmx["kafka.server:type=app-info","start-time-ms"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Service uptime in seconds. |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 |32076 |16 | |10340 |Kafka: Version |jmx["kafka.server:type=app-info","version"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Current version of broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32077 |16 | |10340 |Kafka: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data sent from producers is consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32078 |16 | |10340 |Kafka: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data is fetched and read from the broker by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32079 |16 | |10340 |Kafka: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which bytes rejected per second by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32080 |16 | |10340 |Kafka: Client fetch request failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of client fetch request failures per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32081 |16 | |10340 |Kafka: Produce requests failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of failed produce requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32082 |16 | |10340 |Kafka: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which individual messages are consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32083 |16 | |10340 |Kafka: Requests in producer purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in producer purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32084 |16 | |10340 |Kafka: Requests in fetch purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in fetch purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32085 |16 | |10340 |Kafka: Replication maximum lag |jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum lag between the time that messages are received by the leader replica and by the follower replicas. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32086 |16 | |10340 |Kafka: UpdateMetadata request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32087 |16 | |10340 |Kafka: ISR expands per second |jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which the number of ISRs in the broker increases. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32088 |16 | |10340 |Kafka: ISR shrink per second |jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Rate of replicas leaving the ISR pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32089 |16 | |10340 |Kafka: Leader count |jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of replicas for which this broker is the leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32090 |16 | |10340 |Kafka: Partition count |jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions in the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32091 |16 | |10340 |Kafka: Number of reassigning partitions |jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of reassigning leader partitions on a broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32092 |16 | |10340 |Kafka: Under minimum ISR partition count |jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions under the minimum In-Sync Replica (ISR) count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32093 |16 | |10340 |Kafka: Under replicated partitions |jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32094 |16 | |10340 |Kafka: Request queue size |jmx["kafka.server:type=Request","queue-size"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The size of the delay queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32095 |16 | |10340 |Kafka: ZooKeeper connection status |jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Connection status of broker's ZooKeeper session. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32096 |16 | |10340 |Kafka: ZooKeeper disconnect rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client disconnect per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32097 |16 | |10340 |Kafka: ZooKeeper session expiration rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client session expiration per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32098 |16 | |10340 |Kafka: ZooKeeper readonly rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client readonly per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32099 |16 | |10340 |Kafka: ZooKeeper sync rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client sync per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32100 |16 | |10340 |Kafka: UpdateMetadata request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32101 |16 | |10340 |Kafka: Produce request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Produce request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32102 |16 | |10340 |Kafka: Unclean leader election per second |jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of “unclean” elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32103 |16 | |10340 |Kafka: Produce response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32104 |16 | |10340 |Kafka: Controller state on broker |jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |122 | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |One indicates that the broker is the controller for the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32105 |16 | |10340 |Kafka: Offline partitions count |jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of partitions that don't have an active leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32106 |16 | |10340 |Kafka: Ineligible pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32107 |16 | |10340 |Kafka: Pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32108 |16 | |10340 |Kafka: Ineligible pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32109 |16 | |10340 |Kafka: Pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32110 |16 | |10340 |Kafka: Offline log directory count |jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of offline log directories (for example, after a hardware failure). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32111 |16 | |10340 |Kafka: Fetch-Consumer response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32112 |16 | |10340 |Kafka: Fetch-Consumer response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32113 |16 | |10340 |Kafka: Fetch-Consumer response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32114 |16 | |10340 |Kafka: Fetch-Follower response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32115 |16 | |10340 |Kafka: Fetch-Follower response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32116 |16 | |10340 |Kafka: Fetch-Follower response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32117 |16 | |10340 |Kafka: Produce response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32118 |16 | |10340 |Kafka: Produce request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32119 |16 | |10340 |Kafka: Produce response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32120 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32121 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32122 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32123 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), avg |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The amount of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32124 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32125 |16 | |10340 |Kafka: Fetch-Consumer request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Consumer request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32126 |16 | |10340 |Kafka: Fetch-Consumer request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the specified Fetch-Consumer for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32127 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Consumer request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32128 |16 | |10340 |Kafka: Fetch-Follower request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32129 |16 | |10340 |Kafka: Fetch-Follower request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32130 |16 | |10340 |Kafka: Fetch-Follower request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Follower request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32131 |16 | |10340 |Kafka: Produce request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32132 |16 | |10340 |Kafka: ZooKeeper client request latency |jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Latency in milliseconds for ZooKeeper requests from broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32133 |16 | |10340 |Topic Metrics (read) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32134 |16 | |10340 |Topic Metrics (errors) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32135 |16 | |10340 |Topic Metrics (write) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32136 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data is fetched and read from the broker by consumers (by topic). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32137 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |Rejected bytes rate by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32138 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data sent from producers is consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32139 |16 | |10340 |Kafka {#JMXTOPIC}: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which individual messages are consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32140 |16 | |10260 |Protocol handlers discovery |jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ProtocolHandler |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32141 |16 | |10260 |Global request processors discovery |jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for GlobalRequesProcessor |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32142 |16 | |10260 |Contexts discovery |jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for contexts |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32143 |16 | |10260 |Thread pools discovery |jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ThreadPool |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32144 |16 | |10260 |{#JMXVALUE}: Gzip compression status |jmx[{#JMXOBJ},compression] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32145 |16 | |10260 |{#JMXNAME}: Bytes received per second |jmx[{#JMXOBJ},bytesReceived] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes received rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32146 |16 | |10260 |{#JMXNAME}: Bytes sent per second |jmx[{#JMXOBJ},bytesSent] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes sent rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32147 |16 | |10260 |{#JMXNAME}: Errors per second |jmx[{#JMXOBJ},errorCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Error rate of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32148 |16 | |10260 |{#JMXNAME}: Requests processing time |jmx[{#JMXOBJ},processingTime] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The total time to process all incoming requests of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32149 |16 | |10260 |{#JMXNAME}: Requests per second |jmx[{#JMXOBJ},requestCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of requests served by request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32150 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active |jmx[{#JMXOBJ},activeSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Active sessions of the application. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32151 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far |jmx[{#JMXOBJ},maxActive] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Maximum number of active sessions so far. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32152 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum |jmx[{#JMXOBJ},maxActiveSessions] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The maximum number of active Sessions allowed, or -1 for no limit. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32153 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second |jmx[{#JMXOBJ},rejectedSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions we rejected due to maxActive being reached. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32154 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions created per second |jmx[{#JMXOBJ},sessionCounter] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions created by this application per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32155 |16 | |10260 |{#JMXNAME}: Threads count |jmx[{#JMXOBJ},currentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Amount of threads the thread pool has right now, both busy and free. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32156 |16 | |10260 |{#JMXNAME}: Threads busy |jmx[{#JMXOBJ},currentThreadsBusy] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Number of the requests that are being currently handled. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32157 |16 | |10260 |{#JMXNAME}: Threads limit |jmx[{#JMXOBJ},maxThreads] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32158 |19 | |10341 |Zookeeper: Get server metrics |zookeeper.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32159 |19 | |10341 |Zookeeper: Get connections stats |zookeeper.get_connections_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32193 |19 | |10341 |Clients discovery |zookeeper.clients |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Get list of client connections.&eol;Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32207 |16 | |10342 |Cluster: Name |jmx["org.apache.cassandra.db:type=StorageService","ClusterName"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32208 |16 | |10342 |Thread pool SecondaryIndexManagement: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32209 |16 | |10342 |Thread pool HintsDispatcher: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;HintsDispatcher: Performs hinted handoff. |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 |32210 |16 | |10342 |Thread pool HintsDispatcher: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;HintsDispatcher: Performs hinted handoff. |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 |32211 |16 | |10342 |Thread pool MemtableFlushWriter: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32212 |16 | |10342 |Thread pool MemtableFlushWriter: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32213 |16 | |10342 |Thread pool MemtableFlushWriter: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32214 |16 | |10342 |Thread pool MemtablePostFlush: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32215 |16 | |10342 |Thread pool MemtablePostFlush: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32216 |16 | |10342 |Thread pool MemtablePostFlush: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32217 |16 | |10342 |Thread pool MigrationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MigrationStage: Runs schema migrations. |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 |32218 |16 | |10342 |Thread pool MigrationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MigrationStage: Runs schema migrations. |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 |32219 |16 | |10342 |Thread pool MigrationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MigrationStage: Runs schema migrations. |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 |32220 |16 | |10342 |Thread pool MiscStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MiscStage: Miscellaneous tasks run here. |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 |32221 |16 | |10342 |Thread pool MiscStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MiscStage: Miscellaneous tasks run here. |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 |32222 |16 | |10342 |Thread pool MiscStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MiscStage: Miscellaneous tasks run here. |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 |32223 |16 | |10342 |Thread pool SecondaryIndexManagement: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32224 |16 | |10342 |Storage: Hints |jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32225 |16 | |10342 |Thread pool SecondaryIndexManagement: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32226 |16 | |10342 |Thread pool CounterMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;CounterMutationStage: Responsible for counter writes. |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 |32227 |16 | |10342 |Thread pool CounterMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;CounterMutationStage: Responsible for counter writes. |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 |32228 |16 | |10342 |Thread pool CounterMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;CounterMutationStage: Responsible for counter writes. |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 |32229 |16 | |10342 |Thread pool MutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32230 |16 | |10342 |Thread pool.MutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32231 |16 | |10342 |Thread pool MutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32232 |16 | |10342 |Thread pool ReadStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ReadStage: Local reads run on this thread pool. |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 |32233 |16 | |10342 |Thread pool ReadStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ReadStage: Local reads run on this thread pool. |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 |32234 |16 | |10342 |Thread pool ReadStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ReadStage: Local reads run on this thread pool. |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 |32235 |16 | |10342 |Thread pool ViewMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32236 |16 | |10342 |Thread pool ViewMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32237 |16 | |10342 |Thread pool ViewMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32238 |16 | |10342 |Cluster: Nodes down |jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32239 |16 | |10342 |Thread pool HintsDispatcher: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;HintsDispatcher: Performs hinted handoff. |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 |32240 |16 | |10342 |Storage: Used (bytes) |jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Size, in bytes, of the on disk data size this node manages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32241 |16 | |10342 |Version |jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32242 |16 | |10342 |KeyCache: requests per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache requests. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32243 |16 | |10342 |Compaction: Number of completed tasks |jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32244 |16 | |10342 |Commitlog: Pending tasks |jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of commit log messages written but yet to be fsync'd. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32245 |16 | |10342 |Latency: Read median |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32246 |16 | |10342 |Latency: Read 75 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32247 |16 | |10342 |Latency: Read 95 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32248 |16 | |10342 |Commitlog: Total size |jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Current size, in bytes, used by all the commit log segments. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32249 |16 | |10342 |Compaction: Total compactions completed |jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Throughput of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32250 |16 | |10342 |Latency: Write median |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32251 |16 | |10342 |Latency: Write 75 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32252 |16 | |10342 |Latency: Write 95 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32253 |16 | |10342 |KeyCache: Capacity |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Cache capacity in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32254 |16 | |10342 |KeyCache: Entries |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total number of cache entries. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32255 |16 | |10342 |KeyCache: HitRate |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |All time cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32256 |16 | |10342 |KeyCache: Hits per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32257 |16 | |10342 |KeyCache: Size |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total size of occupied cache, in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32258 |16 | |10342 |Storage: Errors |jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of internal exceptions caught. Under normal exceptions this should be zero. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32259 |16 | |10342 |Client connections: Native |jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of clients connected to this nodes native protocol server. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32260 |16 | |10342 |Client connections: Trifts |jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of connected to this nodes thrift clients. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32261 |16 | |10342 |Latency: Client request read median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32262 |16 | |10342 |Latency: Client request read 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32263 |16 | |10342 |Latency: Client request read 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32264 |16 | |10342 |Client request: Read per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32265 |16 | |10342 |Latency: Client request write median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32266 |16 | |10342 |Latency: Client request write 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32267 |16 | |10342 |Latency: Client request write 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32268 |16 | |10342 |Client request: Write per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32269 |16 | |10342 |Client request: Write Timeouts |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of write requests timeouts encountered. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32270 |16 | |10342 |Compaction: Pending tasks |jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Estimated number of compactions remaining to perform. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32271 |16 | |10342 |Dropped messages: Write (Mutation) |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular writes messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32272 |16 | |10342 |Dropped messages: Read |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular reads messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32273 |16 | |10342 |Cluster: Nodes up |jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32274 |16 | |10342 |Tables |jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |1 |NULL |Info about keyspaces and tables |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32275 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The ratio of Bloom filter false positives to total checks. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32276 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32277 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32278 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32279 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32280 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32281 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Disk space used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32282 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32283 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32284 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32285 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32286 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space truly used by snapshots. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32287 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of table row cache misses. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32288 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits that do not satisfy the query filter and went to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32289 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32290 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was flushed since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32291 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32292 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32293 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending flushes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32294 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending compactions. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32295 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The average size of compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32296 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The size of the largest compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32297 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of "live" (in use) SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32298 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space used by "live" SSTables (only counts in use files). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32299 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The key cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32300 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The compression ratio for all SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32301 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was compacted since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32302 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32303 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32304 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32307 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Voltage |sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |0 | |V | | |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 |32308 |20 |1.3.6.1.4.1.33333.5.64.0 |10343 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Max. Power (sweep)&eol; Description:Array Max. Power (last sweep)&eol; Scaling Factor:1.0&eol; Units:W&eol; Range:[0.0, 500]&eol; Modbus address:0x003E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32309 |20 |1.3.6.1.4.1.33333.5.53.0 |10343 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |124 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load State&eol; Description:Load State&eol; Modbus address:0x002E&eol;&eol; 0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32310 |20 |1.3.6.1.4.1.33333.5.39.0 |10343 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Battery Temperature&eol; Description:Battery Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32311 |20 |1.3.6.1.4.1.33333.5.40.0 |10343 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ambient Temperature&eol; Description:Ambient Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32312 |20 |1.3.6.1.4.1.33333.5.48.0 |10343 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Target Voltage&eol; Description:Target Regulation Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32313 |20 |1.3.6.1.2.1.1.3.0 |10343 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32314 |20 |1.3.6.1.4.1.33333.5.54.0 |10343 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32315 |20 |1.3.6.1.4.1.33333.5.46.0 |10343 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32316 |20 |1.3.6.1.4.1.33333.5.59.0 |10343 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32317 |20 |1.3.6.1.4.1.33333.5.32.0 |10343 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Voltage&eol; Description:Load Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32318 |20 |1.3.6.1.4.1.33333.5.34.0 |10343 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Current&eol; Description:Load Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 60]&eol; Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32319 |20 |1.3.6.1.4.1.33333.5.63.0 |10343 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Vmp&eol; Description:Array Max. Power Point Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 5000.0]&eol; Modbus address:0x003D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32320 |20 |1.3.6.1.4.1.33333.5.56.0 |10343 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32321 |20 |1.3.6.1.4.1.33333.5.51.0 |10343 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;kWh Charge (Resettable)&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32322 |20 |1.3.6.1.4.1.33333.5.49.0 |10343 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ah Charge (Resettable)&eol; Description:Ah Charge (Resettable)&eol; Scaling Factor:0.1&eol; Units:Ah&eol; Range:[0.0, 4294967294]&eol; Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32323 |20 |1.3.6.1.4.1.33333.5.45.0 |10343 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |123 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge State&eol; Description:Control State&eol; Modbus address:0x0021&eol;&eol; 0: Start&eol; 1: NightCheck&eol; 2: Disconnect&eol; 3: Night&eol; 4: Fault&eol; 5: BulkMppt&eol; 6: Absorption&eol; 7: Float&eol; 8: Equalize&eol; 9: Slave&eol; 10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32324 |20 |1.3.6.1.4.1.33333.5.33.0 |10343 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge Current&eol; Description:Charge Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 40]&eol; Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32325 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32326 |20 |1.3.6.1.4.1.33333.5.31.0 |10343 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voltage&eol; Description:Array Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32327 |20 |1.3.6.1.4.1.33333.5.65.0 |10343 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voc&eol; Description:Array Open Circuit Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x003F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32328 |20 |1.3.6.1.4.1.33333.5.38.0 |10343 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Heatsink Temperature&eol; Description:Heatsink Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32330 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-MPPT&eol;Battery Terminal Voltage&eol;Description:Battery Terminal Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32331 |20 |1.3.6.1.4.1.33333.6.31.0 |10344 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32332 |20 |1.3.6.1.4.1.33333.6.59.0 |10344 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32333 |20 |1.3.6.1.4.1.33333.6.39.0 |10344 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32334 |20 |1.3.6.1.4.1.33333.6.40.0 |10344 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32335 |20 |1.3.6.1.4.1.33333.6.48.0 |10344 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Target Regulation Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32336 |20 |1.3.6.1.2.1.1.3.0 |10344 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32337 |20 |1.3.6.1.4.1.33333.6.54.0 |10344 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Faults&eol;Modbus address:0x002F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32338 |20 |1.3.6.1.4.1.33333.6.46.0 |10344 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32339 |20 |1.3.6.1.4.1.33333.6.32.0 |10344 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32340 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32341 |20 |1.3.6.1.4.1.33333.6.53.0 |10344 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |126 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load State&eol;Modbus address:0x002E&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32342 |20 |1.3.6.1.4.1.33333.6.34.0 |10344 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32343 |20 |1.3.6.1.4.1.33333.6.56.0 |10344 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32344 |20 |1.3.6.1.4.1.33333.6.51.0 |10344 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32345 |20 |1.3.6.1.4.1.33333.6.49.0 |10344 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Charge (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32346 |20 |1.3.6.1.4.1.33333.6.45.0 |10344 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |125 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Bulk&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32347 |20 |1.3.6.1.4.1.33333.6.33.0 |10344 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Charge Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 40]&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32348 |20 |1.3.6.1.4.1.33333.6.38.0 |10344 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32350 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32351 |20 |1.3.6.1.4.1.33333.3.57.0 |10345 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32352 |20 |1.3.6.1.4.1.33333.3.46.0 |10345 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |129 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load State&eol;Modbus address:0x001A&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32353 |20 |1.3.6.1.4.1.33333.3.36.0 |10345 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32354 |20 |1.3.6.1.4.1.33333.3.37.0 |10345 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32355 |20 |1.3.6.1.4.1.33333.3.42.0 |10345 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32356 |20 |1.3.6.1.2.1.1.3.0 |10345 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32357 |20 |1.3.6.1.4.1.33333.3.47.0 |10345 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32358 |20 |1.3.6.1.4.1.33333.3.40.0 |10345 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32359 |20 |1.3.6.1.4.1.33333.3.52.0 |10345 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0023 L=0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32360 |20 |1.3.6.1.4.1.33333.3.32.0 |10345 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32361 |20 |1.3.6.1.4.1.33333.3.34.0 |10345 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Current&eol;Scaling Factor:0.002415771484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32362 |20 |1.3.6.1.4.1.33333.3.56.0 |10345 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Max. Power Point Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x0028 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32363 |20 |1.3.6.1.4.1.33333.3.49.0 |10345 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Load(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x001D L=0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32364 |20 |1.3.6.1.4.1.33333.3.45.0 |10345 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhCharge.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32365 |20 |1.3.6.1.4.1.33333.3.43.0 |10345 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Charge(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0015 L=0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32366 |20 |1.3.6.1.4.1.33333.3.39.0 |10345 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |128 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: BulkMppt&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32367 |20 |1.3.6.1.4.1.33333.3.33.0 |10345 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32368 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32369 |20 |1.3.6.1.4.1.33333.3.31.0 |10345 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0009 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32370 |20 |1.3.6.1.4.1.33333.3.58.0 |10345 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32371 |20 |1.3.6.1.4.1.33333.3.35.0 |10345 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32373 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32374 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltageSlow.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32375 |20 |1.3.6.1.4.1.33333.9.31.0 |10346 |Load: A/C Current |load.ac_current[acCurrent.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:AC Output Current&eol;Scaling Factor:0.0001953125&eol;Units:A&eol;Range:[0.0, 17]&eol;Modbus address:0x0005 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32376 |20 |1.3.6.1.4.1.33333.9.33.0 |10346 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |130 | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Load State&eol;Modbus address:0x000B&eol;&eol; 0: Start&eol;1: LoadOn&eol;2: LvdWarning&eol;3: LowVoltageDisconnect&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: UnknownState&eol;8: Standby |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32377 |20 |1.3.6.1.4.1.33333.9.34.0 |10346 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32378 |20 |1.3.6.1.4.1.33333.9.35.0 |10346 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32379 |20 |1.3.6.1.2.1.1.3.0 |10346 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32380 |20 |1.3.6.1.4.1.33333.9.32.0 |10346 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Heatsink Temperature&eol;Scaling Factor:1&eol;Units:C&eol;Range:[-128, 127]&eol;Modbus address:0x0006 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32382 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltageSlow.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SURESINE&eol;Description:Battery Voltage(slow)&eol;Scaling Factor:0.0002581787109375&eol;Units:V&eol;Range:[0.0, 17.0]&eol;Modbus address:0x0004 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32383 |20 |1.3.6.1.4.1.33333.7.31.0 |10347 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32384 |20 |1.3.6.1.4.1.33333.7.50.0 |10347 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:1.0&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32385 |20 |1.3.6.1.4.1.33333.7.48.0 |10347 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32386 |20 |1.3.6.1.4.1.33333.7.45.0 |10347 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32387 |20 |1.3.6.1.2.1.1.3.0 |10347 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32388 |20 |1.3.6.1.4.1.33333.7.55.0 |10347 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus addresses:H=0x002c L=0x002d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32389 |20 |1.3.6.1.4.1.33333.7.57.0 |10347 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x002e L=0x002f |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32390 |20 |1.3.6.1.4.1.33333.7.52.0 |10347 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32391 |20 |1.3.6.1.4.1.33333.7.46.0 |10347 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |131 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave&eol;10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32392 |20 |1.3.6.1.4.1.33333.7.33.0 |10347 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32393 |20 |1.3.6.1.4.1.33333.7.44.0 |10347 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 4000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32394 |20 |1.3.6.1.4.1.33333.7.42.0 |10347 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32395 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32396 |20 |1.3.6.1.4.1.33333.7.30.0 |10347 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32397 |20 |1.3.6.1.4.1.33333.7.35.0 |10347 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32398 |20 |1.3.6.1.4.1.33333.7.34.0 |10347 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32399 |20 |1.3.6.1.4.1.33333.7.49.0 |10347 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32401 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32402 |20 |1.3.6.1.4.1.33333.2.31.0 |10348 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32403 |20 |1.3.6.1.4.1.33333.2.50.0 |10348 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32404 |20 |1.3.6.1.4.1.33333.2.48.0 |10348 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32405 |20 |1.3.6.1.4.1.33333.2.45.0 |10348 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32406 |20 |1.3.6.1.2.1.1.3.0 |10348 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32407 |20 |1.3.6.1.4.1.33333.2.55.0 |10348 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32408 |20 |1.3.6.1.4.1.33333.2.57.0 |10348 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32409 |20 |1.3.6.1.4.1.33333.2.52.0 |10348 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:0.1&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32410 |20 |1.3.6.1.4.1.33333.2.46.0 |10348 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |132 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32411 |20 |1.3.6.1.4.1.33333.2.33.0 |10348 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32412 |20 |1.3.6.1.4.1.33333.2.44.0 |10348 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32413 |20 |1.3.6.1.4.1.33333.2.42.0 |10348 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32414 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32415 |20 |1.3.6.1.4.1.33333.2.30.0 |10348 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32416 |20 |1.3.6.1.4.1.33333.2.35.0 |10348 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32417 |20 |1.3.6.1.4.1.33333.2.34.0 |10348 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32418 |20 |1.3.6.1.4.1.33333.2.49.0 |10348 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32420 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32421 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32422 |20 |1.3.6.1.4.1.33333.8.45.0 |10349 |Status: Control Mode |control.mode[controlMode.0] |1m |7d |365d |0 |0 | | | | |NULL |135 | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Control Mode&eol;Modbus address:0x001A&eol;&eol;0: charge&eol;1: loadControl&eol;2: diversion&eol;3: lighting |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32423 |20 |1.3.6.1.4.1.33333.8.39.0 |10349 |Counter: Amp-hours |counter.charge_amp_hours[ahResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Ah (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 50000.0]&eol;Modbus addresses:H=0x0011 L=0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32424 |20 |1.3.6.1.4.1.33333.8.49.0 |10349 |Counter: KW-hours |counter.charge_kw_hours[kilowattHours.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Kilowatt Hours&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32425 |20 |1.3.6.1.4.1.33333.8.42.0 |10349 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Alarms&eol;Modbus addresses:H=0x001D L=0x0017 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32426 |20 |1.3.6.1.4.1.33333.8.43.0 |10349 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32427 |20 |1.3.6.1.2.1.1.3.0 |10349 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32428 |20 |1.3.6.1.4.1.33333.8.37.0 |10349 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32429 |20 |1.3.6.1.4.1.33333.8.36.0 |10349 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32436 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32437 |20 |1.3.6.1.4.1.33333.8.46.0 |10349 |Battery: Charge State{#SINGLETON} |charge.state[controlState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |133 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Control State&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32438 |20 |1.3.6.1.4.1.33333.8.38.0 |10349 |Battery: Target Voltage{#SINGLETON} |target.voltage[targetVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32439 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Array: Voltage{#SINGLETON} |array.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32440 |20 |1.3.6.1.4.1.33333.8.33.0 |10349 |Battery: Charge Current{#SINGLETON} |charge.current[chargeCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Charge Current&eol;Scaling Factor:0.002034515380859375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32441 |20 |1.3.6.1.4.1.33333.8.48.0 |10349 |Load: PWM Duty Cycle{#SINGLETON} |diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:PWM Duty Cycle&eol;Scaling Factor:0.392156862745098&eol;Units:%&eol;Range:[0.0, 100.0]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32442 |20 |1.3.6.1.4.1.33333.8.34.0 |10349 |Load: Current{#SINGLETON} |load.current[loadCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load Current&eol;Scaling Factor:0.00966400146484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32443 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Load: Voltage{#SINGLETON} |load.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32444 |20 |1.3.6.1.4.1.33333.8.47.0 |10349 |Load: State{#SINGLETON} |load.state[loadState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |134 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load State&eol;Modbus address:0x001B&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: LvdWarning1&eol;7: OverrideLvd&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32445 |0 | |10289 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32446 |0 | |10289 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32447 |0 | |10289 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32448 |0 | |10289 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32453 |7 | |10296 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32454 |7 | |10296 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32455 |7 | |10296 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32456 |7 | |10296 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32463 |16 | |10350 |Destinations discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"] |1h |90d |0 |0 |4 | | |{1112} and {1113}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of destinations |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32464 |16 | |10350 |Brokers discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"] |1h |90d |0 |0 |4 | | |{1114} and {1115}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of brokers |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32465 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to the broker of this destination. Used to suppress destination's triggers when the count of consumers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32466 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to the broker of this destination. Used to suppress destination's triggers when the count of producers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32467 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count |jmx[{#JMXOBJ},ConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32468 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate |jmx[{#JMXOBJ},DequeueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that has been acknowledged (and removed) from the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32469 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate |jmx[{#JMXOBJ},EnqueueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32470 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count |jmx[{#JMXOBJ},ExpiredCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages that have been expired. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32471 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents |jmx[{#JMXOBJ},MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The percentage of the memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32472 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count |jmx[{#JMXOBJ},ProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32473 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size |jmx[{#JMXOBJ},QueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages on this destination, including any that have been dispatched but not acknowledged. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32474 |16 | |10350 |Broker {#JMXBROKERNAME}: Version |jmx[{#JMXOBJ},BrokerVersion] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The version of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32475 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory limit |jmx[{#JMXOBJ},MemoryLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32476 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory usage in percents |jmx[{#JMXOBJ}, MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32477 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage limit |jmx[{#JMXOBJ},StoreLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for persistent messages before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32478 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage usage in percents |jmx[{#JMXOBJ},StorePercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of store limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32479 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp limit |jmx[{#JMXOBJ},TempLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32480 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp usage in percents |jmx[{#JMXOBJ},TempPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of temp limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32481 |16 | |10350 |Broker {#JMXBROKERNAME}: Consumers count total |jmx[{#JMXOBJ},TotalConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32482 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages dequeue rate |jmx[{#JMXOBJ},TotalDequeueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been delivered by the broker and acknowledged by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32483 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages enqueue rate |jmx[{#JMXOBJ},TotalEnqueueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32484 |16 | |10350 |Broker {#JMXBROKERNAME}: Producers count total |jmx[{#JMXOBJ},TotalProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32485 |16 | |10350 |Broker {#JMXBROKERNAME}: Uptime |jmx[{#JMXOBJ},UptimeMillis] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The uptime of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32486 |0 | |10351 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32487 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32488 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32489 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32490 |0 | |10351 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32491 |0 | |10351 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32492 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32493 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32494 |0 | |10351 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32495 |0 | |10351 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32496 |0 | |10351 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32497 |0 | |10351 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32498 |0 | |10351 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32499 |0 | |10351 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32500 |0 | |10351 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32501 |0 | |10351 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32502 |0 | |10351 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32503 |0 | |10351 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32504 |0 | |10351 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32505 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32506 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32507 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32508 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32509 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32510 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32511 |0 | |10351 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32512 |0 | |10351 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32513 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32514 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32515 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32516 |7 | |10352 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32517 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32518 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32519 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32520 |7 | |10352 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32521 |7 | |10352 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32522 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32523 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32524 |7 | |10352 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32525 |7 | |10352 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32526 |7 | |10352 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32527 |7 | |10352 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32528 |7 | |10352 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32529 |7 | |10352 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32530 |7 | |10352 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32531 |7 | |10352 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32532 |7 | |10352 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32533 |7 | |10352 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32534 |7 | |10352 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32535 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32536 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32537 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32538 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32539 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32540 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32541 |7 | |10352 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32542 |7 | |10352 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32543 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32544 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32545 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32546 |15 | |10316 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32560 |15 | |10320 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32574 |15 | |10317 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32592 |0 | |10328 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32595 |0 | |10328 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32597 |0 | |10328 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |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 |32612 |20 |1.3.6.1.4.1.789.1.6.4.7.0 |10353 |NetApp FAS3220: Failed disks count |fas3220.disk[diskFailedCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of disks that are currently broken. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32613 |20 |1.3.6.1.4.1.789.1.6.4.10.0 |10353 |NetApp FAS3220: Failed disks message |fas3220.disk[diskFailedMessage] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32614 |20 |1.3.6.1.4.1.789.1.1.6.0 |10353 |NetApp FAS3220: Product firmware version |fas3220.inventory[productFirmwareVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the firmware running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32615 |20 |1.3.6.1.4.1.789.1.1.2.0 |10353 |NetApp FAS3220: Product version |fas3220.inventory[productVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the software running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32616 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1] |10353 |Cluster metrics discovery |fas3220.cluster.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Cluster metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32617 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1] |10353 |CPU discovery |fas3220.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of CPU metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32618 |20 |discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34] |10353 |Filesystems discovery |fas3220.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filesystems discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32619 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8] |10353 |HA discovery |fas3220.ha.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of high availability metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32620 |20 |discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2] |10353 |Network ports discovery |fas3220.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32621 |20 |1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN count |fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of chassis fans that are not operating within the recommended RPM range. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32622 |20 |1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN message |fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32623 |20 |1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies count |fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of power supplies that are in degraded mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32624 |20 |1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies message |fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32625 |20 |1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Over-temperature |fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32626 |20 |1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Health |fas3220.cluster[nodeHealth, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL |Whether or not the node can communicate with the cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32627 |20 |1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Location |fas3220.cluster[nodeLocation, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Location. Same as sysLocation for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32628 |20 |1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Model |fas3220.cluster[nodeModel, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Model. Same as productModel for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32629 |20 |1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: NVRAM battery status |fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |139 | | |0 | | | | |2 |NULL |An indication of the current status of the NVRAM battery or batteries.&eol;Batteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer's recommended life for the batteries.&eol;Possible values:&eol;ok(1),&eol;partiallyDischarged(2),&eol;fullyDischarged(3),&eol;notPresent(4),&eol;nearEndOfLife(5),&eol;atEndOfLife(6),&eol;unknown(7),&eol;overCharged(8),&eol;fullyCharged(9). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32630 |20 |1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Serial number |fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Serial Number. Same as productSerialNum for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32631 |20 |1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Uptime |fas3220.cluster[nodeUptime, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Node uptime. Same as sysUpTime for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32632 |20 |1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: CPU utilization |fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The average, over the last minute, of the percentage of time that this processor was not idle. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32633 |20 |1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space available |fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is free for use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32634 |20 |1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space |fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total capacity in Bytes for {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32635 |20 |1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space used |fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32636 |20 |1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by compression percents |fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32637 |20 |1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by deduplication percents |fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32638 |20 |1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Used space percents |fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of disk space currently in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32639 |20 |1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Cannot takeover cause |fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |140 | | |0 | | | | |2 |NULL |The reason node cannot take over it's HA partner {#PARTNER.NAME}.&eol;Possible states:&eol; ok(1),&eol; unknownReason(2),&eol; disabledByOperator(3),&eol; interconnectOffline(4),&eol; disabledByPartner(5),&eol; takeoverFailed(6),&eol; mailboxIsInDegradedState(7),&eol; partnermailboxIsInUninitialisedState(8),&eol; mailboxVersionMismatch(9),&eol; nvramSizeMismatch(10),&eol; kernelVersionMismatch(11),&eol; partnerIsInBootingStage(12),&eol; diskshelfIsTooHot(13),&eol; partnerIsPerformingRevert(14),&eol; nodeIsPerformingRevert(15),&eol; sametimePartnerIsAlsoTryingToTakeUsOver(16),&eol; alreadyInTakenoverMode(17),&eol; nvramLogUnsynchronized(18),&eol; stateofBackupMailboxIsDoubtful(19). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32640 |20 |1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: HA settings |fas3220.ha[haSettings, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |141 | | |0 | | | | |2 |NULL |High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32641 |20 |1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded |fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32642 |20 |1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors |fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32643 |20 |1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received |fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets received on the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32644 |20 |1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded |fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32645 |20 |1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors |fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets that could not be transmitted because of errors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32646 |20 |1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent |fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets transmitted out of the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32647 |20 |1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason |fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The list of reasons why the port is marked as degraded. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32648 |20 |1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health |fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |0 | | | | |NULL |143 | | |0 | | | | |2 |NULL |The health status of the port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32649 |20 |1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): State |fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |142 | | |0 | | | | |2 |NULL |The link-state of the port. Normally it is either UP(2) or DOWN(3). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32650 |20 |1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Role |fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |145 | | |0 | | | | |2 |NULL |Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32651 |20 |1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed |fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |147 | | |0 | | | | |2 |NULL |The speed appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32652 |20 |1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator |fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |144 | | |0 | | | | |2 |NULL |Indicates whether the port status is set 'UP' by an administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32653 |16 | |10354 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32654 |16 | |10354 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32655 |16 | |10354 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32656 |16 | |10354 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32657 |16 | |10354 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32658 |16 | |10354 |Ignite kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32659 |16 | |10354 |TCP Communication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32660 |16 | |10354 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32661 |16 | |10354 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32662 |16 | |10354 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32663 |16 | |10354 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32664 |16 | |10354 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32665 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32666 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32667 |16 | |10354 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32668 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32669 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32670 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32671 |16 | |10354 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32672 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The core number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32673 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32674 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32675 |16 | |10354 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32676 |16 | |10354 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32677 |16 | |10354 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32678 |16 | |10354 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32679 |16 | |10354 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32680 |16 | |10354 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32681 |16 | |10354 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32682 |16 | |10354 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32683 |16 | |10354 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32684 |16 | |10354 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32685 |16 | |10354 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32686 |16 | |10354 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32687 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32688 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32689 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32690 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32691 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32692 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32693 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32694 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32695 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32696 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32697 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32698 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32699 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32700 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32701 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32702 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Version of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32703 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32704 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Uptime of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32705 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32706 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32708 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32709 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32710 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32711 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32712 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32713 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32714 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32715 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32716 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32717 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32718 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32719 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32720 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32721 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32722 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32723 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32724 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32725 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32726 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32727 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32728 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32729 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32730 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32731 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.system |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32732 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32733 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Ambient: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32734 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32735 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32736 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32737 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32738 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32739 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32740 |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}] |1m |7d |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 |32741 |0 | |10355 |SMART: Get attributes |smart.disk.get |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 |32742 |0 | |10355 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32743 |0 | |10355 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32753 |7 | |10356 |SMART: Get attributes |smart.disk.get |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 |32754 |7 | |10356 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32755 |7 | |10356 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32776 |20 |1.3.6.1.4.1.34774.4.1.1.3.0 |10357 |OceanStor 5300 V5: Status |huawei.5300.v5[status] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System running status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32777 |20 |1.3.6.1.4.1.34774.4.1.1.5.0 |10357 |OceanStor 5300 V5: Capacity total |huawei.5300.v5[totalCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32778 |20 |1.3.6.1.4.1.34774.4.1.1.4.0 |10357 |OceanStor 5300 V5: Capacity used |huawei.5300.v5[usedCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32779 |20 |1.3.6.1.4.1.34774.4.1.1.6.0 |10357 |OceanStor 5300 V5: Version |huawei.5300.v5[version] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The device version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32780 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2] |10357 |BBU discovery |huawei.5300.bbu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of BBU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32781 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1] |10357 |Controllers discovery |huawei.5300.controllers.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of controllers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32782 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4] |10357 |Disks discovery |huawei.5300.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of disks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32783 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2] |10357 |Enclosure discovery |huawei.5300.enclosure.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of enclosures |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32784 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2] |10357 |FANs discovery |huawei.5300.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of FANs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32785 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2] |10357 |LUNs discovery |huawei.5300.lun.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of LUNs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32786 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10357 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes performance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32787 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14] |10357 |Storage pools discovery |huawei.5300.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of storage pools |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32788 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32789 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32790 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX} |10357 |Controller {#ID}: CPU utilization |huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32791 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX} |10357 |Controller {#ID}: Health status |huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32792 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX} |10357 |Controller {#ID}: Memory utilization |huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Memory usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32793 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX} |10357 |Controller {#ID}: Role |huawei.5300.v5[hwInfoControllerRole, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |149 | | |0 | | | | |2 |NULL |Controller role.. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32794 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX} |10357 |Controller {#ID}: Running status |huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32795 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health score |huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Health score of a disk. If the value is 255, indicating invalid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32796 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32797 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32798 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Temperature |huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Disk temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32799 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Health status |huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32800 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Running status |huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32801 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Temperature |huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Enclosure temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32802 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32803 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32804 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX} |10357 |LUN {#NAME}: Average total I/O latency |huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32805 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX} |10357 |LUN {#NAME}: Average read I/O latency |huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average read I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32806 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX} |10357 |LUN {#NAME}: Average write I/O latency |huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average write I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32807 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX} |10357 |LUN {#NAME}: Read operations per second |huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32808 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX} |10357 |LUN {#NAME}: Read traffic per second |huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current read bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32809 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX} |10357 |LUN {#NAME}: Total I/O per second |huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Current IOPS of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32810 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX} |10357 |LUN {#NAME}: Total traffic per second |huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current total bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32811 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Write operations per second |huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32812 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX} |10357 |LUN {#NAME}: Write traffic per second |huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current write bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32813 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Capacity |huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Capacity of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32814 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX} |10357 |LUN {#NAME}: Status |huawei.5300.v5[hwStorageLunStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |151 | | |0 | | | | |2 |NULL |Status of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32815 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX} |10357 |Node {#NODE}: CPU utilization |huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of the node {#NODE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32816 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX} |10357 |Node {#NODE}: Average I/O latency |huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32817 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX} |10357 |Node {#NODE}: Read operations per second |huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32818 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX} |10357 |Node {#NODE}: Read traffic per second |huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Read bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32819 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX} |10357 |Node {#NODE}: Total I/O per second |huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32820 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX} |10357 |Node {#NODE}: Total traffic per second |huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32821 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write operations per second |huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32822 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write traffic per second |huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Write bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32823 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity free |huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Available capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32824 |15 | |10357 |Pool {#NAME}: Capacity used percentage |huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last("huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, \"{#NAME}\"]")/last("huawei.5300.v5[hwInfoStoragePoolTotalCapacity, \"{#NAME}\"]")*100 | |0 | | | | |2 |NULL |Used capacity of a storage pool in percents. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32825 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} |10357 |Pool {#NAME}: Health status |huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32826 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} |10357 |Pool {#NAME}: Running status |huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32827 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity used |huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32828 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity total |huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32829 |0 | |10358 |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 |32830 |0 | |10358 |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 |32831 |0 | |10359 |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 |32832 |0 | |10359 |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 |32833 |0 | |10359 |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 |32834 |0 | |10359 |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 |32835 |0 | |10359 |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 |32836 |0 | |10359 |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 |32837 |0 | |10359 |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 |32838 |0 | |10359 |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 |32839 |0 | |10359 |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 |32884 |0 | |10358 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32885 |0 | |10359 |RabbitMQ: Healthcheck{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |2 |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 |32886 |0 | |10359 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32887 |0 | |10359 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32888 |0 | |10359 |RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32889 |0 | |10359 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32890 |0 | |10359 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |web.page.get["http://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32925 |19 | |10360 |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 |32926 |19 | |10360 |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 |32927 |3 | |10361 |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 |32928 |19 | |10361 |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 |32929 |19 | |10361 |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 |32930 |19 | |10361 |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 |32931 |3 | |10361 |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 |32976 |19 | |10360 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |rabbitmq.healthcheck.alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32977 |19 | |10361 |RabbitMQ: Healthcheck{#SINGLETON} |rabbitmq.healthcheck[{#SINGLETON}] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |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 |32978 |19 | |10361 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32979 |19 | |10361 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |rabbitmq.healthcheck.local_alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32980 |19 | |10361 |RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON} |rabbitmq.healthcheck.mirror_sync[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32981 |19 | |10361 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |rabbitmq.healthcheck.quorum[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |32982 |19 | |10361 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
-ROW |33017 |0 | |10362 |MongoDB: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns a database's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33018 |0 | |10362 |MongoDB: Get Replica Set status |mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the replica set status from the point of view of the member where the method is run. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33019 |0 | |10362 |MongoDB: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33020 |0 | |10362 |MongoDB: Get oplog stats |mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of the replica set, using data polled from the oplog. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33021 |0 | |10362 |MongoDB: Get collections usage stats |mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns usage statistics for each collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33061 |0 | |10362 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33062 |0 | |10362 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33065 |0 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33066 |0 | |10362 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33139 |0 | |10363 |MongoDB cluster: Jumbo chunks |mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of 'jumbo' chunks in the mongo cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33140 |0 | |10363 |MongoDB cluster: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The mongos statistic |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33141 |0 | |10363 |MongoDB cluster: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33142 |0 | |10363 |MongoDB cluster: Get mongodb.connpool.stats |mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns current info about connpool.stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33173 |0 | |10363 |Config servers discovery |mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster config servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33174 |0 | |10363 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33175 |0 | |10363 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33176 |0 | |10363 |Shards discovery |mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster hosts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33177 |0 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33178 |0 | |10363 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33194 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33197 |3 | |10366 |ICMP ping |icmpping |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 |33198 |3 | |10366 |ICMP loss |icmppingloss |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 |33199 |3 | |10366 |ICMP response time |icmppingsec |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 |33200 |17 | |10366 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33201 |20 |1.3.6.1.2.1.1.4.0 |10366 |System contact details |system.contact |1h |7d |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 |33202 |20 |1.3.6.1.2.1.1.1.0 |10366 |System description |system.descr |1h |7d |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 |33203 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10366 |Hardware model name |system.hw.model |1h |7d |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 |33204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10366 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33205 |20 |1.3.6.1.2.1.1.6.0 |10366 |System location |system.location |1h |7d |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 |33206 |20 |1.3.6.1.2.1.1.5.0 |10366 |System name |system.name |1h |7d |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 |33207 |20 |1.3.6.1.2.1.1.2.0 |10366 |System object ID |system.objectid |1m |7d |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 |33208 |20 |1.3.6.1.2.1.1.1.0 |10366 |Operating system |system.sw.os |1h |7d |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 |33209 |20 |1.3.6.1.2.1.1.3.0 |10366 |Uptime |system.uptime |1m |7d |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 |33210 |5 | |10366 |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 |33211 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10366 |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 |33212 |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] |10366 |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 |33213 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10366 |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 |33214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10366 |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 |33215 |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] |10366 |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 |33216 |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] |10366 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33217 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10366 |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 |33218 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10366 |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 |33219 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10366 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33220 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10366 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33221 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33223 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33224 |15 | |10366 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33225 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33226 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33227 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33228 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33229 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33230 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33231 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33232 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33233 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33234 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33235 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33236 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33237 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33238 |3 | |10367 |ICMP ping |icmpping |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 |33239 |3 | |10367 |ICMP loss |icmppingloss |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 |33240 |3 | |10367 |ICMP response time |icmppingsec |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 |33241 |17 | |10367 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33242 |20 |1.3.6.1.2.1.1.4.0 |10367 |System contact details |system.contact |1h |7d |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 |33243 |20 |1.3.6.1.2.1.1.1.0 |10367 |System description |system.descr |1h |7d |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 |33244 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10367 |Hardware model name |system.hw.model |1h |7d |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 |33245 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10367 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33246 |20 |1.3.6.1.2.1.1.6.0 |10367 |System location |system.location |1h |7d |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 |33247 |20 |1.3.6.1.2.1.1.5.0 |10367 |System name |system.name |1h |7d |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 |33248 |20 |1.3.6.1.2.1.1.2.0 |10367 |System object ID |system.objectid |1m |7d |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 |33249 |20 |1.3.6.1.2.1.1.1.0 |10367 |Operating system |system.sw.os |1h |7d |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 |33250 |20 |1.3.6.1.2.1.1.3.0 |10367 |Uptime |system.uptime |1m |7d |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 |33251 |5 | |10367 |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 |33252 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10367 |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 |33253 |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] |10367 |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 |33254 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10367 |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 |33255 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10367 |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 |33256 |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] |10367 |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 |33257 |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] |10367 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33258 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10367 |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 |33259 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10367 |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 |33260 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10367 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33261 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10367 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33262 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33263 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33264 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33265 |15 | |10367 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33266 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33267 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33268 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33269 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33270 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33271 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33272 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33273 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33274 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33275 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33276 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33277 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33278 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33279 |3 | |10368 |ICMP ping |icmpping |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 |33280 |3 | |10368 |ICMP loss |icmppingloss |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 |33281 |3 | |10368 |ICMP response time |icmppingsec |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 |33282 |17 | |10368 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33283 |20 |1.3.6.1.2.1.1.4.0 |10368 |System contact details |system.contact |1h |7d |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 |33284 |20 |1.3.6.1.2.1.1.1.0 |10368 |System description |system.descr |1h |7d |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 |33285 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10368 |Hardware model name |system.hw.model |1h |7d |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 |33286 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10368 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33287 |20 |1.3.6.1.2.1.1.6.0 |10368 |System location |system.location |1h |7d |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 |33288 |20 |1.3.6.1.2.1.1.5.0 |10368 |System name |system.name |1h |7d |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 |33289 |20 |1.3.6.1.2.1.1.2.0 |10368 |System object ID |system.objectid |1m |7d |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 |33290 |20 |1.3.6.1.2.1.1.1.0 |10368 |Operating system |system.sw.os |1h |7d |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 |33291 |20 |1.3.6.1.2.1.1.3.0 |10368 |Uptime |system.uptime |1m |7d |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 |33292 |5 | |10368 |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 |33293 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10368 |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 |33294 |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] |10368 |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 |33295 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10368 |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 |33296 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10368 |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 |33297 |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] |10368 |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 |33298 |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] |10368 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33299 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10368 |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 |33300 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10368 |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 |33301 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10368 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33302 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10368 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33303 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33304 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33305 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33306 |15 | |10368 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33307 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33308 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33309 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33310 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33311 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33312 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33313 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33314 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33315 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33316 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33317 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33318 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33319 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33320 |3 | |10369 |ICMP ping |icmpping |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 |33321 |3 | |10369 |ICMP loss |icmppingloss |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 |33322 |3 | |10369 |ICMP response time |icmppingsec |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 |33323 |17 | |10369 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33324 |20 |1.3.6.1.2.1.1.4.0 |10369 |System contact details |system.contact |1h |7d |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 |33325 |20 |1.3.6.1.2.1.1.1.0 |10369 |System description |system.descr |1h |7d |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 |33326 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10369 |Hardware model name |system.hw.model |1h |7d |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 |33327 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10369 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33328 |20 |1.3.6.1.2.1.1.6.0 |10369 |System location |system.location |1h |7d |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 |33329 |20 |1.3.6.1.2.1.1.5.0 |10369 |System name |system.name |1h |7d |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 |33330 |20 |1.3.6.1.2.1.1.2.0 |10369 |System object ID |system.objectid |1m |7d |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 |33331 |20 |1.3.6.1.2.1.1.1.0 |10369 |Operating system |system.sw.os |1h |7d |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 |33332 |20 |1.3.6.1.2.1.1.3.0 |10369 |Uptime |system.uptime |1m |7d |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 |33333 |5 | |10369 |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 |33334 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10369 |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 |33335 |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] |10369 |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 |33336 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10369 |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 |33337 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10369 |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 |33338 |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] |10369 |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 |33339 |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] |10369 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33340 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10369 |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 |33341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10369 |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 |33342 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10369 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33343 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10369 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33344 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33345 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33346 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33347 |15 | |10369 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33348 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33349 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33350 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33351 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33352 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33353 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33354 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33355 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33356 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33357 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33358 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33359 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33360 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33361 |3 | |10370 |ICMP ping |icmpping |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 |33362 |3 | |10370 |ICMP loss |icmppingloss |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 |33363 |3 | |10370 |ICMP response time |icmppingsec |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 |33364 |17 | |10370 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33365 |20 |1.3.6.1.2.1.1.4.0 |10370 |System contact details |system.contact |1h |7d |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 |33366 |20 |1.3.6.1.2.1.1.1.0 |10370 |System description |system.descr |1h |7d |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 |33367 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10370 |Hardware model name |system.hw.model |1h |7d |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 |33368 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10370 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33369 |20 |1.3.6.1.2.1.1.6.0 |10370 |System location |system.location |1h |7d |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 |33370 |20 |1.3.6.1.2.1.1.5.0 |10370 |System name |system.name |1h |7d |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 |33371 |20 |1.3.6.1.2.1.1.2.0 |10370 |System object ID |system.objectid |1m |7d |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 |33372 |20 |1.3.6.1.2.1.1.1.0 |10370 |Operating system |system.sw.os |1h |7d |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 |33373 |20 |1.3.6.1.2.1.1.3.0 |10370 |Uptime |system.uptime |1m |7d |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 |33374 |5 | |10370 |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 |33375 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10370 |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 |33376 |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] |10370 |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 |33377 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10370 |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 |33378 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10370 |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 |33379 |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] |10370 |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 |33380 |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] |10370 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33381 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10370 |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 |33382 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10370 |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 |33383 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10370 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33384 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10370 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33385 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33386 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33387 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33388 |15 | |10370 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33389 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33390 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33391 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33392 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33393 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33394 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33395 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33396 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33397 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33398 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33399 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33400 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33401 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33402 |3 | |10251 |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 |33403 |3 | |10251 |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 |33404 |3 | |10251 |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 |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |15m |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 |33407 |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 | |% | | |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 |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |15m |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 |33409 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |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 |33410 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |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 |33411 |20 |1.3.6.1.2.1.1.2.0 |10251 |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 |33412 |20 |1.3.6.1.2.1.1.3.0 |10251 |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 |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33414 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33415 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33416 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33417 |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 | | | | |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 |33418 |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 | | | | |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 |33419 |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 | | |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 |33420 |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 | | | | |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 |33421 |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 | | | | |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 |33422 |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 | | |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 |33423 |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 | | |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 |33424 |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 | | | | |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 |33425 |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 | | | | |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 |33426 |15 | |10251 |{#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 |33427 |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 | | |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 |33428 |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 | | |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 |33429 |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 | | |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 |33430 |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 | | |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 |33431 |15 | |10251 |{#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 |33433 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10371 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33434 |20 |1.3.6.1.2.1.1.3.0 |10371 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |15m |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 |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33447 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10371 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33448 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10371 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33449 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10371 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33453 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10371 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33454 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10371 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10371 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.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 |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33463 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10371 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33464 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10371 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33467 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33468 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33471 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33472 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33473 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33474 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33475 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33476 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33477 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33478 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33479 |19 | |10372 |Get chassis |netapp.chassis.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33480 |15 | |10372 |Cluster latency, other |netapp.cluster.statistics.latency.other |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.other) - prev(netapp.cluster.statistics.latency_raw.other)) /&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) +&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33481 |19 | |10372 |Get SVMs |netapp.svms.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name,state,comment | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33482 |19 | |10372 |Get FC ports |netapp.ports.fc.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33483 |19 | |10372 |Get ethernet ports |netapp.ports.eth.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33484 |19 | |10372 |Get nodes |netapp.nodes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=* | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33485 |19 | |10372 |Get LUNs |netapp.luns.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33486 |19 | |10372 |Get FRUs |netapp.frus.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33487 |19 | |10372 |Get disks |netapp.disks.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33488 |15 | |10372 |Cluster latency, write |netapp.cluster.statistics.latency.write |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.write) - prev(netapp.cluster.statistics.latency_raw.write)) /&bsn;( last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) +&bsn;(last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33489 |15 | |10372 |Cluster latency, total |netapp.cluster.statistics.latency.total |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.total) - prev(netapp.cluster.statistics.latency_raw.total)) /&bsn;( last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) +&bsn;(last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33490 |19 | |10372 |Get cluster |netapp.cluster.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33491 |15 | |10372 |Cluster latency, read |netapp.cluster.statistics.latency.read |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.read) - prev(netapp.cluster.statistics.latency_raw.read)) /&bsn;( last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) +&bsn;(last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33492 |19 | |10372 |Get volumes |netapp.volumes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33513 |19 | |10372 |Chassis discovery |netapp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33514 |19 | |10372 |Disks discovery |netapp.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=name,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33516 |19 | |10372 |LUNs discovery |netapp.luns.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33517 |19 | |10372 |Nodes discovery |netapp.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33518 |19 | |10372 |Ethernet ports discovery |netapp.ports.ether.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33519 |19 | |10372 |FC ports discovery |netapp.ports.fc.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=node.name,name,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33520 |19 | |10372 |SVMs discovery |netapp.svms.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33521 |19 | |10372 |Volumes discovery |netapp.volumes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33522 |15 | |10372 |{#VOLUMENAME}: Volume latency, total |netapp.volume.statistics.latency.total[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33523 |15 | |10372 |{#VOLUMENAME}: Volume latency, write |netapp.volume.statistics.latency.write[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33524 |15 | |10372 |{#VOLUMENAME}: Volume latency, read |netapp.volume.statistics.latency.read[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) = 0)) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33525 |15 | |10372 |{#VOLUMENAME}: Volume latency, other |netapp.volume.statistics.latency.other[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33568 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10373 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33569 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10373 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33570 |20 |1.3.6.1.2.1.1.3.0 |10373 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |15m |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 |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33583 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10373 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33584 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10373 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33585 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10373 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33589 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10373 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33590 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10373 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10373 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.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 |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10373 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33599 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10373 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33600 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10373 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33601 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10373 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33604 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33605 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33606 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33608 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33609 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33610 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33611 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33612 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33613 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33614 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33615 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33616 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33617 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33618 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33619 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10374 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33620 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10374 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33621 |20 |1.3.6.1.2.1.1.3.0 |10374 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |15m |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 |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33634 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10374 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33635 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10374 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33636 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10374 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33640 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10374 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33641 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10374 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10374 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.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 |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10374 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33650 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10374 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33651 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10374 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33652 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10374 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33655 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33656 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33657 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33659 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33660 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33661 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33662 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33663 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33664 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33665 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33666 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33667 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33668 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33669 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33670 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10375 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33671 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10375 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33672 |20 |1.3.6.1.2.1.1.3.0 |10375 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |15m |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 |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33685 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10375 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33686 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10375 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33687 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10375 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10375 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33692 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10375 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10375 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.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 |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10375 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33701 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10375 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33702 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10375 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33703 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10375 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33706 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33707 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33708 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33710 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33711 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33712 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33713 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33714 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33715 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33716 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33717 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33718 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33719 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33720 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33721 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10376 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33722 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10376 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33723 |20 |1.3.6.1.2.1.1.3.0 |10376 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |15m |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 |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33736 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10376 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33737 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10376 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33738 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10376 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33742 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10376 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33743 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10376 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10376 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.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 |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10376 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33752 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10376 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33753 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10376 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33754 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10376 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33759 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33761 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33762 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33763 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33764 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33765 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33766 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33767 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33768 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33769 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33770 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33771 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10377 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33773 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10377 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33774 |20 |1.3.6.1.2.1.1.3.0 |10377 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |15m |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 |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33787 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10377 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33788 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10377 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33789 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10377 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10377 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33794 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10377 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10377 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.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 |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10377 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33803 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10377 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33804 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10377 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33805 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10377 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33808 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33809 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33810 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33812 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33813 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33814 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33815 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33816 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33817 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33818 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33819 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33820 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33821 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33822 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33823 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10378 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33824 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10378 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33825 |20 |1.3.6.1.2.1.1.3.0 |10378 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |15m |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 |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33838 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10378 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33839 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10378 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33840 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10378 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33844 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10378 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33845 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10378 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10378 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.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 |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10378 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33854 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10378 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33855 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10378 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33856 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10378 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33861 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33863 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33864 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33865 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33866 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33867 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33868 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33869 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33870 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33871 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33872 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33873 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10379 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33875 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10379 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33876 |20 |1.3.6.1.2.1.1.3.0 |10379 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |15m |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 |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33889 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10379 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33890 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10379 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33891 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10379 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33895 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10379 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33896 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10379 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10379 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.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 |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10379 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33905 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10379 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33906 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10379 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33907 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10379 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33910 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33911 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33912 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33914 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33915 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33916 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33917 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33918 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33919 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33920 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33921 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33922 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33923 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33924 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33925 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10371 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33926 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10371 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33927 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33928 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33929 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33930 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10380 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33931 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10380 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33932 |20 |1.3.6.1.2.1.1.3.0 |10380 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |15m |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 |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33945 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10380 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33946 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10380 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33947 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10380 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33951 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10380 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33952 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10380 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10380 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.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 |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10380 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33961 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10380 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33962 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10380 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33963 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10380 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33966 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33967 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33968 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33970 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33971 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33972 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33973 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33974 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33975 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33976 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33977 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33978 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33979 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33980 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33981 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10381 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33982 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10381 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33983 |20 |1.3.6.1.2.1.1.3.0 |10381 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |15m |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 |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33996 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10381 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33997 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10381 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33998 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10381 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34002 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10381 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34003 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10381 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10381 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.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 |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10381 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34012 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10381 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34013 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10381 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34014 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10381 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34017 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34018 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34019 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34021 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34022 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34023 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34024 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34025 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34026 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34027 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34028 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34029 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34030 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34031 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34032 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10382 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34033 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10382 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34034 |20 |1.3.6.1.2.1.1.3.0 |10382 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |15m |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 |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34047 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10382 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34048 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10382 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34049 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10382 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34053 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10382 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34054 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10382 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10382 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.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 |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10382 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34063 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10382 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34064 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10382 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34065 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10382 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34068 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34069 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34070 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34072 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34073 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34074 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34075 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34076 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34077 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34078 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34079 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34080 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34081 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34082 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34083 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34084 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34085 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34086 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34087 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34088 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34089 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34090 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34091 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34092 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34093 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34094 |16 | |10383 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34095 |16 | |10383 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34096 |16 | |10383 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34097 |16 | |10383 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34098 |16 | |10383 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34099 |16 | |10383 |Servers discovery |jmx.get[beans,"jboss.as:host=master,server-config=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery instances in domain. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34100 |16 | |10383 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*,server-group=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34101 |16 | |10383 |WildFly domain: Server {#SERVER}: Autostart |jmx["{#JMXOBJ}",autoStart] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Whether or not this server should be started when the Host Controller starts. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34102 |16 | |10383 |WildFly domain: Server {#SERVER}: Server group |jmx["{#JMXOBJ}",group] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The name of a server group from the domain model. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34103 |16 | |10383 |WildFly domain: Server {#SERVER}: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current status of the server. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34104 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34105 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34106 |16 | |10384 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34107 |16 | |10384 |WildFly: Transactions: Committed, rate |jmx["jboss.as:subsystem=transactions","numberOfCommittedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of committed transactions |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34108 |16 | |10384 |WildFly: Transactions: Timed out, rate |jmx["jboss.as:subsystem=transactions","numberOfTimedOutTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have rolled back due to timeout. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34109 |16 | |10384 |WildFly: Transactions: System rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfSystemRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back due to internal system errors. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34110 |16 | |10384 |WildFly: Transactions: ResourceRollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfResourceRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that rolled back due to resource (participant) failure. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34111 |16 | |10384 |WildFly: Transactions: Nested, rate |jmx["jboss.as:subsystem=transactions","numberOfNestedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of nested (sub) transactions created. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34112 |16 | |10384 |WildFly: Transactions: Current |jmx["jboss.as:subsystem=transactions","numberOfInflightTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have begun but not yet terminated. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34113 |16 | |10384 |WildFly: Transactions: Heuristics, rate |jmx["jboss.as:subsystem=transactions","numberOfHeuristics"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions which have terminated with heuristic outcomes. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34114 |16 | |10384 |WildFly: Transactions: Application rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfApplicationRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back by application request. This includes those that timeout, since the timeout behavior is considered an attribute of the application configuration. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34115 |16 | |10384 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34116 |16 | |10384 |WildFly: Transactions: Aborted, rate |jmx["jboss.as:subsystem=transactions","numberOfAbortedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of aborted (i.e. rolledback) transactions per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34117 |16 | |10384 |WildFly: Server controller state |jmx["jboss.as:management-root=server","serverState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current state of the server controller; either STARTING, RUNNING, RESTART_REQUIRED, RELOAD_REQUIRED or STOPPING. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34118 |16 | |10384 |WildFly: Runtime configuration state |jmx["jboss.as:management-root=server","runtimeConfigurationState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current persistent configuration state, one of starting, ok, reload-required, restart-required, stopping or stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34119 |16 | |10384 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34120 |16 | |10384 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34121 |16 | |10384 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34122 |16 | |10384 |WildFly: Transactions: Total, rate |jmx["jboss.as:subsystem=transactions","numberOfTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of transactions (top-level and nested) created per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34123 |16 | |10384 |JDBC metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=jdbc"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34124 |16 | |10384 |Pools metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=pool"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34125 |16 | |10384 |Undertow metrics discovery |jmx.get[beans,"jboss.as:subsystem=undertow,server=*,http-listener=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34126 |16 | |10384 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34127 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache access, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAccessCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that the statement cache was accessed per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34128 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache add, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAddCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements added to the statement cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34129 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache current size |jmx["{#JMXOBJ}",PreparedStatementCacheCurrentSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of prepared and callable statements currently cached in the statement cache. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34130 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache delete, rate |jmx["{#JMXOBJ}",PreparedStatementCacheDeleteCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements discarded from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34131 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache hit, rate |jmx["{#JMXOBJ}",PreparedStatementCacheHitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that statements from the cache were used per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34132 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache miss, rate |jmx["{#JMXOBJ}",PreparedStatementCacheMissCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that a statement request could not be satisfied with a statement from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34134 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Active |jmx["{#JMXOBJ}",ActiveCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of open connections. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34135 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg |jmx["{#JMXOBJ}",XACommitAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource commit invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34136 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg |jmx["{#JMXOBJ}",XAStartAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource start invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34137 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate |jmx["{#JMXOBJ}",XARollbackCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource rollback invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34138 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg |jmx["{#JMXOBJ}",XARollbackAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource rollback invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34139 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate |jmx["{#JMXOBJ}",XARecoverCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource recover invocationsper second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34140 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg |jmx["{#JMXOBJ}",XARecoverAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource recover invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34141 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate |jmx["{#JMXOBJ}",XAPrepareCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource prepare invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34142 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg |jmx["{#JMXOBJ}",XAPrepareAverageTime] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource prepare invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34143 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate |jmx["{#JMXOBJ}",XAForgetCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource forget invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34144 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg |jmx["{#JMXOBJ}",XAForgetAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource forget invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34145 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End, rate |jmx["{#JMXOBJ}",XAEndCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource end invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34146 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End time, avg |jmx["{#JMXOBJ}",XAEndAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource end invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34147 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate |jmx["{#JMXOBJ}",XACommitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource commit invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34148 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Wait |jmx["{#JMXOBJ}",WaitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests that had to wait to obtain a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34149 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Available |jmx["{#JMXOBJ}",AvailableCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The available count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34150 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate |jmx["{#JMXOBJ}",TimedOut] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The timed out connections per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34151 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Statistics enabled |jmx["{#JMXOBJ}",statisticsEnabled] |1m |7d |365d |0 |0 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Define whether runtime statistics are enabled or not. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34152 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Used, max |jmx["{#JMXOBJ}",MaxUsedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The maximum number of connections used. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34153 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: In use |jmx["{#JMXOBJ}",InUseCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently in use. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34154 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Idle |jmx["{#JMXOBJ}",IdleCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently idle. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34155 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate |jmx["{#JMXOBJ}",DestroyedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The destroyed count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34156 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate |jmx["{#JMXOBJ}",CreatedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The created per second |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34157 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate |jmx["{#JMXOBJ}",BlockingFailureCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of failures trying to obtain a physical connection per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34158 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg |jmx["{#JMXOBJ}",AverageUsageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent using a physical connection |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34159 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg |jmx["{#JMXOBJ}",AveragePoolTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a physical connection spent in the pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34160 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg |jmx["{#JMXOBJ}",AverageGetTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent obtaining a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34161 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg |jmx["{#JMXOBJ}",AverageCreationTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent creating a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34162 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Blocking time, avg |jmx["{#JMXOBJ}",AverageBlockingTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Average Blocking Time for pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34163 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start rate |jmx["{#JMXOBJ}",XAStartCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource start invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34164 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes received, rate |jmx["{#JMXOBJ}",bytesReceived] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been received by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34165 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes sent, rate |jmx["{#JMXOBJ}",bytesSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been sent out on this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34166 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Errors, rate |jmx["{#JMXOBJ}",errorCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of 500 responses that have been sent by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34167 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Requests, rate |jmx["{#JMXOBJ}",requestCount] |1m |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests this listener has served per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34168 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34169 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled time |jmx["{#JMXOBJ}",enabledTime] |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34170 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34171 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Persistent |jmx["{#JMXOBJ}",persistent] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34172 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current runtime status of a deployment. &eol;Possible status modes are OK, FAILED, and STOPPED. &eol;FAILED indicates a dependency is missing or a service could not start. &eol;STOPPED indicates that the deployment was not enabled or was manually stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34173 |11 | |10327 |MSSQL: Get job status |db.odbc.get[get_job_status,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT sj.name AS JobName&bsn;, sj.enabled AS Enabled&bsn;, sjs.last_run_outcome AS RunStatus&bsn;, sjs.last_outcome_message AS LastRunStatusMessage&bsn;, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS RunDuration&bsn;, CASE sjs.last_run_date&bsn; WHEN 0 THEN NULL&bsn; ELSE msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time)&bsn; END AS LastRunDateTime&bsn;, sja.next_scheduled_run_date AS NextRunDateTime&bsn;FROM msdb..sysjobs AS sj&bsn;LEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id&bsn;LEFT JOIN ( SELECT job.job_id,&bsn; max(act.session_id) AS s_id,&bsn; max(act.next_scheduled_run_date) AS next_scheduled_run_date&bsn; FROM msdb..sysjobs AS job&bsn; LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id&bsn; GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id&bsn;WHERE Enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets sql agent job status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34174 |11 | |10327 |MSSQL: Get last backup |db.odbc.get[get_last_backup,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT bs.database_name as dbname,[type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as timesincelastbackup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration&bsn;FROM msdb.dbo.backupset as bs WHERE bs.database_name not in (&bsn;SELECT&bsn;AGDatabases.database_name AS Databasename&bsn;FROM sys.dm_hadr_availability_group_states States&bsn;INNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id&bsn;INNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id&bsn;WHERE primary_replica != @@Servername OR primary_replica is NULL&bsn;)&bsn;GROUP BY bs.database_name, backup_finish_date, [type], backup_start_date&bsn;HAVING backup_finish_date = (SELECT MAX(backup_finish_date) from msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type])&bsn;ORDER BY bs.database_name | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets information about backup processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34175 |11 | |10327 |Job discovery |db.odbc.discovery[jobname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS jobname FROM msdb..sysjobs WHERE enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning jobs in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34189 |5 | |10047 |Zabbix server: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34207 |5 | |10385 |ZYXEL AAM1212-51 / IES-612: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34208 |20 |.1.3.6.1.2.1.1.4.0 |10385 |ZYXEL AAM1212-51 / IES-612: Contact |zyxel.aam1212.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34209 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10385 |ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version |zyxel.aam1212.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34210 |20 |.1.3.6.1.2.1.1.6.0 |10385 |ZYXEL AAM1212-51 / IES-612: Location |zyxel.aam1212.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34211 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10385 |ZYXEL AAM1212-51 / IES-612: MAC address |zyxel.aam1212.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34212 |20 |.1.3.6.1.2.1.1.1.0 |10385 |ZYXEL AAM1212-51 / IES-612: Hardware model name |zyxel.aam1212.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34213 |20 |.1.3.6.1.2.1.1.5.0 |10385 |ZYXEL AAM1212-51 / IES-612: Host name |zyxel.aam1212.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34214 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10385 |ZYXEL AAM1212-51 / IES-612: Hardware serial number |zyxel.aam1212.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34215 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10385 |ZYXEL AAM1212-51 / IES-612: Alarm status |zyxel.aam1212.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34216 |20 |.1.3.6.1.2.1.1.3.0 |10385 |ZYXEL AAM1212-51 / IES-612: Uptime |zyxel.aam1212.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34217 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10385 |ADSL interface discovery |zyxel.aam1212.net.adsl.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 |34218 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10385 |Ethernet interface discovery |zyxel.aam1212.net.if.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 |34219 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10385 |Temperature discovery |zyxel.aam1212.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34220 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10385 |Voltage discovery |zyxel.aam1212.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34221 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status |zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34222 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation |zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34223 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power |zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34224 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin |zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34225 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation |zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34226 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power |zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34227 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin |zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34228 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic |zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34229 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name |zyxel.aam1212.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34230 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status |zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34231 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic |zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34232 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34233 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34234 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name |zyxel.aam1212.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34235 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34236 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34237 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.aam1212.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34238 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.aam1212.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34239 |5 | |10386 |ZYXEL ES3500-8PD: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34240 |20 |.1.3.6.1.2.1.1.4.0 |10386 |ZYXEL ES3500-8PD: Contact |zyxel.3500_8pd.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34241 |20 |.1.3.6.1.4.1.890.1.5.8.72.12.7.0 |10386 |ZYXEL ES3500-8PD: CPU utilization |zyxel.3500_8pd.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34242 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.72.1] |10386 |ZYXEL ES3500-8PD: ZyNOS F/W Version |zyxel.3500_8pd.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34243 |20 |.1.3.6.1.2.1.1.6.0 |10386 |ZYXEL ES3500-8PD: Location |zyxel.3500_8pd.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34244 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10386 |ZYXEL ES3500-8PD: MAC address |zyxel.3500_8pd.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34245 |20 |.1.3.6.1.2.1.1.1.0 |10386 |ZYXEL ES3500-8PD: Hardware model name |zyxel.3500_8pd.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34246 |20 |.1.3.6.1.2.1.1.5.0 |10386 |ZYXEL ES3500-8PD: Host name |zyxel.3500_8pd.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34247 |20 |.1.3.6.1.4.1.890.1.5.8.72.1.10.0 |10386 |ZYXEL ES3500-8PD: Hardware serial number |zyxel.3500_8pd.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34248 |20 |.1.3.6.1.2.1.1.3.0 |10386 |ZYXEL ES3500-8PD: Uptime |zyxel.3500_8pd.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34249 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.72.124.1.1.2] |10386 |Memory pool discovery |zyxel.3500_8pd.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 |34250 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5] |10386 |Interface discovery |zyxel.3500_8pd.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34251 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.8] |10386 |SFP with DDM discovery |zyxel.3500_8pd.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34252 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2] |10386 |SFP without DDM discovery |zyxel.3500_8pd.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34253 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.72.9.2.1.5] |10386 |Temperature discovery |zyxel.3500_8pd.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34254 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.5] |10386 |Voltage discovery |zyxel.3500_8pd.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34255 |20 |.1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_8pd.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34256 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status |zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |170 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34257 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description |zyxel.3500_8pd.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34258 |15 | |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34259 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34260 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34261 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34262 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34263 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status |zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |171 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34264 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type |zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |169 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34265 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name |zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34266 |15 | |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34267 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34268 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34269 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34270 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34271 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed |zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34272 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |168 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34273 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34274 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code |zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34275 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number |zyxel.3500_8pd.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34276 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision |zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34277 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number |zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34278 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status |zyxel.3500_8pd.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |172 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34279 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34280 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor |zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34281 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_8pd.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34282 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_8pd.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34283 |5 | |10387 |ZYXEL GS-4012F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34284 |20 |.1.3.6.1.2.1.1.4.0 |10387 |ZYXEL GS-4012F: Contact |zyxel.4012f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34285 |20 |.1.3.6.1.4.1.890.1.5.8.20.12.7.0 |10387 |ZYXEL GS-4012F: CPU utilization |zyxel.4012f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34286 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.20.1] |10387 |ZYXEL GS-4012F: ZyNOS F/W Version |zyxel.4012f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34287 |20 |.1.3.6.1.2.1.1.6.0 |10387 |ZYXEL GS-4012F: Location |zyxel.4012f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34288 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10387 |ZYXEL GS-4012F: MAC address |zyxel.4012f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34289 |20 |.1.3.6.1.2.1.1.1.0 |10387 |ZYXEL GS-4012F: Hardware model name |zyxel.4012f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34290 |20 |.1.3.6.1.2.1.1.5.0 |10387 |ZYXEL GS-4012F: Host name |zyxel.4012f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34291 |20 |.1.3.6.1.4.1.890.1.5.8.20.1.10.0 |10387 |ZYXEL GS-4012F: Hardware serial number |zyxel.4012f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34292 |20 |.1.3.6.1.2.1.1.3.0 |10387 |ZYXEL GS-4012F: Uptime |zyxel.4012f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34293 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.1.1.5] |10387 |Fan discovery |zyxel.4012f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34294 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5] |10387 |Interface discovery |zyxel.4012f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34295 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.20.9.2.1.5] |10387 |Temperature discovery |zyxel.4012f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34296 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.5] |10387 |Voltage discovery |zyxel.4012f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34297 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Fan #{#SNMPINDEX} |zyxel.4012f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34298 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status |zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |175 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34299 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description |zyxel.4012f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34300 |15 | |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4012f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34301 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34302 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34303 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34304 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34305 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status |zyxel.4012f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |176 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34306 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type |zyxel.4012f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |174 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34307 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name |zyxel.4012f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34308 |15 | |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4012f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34309 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34310 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34311 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34312 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34313 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed |zyxel.4012f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34314 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |173 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34315 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4012f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34316 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4012f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34317 |5 | |10388 |ZYXEL IES-500x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34318 |20 |.1.3.6.1.2.1.1.4.0 |10388 |ZYXEL IES-500x: Contact |zyxel.ies500x.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34319 |20 |.1.3.6.1.2.1.1.6.0 |10388 |ZYXEL IES-500x: Location |zyxel.ies500x.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34320 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10388 |ZYXEL IES-500x: MAC address |zyxel.ies500x.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34321 |20 |.1.3.6.1.2.1.1.1.0 |10388 |ZYXEL IES-500x: Hardware model name |zyxel.ies500x.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34322 |20 |.1.3.6.1.2.1.1.5.0 |10388 |ZYXEL IES-500x: Host name |zyxel.ies500x.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34323 |20 |.1.3.6.1.2.1.1.3.0 |10388 |ZYXEL IES-500x: Uptime |zyxel.ies500x.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34324 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10388 |Packet buffer discovery |zyxel.ies500x.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34325 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10388 |CPU discovery |zyxel.ies500x.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34326 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10388 |Fan discovery |zyxel.ies500x.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34327 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10388 |Memory discovery |zyxel.ies500x.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34328 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10388 |ADSL interface discovery |zyxel.ies500x.net.adsl.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 |34329 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10388 |Ethernet interface discovery |zyxel.ies500x.net.if.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 |34330 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10388 |Slot discovery |zyxel.ies500x.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34331 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10388 |Temperature discovery |zyxel.ies500x.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34332 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10388 |Voltage discovery |zyxel.ies500x.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34333 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies500x.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34334 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies500x.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34335 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Fan #{#SNMPINDEX} |zyxel.ies500x.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34336 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies500x.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34337 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34338 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34339 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34340 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34341 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34342 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34343 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies500x.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34344 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34345 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34346 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34347 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34348 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34349 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34350 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34351 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34352 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34353 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34354 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34355 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status |zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34356 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description |zyxel.ies500x.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34357 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed |zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34358 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34359 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34360 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34361 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34362 |15 | |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies500x.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34363 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name |zyxel.ies500x.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34364 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status |zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34365 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34366 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34367 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34368 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34369 |15 | |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies500x.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34370 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies500x.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34371 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34372 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies500x.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34373 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34374 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34375 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34376 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies500x.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34377 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies500x.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34378 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies500x.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34379 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies500x.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |178 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34380 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies500x.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |179 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34381 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies500x.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34382 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies500x.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34383 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies500x.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34384 |5 | |10389 |ZYXEL IES-6000: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34385 |20 |.1.3.6.1.2.1.1.4.0 |10389 |ZYXEL IES-6000: Contact |zyxel.ies6000.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34386 |20 |.1.3.6.1.2.1.1.6.0 |10389 |ZYXEL IES-6000: Location |zyxel.ies6000.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34387 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10389 |ZYXEL IES-6000: MAC address |zyxel.ies6000.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34388 |20 |.1.3.6.1.2.1.1.1.0 |10389 |ZYXEL IES-6000: Hardware model name |zyxel.ies6000.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34389 |20 |.1.3.6.1.2.1.1.5.0 |10389 |ZYXEL IES-6000: Host name |zyxel.ies6000.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34390 |20 |.1.3.6.1.2.1.1.3.0 |10389 |ZYXEL IES-6000: Uptime |zyxel.ies6000.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34391 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10389 |Packet buffer discovery |zyxel.ies6000.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34392 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10389 |CPU discovery |zyxel.ies6000.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34393 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10389 |Fan discovery |zyxel.ies6000.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34394 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10389 |Memory discovery |zyxel.ies6000.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34395 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10389 |ADSL interface discovery |zyxel.ies6000.net.adsl.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 |34396 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10389 |Ethernet interface discovery |zyxel.ies6000.net.if.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 |34397 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10389 |Slot discovery |zyxel.ies6000.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34398 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10389 |Temperature discovery |zyxel.ies6000.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34399 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10389 |Voltage discovery |zyxel.ies6000.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34400 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies6000.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34401 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies6000.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34402 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Fan #{#SNMPINDEX} |zyxel.ies6000.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34403 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies6000.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34404 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34405 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34406 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34407 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34408 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34409 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34410 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies6000.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34411 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34412 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34413 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34414 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34415 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34416 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34417 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34418 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34419 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34420 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34421 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34422 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status |zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34423 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description |zyxel.ies6000.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34424 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed |zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34425 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34426 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34427 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34428 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34429 |15 | |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies6000.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34430 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name |zyxel.ies6000.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34431 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status |zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34432 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34433 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34434 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34435 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34436 |15 | |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies6000.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34437 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies6000.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34438 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34439 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies6000.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34440 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34441 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34442 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34443 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies6000.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34444 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies6000.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34445 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies6000.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34446 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies6000.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |184 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34447 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies6000.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |185 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34448 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies6000.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34449 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies6000.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34450 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies6000.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34451 |5 | |10390 |ZYXEL IES1248-51: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34452 |20 |.1.3.6.1.2.1.1.4.0 |10390 |ZYXEL IES1248-51: Contact |zyxel.ies1248.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34453 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10390 |ZYXEL IES1248-51: ZyNOS F/W Version |zyxel.ies1248.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34454 |20 |.1.3.6.1.2.1.1.6.0 |10390 |ZYXEL IES1248-51: Location |zyxel.ies1248.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34455 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10390 |ZYXEL IES1248-51: MAC address |zyxel.ies1248.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34456 |20 |.1.3.6.1.2.1.1.1.0 |10390 |ZYXEL IES1248-51: Hardware model name |zyxel.ies1248.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34457 |20 |.1.3.6.1.2.1.1.5.0 |10390 |ZYXEL IES1248-51: Host name |zyxel.ies1248.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34458 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10390 |ZYXEL IES1248-51: Hardware serial number |zyxel.ies1248.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34459 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10390 |ZYXEL IES1248-51: Alarm status |zyxel.ies1248.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34460 |20 |.1.3.6.1.2.1.1.3.0 |10390 |ZYXEL IES1248-51: Uptime |zyxel.ies1248.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34461 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.1.1.5] |10390 |Fan discovery |zyxel.ies1248.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34462 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10390 |ADSL interface discovery |zyxel.ies1248.net.adsl.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 |34463 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10390 |Ethernet interface discovery |zyxel.ies1248.net.if.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 |34464 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10390 |Temperature discovery |zyxel.ies1248.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34465 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10390 |Voltage discovery |zyxel.ies1248.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34466 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Fan #{#SNMPINDEX} |zyxel.ies1248.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34467 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status |zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34468 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation |zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34469 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power |zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34470 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin |zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34471 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation |zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34472 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power |zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34473 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin |zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34474 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34475 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34476 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status |zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34477 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34478 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34479 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34480 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34481 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34482 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34483 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies1248.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34484 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies1248.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34485 |5 | |10391 |ZYXEL MES-3528: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34486 |20 |.1.3.6.1.2.1.1.4.0 |10391 |ZYXEL MES-3528: Contact |zyxel.3528.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34487 |20 |.1.3.6.1.4.1.890.1.5.8.51.12.7.0 |10391 |ZYXEL MES-3528: CPU utilization |zyxel.3528.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34488 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.51.1] |10391 |ZYXEL MES-3528: ZyNOS F/W Version |zyxel.3528.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34489 |20 |.1.3.6.1.2.1.1.6.0 |10391 |ZYXEL MES-3528: Location |zyxel.3528.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34490 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10391 |ZYXEL MES-3528: MAC address |zyxel.3528.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34491 |20 |.1.3.6.1.2.1.1.1.0 |10391 |ZYXEL MES-3528: Hardware model name |zyxel.3528.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34492 |20 |.1.3.6.1.2.1.1.5.0 |10391 |ZYXEL MES-3528: Host name |zyxel.3528.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34493 |20 |.1.3.6.1.4.1.890.1.5.8.51.1.10.0 |10391 |ZYXEL MES-3528: Hardware serial number |zyxel.3528.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34494 |20 |.1.3.6.1.2.1.1.3.0 |10391 |ZYXEL MES-3528: Uptime |zyxel.3528.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34495 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5] |10391 |Interface discovery |zyxel.3528.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34496 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.8] |10391 |SFP with DDM discovery |zyxel.3528.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34497 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2] |10391 |SFP without DDM discovery |zyxel.3528.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34498 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status |zyxel.3528.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |197 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34499 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description |zyxel.3528.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34500 |15 | |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3528.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34501 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34502 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3528.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34503 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34504 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34505 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status |zyxel.3528.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |198 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34506 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link type |zyxel.3528.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |196 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34507 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name |zyxel.3528.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34508 |15 | |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization |zyxel.3528.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34509 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34510 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic |zyxel.3528.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34511 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34512 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34513 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed |zyxel.3528.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34514 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex |zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |195 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34515 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3528.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34516 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code |zyxel.3528.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34517 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number |zyxel.3528.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34518 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision |zyxel.3528.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34519 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number |zyxel.3528.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34520 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Status |zyxel.3528.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |199 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34521 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver |zyxel.3528.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34522 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor |zyxel.3528.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34523 |5 | |10392 |ZYXEL MES3500-10: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34524 |20 |.1.3.6.1.2.1.1.4.0 |10392 |ZYXEL MES3500-10: Contact |zyxel.3500_10.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34525 |20 |.1.3.6.1.4.1.890.1.5.8.80.12.7.0 |10392 |ZYXEL MES3500-10: CPU utilization |zyxel.3500_10.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34526 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.80.1] |10392 |ZYXEL MES3500-10: ZyNOS F/W Version |zyxel.3500_10.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34527 |20 |.1.3.6.1.2.1.1.6.0 |10392 |ZYXEL MES3500-10: Location |zyxel.3500_10.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34528 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10392 |ZYXEL MES3500-10: MAC address |zyxel.3500_10.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34529 |20 |.1.3.6.1.2.1.1.1.0 |10392 |ZYXEL MES3500-10: Hardware model name |zyxel.3500_10.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34530 |20 |.1.3.6.1.2.1.1.5.0 |10392 |ZYXEL MES3500-10: Host name |zyxel.3500_10.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34531 |20 |.1.3.6.1.4.1.890.1.5.8.80.1.10.0 |10392 |ZYXEL MES3500-10: Hardware serial number |zyxel.3500_10.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34532 |20 |.1.3.6.1.2.1.1.3.0 |10392 |ZYXEL MES3500-10: Uptime |zyxel.3500_10.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34533 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.80.124.1.1.2] |10392 |Memory pool discovery |zyxel.3500_10.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 |34534 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5] |10392 |Interface discovery |zyxel.3500_10.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34535 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.8] |10392 |SFP with DDM discovery |zyxel.3500_10.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34536 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2] |10392 |SFP without DDM discovery |zyxel.3500_10.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34537 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.80.9.2.1.5] |10392 |Temperature discovery |zyxel.3500_10.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34538 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.5] |10392 |Voltage discovery |zyxel.3500_10.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34539 |20 |.1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_10.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34540 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status |zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |202 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34541 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description |zyxel.3500_10.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34542 |15 | |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_10.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34543 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34544 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34545 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34546 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34547 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status |zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |203 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34548 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type |zyxel.3500_10.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |201 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34549 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name |zyxel.3500_10.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34550 |15 | |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_10.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34551 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34552 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34553 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34554 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34555 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed |zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34556 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |200 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34557 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_10.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34558 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code |zyxel.3500_10.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34559 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number |zyxel.3500_10.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34560 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision |zyxel.3500_10.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34561 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number |zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34562 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status |zyxel.3500_10.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |204 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34563 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34564 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor |zyxel.3500_10.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34565 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_10.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34566 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_10.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34567 |5 | |10393 |ZYXEL MES3500-24: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34568 |20 |.1.3.6.1.2.1.1.4.0 |10393 |ZYXEL MES3500-24: Contact |zyxel.3500_24.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34569 |20 |.1.3.6.1.4.1.890.1.5.8.68.12.7.0 |10393 |ZYXEL MES3500-24: CPU utilization |zyxel.3500_24.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34570 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.68.1] |10393 |ZYXEL MES3500-24: ZyNOS F/W Version |zyxel.3500_24.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34571 |20 |.1.3.6.1.2.1.1.6.0 |10393 |ZYXEL MES3500-24: Location |zyxel.3500_24.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34572 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10393 |ZYXEL MES3500-24: MAC address |zyxel.3500_24.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34573 |20 |.1.3.6.1.2.1.1.1.0 |10393 |ZYXEL MES3500-24: Hardware model name |zyxel.3500_24.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34574 |20 |.1.3.6.1.2.1.1.5.0 |10393 |ZYXEL MES3500-24: Host name |zyxel.3500_24.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34575 |20 |.1.3.6.1.4.1.890.1.5.8.68.1.10.0 |10393 |ZYXEL MES3500-24: Hardware serial number |zyxel.3500_24.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34576 |20 |.1.3.6.1.2.1.1.3.0 |10393 |ZYXEL MES3500-24: Uptime |zyxel.3500_24.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34577 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.68.124.1.1.2] |10393 |Memory pool discovery |zyxel.3500_24.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 |34578 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5] |10393 |Interface discovery |zyxel.3500_24.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34579 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.8] |10393 |SFP with DDM discovery |zyxel.3500_24.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34580 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2] |10393 |SFP without DDM discovery |zyxel.3500_24.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34581 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.68.9.2.1.5] |10393 |Temperature discovery |zyxel.3500_24.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34582 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.5] |10393 |Voltage discovery |zyxel.3500_24.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34583 |20 |.1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_24.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34584 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |207 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34585 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description |zyxel.3500_24.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34586 |15 | |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34587 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34588 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34589 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34590 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34591 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status |zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |208 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34592 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type |zyxel.3500_24.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |206 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34593 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name |zyxel.3500_24.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34594 |15 | |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34595 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34596 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34597 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34598 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34599 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed |zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34600 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |205 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34601 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34602 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code |zyxel.3500_24.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34603 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number |zyxel.3500_24.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34604 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision |zyxel.3500_24.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34605 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34606 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status |zyxel.3500_24.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |209 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34607 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34608 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34609 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_24.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34610 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_24.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34611 |5 | |10394 |ZYXEL MGS-3712: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34612 |20 |.1.3.6.1.2.1.1.4.0 |10394 |ZYXEL MGS-3712: Contact |zyxel.3712.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34613 |20 |.1.3.6.1.4.1.890.1.5.8.47.11.7.0 |10394 |ZYXEL MGS-3712: CPU utilization |zyxel.3712.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34614 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.47.1] |10394 |ZYXEL MGS-3712: ZyNOS F/W Version |zyxel.3712.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34615 |20 |.1.3.6.1.2.1.1.6.0 |10394 |ZYXEL MGS-3712: Location |zyxel.3712.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34616 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10394 |ZYXEL MGS-3712: MAC address |zyxel.3712.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34617 |20 |.1.3.6.1.2.1.1.1.0 |10394 |ZYXEL MGS-3712: Hardware model name |zyxel.3712.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34618 |20 |.1.3.6.1.2.1.1.5.0 |10394 |ZYXEL MGS-3712: Host name |zyxel.3712.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34619 |20 |.1.3.6.1.4.1.890.1.5.8.47.1.10.0 |10394 |ZYXEL MGS-3712: Hardware serial number |zyxel.3712.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34620 |20 |.1.3.6.1.2.1.1.3.0 |10394 |ZYXEL MGS-3712: Uptime |zyxel.3712.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34621 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.1.1.5] |10394 |Fan discovery |zyxel.3712.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34622 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5] |10394 |Interface discovery |zyxel.3712.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34623 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.8] |10394 |SFP with DDM discovery |zyxel.3712.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34624 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2] |10394 |SFP without DDM discovery |zyxel.3712.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34625 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.47.8.2.1.5] |10394 |Temperature discovery |zyxel.3712.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34626 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.5] |10394 |Voltage discovery |zyxel.3712.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34627 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Fan #{#SNMPINDEX} |zyxel.3712.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34628 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status |zyxel.3712.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |212 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34629 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description |zyxel.3712.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34630 |15 | |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34631 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34632 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34633 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34634 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34635 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status |zyxel.3712.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |213 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34636 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type |zyxel.3712.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |211 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34637 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name |zyxel.3712.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34638 |15 | |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34639 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34640 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34641 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34642 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34643 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed |zyxel.3712.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34644 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |210 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34645 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34646 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code |zyxel.3712.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34647 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number |zyxel.3712.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34648 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision |zyxel.3712.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34649 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number |zyxel.3712.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34650 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status |zyxel.3712.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |214 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34651 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver |zyxel.3712.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34652 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor |zyxel.3712.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34653 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34654 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34655 |5 | |10395 |ZYXEL MGS-3712F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34656 |20 |.1.3.6.1.2.1.1.4.0 |10395 |ZYXEL MGS-3712F: Contact |zyxel.3712f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34657 |20 |.1.3.6.1.4.1.890.1.5.8.48.11.7.0 |10395 |ZYXEL MGS-3712F: CPU utilization |zyxel.3712f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34658 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.48.1] |10395 |ZYXEL MGS-3712F: ZyNOS F/W Version |zyxel.3712f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34659 |20 |.1.3.6.1.2.1.1.6.0 |10395 |ZYXEL MGS-3712F: Location |zyxel.3712f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34660 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10395 |ZYXEL MGS-3712F: MAC address |zyxel.3712f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34661 |20 |.1.3.6.1.2.1.1.1.0 |10395 |ZYXEL MGS-3712F: Hardware model name |zyxel.3712f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34662 |20 |.1.3.6.1.2.1.1.5.0 |10395 |ZYXEL MGS-3712F: Host name |zyxel.3712f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34663 |20 |.1.3.6.1.4.1.890.1.5.8.48.1.10.0 |10395 |ZYXEL MGS-3712F: Hardware serial number |zyxel.3712f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34664 |20 |.1.3.6.1.2.1.1.3.0 |10395 |ZYXEL MGS-3712F: Uptime |zyxel.3712f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34665 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.1.1.5] |10395 |Fan discovery |zyxel.3712f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34666 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5] |10395 |Interface discovery |zyxel.3712f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34667 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.8] |10395 |SFP with DDM discovery |zyxel.3712f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34668 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2] |10395 |SFP without DDM discovery |zyxel.3712f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34669 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.48.8.2.1.5] |10395 |Temperature discovery |zyxel.3712f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34670 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.5] |10395 |Voltage discovery |zyxel.3712f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34671 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Fan #{#SNMPINDEX} |zyxel.3712f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34672 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status |zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |217 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34673 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description |zyxel.3712f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34674 |15 | |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34675 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34676 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34677 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34678 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34679 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status |zyxel.3712f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |218 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34680 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type |zyxel.3712f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |216 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34681 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name |zyxel.3712f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34682 |15 | |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34683 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34684 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34685 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34686 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34687 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed |zyxel.3712f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34688 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |215 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34689 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34690 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code |zyxel.3712f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34691 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number |zyxel.3712f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34692 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision |zyxel.3712f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34693 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number |zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34694 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status |zyxel.3712f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |219 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34695 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver |zyxel.3712f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34696 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor |zyxel.3712f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34697 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34698 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34699 |5 | |10396 |ZYXEL MES3500-24S: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34700 |20 |.1.3.6.1.2.1.1.4.0 |10396 |ZYXEL MES3500-24S: Contact |zyxel.3500_24s.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34701 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10396 |ZYXEL MES3500-24S: CPU utilization |zyxel.3500_24s.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34702 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10396 |ZYXEL MES3500-24S: ZyNOS F/W Version |zyxel.3500_24s.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34703 |20 |.1.3.6.1.2.1.1.6.0 |10396 |ZYXEL MES3500-24S: Location |zyxel.3500_24s.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34704 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10396 |ZYXEL MES3500-24S: MAC address |zyxel.3500_24s.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34705 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10396 |ZYXEL MES3500-24S: Memory utilization |zyxel.3500_24s.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34706 |20 |.1.3.6.1.2.1.1.1.0 |10396 |ZYXEL MES3500-24S: Hardware model name |zyxel.3500_24s.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34707 |20 |.1.3.6.1.2.1.1.5.0 |10396 |ZYXEL MES3500-24S: Host name |zyxel.3500_24s.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34708 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10396 |ZYXEL MES3500-24S: Hardware serial number |zyxel.3500_24s.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34709 |20 |.1.3.6.1.2.1.1.3.0 |10396 |ZYXEL MES3500-24S: Uptime |zyxel.3500_24s.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34710 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10396 |Fan discovery |zyxel.3500_24s.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34711 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10396 |Interface discovery |zyxel.3500_24s.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34712 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10396 |SFP with DDM discovery |zyxel.3500_24s.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34713 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10396 |SFP without DDM discovery |zyxel.3500_24s.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34714 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10396 |Temperature discovery |zyxel.3500_24s.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34715 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10396 |Voltage discovery |zyxel.3500_24s.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34716 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3500_24s.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34717 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34718 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description |zyxel.3500_24s.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34719 |15 | |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34720 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34721 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34722 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34723 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34724 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status |zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |223 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34725 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type |zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |221 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34726 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name |zyxel.3500_24s.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34727 |15 | |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34728 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34729 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34730 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34731 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34732 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed |zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34733 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34734 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34735 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code |zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34736 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number |zyxel.3500_24s.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34737 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision |zyxel.3500_24s.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34738 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34739 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status |zyxel.3500_24s.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |224 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34740 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34741 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34742 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3500_24s.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34743 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3500_24s.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34744 |5 | |10397 |ZYXEL MGS3520-28x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34745 |20 |.1.3.6.1.2.1.1.4.0 |10397 |ZYXEL MGS3520-28x: Contact |zyxel.3520_28.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34746 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10397 |ZYXEL MGS3520-28x: CPU utilization |zyxel.3520_28.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34747 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10397 |ZYXEL MGS3520-28x: ZyNOS F/W Version |zyxel.3520_28.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34748 |20 |.1.3.6.1.2.1.1.6.0 |10397 |ZYXEL MGS3520-28x: Location |zyxel.3520_28.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34749 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10397 |ZYXEL MGS3520-28x: MAC address |zyxel.3520_28.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34750 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10397 |ZYXEL MGS3520-28x: Memory utilization |zyxel.3520_28.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34751 |20 |.1.3.6.1.2.1.1.1.0 |10397 |ZYXEL MGS3520-28x: Hardware model name |zyxel.3520_28.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34752 |20 |.1.3.6.1.2.1.1.5.0 |10397 |ZYXEL MGS3520-28x: Host name |zyxel.3520_28.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34753 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10397 |ZYXEL MGS3520-28x: Hardware serial number |zyxel.3520_28.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34754 |20 |.1.3.6.1.2.1.1.3.0 |10397 |ZYXEL MGS3520-28x: Uptime |zyxel.3520_28.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34755 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10397 |Fan discovery |zyxel.3520_28.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34756 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10397 |Interface discovery |zyxel.3520_28.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34757 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10397 |SFP with DDM discovery |zyxel.3520_28.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34758 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10397 |SFP without DDM discovery |zyxel.3520_28.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34759 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10397 |Temperature discovery |zyxel.3520_28.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34760 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10397 |Voltage discovery |zyxel.3520_28.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34761 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3520_28.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34762 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status |zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |227 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34763 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description |zyxel.3520_28.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34764 |15 | |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3520_28.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34765 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34766 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34767 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34768 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34769 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status |zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |228 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34770 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type |zyxel.3520_28.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |226 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34771 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name |zyxel.3520_28.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34772 |15 | |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization |zyxel.3520_28.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34773 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34774 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic |zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34775 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34776 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34777 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed |zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34778 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex |zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |225 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34779 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3520_28.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34780 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code |zyxel.3520_28.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34781 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number |zyxel.3520_28.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34782 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision |zyxel.3520_28.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34783 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number |zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34784 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status |zyxel.3520_28.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |229 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34785 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver |zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34786 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor |zyxel.3520_28.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34787 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3520_28.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34788 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3520_28.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34789 |5 | |10398 |ZYXEL XGS-4728F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34790 |20 |.1.3.6.1.2.1.1.4.0 |10398 |ZYXEL XGS-4728F: Contact |zyxel.4728f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34791 |20 |.1.3.6.1.4.1.890.1.5.8.46.12.7.0 |10398 |ZYXEL XGS-4728F: CPU utilization |zyxel.4728f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34792 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.46.1] |10398 |ZYXEL XGS-4728F: ZyNOS F/W Version |zyxel.4728f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34793 |20 |.1.3.6.1.2.1.1.6.0 |10398 |ZYXEL XGS-4728F: Location |zyxel.4728f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34794 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10398 |ZYXEL XGS-4728F: MAC address |zyxel.4728f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34795 |20 |.1.3.6.1.2.1.1.1.0 |10398 |ZYXEL XGS-4728F: Hardware model name |zyxel.4728f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34796 |20 |.1.3.6.1.2.1.1.5.0 |10398 |ZYXEL XGS-4728F: Host name |zyxel.4728f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34797 |20 |.1.3.6.1.4.1.890.1.5.8.46.1.10.0 |10398 |ZYXEL XGS-4728F: Hardware serial number |zyxel.4728f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34798 |20 |.1.3.6.1.2.1.1.3.0 |10398 |ZYXEL XGS-4728F: Uptime |zyxel.4728f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34799 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.1.1.5] |10398 |Fan discovery |zyxel.4728f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34800 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.46.124.1.1.2] |10398 |Memory pool discovery |zyxel.4728f.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 |34801 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5] |10398 |Interface discovery |zyxel.4728f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34802 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.8] |10398 |SFP with DDM discovery |zyxel.4728f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34803 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2] |10398 |SFP without DDM discovery |zyxel.4728f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34804 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.46.9.2.1.5] |10398 |Temperature discovery |zyxel.4728f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34805 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.5] |10398 |Voltage discovery |zyxel.4728f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34806 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Fan #{#SNMPINDEX} |zyxel.4728f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34807 |20 |.1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.4728f.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34808 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status |zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |232 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34809 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description |zyxel.4728f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34810 |15 | |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4728f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34811 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34812 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34813 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34814 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34815 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status |zyxel.4728f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |233 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34816 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type |zyxel.4728f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |231 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34817 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name |zyxel.4728f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34818 |15 | |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4728f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34819 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34820 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34821 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34822 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34823 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed |zyxel.4728f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34824 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |230 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34825 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.4728f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34826 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code |zyxel.4728f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34827 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number |zyxel.4728f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34828 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision |zyxel.4728f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34829 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number |zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34830 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status |zyxel.4728f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |234 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34831 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver |zyxel.4728f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34832 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34833 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34834 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34835 |19 | |10399 |Nginx: Get connections |nginx.connections |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns statistics of client connections. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/connections/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34836 |19 | |10399 |Nginx: Get info |nginx.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Return status of nginx running instance. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/nginx/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34837 |19 | |10399 |Nginx: Get Stream server zones |nginx.stream.server_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each stream server zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/stream/server_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34838 |19 | |10399 |Nginx: Get SSL |nginx.ssl |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns SSL statistics. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/ssl/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34839 |19 | |10399 |Nginx: Get resolvers |nginx.resolvers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each resolver zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/resolvers/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34840 |19 | |10399 |Nginx: Get requests |nginx.requests |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of client HTTP requests. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/requests/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34841 |19 | |10399 |Nginx: Get Stream upstreams |nginx.stream.upstreams |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of each stream upstream server group and its servers. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/stream/upstreams/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34842 |19 | |10399 |Nginx: Get HTTP upstreams |nginx.http.upstreams |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of each HTTP upstream server group and its servers. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/upstreams/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34843 |19 | |10399 |Nginx: Get HTTP location zones |nginx.http.location_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each HTTP location zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/location_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34844 |19 | |10399 |Nginx: Get HTTP zones |nginx.http.server_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each HTTP server zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/server_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34944 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |34945 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34946 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |cisco.ucs.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |34947 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |cisco.ucs.descr[sysDescr.0] |15m |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 |34948 |20 |1.3.6.1.2.1.1.6.0 |10400 |System location |cisco.ucs.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |34949 |20 |1.3.6.1.2.1.1.5.0 |10400 |System name |cisco.ucs.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34950 |20 |1.3.6.1.2.1.1.2.0 |10400 |System object ID |cisco.ucs.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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining 'what&eol;kind of box' is being managed. For example, if vendor 'Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34951 |20 |1.3.6.1.2.1.1.3.0 |10400 |Uptime |cisco.ucs.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time in seconds since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34952 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34953 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34954 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10400 |Array controller cache discovery |cisco.ucs.array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34955 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10400 |Array controller discovery |cisco.ucs.array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34956 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10400 |FAN discovery |cisco.ucs.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 |34957 |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] |10400 |Network interface discovery |cisco.ucs.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 |34958 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10400 |Physical disk discovery |cisco.ucs.physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34959 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10400 |PSU discovery |cisco.ucs.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 |34960 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10400 |Temperature CPU discovery |cisco.ucs.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 |34961 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10400 |Temperature discovery |cisco.ucs.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 |34962 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10400 |Unit discovery |cisco.ucs.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 |34963 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10400 |Virtual disk discovery |cisco.ucs.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 |34964 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10400 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |cisco.ucs.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 |34965 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10400 |{#DISKARRAY_LOCATION}: Disk array controller model |cisco.ucs.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 |34966 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10400 |{#DISKARRAY_LOCATION}: Disk array controller status |cisco.ucs.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:RaidBattery:operability managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34967 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10400 |{#FAN_LOCATION}: Fan status |cisco.ucs.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 |34968 |20 |1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Interface description |cisco.ucs.if.descr[ifDescr.{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the&eol;interface. This string should include the name of the&eol;manufacturer, the product name and the version of the&eol;interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34969 |20 |1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Broadcast packets received |cisco.ucs.if.in.broadcast[ifHCInBroadcastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. This object is a 64-bit version&eol;of ifInBroadcastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34970 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |cisco.ucs.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 |34971 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |cisco.ucs.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 |34972 |20 |1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Multicast packets received |cisco.ucs.if.in.multicast[ifHCInMulticastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. This object&eol;is a 64-bit version of ifInMulticastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34973 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Bits received |cisco.ucs.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 |34974 |20 |1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent |cisco.ucs.if.out.broadcast[ifHCOutBroadcastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. This object is a 64-bit version&eol;of ifOutBroadcastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34975 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |cisco.ucs.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 |34976 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |cisco.ucs.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 |34977 |20 |1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Multicast packets sent |cisco.ucs.if.out.multicast[ifHCOutMulticastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. This object&eol;is a 64-bit version of ifOutMulticastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34978 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Bits sent |cisco.ucs.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 |34979 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Speed |cisco.ucs.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 |34980 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Operational status |cisco.ucs.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 |34981 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Interface type |cisco.ucs.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 |34982 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.17.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk media type |cisco.ucs.hw.physicaldisk.media_type[cucsStorageLocalDiskDeviceType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |235 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:deviceType managed object property. Actually returns 'HDD' or 'SSD'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34983 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk model name |cisco.ucs.hw.physicaldisk.model[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. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34984 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk serial number |cisco.ucs.hw.physicaldisk.serialnumber[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |90d |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 |34985 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Disk size |cisco.ucs.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 |34986 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk status |cisco.ucs.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 |34987 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10400 |{#PSU_LOCATION}: Power supply status |cisco.ucs.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 |34988 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}: Temperature |cisco.ucs.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 |34989 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.IOH: Temperature |cisco.ucs.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 |34990 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Ambient: Temperature |cisco.ucs.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 |34991 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Front: Temperature |cisco.ucs.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 |34992 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Rear: Temperature |cisco.ucs.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 |34993 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Hardware model name |cisco.ucs.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 |34994 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Hardware serial number |cisco.ucs.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 |34995 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Overall system health status |cisco.ucs.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 |34996 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Layout type |cisco.ucs.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 |34997 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Disk size |cisco.ucs.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 |34998 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Status |cisco.ucs.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 |35041 |20 |1.3.6.1.2.1.1.4.0 |10402 |Dell R720: System contact details |dell.server.contact[sysContact] |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 |35042 |20 |1.3.6.1.2.1.1.1.0 |10402 |Dell R720: System description |dell.server.descr[sysDescr] |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 |35043 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10402 |Dell R720: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35044 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10402 |Dell R720: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35045 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10402 |Dell R720: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35046 |20 |1.3.6.1.2.1.1.6.0 |10402 |Dell R720: System location |dell.server.location[sysLocation] |15m |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 |35047 |20 |1.3.6.1.2.1.1.5.0 |10402 |Dell R720: System name |dell.server.name[sysName] |15m |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 |35048 |20 |1.3.6.1.2.1.1.2.0 |10402 |Dell R720: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35049 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10402 |Dell R720: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35050 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10402 |Dell R720: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35051 |20 |1.3.6.1.2.1.1.3.0 |10402 |Dell R720: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35052 |17 | |10402 |Dell R720: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35053 |5 | |10402 |Dell R720: 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 |35054 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10402 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35055 |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] |10402 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35056 |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] |10402 |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 |35057 |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] |10402 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35058 |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] |10402 |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 |35059 |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] |10402 |Temperature discovery |temp.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 |35060 |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] |10402 |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 |35061 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10402 |Dell R720: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35062 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10402 |Dell R720: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35063 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10402 |Dell R720: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35064 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10402 |Dell R720: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35065 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10402 |Dell R720: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35066 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35067 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35068 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35069 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35070 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35071 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35072 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10402 |Dell R720: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35073 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10402 |Dell R720: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35074 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10402 |Dell R720: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35075 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35076 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35077 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35078 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Current state |dell.server.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 |35079 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35080 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Write policy |dell.server.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 |35123 |20 |1.3.6.1.2.1.1.4.0 |10404 |Dell R740: System contact details |dell.server.contact[sysContact] |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 |35124 |20 |1.3.6.1.2.1.1.1.0 |10404 |Dell R740: System description |dell.server.descr[sysDescr] |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 |35125 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10404 |Dell R740: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35126 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10404 |Dell R740: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35127 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10404 |Dell R740: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35128 |20 |1.3.6.1.2.1.1.6.0 |10404 |Dell R740: System location |dell.server.location[sysLocation] |15m |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 |35129 |20 |1.3.6.1.2.1.1.5.0 |10404 |Dell R740: System name |dell.server.name[sysName] |15m |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 |35130 |20 |1.3.6.1.2.1.1.2.0 |10404 |Dell R740: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35131 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10404 |Dell R740: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35132 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10404 |Dell R740: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35133 |20 |1.3.6.1.2.1.1.3.0 |10404 |Dell R740: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35134 |17 | |10404 |Dell R740: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35135 |5 | |10404 |Dell R740: 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 |35136 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10404 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35137 |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] |10404 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35138 |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] |10404 |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 |35139 |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] |10404 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35140 |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] |10404 |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 |35141 |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] |10404 |Temperature discovery |temp.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 |35142 |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] |10404 |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 |35143 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10404 |Dell R740: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35144 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10404 |Dell R740: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35145 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10404 |Dell R740: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35146 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10404 |Dell R740: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35147 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10404 |Dell R740: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35148 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35149 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35150 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35151 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35152 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35153 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35154 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10404 |Dell R740: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35155 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10404 |Dell R740: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35156 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10404 |Dell R740: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35157 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35158 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35159 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35160 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Current state |dell.server.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 |35161 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35162 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Write policy |dell.server.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 |35205 |20 |1.3.6.1.2.1.1.4.0 |10406 |Dell R820: System contact details |dell.server.contact[sysContact] |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 |35206 |20 |1.3.6.1.2.1.1.1.0 |10406 |Dell R820: System description |dell.server.descr[sysDescr] |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 |35207 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10406 |Dell R820: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35208 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10406 |Dell R820: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35209 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10406 |Dell R820: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35210 |20 |1.3.6.1.2.1.1.6.0 |10406 |Dell R820: System location |dell.server.location[sysLocation] |15m |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 |35211 |20 |1.3.6.1.2.1.1.5.0 |10406 |Dell R820: System name |dell.server.name[sysName] |15m |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 |35212 |20 |1.3.6.1.2.1.1.2.0 |10406 |Dell R820: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35213 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10406 |Dell R820: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35214 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10406 |Dell R820: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35215 |20 |1.3.6.1.2.1.1.3.0 |10406 |Dell R820: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35216 |17 | |10406 |Dell R820: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35217 |5 | |10406 |Dell R820: 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 |35218 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10406 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35219 |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] |10406 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35220 |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] |10406 |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 |35221 |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] |10406 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35222 |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] |10406 |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 |35223 |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] |10406 |Temperature discovery |temp.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 |35224 |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] |10406 |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 |35225 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10406 |Dell R820: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35226 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10406 |Dell R820: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35227 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10406 |Dell R820: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35228 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10406 |Dell R820: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35229 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10406 |Dell R820: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35230 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35231 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35232 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35233 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35234 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35235 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35236 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10406 |Dell R820: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35237 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10406 |Dell R820: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35238 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10406 |Dell R820: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35239 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35240 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35241 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35242 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Current state |dell.server.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 |35243 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35244 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Write policy |dell.server.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 |35287 |20 |1.3.6.1.2.1.1.4.0 |10408 |Dell R840: System contact details |dell.server.contact[sysContact] |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 |35288 |20 |1.3.6.1.2.1.1.1.0 |10408 |Dell R840: System description |dell.server.descr[sysDescr] |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 |35289 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10408 |Dell R840: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35290 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10408 |Dell R840: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35291 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10408 |Dell R840: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35292 |20 |1.3.6.1.2.1.1.6.0 |10408 |Dell R840: System location |dell.server.location[sysLocation] |15m |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 |35293 |20 |1.3.6.1.2.1.1.5.0 |10408 |Dell R840: System name |dell.server.name[sysName] |15m |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 |35294 |20 |1.3.6.1.2.1.1.2.0 |10408 |Dell R840: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35295 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10408 |Dell R840: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35296 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10408 |Dell R840: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35297 |20 |1.3.6.1.2.1.1.3.0 |10408 |Dell R840: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35298 |17 | |10408 |Dell R840: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35299 |5 | |10408 |Dell R840: 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 |35300 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10408 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35301 |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] |10408 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35302 |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] |10408 |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 |35303 |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] |10408 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35304 |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] |10408 |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 |35305 |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] |10408 |Temperature discovery |temp.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 |35306 |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] |10408 |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 |35307 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10408 |Dell R840: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35308 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10408 |Dell R840: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35309 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10408 |Dell R840: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35310 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10408 |Dell R840: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35311 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10408 |Dell R840: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35312 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35313 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35314 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35315 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35316 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35317 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35318 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10408 |Dell R840: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35319 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10408 |Dell R840: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35320 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10408 |Dell R840: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35321 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35322 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35323 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35324 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Current state |dell.server.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 |35325 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35326 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Write policy |dell.server.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 |35327 |20 |1.3.6.1.2.1.1.4.0 |10409 |System contact details |hp.server.contact[sysContact] |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 |35328 |20 |1.3.6.1.2.1.1.1.0 |10409 |System description |hp.server.descr[sysDescr] |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 |35329 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10409 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35330 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10409 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35331 |20 |1.3.6.1.2.1.1.6.0 |10409 |System location |hp.server.location[sysLocation] |15m |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 |35332 |20 |1.3.6.1.2.1.1.5.0 |10409 |System name |hp.server.name[sysName] |15m |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 |35333 |20 |1.3.6.1.2.1.1.2.0 |10409 |System object ID |hp.server.objectid[sysObjectID] |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 |35334 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10409 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35335 |20 |1.3.6.1.4.1.232.6.1.3.0 |10409 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35336 |20 |1.3.6.1.2.1.1.3.0 |10409 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35337 |17 | |10409 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35338 |5 | |10409 |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 |35339 |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] |10409 |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 |35340 |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] |10409 |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 |35341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10409 |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 |35342 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10409 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35343 |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] |10409 |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 |35344 |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] |10409 |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 |35345 |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] |10409 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35346 |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] |10409 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35347 |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] |10409 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35348 |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] |10409 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35349 |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] |10409 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35350 |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] |10409 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35351 |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] |10409 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35352 |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] |10409 |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 |35353 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10409 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35354 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10409 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35355 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10409 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35356 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10409 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35357 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10409 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35358 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10409 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35359 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35360 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35361 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35362 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35363 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35364 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35365 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10409 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35366 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35367 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35368 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35369 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35370 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35371 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35372 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35373 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35374 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35375 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35376 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35377 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35378 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35379 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35380 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35381 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35382 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35383 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35384 |20 |1.3.6.1.2.1.1.4.0 |10410 |System contact details |hp.server.contact[sysContact] |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 |35385 |20 |1.3.6.1.2.1.1.1.0 |10410 |System description |hp.server.descr[sysDescr] |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 |35386 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10410 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35387 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10410 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35388 |20 |1.3.6.1.2.1.1.6.0 |10410 |System location |hp.server.location[sysLocation] |15m |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 |35389 |20 |1.3.6.1.2.1.1.5.0 |10410 |System name |hp.server.name[sysName] |15m |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 |35390 |20 |1.3.6.1.2.1.1.2.0 |10410 |System object ID |hp.server.objectid[sysObjectID] |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 |35391 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10410 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35392 |20 |1.3.6.1.4.1.232.6.1.3.0 |10410 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35393 |20 |1.3.6.1.2.1.1.3.0 |10410 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35394 |17 | |10410 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35395 |5 | |10410 |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 |35396 |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] |10410 |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 |35397 |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] |10410 |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 |35398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10410 |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 |35399 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10410 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35400 |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] |10410 |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 |35401 |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] |10410 |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 |35402 |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] |10410 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35403 |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] |10410 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35404 |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] |10410 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35405 |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] |10410 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35406 |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] |10410 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35407 |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] |10410 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35408 |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] |10410 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35409 |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] |10410 |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 |35410 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10410 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35411 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10410 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35412 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10410 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10410 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35414 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10410 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35415 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10410 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35416 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35422 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10410 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35423 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35424 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35425 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35426 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35427 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35428 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35429 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35430 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35431 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35432 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35433 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35434 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35435 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35436 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35437 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35438 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35439 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35440 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35441 |20 |1.3.6.1.2.1.1.4.0 |10411 |System contact details |hp.server.contact[sysContact] |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 |35442 |20 |1.3.6.1.2.1.1.1.0 |10411 |System description |hp.server.descr[sysDescr] |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 |35443 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10411 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35444 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10411 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35445 |20 |1.3.6.1.2.1.1.6.0 |10411 |System location |hp.server.location[sysLocation] |15m |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 |35446 |20 |1.3.6.1.2.1.1.5.0 |10411 |System name |hp.server.name[sysName] |15m |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 |35447 |20 |1.3.6.1.2.1.1.2.0 |10411 |System object ID |hp.server.objectid[sysObjectID] |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 |35448 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10411 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35449 |20 |1.3.6.1.4.1.232.6.1.3.0 |10411 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35450 |20 |1.3.6.1.2.1.1.3.0 |10411 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35451 |17 | |10411 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35452 |5 | |10411 |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 |35453 |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] |10411 |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 |35454 |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] |10411 |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 |35455 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10411 |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 |35456 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10411 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35457 |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] |10411 |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 |35458 |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] |10411 |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 |35459 |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] |10411 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35460 |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] |10411 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35461 |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] |10411 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35462 |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] |10411 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35463 |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] |10411 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35464 |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] |10411 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35465 |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] |10411 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35466 |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] |10411 |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 |35467 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10411 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35468 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10411 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35469 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10411 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35470 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10411 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35471 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10411 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35472 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10411 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35473 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35474 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35475 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35476 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35477 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35478 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35479 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10411 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35480 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35481 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35482 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35483 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35484 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35485 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35486 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35487 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35488 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35489 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35490 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35491 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35492 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35493 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35494 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35495 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35496 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35497 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35498 |20 |1.3.6.1.2.1.1.4.0 |10412 |System contact details |hp.server.contact[sysContact] |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 |35499 |20 |1.3.6.1.2.1.1.1.0 |10412 |System description |hp.server.descr[sysDescr] |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 |35500 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10412 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35501 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10412 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35502 |20 |1.3.6.1.2.1.1.6.0 |10412 |System location |hp.server.location[sysLocation] |15m |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 |35503 |20 |1.3.6.1.2.1.1.5.0 |10412 |System name |hp.server.name[sysName] |15m |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 |35504 |20 |1.3.6.1.2.1.1.2.0 |10412 |System object ID |hp.server.objectid[sysObjectID] |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 |35505 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10412 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35506 |20 |1.3.6.1.4.1.232.6.1.3.0 |10412 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35507 |20 |1.3.6.1.2.1.1.3.0 |10412 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35508 |17 | |10412 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35509 |5 | |10412 |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 |35510 |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] |10412 |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 |35511 |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] |10412 |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 |35512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10412 |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 |35513 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10412 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35514 |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] |10412 |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 |35515 |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] |10412 |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 |35516 |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] |10412 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35517 |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] |10412 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35518 |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] |10412 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35519 |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] |10412 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35520 |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] |10412 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35521 |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] |10412 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35522 |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] |10412 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35523 |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] |10412 |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 |35524 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10412 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35525 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10412 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35526 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10412 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35527 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10412 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35528 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10412 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35529 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10412 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35530 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35531 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35532 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35533 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35534 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35535 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35536 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10412 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35537 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35538 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35539 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35540 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35541 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35542 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35543 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35544 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35545 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35546 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35547 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35548 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35549 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35550 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35551 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35552 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35553 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35554 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35558 |0 | |10413 |Service units discovery |systemd.unit.discovery[service] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discover systemd service units and their details. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35559 |0 | |10413 |Socket units discovery |systemd.unit.discovery[socket] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discover systemd socket units and their details. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35560 |0 | |10413 |{#UNIT.NAME}: Get unit info |systemd.unit.get["{#UNIT.NAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns all properties of a systemd service unit.&eol; Unit description: {#UNIT.DESCRIPTION}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35561 |0 | |10413 |{#UNIT.NAME}: Get unit info |systemd.unit.get["{#UNIT.NAME}",Socket] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns all properties of a systemd socket unit.&eol; Unit description: {#UNIT.DESCRIPTION}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35568 |16 | |10414 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35569 |16 | |10414 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35570 |16 | |10414 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35571 |16 | |10414 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35572 |16 | |10414 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35573 |16 | |10414 |GridGain kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35574 |16 | |10414 |TCP Communication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35575 |16 | |10414 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35576 |16 | |10414 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35577 |16 | |10414 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.gridgain.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35578 |16 | |10414 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35579 |16 | |10414 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35580 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35581 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35582 |16 | |10414 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35583 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35584 |16 | |10414 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35585 |16 | |10414 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35586 |16 | |10414 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35587 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The core number of threads. |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 |35588 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35589 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35590 |16 | |10414 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35591 |16 | |10414 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35592 |16 | |10414 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35593 |16 | |10414 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35594 |16 | |10414 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35595 |16 | |10414 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35596 |16 | |10414 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35597 |16 | |10414 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35598 |16 | |10414 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35599 |16 | |10414 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35600 |16 | |10414 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35601 |16 | |10414 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35602 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35603 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35604 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35605 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35606 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35607 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35608 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35609 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35610 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35611 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35612 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35613 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35614 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35615 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35616 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35617 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Version of GridGain instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35618 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35619 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Uptime of GridGain instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35620 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35621 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35623 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35624 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35625 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35626 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35627 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35628 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35629 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35630 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35631 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35632 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35633 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35634 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35635 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35636 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35637 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35638 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35639 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35640 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35641 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35642 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35643 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35644 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35645 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35646 |20 |.1.3.6.1.2.1.1.4.0 |10415 |F5 BIG-IP: Contact |bigip.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35647 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.3.0 |10415 |F5 BIG-IP: TCP connections, CLOSE-WAIT/LAST-ACK |bigip.tcp.close_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in CLOSE-WAIT/LAST-ACK. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35648 |20 |.1.3.6.1.4.1.3375.2.1.6.6.0 |10415 |F5 BIG-IP: Uptime |bigip.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The system up time in 1/100 seconds since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35649 |20 |.1.3.6.1.4.1.3375.2.1.1.2.13.2.0 |10415 |F5 BIG-IP: Open UDP connections |bigip.udp.open |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current open UDP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35650 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.5.0 |10415 |F5 BIG-IP: TCP connections, TIME-WAIT |bigip.tcp.time_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in TIME-WAIT. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35651 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.2.0 |10415 |F5 BIG-IP: Open TCP connections |bigip.tcp.open |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current open TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35652 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.20.0 |10415 |F5 BIG-IP: TCP connections, FIN-WAIT-2 |bigip.tcp.fin2_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in FIN-WAIT-2. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35653 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.4.0 |10415 |F5 BIG-IP: TCP connections, FIN-WAIT-1/CLOSING |bigip.tcp.fin1_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in FIN-WAIT-1/CLOSING. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35654 |20 |.1.3.6.1.4.1.3375.2.1.3.3.3.0 |10415 |F5 BIG-IP: Chassis serial number |bigip.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35655 |20 |.1.3.6.1.2.1.1.6.0 |10415 |F5 BIG-IP: Location |bigip.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35656 |20 |.1.3.6.1.4.1.3375.2.1.4.2.0 |10415 |F5 BIG-IP: Product version |bigip.product.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35657 |20 |.1.3.6.1.4.1.3375.2.1.4.1.0 |10415 |F5 BIG-IP: Product name |bigip.product.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35658 |20 |.1.3.6.1.4.1.3375.2.1.4.4.0 |10415 |F5 BIG-IP: Product edition |bigip.product.edition |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product edition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35659 |20 |.1.3.6.1.4.1.3375.2.1.4.5.0 |10415 |F5 BIG-IP: Product build date |bigip.product.date |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product build date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35660 |20 |.1.3.6.1.4.1.3375.2.1.4.3.0 |10415 |F5 BIG-IP: Product build |bigip.product.build |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product build number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35661 |20 |.1.3.6.1.2.1.1.5.0 |10415 |F5 BIG-IP: Host name |bigip.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35662 |20 |.1.3.6.1.2.1.1.1.0 |10415 |F5 BIG-IP: Hardware model name |bigip.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35663 |5 | |10415 |F5 BIG-IP: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35664 |20 |discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.1,{#SLOT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.4,{#TEMP.LOCATION},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.3] |10415 |Blade temperature discovery |bigip.blade.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Containing information of blade temperature of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35665 |20 |discovery[{#VOLT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.1] |10415 |Blade voltage discovery |bigip.blade.voltage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of blade voltage of the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35666 |20 |discovery[{#CERT.NAME},.1.3.6.1.4.1.3375.2.1.15.1.2.1.1] |10415 |Certificate discovery |bigip.cert.discovery |1d |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing certificate configuration. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35667 |20 |discovery[{#FAN.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1] |10415 |Chassis fan discovery |bigip.chassis.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis fan status of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35668 |20 |discovery[{#POWER.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.1] |10415 |Chassis power supply discovery |bigip.chassis.power.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis power supply status of the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35669 |20 |discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.1] |10415 |Chassis temperature discovery |bigip.chassis.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis temperature of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35670 |20 |discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.1,{#CPU.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.3] |10415 |CPU discovery |bigip.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing entries of system CPU usage information for a system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35671 |20 |discovery[{#CPU.SENSOR.INDEX},.1.3.6.1.4.1.3375.2.1.3.6.2.1.1,{#CPU.SENSOR.SLOT},.1.3.6.1.4.1.3375.2.1.3.6.2.1.5,{#CPU.SENSOR.NAME},.1.3.6.1.4.1.3375.2.1.3.6.2.1.4] |10415 |CPU sensor discovery |bigip.cpu.sensor.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of CPU sensor status on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35672 |20 |discovery[{#PART.NAME},.1.3.6.1.4.1.3375.2.1.7.3.2.1.1] |10415 |File system discovery |bigip.disktable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing entries of system disk usage information. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35673 |20 |discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.4.2.1.1] |10415 |Memory discovery |bigip.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Containing system statistics information of the memory usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35674 |20 |discovery[{#MODULE.NAME},.1.3.6.1.4.1.3375.2.1.11.1.2.1.1] |10415 |Module discovery |bigip.module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Resource allocation information about modules on the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35675 |20 |discovery[{#IF.NAME},.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.1] |10415 |Network interface discovery |bigip.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of the interfaces on the device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35676 |20 |discovery[{#NODE.NAME},.1.3.6.1.4.1.3375.2.2.4.2.3.1.20] |10415 |Node discovery |bigip.node.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of node addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35677 |20 |discovery[{#POOL.NAME},.1.3.6.1.4.1.3375.2.2.5.2.3.1.1] |10415 |Pool discovery |bigip.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of pools. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35678 |20 |discovery[{#VSERVER.NAME},.1.3.6.1.4.1.3375.2.2.10.2.3.1.1] |10415 |Virtual server discovery |bigip.virtual_server.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of virtual servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35679 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature |bigip.blade.temp.value[{#SLOT.INDEX},{#TEMP.INDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Location: {#TEMP.LOCATION}&eol;The blade temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35680 |20 |.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot |bigip.blade.voltage.slot[{#VOLT.INDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis slot number, if applicable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35681 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value |bigip.blade.voltage.value[{#VOLT.INDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The blade voltage (in V) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35682 |20 |.1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date |bigip.cert.expiration.date[{#CERT.NAME}] |12h |7d |0 |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The expiration date of the certificate in unix time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35683 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed |bigip.chassis.fan.speed[{#FAN.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The actual speed of the indexed chassis fan on the system.&eol;This is only supported for the platform where the actual&eol;fan speed data is available.&eol;'0' means fan speed is unavailable while the associated chassis status is good. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35684 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Status |bigip.chassis.fan.status[{#FAN.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed chassis fan on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35685 |20 |.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status |bigip.chassis.power.status[{#POWER.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed power supply on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35686 |20 |.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature |bigip.chassis.temp.value[{#TEMP.INDEX}] |5m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35687 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m |bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35688 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s |bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35689 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m |bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35690 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m |bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35691 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s |bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5s;&eol;niced:sysMultiHostCpuNiced5s;&eol;stolen:sysMultiHostCpuStolen5s;&eol;system:sysMultiHostCpuSystem5s;&eol;idle:sysMultiHostCpuIdle5s;&eol;irq:sysMultiHostCpuIrq5s;&eol;iowait:sysMultiHostCpuIowait5s |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35692 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m |bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5m;&eol;niced:sysMultiHostCpuNiced5m;&eol;stolen:sysMultiHostCpuStolen5m;&eol;system:sysMultiHostCpuSystem5m;&eol;idle:sysMultiHostCpuIdle5m;&eol;irq:sysMultiHostCpuIrq5m;&eol;iowait:sysMultiHostCpuIowait5m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35693 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m |bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last one minute. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser1m;&eol;niced:sysMultiHostCpuNiced1m;&eol;stolen:sysMultiHostCpuStolen1m;&eol;system:sysMultiHostCpuSystem1m;&eol;idle:sysMultiHostCpuIdle1m;&eol;irq:sysMultiHostCpuIrq1m;&eol;iowait:sysMultiHostCpuIowait1m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35694 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s |bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35695 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m |bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35696 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m |bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35697 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m |bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35698 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s) |bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35699 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m |bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35700 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m |bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35701 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m |bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35702 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m |bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35703 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s |bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35704 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m |bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35705 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m |bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35706 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s |bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35707 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m |bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35708 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m |bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35709 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s |bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35710 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m |bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35711 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m |bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35712 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s |bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35713 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s |bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35714 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed |bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The fan speed (in RPM) of the indexed CPU on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35715 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name |bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Identifier for the CPU. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35716 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature |bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The temperature of the indexed CPU on the system.&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35717 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Block size |bigip.disktable.blocksize[{#PART.NAME}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of bytes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35718 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks |bigip.disktable.freeblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35719 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes |bigip.disktable.freenodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35720 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks |bigip.disktable.totalblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35721 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes |bigip.disktable.totalnodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35722 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory |bigip.memory.total.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total other non-TMM memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35723 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total swap |bigip.memory.total.swap[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total swap in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35724 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total memory |bigip.memory.total[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total host memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35725 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory |bigip.memory.used.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The other non-TMM memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35726 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used swap |bigip.memory.used.swap[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The swap in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35727 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used memory |bigip.memory.used[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The host memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35728 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio |bigip.module.cpu.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of CPU to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35729 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio |bigip.module.disk.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available disk space to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35730 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio |bigip.module.memory.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available memory to allocate. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35731 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Provision level |bigip.module.provision.level[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |241 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The provisioning level indicates how the systems resources&eol;are distributed amongst the modules&eol;Possible values: 1 - none, 2 - minimum, 3 - nominal, 4 - dedicated, 5 - custom. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35732 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Collisions |bigip.net.collisions[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of collisions on the specified interface, incremented by the&eol;number of collisions experienced during transmissions of a frame |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35733 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming traffic, rate |bigip.net.in.bytes.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of bytes received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35734 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet drops |bigip.net.in.drops[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of packets dropped on ingress for various reasons on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35735 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet error |bigip.net.in.error[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of received packets that are either undersized,&eol;oversized, or have FCS errors by the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35736 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming multicast packet, rate |bigip.net.in.multicast.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of multicast packets received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35737 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet, rate |bigip.net.in.pkts.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of packets received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35738 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming QnQ packet, rate |bigip.net.in.qq.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of double tagged packets received on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35739 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing traffic, rate |bigip.net.out.bytes.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of bytes transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35740 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.11.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet drops |bigip.net.out.drops[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of packets aged out or with excessive transmission&eol;delays due to multiple deferrals on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35741 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet error |bigip.net.out.error[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of excessive collisions, incremented for each&eol;frame that experienced 16 collisions during transmission and&eol;was aborted on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35742 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing multicast packet, rate |bigip.net.out.multicast.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of multicast packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35743 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate |bigip.net.out.pkts.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35744 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate |bigip.net.out.qq.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of double tagged packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35745 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Pause state |bigip.net.pause[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |242 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The pause state of the specified interface.&eol;none - no pause;&eol;txrx - pause all data flow;&eol;tx - pause outgoing data flow;&eol;rx - pause incoming data flow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35746 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current connections |bigip.node.net.conn[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35747 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate |bigip.node.net.in.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35748 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate |bigip.node.net.in.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35749 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate |bigip.node.net.out.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35750 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate |bigip.node.net.out.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35751 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions |bigip.node.net.sessions[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35752 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit |bigip.node.overlimit[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the node address when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35753 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit |bigip.node.overtime[{#NODE.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified node address has exceeded the&eol;configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35754 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections |bigip.pool.net.conn[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35755 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate |bigip.pool.net.in.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35756 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate |bigip.pool.net.in.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35757 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate |bigip.pool.net.out.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35758 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate |bigip.pool.net.out.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35759 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions |bigip.pool.net.sessions[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35760 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry |bigip.pool.queue.age[{#POOL.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Age of the oldest queue entry, max. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35761 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Queue |bigip.pool.queue[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Number of connections currently in queue, sum. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35762 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections |bigip.vserver.net.conn[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from client-side to the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35763 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate |bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35764 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate |bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35765 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate |bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35766 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate |bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35767 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit |bigip.vserver.overlimit[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the virtual server when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35768 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit |bigip.vserver.overtime[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified virtual server has exceeded the configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35769 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m |bigip.vserver.usage.1m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35770 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m |bigip.vserver.usage.5m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35771 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s |bigip.vserver.usage.5s[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35772 |0 | |10416 |Cert: Get |web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}] |15m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the JSON with attributes of a certificate of the requested site. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35786 |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 |35845 |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 |35903 |20 |.1.3.6.1.2.1.1.4.0 |10417 |Cisco ASAv: Contact |cisco.asav.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35904 |20 |.1.3.6.1.2.1.1.6.0 |10417 |Cisco ASAv: Location |cisco.asav.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35905 |20 |.1.3.6.1.2.1.1.1.0 |10417 |Cisco ASAv: System description |cisco.asav.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35906 |20 |.1.3.6.1.2.1.1.5.0 |10417 |Cisco ASAv: Host name |cisco.asav.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35907 |20 |.1.3.6.1.2.1.1.3.0 |10417 |Cisco ASAv: Uptime |cisco.asav.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35908 |5 | |10417 |Cisco ASAv: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35909 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.8] |10417 |CPU discovery |cisco.asav.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of cpmCPUTotalTable, a table of CPU monitoring entries. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35910 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10417 |Memory discovery |cisco.asav.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35911 |20 |discovery[{#CISCO.IF.NAME}, .1.3.6.1.2.1.31.1.1.1.1,{#CISCO.IF.STATUS.ADMIN},.1.3.6.1.2.1.2.2.1.7,{#CISCO.IF.STATUS.OPER},.1.3.6.1.2.1.2.2.1.8,{#CISCO.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10417 |Interface discovery |cisco.asav.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35912 |20 |discovery[{#CISCO.ASAV.PHYS.DESC},.1.3.6.1.2.1.47.1.1.1.1.2,{#CISCO.ASAV.PHYS.CLASS},.1.3.6.1.2.1.47.1.1.1.1.5,{#CISCO.ASAV.PHYS.NAME},.1.3.6.1.2.1.47.1.1.1.1.7] |10417 |Physical entry discovery |cisco.asav.physical.entry.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Information about a particular physical entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35913 |20 |discovery[{#CISCO.CRAS.USER},.1.3.6.1.4.1.9.9.392.1.3.21.1.1,{#CISCO.CRAS.INDEX},.1.3.6.1.4.1.9.9.392.1.3.21.1.3] |10417 |Session discovery |cisco.asav.session.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Remote access session discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35914 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: CPU [{#SNMPINDEX}] Utilization |cisco.asav.cpu.util[{#SNMPINDEX}] |1m |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 object cpmCPUTotal5min&eol;and increases the value range to (0..100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35915 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#SNMPVALUE} Free memory |cisco.asav.memory.free[{#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 |35916 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#SNMPVALUE} Used memory |cisco.asav.memory.used[{#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 |35917 |15 | |10417 |Cisco ASAv: {#SNMPVALUE} Memory utilization |cisco.asav.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.memory.used[{#SNMPINDEX}])/(last(cisco.asav.memory.free[{#SNMPINDEX}])+last(cisco.asav.memory.used[{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35918 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Administrative status |cisco.asav.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |246 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35919 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Interface description |cisco.asav.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35920 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Link speed |cisco.asav.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35921 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets |cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35922 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets |cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35923 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic |cisco.asav.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35924 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets |cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35925 |15 | |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization |cisco.asav.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.net.if.in.traffic[{#SNMPINDEX}]) * (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35926 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Interface name |cisco.asav.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35927 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Operational status |cisco.asav.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |247 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35928 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets |cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35929 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets |cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35930 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic |cisco.asav.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35931 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets |cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35932 |15 | |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization |cisco.asav.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.net.if.out.traffic[{#SNMPINDEX}]) * (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35933 |20 |.1.3.6.1.2.1.47.1.1.1.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class |cisco.asav.phys.class[{#SNMPINDEX}] |1h |7d |365d |0 |3 | | | | |NULL |250 | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;An indication of the general hardware type of the physical&eol;entity.&eol;An agent should set this object to the standard enumeration&eol;value that most accurately indicates the general class of&eol;the physical entity, or the primary class if there is more&eol;than one entity.&eol;If no appropriate standard registration identifier exists&eol;for this physical entity, then the value 'other(1)' is&eol;returned. If the value is unknown by this agent, then the&eol;value 'unknown(2)' is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35934 |20 |.1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description |cisco.asav.phys.description[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;A textual description of physical entity. This object&eol;should contain a string that identifies the manufacturer's&eol;name for the physical entity, and should be set to a&eol;distinct value for each version or model of the physical&eol;entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35935 |20 |.1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision |cisco.asav.phys.hw[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific hardware revision string for the&eol;physical entity. The preferred value is the hardware&eol;revision identifier actually printed on the component itself&eol;(if present).&eol;Note that if revision information is stored internally in a&eol;non-printable (e.g., binary) format, then the agent must&eol;convert such information to a printable format, in an&eol;implementation-specific manner.&eol;If no specific hardware revision string is associated with&eol;the physical component, or if this information is unknown to&eol;the agent, then this object will contain a zero-length&eol;string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35936 |20 |.1.3.6.1.2.1.47.1.1.1.1.12.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name |cisco.asav.phys.mfgname[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The name of the manufacturer of this physical component.&eol;The preferred value is the manufacturer name string actually&eol;printed on the component itself (if present).&eol;Note that comparisons between instances of the&eol;entPhysicalModelName, entPhysicalFirmwareRev,&eol;entPhysicalSoftwareRev, and the entPhysicalSerialNum&eol;objects, are only meaningful amongst entPhysicalEntries with&eol;the same value of entPhysicalMfgName.&eol;If the manufacturer name string associated with the physical&eol;component is unknown to the agent, then this object will&eol;contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35937 |20 |.1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name |cisco.asav.phys.model[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific model name identifier string associated&eol;with this physical component. The preferred value is the&eol;customer-visible part number, which may be printed on the&eol;component itself.&eol;If the model name string associated with the physical&eol;component is unknown to the agent, then this object will&eol;contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35938 |20 |.1.3.6.1.2.1.47.1.1.1.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name |cisco.asav.phys.name[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The textual name of the physical entity. The value of this&eol;object should be the name of the component as assigned by&eol;the local device and should be suitable for use in commands&eol;entered at the device's `console'. This might be a text&eol;name (e.g., `console') or a simple component number (e.g.,&eol;port or module number, such as `1'), depending on the&eol;physical component naming syntax of the device.&eol;If there is no local name, or if this object is otherwise&eol;not applicable, then this object contains a zero-length&eol;string.&eol;Note that the value of entPhysicalName for two physical&eol;entities will be the same in the event that the console&eol;interface does not distinguish between them, e.g., slot-1&eol;and the card in slot-1. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35939 |20 |.1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number |cisco.asav.phys.sn[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific serial number string for the physical&eol;entity. The preferred value is the serial number string&eol;actually printed on the component itself (if present).&eol;On the first instantiation of an physical entity, the value&eol;of entPhysicalSerialNum associated with that entity is set&eol;to the correct vendor-assigned serial number, if this&eol;information is available to the agent. If a serial number&eol;is unknown or non-existent, the entPhysicalSerialNum will be&eol;set to a zero-length string instead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35940 |20 |.1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision |cisco.asav.phys.sw[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific software revision string for the&eol;physical entity.&eol;Note that if revision information is stored internally in a&eol;non-printable (e.g., binary) format, then the agent must&eol;convert such information to a printable format, in an&eol;implementation-specific manner.&eol;If no specific software programs are associated with the&eol;physical component, or if this information is unknown to the&eol;agent, then this object will contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35941 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address |cisco.asav.session.addr.isp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The IP address of the peer (client) assigned by the ISP.&eol;This is the address of the client device in the public&eol;network. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35942 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address |cisco.asav.session.addr.local[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The IP address assigned to the client of this session&eol;in the private network assigned by the managed entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35943 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.14.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets |cisco.asav.session.authen.algorithm[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |244 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The algorithm used by this remote access session to&eol;to validate packets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35944 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.4.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method |cisco.asav.session.authen.method[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |249 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The method used to authenticate the user prior to&eol;establishing the session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35945 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method |cisco.asav.session.author.method[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |249 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The method used to authorize the user prior to&eol;establishing the session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35946 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration |cisco.asav.session.duration[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The number of seconds elapsed since this session&eol;was established. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35947 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm |cisco.asav.session.encryption[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |245 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The algorithm used by this remote access session to&eol;encrypt its payload. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35948 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.35.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic |cisco.asav.session.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The rate of octets received by this Remote&eol;Access Session.&eol;This value is accumulated BEFORE determining whether&eol;or not the packet should be decompressed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35949 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.36.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic |cisco.asav.session.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The rate of octets transmitted by this Remote&eol;Access Session.&eol;This value is accumulated AFTER determining whether&eol;or not the packet should be compressed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35950 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol |cisco.asav.session.protocol[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |248 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The protocol underlying this remote access session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35951 |5 | |10418 |ZYXEL AAM1212-51 / IES-612: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35952 |20 |.1.3.6.1.2.1.1.4.0 |10418 |ZYXEL AAM1212-51 / IES-612: Contact |zyxel.aam1212.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35953 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10418 |ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version |zyxel.aam1212.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35954 |20 |.1.3.6.1.2.1.1.6.0 |10418 |ZYXEL AAM1212-51 / IES-612: Location |zyxel.aam1212.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35955 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10418 |ZYXEL AAM1212-51 / IES-612: MAC address |zyxel.aam1212.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35956 |20 |.1.3.6.1.2.1.1.1.0 |10418 |ZYXEL AAM1212-51 / IES-612: Hardware model name |zyxel.aam1212.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35957 |20 |.1.3.6.1.2.1.1.5.0 |10418 |ZYXEL AAM1212-51 / IES-612: Host name |zyxel.aam1212.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35958 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10418 |ZYXEL AAM1212-51 / IES-612: Hardware serial number |zyxel.aam1212.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35959 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10418 |ZYXEL AAM1212-51 / IES-612: Alarm status |zyxel.aam1212.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35960 |20 |.1.3.6.1.2.1.1.3.0 |10418 |ZYXEL AAM1212-51 / IES-612: Uptime |zyxel.aam1212.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35961 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10418 |ADSL interface discovery |zyxel.aam1212.net.adsl.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 |35962 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10418 |Ethernet interface discovery |zyxel.aam1212.net.if.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 |35963 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10418 |Temperature discovery |zyxel.aam1212.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35964 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10418 |Voltage discovery |zyxel.aam1212.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35965 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status |zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35966 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation |zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35967 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power |zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35968 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin |zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35969 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation |zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35970 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power |zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35971 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin |zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35972 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic |zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35973 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name |zyxel.aam1212.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35974 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status |zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35975 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic |zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35976 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35977 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35978 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name |zyxel.aam1212.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35979 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35980 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35981 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.aam1212.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35982 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.aam1212.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35983 |5 | |10419 |ZYXEL ES3500-8PD: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35984 |20 |.1.3.6.1.2.1.1.4.0 |10419 |ZYXEL ES3500-8PD: Contact |zyxel.3500_8pd.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35985 |20 |.1.3.6.1.4.1.890.1.5.8.72.12.7.0 |10419 |ZYXEL ES3500-8PD: CPU utilization |zyxel.3500_8pd.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35986 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.72.1] |10419 |ZYXEL ES3500-8PD: ZyNOS F/W Version |zyxel.3500_8pd.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35987 |20 |.1.3.6.1.2.1.1.6.0 |10419 |ZYXEL ES3500-8PD: Location |zyxel.3500_8pd.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35988 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10419 |ZYXEL ES3500-8PD: MAC address |zyxel.3500_8pd.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35989 |20 |.1.3.6.1.2.1.1.1.0 |10419 |ZYXEL ES3500-8PD: Hardware model name |zyxel.3500_8pd.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35990 |20 |.1.3.6.1.2.1.1.5.0 |10419 |ZYXEL ES3500-8PD: Host name |zyxel.3500_8pd.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35991 |20 |.1.3.6.1.4.1.890.1.5.8.72.1.10.0 |10419 |ZYXEL ES3500-8PD: Hardware serial number |zyxel.3500_8pd.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35992 |20 |.1.3.6.1.2.1.1.3.0 |10419 |ZYXEL ES3500-8PD: Uptime |zyxel.3500_8pd.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35993 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.72.124.1.1.2] |10419 |Memory pool discovery |zyxel.3500_8pd.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 |35994 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5] |10419 |Interface discovery |zyxel.3500_8pd.net.if.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 |35995 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.8] |10419 |SFP with DDM discovery |zyxel.3500_8pd.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35996 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2] |10419 |SFP without DDM discovery |zyxel.3500_8pd.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35997 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.72.9.2.1.5] |10419 |Temperature discovery |zyxel.3500_8pd.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35998 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.5] |10419 |Voltage discovery |zyxel.3500_8pd.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35999 |20 |.1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_8pd.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36000 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status |zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |170 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36001 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description |zyxel.3500_8pd.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36002 |15 | |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36003 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36004 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36005 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36006 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36007 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status |zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |171 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36008 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type |zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |169 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36009 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name |zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36010 |15 | |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36011 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36012 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36013 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36014 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36015 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed |zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36016 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |168 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36017 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36018 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code |zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36019 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number |zyxel.3500_8pd.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36020 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision |zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36021 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number |zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36022 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status |zyxel.3500_8pd.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |172 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36023 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36024 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor |zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36025 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_8pd.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36026 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_8pd.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36027 |5 | |10420 |ZYXEL GS-4012F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36028 |20 |.1.3.6.1.2.1.1.4.0 |10420 |ZYXEL GS-4012F: Contact |zyxel.4012f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36029 |20 |.1.3.6.1.4.1.890.1.5.8.20.12.7.0 |10420 |ZYXEL GS-4012F: CPU utilization |zyxel.4012f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36030 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.20.1] |10420 |ZYXEL GS-4012F: ZyNOS F/W Version |zyxel.4012f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36031 |20 |.1.3.6.1.2.1.1.6.0 |10420 |ZYXEL GS-4012F: Location |zyxel.4012f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36032 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10420 |ZYXEL GS-4012F: MAC address |zyxel.4012f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36033 |20 |.1.3.6.1.2.1.1.1.0 |10420 |ZYXEL GS-4012F: Hardware model name |zyxel.4012f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36034 |20 |.1.3.6.1.2.1.1.5.0 |10420 |ZYXEL GS-4012F: Host name |zyxel.4012f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36035 |20 |.1.3.6.1.4.1.890.1.5.8.20.1.10.0 |10420 |ZYXEL GS-4012F: Hardware serial number |zyxel.4012f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36036 |20 |.1.3.6.1.2.1.1.3.0 |10420 |ZYXEL GS-4012F: Uptime |zyxel.4012f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36037 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.1.1.5] |10420 |Fan discovery |zyxel.4012f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36038 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5] |10420 |Interface discovery |zyxel.4012f.net.if.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 |36039 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.20.9.2.1.5] |10420 |Temperature discovery |zyxel.4012f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36040 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.5] |10420 |Voltage discovery |zyxel.4012f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36041 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Fan #{#SNMPINDEX} |zyxel.4012f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36042 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status |zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |175 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36043 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description |zyxel.4012f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36044 |15 | |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4012f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36045 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36046 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36047 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36048 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36049 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status |zyxel.4012f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |176 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36050 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type |zyxel.4012f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |174 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36051 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name |zyxel.4012f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36052 |15 | |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4012f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36053 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36054 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36055 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36056 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36057 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed |zyxel.4012f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36058 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |173 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36059 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4012f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36060 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4012f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36061 |5 | |10421 |ZYXEL IES-500x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36062 |20 |.1.3.6.1.2.1.1.4.0 |10421 |ZYXEL IES-500x: Contact |zyxel.ies500x.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36063 |20 |.1.3.6.1.2.1.1.6.0 |10421 |ZYXEL IES-500x: Location |zyxel.ies500x.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36064 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10421 |ZYXEL IES-500x: MAC address |zyxel.ies500x.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36065 |20 |.1.3.6.1.2.1.1.1.0 |10421 |ZYXEL IES-500x: Hardware model name |zyxel.ies500x.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36066 |20 |.1.3.6.1.2.1.1.5.0 |10421 |ZYXEL IES-500x: Host name |zyxel.ies500x.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36067 |20 |.1.3.6.1.2.1.1.3.0 |10421 |ZYXEL IES-500x: Uptime |zyxel.ies500x.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36068 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10421 |Packet buffer discovery |zyxel.ies500x.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36069 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10421 |CPU discovery |zyxel.ies500x.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36070 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10421 |Fan discovery |zyxel.ies500x.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36071 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10421 |Memory discovery |zyxel.ies500x.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36072 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10421 |ADSL interface discovery |zyxel.ies500x.net.adsl.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 |36073 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10421 |Ethernet interface discovery |zyxel.ies500x.net.if.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 |36074 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10421 |Slot discovery |zyxel.ies500x.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36075 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10421 |Temperature discovery |zyxel.ies500x.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36076 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10421 |Voltage discovery |zyxel.ies500x.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36077 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies500x.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36078 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies500x.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36079 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Fan #{#SNMPINDEX} |zyxel.ies500x.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36080 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies500x.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36081 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36082 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36083 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36084 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36085 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36086 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36087 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies500x.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36088 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36089 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36090 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36091 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36092 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36093 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36094 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36095 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36096 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36097 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36098 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36099 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status |zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36100 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description |zyxel.ies500x.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36101 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed |zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36102 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36103 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36104 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36105 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36106 |15 | |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies500x.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36107 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name |zyxel.ies500x.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36108 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status |zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36109 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36110 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36111 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36112 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36113 |15 | |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies500x.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36114 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies500x.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36115 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36116 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies500x.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36117 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36118 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36119 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36120 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies500x.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36121 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies500x.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36122 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies500x.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36123 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies500x.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |178 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36124 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies500x.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |179 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36125 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies500x.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36126 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies500x.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36127 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies500x.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36128 |5 | |10422 |ZYXEL IES-6000: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36129 |20 |.1.3.6.1.2.1.1.4.0 |10422 |ZYXEL IES-6000: Contact |zyxel.ies6000.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36130 |20 |.1.3.6.1.2.1.1.6.0 |10422 |ZYXEL IES-6000: Location |zyxel.ies6000.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36131 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10422 |ZYXEL IES-6000: MAC address |zyxel.ies6000.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36132 |20 |.1.3.6.1.2.1.1.1.0 |10422 |ZYXEL IES-6000: Hardware model name |zyxel.ies6000.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36133 |20 |.1.3.6.1.2.1.1.5.0 |10422 |ZYXEL IES-6000: Host name |zyxel.ies6000.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36134 |20 |.1.3.6.1.2.1.1.3.0 |10422 |ZYXEL IES-6000: Uptime |zyxel.ies6000.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36135 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10422 |Packet buffer discovery |zyxel.ies6000.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36136 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10422 |CPU discovery |zyxel.ies6000.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36137 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10422 |Fan discovery |zyxel.ies6000.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36138 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10422 |Memory discovery |zyxel.ies6000.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36139 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10422 |ADSL interface discovery |zyxel.ies6000.net.adsl.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 |36140 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10422 |Ethernet interface discovery |zyxel.ies6000.net.if.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 |36141 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10422 |Slot discovery |zyxel.ies6000.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36142 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10422 |Temperature discovery |zyxel.ies6000.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36143 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10422 |Voltage discovery |zyxel.ies6000.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36144 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies6000.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36145 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies6000.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36146 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Fan #{#SNMPINDEX} |zyxel.ies6000.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36147 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies6000.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36148 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36149 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36150 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36151 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36152 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36153 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36154 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies6000.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36155 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36156 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36157 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36158 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36159 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36160 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36161 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36162 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36163 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36164 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36165 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36166 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status |zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36167 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description |zyxel.ies6000.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36168 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed |zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36169 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36170 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36171 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36172 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36173 |15 | |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies6000.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36174 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name |zyxel.ies6000.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36175 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status |zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36176 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36177 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36178 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36179 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36180 |15 | |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies6000.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36181 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies6000.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36182 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36183 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies6000.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36184 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36185 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36186 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36187 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies6000.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36188 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies6000.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36189 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies6000.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36190 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies6000.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |184 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36191 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies6000.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |185 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36192 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies6000.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36193 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies6000.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36194 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies6000.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36195 |5 | |10423 |ZYXEL IES1248-51: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36196 |20 |.1.3.6.1.2.1.1.4.0 |10423 |ZYXEL IES1248-51: Contact |zyxel.ies1248.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36197 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10423 |ZYXEL IES1248-51: ZyNOS F/W Version |zyxel.ies1248.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36198 |20 |.1.3.6.1.2.1.1.6.0 |10423 |ZYXEL IES1248-51: Location |zyxel.ies1248.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36199 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10423 |ZYXEL IES1248-51: MAC address |zyxel.ies1248.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36200 |20 |.1.3.6.1.2.1.1.1.0 |10423 |ZYXEL IES1248-51: Hardware model name |zyxel.ies1248.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36201 |20 |.1.3.6.1.2.1.1.5.0 |10423 |ZYXEL IES1248-51: Host name |zyxel.ies1248.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36202 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10423 |ZYXEL IES1248-51: Hardware serial number |zyxel.ies1248.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36203 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10423 |ZYXEL IES1248-51: Alarm status |zyxel.ies1248.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36204 |20 |.1.3.6.1.2.1.1.3.0 |10423 |ZYXEL IES1248-51: Uptime |zyxel.ies1248.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36205 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.1.1.5] |10423 |Fan discovery |zyxel.ies1248.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36206 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10423 |ADSL interface discovery |zyxel.ies1248.net.adsl.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 |36207 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10423 |Ethernet interface discovery |zyxel.ies1248.net.if.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 |36208 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10423 |Temperature discovery |zyxel.ies1248.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36209 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10423 |Voltage discovery |zyxel.ies1248.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36210 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Fan #{#SNMPINDEX} |zyxel.ies1248.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36211 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status |zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36212 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation |zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36213 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power |zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36214 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin |zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36215 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation |zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36216 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power |zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36217 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin |zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36218 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36219 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36220 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status |zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36221 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36222 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36223 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36224 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36225 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36226 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36227 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies1248.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36228 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies1248.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36229 |5 | |10424 |ZYXEL MES-3528: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36230 |20 |.1.3.6.1.2.1.1.4.0 |10424 |ZYXEL MES-3528: Contact |zyxel.3528.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36231 |20 |.1.3.6.1.4.1.890.1.5.8.51.12.7.0 |10424 |ZYXEL MES-3528: CPU utilization |zyxel.3528.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36232 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.51.1] |10424 |ZYXEL MES-3528: ZyNOS F/W Version |zyxel.3528.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36233 |20 |.1.3.6.1.2.1.1.6.0 |10424 |ZYXEL MES-3528: Location |zyxel.3528.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36234 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10424 |ZYXEL MES-3528: MAC address |zyxel.3528.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36235 |20 |.1.3.6.1.2.1.1.1.0 |10424 |ZYXEL MES-3528: Hardware model name |zyxel.3528.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36236 |20 |.1.3.6.1.2.1.1.5.0 |10424 |ZYXEL MES-3528: Host name |zyxel.3528.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36237 |20 |.1.3.6.1.4.1.890.1.5.8.51.1.10.0 |10424 |ZYXEL MES-3528: Hardware serial number |zyxel.3528.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36238 |20 |.1.3.6.1.2.1.1.3.0 |10424 |ZYXEL MES-3528: Uptime |zyxel.3528.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36239 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5] |10424 |Interface discovery |zyxel.3528.net.if.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 |36240 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.8] |10424 |SFP with DDM discovery |zyxel.3528.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36241 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2] |10424 |SFP without DDM discovery |zyxel.3528.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36242 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status |zyxel.3528.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |197 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36243 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description |zyxel.3528.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36244 |15 | |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3528.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36245 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36246 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3528.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36247 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36248 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36249 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status |zyxel.3528.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |198 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36250 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link type |zyxel.3528.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |196 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36251 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name |zyxel.3528.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36252 |15 | |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization |zyxel.3528.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36253 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36254 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic |zyxel.3528.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36255 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36256 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36257 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed |zyxel.3528.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36258 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex |zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |195 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36259 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3528.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36260 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code |zyxel.3528.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36261 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number |zyxel.3528.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36262 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision |zyxel.3528.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36263 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number |zyxel.3528.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36264 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Status |zyxel.3528.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |199 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36265 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver |zyxel.3528.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36266 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor |zyxel.3528.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36267 |5 | |10425 |ZYXEL MES3500-10: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36268 |20 |.1.3.6.1.2.1.1.4.0 |10425 |ZYXEL MES3500-10: Contact |zyxel.3500_10.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36269 |20 |.1.3.6.1.4.1.890.1.5.8.80.12.7.0 |10425 |ZYXEL MES3500-10: CPU utilization |zyxel.3500_10.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36270 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.80.1] |10425 |ZYXEL MES3500-10: ZyNOS F/W Version |zyxel.3500_10.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36271 |20 |.1.3.6.1.2.1.1.6.0 |10425 |ZYXEL MES3500-10: Location |zyxel.3500_10.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36272 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10425 |ZYXEL MES3500-10: MAC address |zyxel.3500_10.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36273 |20 |.1.3.6.1.2.1.1.1.0 |10425 |ZYXEL MES3500-10: Hardware model name |zyxel.3500_10.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36274 |20 |.1.3.6.1.2.1.1.5.0 |10425 |ZYXEL MES3500-10: Host name |zyxel.3500_10.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36275 |20 |.1.3.6.1.4.1.890.1.5.8.80.1.10.0 |10425 |ZYXEL MES3500-10: Hardware serial number |zyxel.3500_10.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36276 |20 |.1.3.6.1.2.1.1.3.0 |10425 |ZYXEL MES3500-10: Uptime |zyxel.3500_10.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36277 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.80.124.1.1.2] |10425 |Memory pool discovery |zyxel.3500_10.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 |36278 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5] |10425 |Interface discovery |zyxel.3500_10.net.if.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 |36279 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.8] |10425 |SFP with DDM discovery |zyxel.3500_10.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36280 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2] |10425 |SFP without DDM discovery |zyxel.3500_10.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36281 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.80.9.2.1.5] |10425 |Temperature discovery |zyxel.3500_10.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36282 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.5] |10425 |Voltage discovery |zyxel.3500_10.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36283 |20 |.1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_10.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36284 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status |zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |202 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36285 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description |zyxel.3500_10.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36286 |15 | |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_10.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36287 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36288 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36289 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36290 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36291 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status |zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |203 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36292 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type |zyxel.3500_10.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |201 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36293 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name |zyxel.3500_10.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36294 |15 | |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_10.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36295 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36296 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36297 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36298 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36299 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed |zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36300 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |200 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36301 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_10.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36302 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code |zyxel.3500_10.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36303 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number |zyxel.3500_10.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36304 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision |zyxel.3500_10.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36305 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number |zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36306 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status |zyxel.3500_10.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |204 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36307 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36308 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor |zyxel.3500_10.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36309 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_10.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36310 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_10.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36311 |5 | |10426 |ZYXEL MES3500-24: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36312 |20 |.1.3.6.1.2.1.1.4.0 |10426 |ZYXEL MES3500-24: Contact |zyxel.3500_24.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36313 |20 |.1.3.6.1.4.1.890.1.5.8.68.12.7.0 |10426 |ZYXEL MES3500-24: CPU utilization |zyxel.3500_24.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36314 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.68.1] |10426 |ZYXEL MES3500-24: ZyNOS F/W Version |zyxel.3500_24.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36315 |20 |.1.3.6.1.2.1.1.6.0 |10426 |ZYXEL MES3500-24: Location |zyxel.3500_24.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36316 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10426 |ZYXEL MES3500-24: MAC address |zyxel.3500_24.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36317 |20 |.1.3.6.1.2.1.1.1.0 |10426 |ZYXEL MES3500-24: Hardware model name |zyxel.3500_24.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36318 |20 |.1.3.6.1.2.1.1.5.0 |10426 |ZYXEL MES3500-24: Host name |zyxel.3500_24.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36319 |20 |.1.3.6.1.4.1.890.1.5.8.68.1.10.0 |10426 |ZYXEL MES3500-24: Hardware serial number |zyxel.3500_24.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36320 |20 |.1.3.6.1.2.1.1.3.0 |10426 |ZYXEL MES3500-24: Uptime |zyxel.3500_24.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36321 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.68.124.1.1.2] |10426 |Memory pool discovery |zyxel.3500_24.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 |36322 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5] |10426 |Interface discovery |zyxel.3500_24.net.if.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 |36323 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.8] |10426 |SFP with DDM discovery |zyxel.3500_24.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36324 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2] |10426 |SFP without DDM discovery |zyxel.3500_24.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36325 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.68.9.2.1.5] |10426 |Temperature discovery |zyxel.3500_24.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36326 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.5] |10426 |Voltage discovery |zyxel.3500_24.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36327 |20 |.1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_24.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36328 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |207 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36329 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description |zyxel.3500_24.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36330 |15 | |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36331 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36332 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36333 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36334 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36335 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status |zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |208 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36336 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type |zyxel.3500_24.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |206 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36337 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name |zyxel.3500_24.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36338 |15 | |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36339 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36340 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36341 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36342 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36343 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed |zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36344 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |205 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36345 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36346 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code |zyxel.3500_24.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36347 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number |zyxel.3500_24.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36348 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision |zyxel.3500_24.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36349 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36350 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status |zyxel.3500_24.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |209 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36351 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36352 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36353 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_24.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36354 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_24.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36355 |5 | |10427 |ZYXEL MGS-3712: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36356 |20 |.1.3.6.1.2.1.1.4.0 |10427 |ZYXEL MGS-3712: Contact |zyxel.3712.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36357 |20 |.1.3.6.1.4.1.890.1.5.8.47.11.7.0 |10427 |ZYXEL MGS-3712: CPU utilization |zyxel.3712.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36358 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.47.1] |10427 |ZYXEL MGS-3712: ZyNOS F/W Version |zyxel.3712.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36359 |20 |.1.3.6.1.2.1.1.6.0 |10427 |ZYXEL MGS-3712: Location |zyxel.3712.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36360 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10427 |ZYXEL MGS-3712: MAC address |zyxel.3712.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36361 |20 |.1.3.6.1.2.1.1.1.0 |10427 |ZYXEL MGS-3712: Hardware model name |zyxel.3712.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36362 |20 |.1.3.6.1.2.1.1.5.0 |10427 |ZYXEL MGS-3712: Host name |zyxel.3712.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36363 |20 |.1.3.6.1.4.1.890.1.5.8.47.1.10.0 |10427 |ZYXEL MGS-3712: Hardware serial number |zyxel.3712.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36364 |20 |.1.3.6.1.2.1.1.3.0 |10427 |ZYXEL MGS-3712: Uptime |zyxel.3712.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36365 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.1.1.5] |10427 |Fan discovery |zyxel.3712.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36366 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5] |10427 |Interface discovery |zyxel.3712.net.if.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 |36367 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.8] |10427 |SFP with DDM discovery |zyxel.3712.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36368 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2] |10427 |SFP without DDM discovery |zyxel.3712.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36369 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.47.8.2.1.5] |10427 |Temperature discovery |zyxel.3712.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36370 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.5] |10427 |Voltage discovery |zyxel.3712.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36371 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Fan #{#SNMPINDEX} |zyxel.3712.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36372 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status |zyxel.3712.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |212 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36373 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description |zyxel.3712.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36374 |15 | |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36375 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36376 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36377 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36378 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36379 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status |zyxel.3712.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |213 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36380 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type |zyxel.3712.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |211 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36381 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name |zyxel.3712.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36382 |15 | |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36383 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36384 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36385 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36386 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36387 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed |zyxel.3712.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36388 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |210 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36389 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36390 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code |zyxel.3712.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36391 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number |zyxel.3712.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36392 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision |zyxel.3712.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36393 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number |zyxel.3712.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36394 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status |zyxel.3712.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |214 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36395 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver |zyxel.3712.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36396 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor |zyxel.3712.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36397 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36398 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36399 |5 | |10428 |ZYXEL MGS-3712F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36400 |20 |.1.3.6.1.2.1.1.4.0 |10428 |ZYXEL MGS-3712F: Contact |zyxel.3712f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36401 |20 |.1.3.6.1.4.1.890.1.5.8.48.11.7.0 |10428 |ZYXEL MGS-3712F: CPU utilization |zyxel.3712f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36402 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.48.1] |10428 |ZYXEL MGS-3712F: ZyNOS F/W Version |zyxel.3712f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36403 |20 |.1.3.6.1.2.1.1.6.0 |10428 |ZYXEL MGS-3712F: Location |zyxel.3712f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36404 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10428 |ZYXEL MGS-3712F: MAC address |zyxel.3712f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36405 |20 |.1.3.6.1.2.1.1.1.0 |10428 |ZYXEL MGS-3712F: Hardware model name |zyxel.3712f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36406 |20 |.1.3.6.1.2.1.1.5.0 |10428 |ZYXEL MGS-3712F: Host name |zyxel.3712f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36407 |20 |.1.3.6.1.4.1.890.1.5.8.48.1.10.0 |10428 |ZYXEL MGS-3712F: Hardware serial number |zyxel.3712f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36408 |20 |.1.3.6.1.2.1.1.3.0 |10428 |ZYXEL MGS-3712F: Uptime |zyxel.3712f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36409 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.1.1.5] |10428 |Fan discovery |zyxel.3712f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36410 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5] |10428 |Interface discovery |zyxel.3712f.net.if.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 |36411 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.8] |10428 |SFP with DDM discovery |zyxel.3712f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36412 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2] |10428 |SFP without DDM discovery |zyxel.3712f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36413 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.48.8.2.1.5] |10428 |Temperature discovery |zyxel.3712f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36414 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.5] |10428 |Voltage discovery |zyxel.3712f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36415 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Fan #{#SNMPINDEX} |zyxel.3712f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36416 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status |zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |217 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36417 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description |zyxel.3712f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36418 |15 | |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36419 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36420 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36421 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36422 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36423 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status |zyxel.3712f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |218 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36424 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type |zyxel.3712f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |216 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36425 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name |zyxel.3712f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36426 |15 | |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36427 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36428 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36429 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36430 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36431 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed |zyxel.3712f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36432 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |215 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36433 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36434 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code |zyxel.3712f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36435 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number |zyxel.3712f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36436 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision |zyxel.3712f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36437 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number |zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36438 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status |zyxel.3712f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |219 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36439 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver |zyxel.3712f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36440 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor |zyxel.3712f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36441 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36442 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36443 |5 | |10429 |ZYXEL MES3500-24S: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36444 |20 |.1.3.6.1.2.1.1.4.0 |10429 |ZYXEL MES3500-24S: Contact |zyxel.3500_24s.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36445 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10429 |ZYXEL MES3500-24S: CPU utilization |zyxel.3500_24s.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36446 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10429 |ZYXEL MES3500-24S: ZyNOS F/W Version |zyxel.3500_24s.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36447 |20 |.1.3.6.1.2.1.1.6.0 |10429 |ZYXEL MES3500-24S: Location |zyxel.3500_24s.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36448 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10429 |ZYXEL MES3500-24S: MAC address |zyxel.3500_24s.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36449 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10429 |ZYXEL MES3500-24S: Memory utilization |zyxel.3500_24s.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36450 |20 |.1.3.6.1.2.1.1.1.0 |10429 |ZYXEL MES3500-24S: Hardware model name |zyxel.3500_24s.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36451 |20 |.1.3.6.1.2.1.1.5.0 |10429 |ZYXEL MES3500-24S: Host name |zyxel.3500_24s.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36452 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10429 |ZYXEL MES3500-24S: Hardware serial number |zyxel.3500_24s.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36453 |20 |.1.3.6.1.2.1.1.3.0 |10429 |ZYXEL MES3500-24S: Uptime |zyxel.3500_24s.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36454 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10429 |Fan discovery |zyxel.3500_24s.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36455 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10429 |Interface discovery |zyxel.3500_24s.net.if.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 |36456 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10429 |SFP with DDM discovery |zyxel.3500_24s.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36457 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10429 |SFP without DDM discovery |zyxel.3500_24s.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36458 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10429 |Temperature discovery |zyxel.3500_24s.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36459 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10429 |Voltage discovery |zyxel.3500_24s.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36460 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3500_24s.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36461 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36462 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description |zyxel.3500_24s.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36463 |15 | |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36464 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36465 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36466 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36467 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36468 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status |zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |223 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36469 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type |zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |221 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36470 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name |zyxel.3500_24s.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36471 |15 | |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36472 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36473 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36474 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36475 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36476 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed |zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36477 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36478 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36479 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code |zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36480 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number |zyxel.3500_24s.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36481 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision |zyxel.3500_24s.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36482 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36483 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status |zyxel.3500_24s.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |224 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36484 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36485 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36486 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3500_24s.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36487 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3500_24s.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36488 |5 | |10430 |ZYXEL MGS3520-28x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36489 |20 |.1.3.6.1.2.1.1.4.0 |10430 |ZYXEL MGS3520-28x: Contact |zyxel.3520_28.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36490 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10430 |ZYXEL MGS3520-28x: CPU utilization |zyxel.3520_28.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36491 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10430 |ZYXEL MGS3520-28x: ZyNOS F/W Version |zyxel.3520_28.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36492 |20 |.1.3.6.1.2.1.1.6.0 |10430 |ZYXEL MGS3520-28x: Location |zyxel.3520_28.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36493 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10430 |ZYXEL MGS3520-28x: MAC address |zyxel.3520_28.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36494 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10430 |ZYXEL MGS3520-28x: Memory utilization |zyxel.3520_28.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36495 |20 |.1.3.6.1.2.1.1.1.0 |10430 |ZYXEL MGS3520-28x: Hardware model name |zyxel.3520_28.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36496 |20 |.1.3.6.1.2.1.1.5.0 |10430 |ZYXEL MGS3520-28x: Host name |zyxel.3520_28.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36497 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10430 |ZYXEL MGS3520-28x: Hardware serial number |zyxel.3520_28.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36498 |20 |.1.3.6.1.2.1.1.3.0 |10430 |ZYXEL MGS3520-28x: Uptime |zyxel.3520_28.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36499 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10430 |Fan discovery |zyxel.3520_28.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36500 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10430 |Interface discovery |zyxel.3520_28.net.if.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 |36501 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10430 |SFP with DDM discovery |zyxel.3520_28.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36502 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10430 |SFP without DDM discovery |zyxel.3520_28.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36503 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10430 |Temperature discovery |zyxel.3520_28.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36504 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10430 |Voltage discovery |zyxel.3520_28.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36505 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3520_28.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36506 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status |zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |227 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36507 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description |zyxel.3520_28.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36508 |15 | |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3520_28.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36509 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36510 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36511 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36512 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36513 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status |zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |228 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36514 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type |zyxel.3520_28.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |226 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36515 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name |zyxel.3520_28.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36516 |15 | |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization |zyxel.3520_28.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36517 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36518 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic |zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36519 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36520 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36521 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed |zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36522 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex |zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |225 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36523 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3520_28.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36524 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code |zyxel.3520_28.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36525 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number |zyxel.3520_28.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36526 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision |zyxel.3520_28.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36527 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number |zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36528 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status |zyxel.3520_28.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |229 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36529 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver |zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36530 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor |zyxel.3520_28.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36531 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3520_28.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36532 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3520_28.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36533 |5 | |10431 |ZYXEL XGS-4728F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36534 |20 |.1.3.6.1.2.1.1.4.0 |10431 |ZYXEL XGS-4728F: Contact |zyxel.4728f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36535 |20 |.1.3.6.1.4.1.890.1.5.8.46.12.7.0 |10431 |ZYXEL XGS-4728F: CPU utilization |zyxel.4728f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36536 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.46.1] |10431 |ZYXEL XGS-4728F: ZyNOS F/W Version |zyxel.4728f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36537 |20 |.1.3.6.1.2.1.1.6.0 |10431 |ZYXEL XGS-4728F: Location |zyxel.4728f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36538 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10431 |ZYXEL XGS-4728F: MAC address |zyxel.4728f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36539 |20 |.1.3.6.1.2.1.1.1.0 |10431 |ZYXEL XGS-4728F: Hardware model name |zyxel.4728f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36540 |20 |.1.3.6.1.2.1.1.5.0 |10431 |ZYXEL XGS-4728F: Host name |zyxel.4728f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36541 |20 |.1.3.6.1.4.1.890.1.5.8.46.1.10.0 |10431 |ZYXEL XGS-4728F: Hardware serial number |zyxel.4728f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36542 |20 |.1.3.6.1.2.1.1.3.0 |10431 |ZYXEL XGS-4728F: Uptime |zyxel.4728f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36543 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.1.1.5] |10431 |Fan discovery |zyxel.4728f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36544 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.46.124.1.1.2] |10431 |Memory pool discovery |zyxel.4728f.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 |36545 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5] |10431 |Interface discovery |zyxel.4728f.net.if.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 |36546 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.8] |10431 |SFP with DDM discovery |zyxel.4728f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36547 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2] |10431 |SFP without DDM discovery |zyxel.4728f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36548 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.46.9.2.1.5] |10431 |Temperature discovery |zyxel.4728f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36549 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.5] |10431 |Voltage discovery |zyxel.4728f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36550 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Fan #{#SNMPINDEX} |zyxel.4728f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36551 |20 |.1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.4728f.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36552 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status |zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |232 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36553 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description |zyxel.4728f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36554 |15 | |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4728f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36555 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36556 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36557 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36558 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36559 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status |zyxel.4728f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |233 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36560 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type |zyxel.4728f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |231 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36561 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name |zyxel.4728f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36562 |15 | |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4728f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36563 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36564 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36565 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36566 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36567 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed |zyxel.4728f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36568 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |230 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36569 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.4728f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36570 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code |zyxel.4728f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36571 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number |zyxel.4728f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36572 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision |zyxel.4728f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36573 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number |zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36574 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status |zyxel.4728f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |234 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36575 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver |zyxel.4728f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36576 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36577 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36578 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36579 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36583 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFGUID}",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 |36584 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFGUID}",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 |36585 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFGUID}"] |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 |36586 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",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 |36587 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",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 |36588 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |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 |36601 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"]|1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36605 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFGUID}",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 |36606 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFGUID}",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 |36607 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFGUID}"] |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 |36608 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",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 |36609 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",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 |36610 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |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 |36626 |20 |1.3.6.1.4.1.3375.2.1.14.1.1.0 |10415 |F5 BIG-IP: Sync Status |bigip.syncstatus |1m |7d |365d |0 |3 | | | | |NULL |254 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The sync status ID on the system.&eol;unknown - the device is disconnected from the device group;&eol;syncing - the device is joining the device group or has requested changes from device group or inconsistent with the group;&eol;needManualSync - changes have been made on the device not syncd to the device group;&eol;inSync - the device is consistent with the device group;&eol;syncFailed - the device is inconsistent with the device group, requires user intervention;&eol;syncDisconnected - the device is not connected to any peers;&eol;standalone - the device is in a standalone configuration;&eol;awaitingInitialSync - the device is waiting for initial sync;&eol;incompatibleVersion - the device's version is incompatible with rest of the devices in the device group;&eol;partialSync - some but not all devices successfully received the last sync. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36627 |20 |1.3.6.1.4.1.3375.2.1.14.3.1.0 |10415 |F5 BIG-IP: Failover status |bigip.failover |1m |7d |365d |0 |3 | | | | |NULL |253 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The failover status ID on the system.&eol;unknown - the failover status of the device is unknown;&eol;offline - the device is offline;&eol;forcedOffline - the device is forced offline;&eol;standby - the device is standby;&eol;active - the device is active. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36628 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status available |bigip.pool.available[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |252 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;none(0),&eol;green(1),&eol;tyellow(2),&eol;tred(3),&eol;tblue(4),&eol;tgrey(5) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36629 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled |bigip.pool.enabled[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |251 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The activity status of the specified pool, as specified by the user.&eol;none(0),&eol;enabled(1),&eol;disabled(2),&eol;disabledbyparent(3) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36630 |0 | |10289 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |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 based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36632 |7 | |10296 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |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 based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36705 |15 | |10433 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pgsql.dbstat.sum.blks_hit.rate") * 100 / (last("pgsql.dbstat.sum.blks_hit.rate") + last("pgsql.dbstat.sum.blks_read.rate")) | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36706 |0 | |10433 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36707 |0 | |10433 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36708 |0 | |10433 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql (check for option Plugins.Postgres.CustomQueriesPath at agent configuration) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36709 |0 | |10433 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36710 |0 | |10433 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36711 |0 | |10433 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36712 |0 | |10433 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36713 |0 | |10433 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36714 |0 | |10433 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36715 |0 | |10433 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36716 |0 | |10433 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36717 |0 | |10433 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36718 |0 | |10433 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36719 |0 | |10433 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36720 |0 | |10433 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36721 |0 | |10433 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36722 |0 | |10433 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36723 |0 | |10433 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36768 |0 | |10433 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36769 |0 | |10433 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |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 |36770 |0 | |10433 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36771 |0 | |10433 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |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 |36772 |0 | |10433 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36802 |3 | |10434 |PFSense: ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Host accessibility by ICMP.&eol;0 - ICMP ping fails.&eol;1 - ICMP ping successful. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36803 |20 |1.3.6.1.4.1.2021.4.4.0 |10434 |PFSense: Free swap space |system.swap.free |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 |36804 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10434 |PFSense: Load average (5m avg) |system.cpu.load.avg5 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 5 minutes load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36805 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10434 |PFSense: Number of CPUs |system.cpu.num |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 |36806 |20 |1.3.6.1.4.1.2021.11.60.0 |10434 |PFSense: Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Number of context switches |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36807 |20 |1.3.6.1.2.1.1.1.0 |10434 |PFSense: System description |system.descr |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36808 |20 |1.3.6.1.2.1.1.6.0 |10434 |PFSense: System location |system.location |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node. 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 |36809 |20 |1.3.6.1.2.1.1.5.0 |10434 |PFSense: System name |system.name |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36810 |20 |1.3.6.1.2.1.1.2.0 |10434 |PFSense: System object ID |system.objectid |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor 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. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36811 |15 | |10434 |PFSense: Free swap space in % |system.swap.pfree |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free")/last("system.swap.total")*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 |36812 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10434 |PFSense: Load average (1m avg) |system.cpu.load.avg1 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 1 minute load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36813 |20 |1.3.6.1.4.1.2021.4.3.0 |10434 |PFSense: Total swap space |system.swap.total |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 |36814 |20 |1.3.6.1.2.1.1.3.0 |10434 |PFSense: Uptime |system.uptime |30s |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;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 |36815 |15 | |10434 |PFSense: Available memory |vm.memory.available |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free")+last("vm.memory.buffers")+last("vm.memory.cached") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36816 |20 |1.3.6.1.4.1.2021.4.14.0 |10434 |PFSense: Memory (buffers) |vm.memory.buffers |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of real or virtual memory currently allocated for use as memory buffers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36817 |20 |1.3.6.1.4.1.2021.4.15.0 |10434 |PFSense: Memory (cached) |vm.memory.cached |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of real or virtual memory currently allocated for use as cached memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36818 |20 |1.3.6.1.4.1.2021.4.6.0 |10434 |PFSense: Free memory |vm.memory.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of real/physical memory currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36819 |20 |1.3.6.1.4.1.2021.4.5.0 |10434 |PFSense: Total memory |vm.memory.total |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 |36820 |15 | |10434 |PFSense: Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total")-(last("vm.memory.free")+last("vm.memory.buffers")+last("vm.memory.cached")))/last("vm.memory.total")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36821 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10434 |PFSense: Load average (15m avg) |system.cpu.load.avg15 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 15 minutes load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36822 |20 |1.3.6.1.4.1.2021.11.59.0 |10434 |PFSense: Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Number of interrupts processed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36823 |3 | |10434 |PFSense: ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of lost packets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36824 |20 |1.3.6.1.4.1.12325.1.200.1.2.5.0 |10434 |PFSense: Normalized packets |pfsense.packets.normalize |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36825 |3 | |10434 |PFSense: ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICMP ping response time (in seconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36826 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","dhcpd"] |10434 |PFSense: DHCP server status |pfsense.dhcpd.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of DHCP server process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36827 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","unbound"] |10434 |PFSense: DNS server status |pfsense.dns.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of DNS server process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36828 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","nginx"] |10434 |PFSense: State of nginx process |pfsense.nginx.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of nginx process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36829 |20 |1.3.6.1.4.1.12325.1.200.1.2.2.0 |10434 |PFSense: Packets with bad offset |pfsense.packets.bad.offset |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36830 |20 |1.3.6.1.4.1.12325.1.200.1.2.3.0 |10434 |PFSense: Fragmented packets |pfsense.packets.fragment |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36831 |20 |1.3.6.1.4.1.12325.1.200.1.2.1.0 |10434 |PFSense: Packets matched a filter rule |pfsense.packets.match |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36832 |20 |1.3.6.1.4.1.12325.1.200.1.2.6.0 |10434 |PFSense: Packets dropped due to memory limitation |pfsense.packets.mem.drop |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36833 |20 |1.3.6.1.4.1.12325.1.200.1.2.4.0 |10434 |PFSense: Short packets |pfsense.packets.short |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36834 |20 |1.3.6.1.2.1.1.4.0 |10434 |PFSense: System contact details |system.contact |15m |7d |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 |36835 |20 |1.3.6.1.4.1.12325.1.200.1.1.1.0 |10434 |PFSense: Packet filter running status |pfsense.pf.status |1m |7d |365d |0 |3 | | | | |NULL |257 | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if packet filter is currently enabled |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36836 |20 |.1.3.6.1.4.1.12325.1.200.1.11.1.0 |10434 |PFSense: Firewall rules count |pfsense.rules.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;The number of labeled filter rules on this system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36837 |20 |1.3.6.1.4.1.12325.1.200.1.4.1.0 |10434 |PFSense: Source tracking table current |pfsense.source.tracking.table.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Number of entries in the source tracking table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36838 |20 |1.3.6.1.4.1.12325.1.200.1.5.2.0 |10434 |PFSense: Source tracking table limit |pfsense.source.tracking.table.limit |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Maximum number of 'sticky-address' or 'source-track' rules in the ruleset. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36839 |15 | |10434 |PFSense: Source tracking table utilization in % |pfsense.source.tracking.table.pused |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pfsense.source.tracking.table.count") * 100 / last("pfsense.source.tracking.table.limit") | |0 | | | | |0 |NULL |Utilization of source tracking table in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36840 |20 |1.3.6.1.4.1.12325.1.200.1.3.1.0 |10434 |PFSense: States table current |pfsense.state.table.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Number of entries in the state table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36841 |20 |1.3.6.1.4.1.12325.1.200.1.5.1.0 |10434 |PFSense: States table limit |pfsense.state.table.limit |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Maximum number of 'keep state' rules in the ruleset. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36842 |15 | |10434 |PFSense: States table utilization in % |pfsense.state.table.pused |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pfsense.state.table.count") * 100 / last("pfsense.state.table.limit") | |0 | | | | |0 |NULL |Utilization of state table in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36843 |5 | |10434 |PFSense: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36845 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10434 |Network 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 |36846 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10434 |Block devices discovery |vfs.dev.discovery |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 |36847 |20 |discovery[{#FSNAME},.1.3.6.1.2.1.25.3.8.1.2,{#FSTYPE},.1.3.6.1.2.1.25.3.8.1.4] |10434 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrFS discovery with filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36848 |20 |1.3.6.1.4.1.2021.11.11.0 |10434 |PFSense: CPU idle time |system.cpu.idle[{#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 |36849 |20 |1.3.6.1.4.1.2021.11.56.0 |10434 |PFSense: CPU interrupt time |system.cpu.interrupt[{#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 |36850 |20 |1.3.6.1.4.1.2021.11.54.0 |10434 |PFSense: CPU iowait time |system.cpu.iowait[{#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 |36851 |20 |1.3.6.1.4.1.2021.11.51.0 |10434 |PFSense: CPU nice time |system.cpu.nice[{#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 |36852 |20 |1.3.6.1.4.1.2021.11.52.0 |10434 |PFSense: CPU system time |system.cpu.system[{#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 |36853 |20 |1.3.6.1.4.1.2021.11.50.0 |10434 |PFSense: CPU user time |system.cpu.user[{#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 |36854 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.8["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked |net.if.in.block.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36855 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.22["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked |net.if.out.block.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36856 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |36857 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |36858 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.6["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count |net.if.rules.refs[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of rules referencing this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36859 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |36860 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.21["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed |net.if.out.pass.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36861 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.17["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed |net.if.out.pass.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36862 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.13["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed |net.if.out.pass.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36863 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.9["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed |net.if.out.pass.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36864 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |36865 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |36866 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.18["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked |net.if.out.block.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36867 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.12["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked |net.if.in.block.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36868 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.14["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked |net.if.out.block.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36869 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.10["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked |net.if.out.block.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36870 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |36871 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.19["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed |net.if.in.pass.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36872 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.15["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed |net.if.in.pass.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36873 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.11["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed |net.if.in.pass.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36874 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.7["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed |net.if.in.pass.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36875 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |36876 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |36877 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.20["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked |net.if.in.block.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36878 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.16["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked |net.if.in.block.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36879 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |36880 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk read rate |vfs.dev.read.rate[{#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 |36881 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk utilization |vfs.dev.util[{#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 |36882 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk write rate |vfs.dev.write.rate[{#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 |36883 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Free inodes in % |vfs.fs.inode.pfree[{#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 |36884 |20 |1.3.6.1.4.1.2021.9.1.9["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Space utilization |vfs.fs.pused[{#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 |36885 |20 |1.3.6.1.4.1.2021.9.1.6["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Total space |vfs.fs.total[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |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 |36886 |20 |1.3.6.1.4.1.2021.9.1.8["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Used space |vfs.fs.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |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 |36888 |3 | |10175 |VMware: Hypervisor ping |icmpping[] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the hypervisor is running and accepting ICMP pings. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36889 |5 | |10048 |Zabbix proxy: Required performance |zabbix[requiredperformance] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Required performance of Zabbix proxy, in new values per second expected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36890 |5 | |10048 |Zabbix proxy: Uptime |zabbix[uptime] |1m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zabbix proxy process in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36891 |5 | |10048 |Zabbix proxy: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36892 |5 | |10048 |Zabbix proxy: Values waiting to be sent |zabbix[proxy_history] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of values in the proxy history table waiting to be sent to the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36893 |5 | |10262 |Remote Zabbix proxy: Zabbix stats |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}] |1m |0d |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 |36894 |5 | |10262 |Remote Zabbix proxy: Zabbix stats queue |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36895 |5 | |10262 |Remote Zabbix proxy: Zabbix stats queue over 10m |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36934 |0 | |10432 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36935 |0 | |10432 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36936 |0 | |10432 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"] |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 |36937 |0 | |10432 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.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 |36938 |0 | |10432 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36939 |0 | |10432 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36940 |0 | |10432 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36941 |0 | |10432 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36942 |0 | |10432 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36943 |0 | |10432 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36944 |0 | |10432 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36945 |0 | |10432 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36946 |0 | |10432 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36947 |0 | |10432 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36948 |0 | |10432 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36949 |0 | |10432 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36950 |0 | |10432 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36974 |0 | |10432 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36975 |0 | |10432 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36976 |0 | |10432 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#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 |36977 |0 | |10432 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#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 |
+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 |Zabbix server: Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10062 |5 | |10047 |Zabbix server: Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10063 |5 | |10047 |Zabbix server: Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10064 |5 | |10047 |Zabbix server: Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10065 |5 | |10047 |Zabbix server: Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10066 |5 | |10047 |Zabbix server: Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10067 |5 | |10048 |Zabbix proxy: Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10068 |5 | |10048 |Zabbix proxy: Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10069 |5 | |10048 |Zabbix proxy: Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10070 |5 | |10048 |Zabbix proxy: Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10071 |5 | |10048 |Zabbix proxy: Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10072 |5 | |10048 |Zabbix proxy: Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22183 |5 | |10047 |Zabbix server: History write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22185 |5 | |10047 |Zabbix server: Trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used trend buffer.&eol;Trend cache stores aggregate for the current hour for all items that receive data. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22187 |5 | |10047 |Zabbix server: Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22189 |5 | |10047 |Zabbix server: Configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22191 |5 | |10047 |Zabbix server: Value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix value cache. Percentage of used buffer |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22196 |5 | |10047 |Zabbix server: Value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache) |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22199 |5 | |10047 |Zabbix server: Value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database) |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22219 |5 | |10047 |Zabbix server: Queue over 10 minutes |zabbix[queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes |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 server: History index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22399 |5 | |10047 |Zabbix server: Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22400 |5 | |10047 |Zabbix server: Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22401 |5 | |10047 |Zabbix server: Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22402 |5 | |10047 |Zabbix server: Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22404 |5 | |10047 |Zabbix server: Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22406 |5 | |10047 |Zabbix server: Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22408 |5 | |10047 |Zabbix server: Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22412 |5 | |10047 |Zabbix server: Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22414 |5 | |10047 |Zabbix server: Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22416 |5 | |10047 |Zabbix server: Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22418 |5 | |10047 |Zabbix server: Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22420 |5 | |10047 |Zabbix server: Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time proxy poller processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22422 |5 | |10047 |Zabbix server: Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time escalator processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22424 |5 | |10047 |Zabbix server: Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alerter processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22426 |5 | |10047 |Zabbix server: Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time timer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22430 |5 | |10047 |Zabbix server: Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22689 |5 | |10047 |Zabbix server: Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute |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 |Zabbix server: Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23251 |5 | |10047 |Zabbix server: Queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds |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 |Zabbix proxy: Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23341 |5 | |10048 |Zabbix proxy: History index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23342 |5 | |10048 |Zabbix proxy: History write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23343 |5 | |10048 |Zabbix proxy: Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23344 |5 | |10048 |Zabbix proxy: Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23345 |5 | |10048 |Zabbix proxy: Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23346 |5 | |10048 |Zabbix proxy: Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23347 |5 | |10048 |Zabbix proxy: Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23348 |5 | |10048 |Zabbix proxy: Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23349 |5 | |10048 |Zabbix proxy: Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23350 |5 | |10048 |Zabbix proxy: Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23351 |5 | |10048 |Zabbix proxy: Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time heartbeat sender processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23352 |5 | |10048 |Zabbix proxy: Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23353 |5 | |10048 |Zabbix proxy: Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23354 |5 | |10048 |Zabbix proxy: Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23355 |5 | |10048 |Zabbix proxy: Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23356 |5 | |10048 |Zabbix proxy: Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23357 |5 | |10048 |Zabbix proxy: Configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23358 |5 | |10048 |Zabbix proxy: Queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23359 |5 | |10048 |Zabbix proxy: Queue over 10 minutes |zabbix[queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23360 |5 | |10048 |Zabbix proxy: Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time data sender processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |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 server: VMware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer |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 server: Value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL |Value cache operating mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23663 |5 | |10047 |Zabbix server: Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25366 |5 | |10047 |Zabbix server: Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25368 |5 | |10048 |Zabbix proxy: Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25369 |5 | |10048 |Zabbix proxy: Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25370 |5 | |10047 |Zabbix server: Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25665 |5 | |10047 |Zabbix server: Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25666 |5 | |10047 |Zabbix server: Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute |0 |0 |0 | |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 |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 |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 |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 |27152 |20 |1.3.6.1.2.1.1.5.0 |10204 |System name |system.name |15m |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 |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |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 |The 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 Celsius.&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 |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).&eol;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}. Possible values:&eol;- ok(1) indicates that the agent can obtain the sensor value.&eol;- unavailable(2) indicates that the agent presently cannot obtain the sensor value.&eol;- nonoperational(3) indicates that the agent believes the sensor is broken. The sensor could have a hard failure (disconnected wire), or a soft failure such as out-of-range, jittery, or wildly fluctuating readings. |0 |30d |0 | |NULL |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 server: 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 |Zabbix proxy: Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28251 |5 | |10048 |Zabbix proxy: VMware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28305 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.2.1.99.1.1.1.1,{#SENSOR_INFO},1.3.6.1.2.1.47.1.1.1.1.2,{#SENSOR_PRECISION},1.3.6.1.2.1.99.1.1.1.3,{#THRESHOLD_LO_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.1,{#THRESHOLD_LO_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.2,{#THRESHOLD_HI_WARN},1.3.6.1.4.1.30065.3.12.1.1.1.3,{#THRESHOLD_HI_CRIT},1.3.6.1.4.1.30065.3.12.1.1.1.4]|10254 |Get sensors |sensors.get |1h |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Gets sensors with type, description, and thresholds. |0 |30d |0 | |NULL |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 encountered 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] |1m |7d |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 |1m |7d |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 |1m |7d |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 I/O |tempDescr.discovery.io |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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 |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}] |1m |7d |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}] |1m |7d |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 |7d |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}] |1m |7d |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 |7d |0d |0 |3 | | | | |NULL |71 | | |0 | | | | |2 |NULL |MIB: CPQIDA-MIB&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled.&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled.&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached.&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed.&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|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 |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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}] |1m |7d |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 |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 |28511 |16 | |10260 |Tomcat: Version |jmx["Catalina:type=Server",serverInfo] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |0 |NULL |The version of the Tomcat. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28533 |5 | |10047 |Zabbix server: LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28535 |5 | |10047 |Zabbix server: Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28537 |5 | |10047 |Zabbix server: Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28539 |5 | |10261 |Remote Zabbix server: Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0d |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 |Remote Zabbix server: Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28541 |5 | |10261 |Remote Zabbix server: Zabbix stats queue over 10m |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28617 |5 | |10048 |Zabbix proxy: 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 |Zabbix proxy: Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28619 |5 | |10048 |Zabbix proxy: Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute. |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 | |s | | |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |15m |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 |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |Available memory in % |vm.memory.size[pavailable] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory as percentage of total. See also Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |15m |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 |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |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 |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 |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 |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 |15m |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 |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 |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 |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 |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 |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 |15m |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 |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 |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 |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 |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 |29822 |5 | |10047 |Zabbix server: Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |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] |15m |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] |15m |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] |15m |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] |1m |7d |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 |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 |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 |0 |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 |0 |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 |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |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 |0 |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 |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 |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 |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 |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 |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 |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 |30472 |0 | |10316 |Database discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |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 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |0 |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 |30520 |11 | |10317 |Database 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 |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |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 |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 |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 |30678 |0 | |10320 |Database discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |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 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |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 |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 |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 |change(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( change(es.node.indices.search.query_total[{#ES.NODE}]) + (change(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |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 |change(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.flush.total[{#ES.NODE}]) + (change(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |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 |change(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |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 |change(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |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 |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 |30896 |0 | |10264 |Apache: Get status |web.page.get["{$APACHE.STATUS.SCHEME}://{$APACHE.STATUS.HOST}:{$APACHE.STATUS.PORT}/{$APACHE.STATUS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Getting data from a machine-readable version of the Apache status page.&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 |30923 |3 | |10324 |Etcd: Service's TCP port state |net.tcp.service["{$ETCD.SCHEME}","{HOST.CONN}","{$ETCD.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 |30924 |19 | |10324 |Etcd: Node health |etcd.health |1m |7d |365d |0 |3 | | | | |NULL |96 | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/health | | | |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30925 |19 | |10324 |Etcd: Get node metrics |etcd.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$ETCD.USER} |{$ETCD.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30926 |19 | |10324 |Etcd: Get version |etcd.get_version |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ETCD.SCHEME}://{HOST.CONN}:{$ETCD.PORT}/version | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30968 |3 | |10325 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.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 |30969 |0 | |10325 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30970 |0 | |10325 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30971 |0 | |10325 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30972 |0 | |10325 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30973 |0 | |10325 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30974 |0 | |10325 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30975 |0 | |10325 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30976 |0 | |10325 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30977 |0 | |10325 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30978 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30979 |0 | |10325 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30980 |0 | |10325 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30981 |0 | |10325 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30982 |0 | |10325 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30983 |0 | |10325 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30984 |0 | |10325 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30985 |0 | |10325 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30986 |0 | |10325 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30987 |0 | |10325 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30988 |0 | |10325 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30989 |0 | |10325 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30990 |0 | |10325 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30991 |0 | |10325 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30992 |0 | |10325 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30993 |0 | |10325 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30994 |0 | |10325 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30995 |0 | |10325 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30996 |0 | |10325 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30997 |0 | |10325 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30998 |0 | |10325 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30999 |0 | |10325 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31000 |0 | |10325 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31001 |0 | |10325 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31002 |0 | |10325 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31003 |0 | |10325 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31004 |0 | |10325 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31005 |0 | |10325 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |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 |31006 |0 | |10325 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31007 |0 | |10325 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31008 |0 | |10325 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31009 |0 | |10325 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31010 |3 | |10326 |IIS: {$IIS.PORT} port ping |net.tcp.service[{$IIS.SERVICE},,{$IIS.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 |31011 |7 | |10326 |IIS: Total connection attempts |perf_counter_en["\Web Service(_Total)\Total Connection Attempts (all instances)"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of connections to the Web or FTP service that have been attempted since service startup. The count is the total for all Web sites or FTP sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31012 |7 | |10326 |IIS: Method POST requests per second |perf_counter_en["\Web Service(_Total)\Post Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of HTTP requests using POST method. Generally used for forms or gateway requests. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31013 |7 | |10326 |IIS: Method PROPFIND requests per second |perf_counter_en["\Web Service(_Total)\Propfind Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPFIND method made. Propfind requests retrieve property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31014 |7 | |10326 |IIS: Method PROPPATCH requests per second |perf_counter_en["\Web Service(_Total)\Proppatch Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PROPPATCH method made. Proppatch requests set property values on files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31015 |7 | |10326 |IIS: Method PUT requests per second |perf_counter_en["\Web Service(_Total)\Put Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the PUT method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31016 |7 | |10326 |IIS: Method MS-SEARCH requests per second |perf_counter_en["\Web Service(_Total)\Search Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MS-SEARCH method made. Search requests are used to query the server to find resources that match a set of conditions provided by the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31017 |7 | |10326 |IIS: Uptime |perf_counter_en["\Web Service(_Total)\Service Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31018 |7 | |10326 |IIS: Method Total requests per second |perf_counter_en["\Web Service(_Total)\Total Method Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of all HTTP requests received. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31019 |7 | |10326 |IIS: Method OPTIONS requests per second |perf_counter_en["\Web Service(_Total)\Options Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the OPTIONS method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31020 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Trace Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the TRACE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31021 |7 | |10326 |IIS: Method TRACE requests per second |perf_counter_en["\Web Service(_Total)\Unlock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the UNLOCK method made. Unlock requests are used to remove locks from files. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31022 |7 | |10326 |IIS: Files cache hits percentage |perf_counter_en["\Web Service Cache\File Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode file cache hits to total cache requests (since service startup). Note: This value might be low if the Kernel URI cache hits percentage is high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31023 |7 | |10326 |IIS: File cache misses |perf_counter_en["\Web Service Cache\File Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode file cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31024 |7 | |10326 |IIS: URIs cache hits percentage |perf_counter_en["\Web Service Cache\URI Cache Hits %"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The ratio of user-mode URI Cache Hits to total cache requests (since service startup) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31025 |7 | |10326 |IIS: URI cache misses |perf_counter_en["\Web Service Cache\URI Cache Misses"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of unsuccessful lookups in the user-mode URI cache since service startup. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31026 |7 | |10326 |IIS: World Wide Web Publishing Service (W3SVC) state |service_state[W3SVC] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |The World Wide Web Publishing Service (W3SVC) provides web connectivity and administration of websites through the IIS snap-in. If the World Wide Web Publishing Service stops, the operating system cannot serve any form of web request. This service was dependent on "Windows Process Activation Service". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31027 |7 | |10326 |IIS: Method Total Other requests per second |perf_counter_en["\Web Service(_Total)\Other Request Methods/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total Other Request Methods is the number of HTTP requests that are not OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, MOVE, COPY, MKCOL, PROPFIND, PROPPATCH, SEARCH, LOCK or UNLOCK methods (since service startup). Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31028 |7 | |10326 |IIS: Not Found errors per second |perf_counter_en["\Web Service(_Total)\Not Found Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document could not be found. These are generally reported to the client with HTTP error code 404. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31029 |7 | |10326 |IIS: Anonymous users per second |perf_counter_en["\Web Service(_Total)\Anonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over an anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31030 |7 | |10326 |IIS: Current connections |perf_counter_en["\Web Service(_Total)\Current Connections"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31031 |7 | |10326 |IIS: Bytes Received per second |perf_counter_en["\Web Service(_Total)\Bytes Received/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are received by the service at the Application Layer. Does not include protocol headers or control bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31032 |7 | |10326 |IIS: Bytes Sent per second |perf_counter_en["\Web Service(_Total)\Bytes Sent/sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute at which data bytes are sent by the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31033 |7 | |10326 |IIS: Bytes Total per second |perf_counter_en["\Web Service(_Total)\Bytes Total/Sec", 60] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute of total bytes/sec transferred by the Web service (sum of bytes sent/sec and bytes received/sec). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31034 |7 | |10326 |IIS: Method CGI requests per second |perf_counter_en["\Web Service(_Total)\CGI Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of CGI requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31035 |7 | |10326 |IIS: Connection attempts per second |perf_counter_en["\Web Service(_Total)\Connection Attempts/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average rate per minute that connections using the Web service are being attempted. The count is the average for all Web sites combined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31036 |7 | |10326 |IIS: Method COPY requests per second |perf_counter_en["\Web Service(_Total)\Copy Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the COPY method. Copy requests are used for copying files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31037 |7 | |10326 |IIS: Method DELETE requests per second |perf_counter_en["\Web Service(_Total)\Delete Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the DELETE method made. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31038 |7 | |10326 |IIS: NonAnonymous users per second |perf_counter_en["\Web Service(_Total)\NonAnonymous Users/sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests from users over a non-anonymous connection per second. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31039 |7 | |10326 |IIS: Method Method GET requests per second |perf_counter_en["\Web Service(_Total)\Get Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the GET method. GET requests are generally used for basic file retrievals or image maps, though they can be used with forms. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31040 |7 | |10326 |IIS: Method HEAD requests per second |perf_counter_en["\Web Service(_Total)\Head Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the HEAD method made. HEAD requests generally indicate a client is querying the state of a document they already have to see if it needs to be refreshed. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31041 |7 | |10326 |IIS: Method ISAPI requests per second |perf_counter_en["\Web Service(_Total)\ISAPI Extension Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of ISAPI Extension requests that are simultaneously being processed by the Web service. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31042 |7 | |10326 |IIS: Locked errors per second |perf_counter_en["\Web Service(_Total)\Locked Errors/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of errors due to requests that couldn't be satisfied by the server because the requested document was locked. These are generally reported as an HTTP 423 error code to the client. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31043 |7 | |10326 |IIS: Method LOCK requests per second |perf_counter_en["\Web Service(_Total)\Lock Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests made using the LOCK method. Lock requests are used to lock a file for one user so that only that user can modify the file. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31044 |7 | |10326 |IIS: Method MKCOL requests per second |perf_counter_en["\Web Service(_Total)\Mkcol Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MKCOL method made. Mkcol requests are used to create directories on the server. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31045 |7 | |10326 |IIS: Method MOVE requests per second |perf_counter_en["\Web Service(_Total)\Move Requests/Sec", 60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate of HTTP requests using the MOVE method made. Move requests are used for moving files and directories. Average per minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31046 |7 | |10326 |IIS: Windows Process Activation Service (WAS) state |service_state[WAS] |1m |7d |365d |0 |3 | | | | |NULL |3 | | |0 | | | | |0 |NULL |Windows Process Activation Service (WAS) is a tool for managing worker processes that contain applications that host Windows Communication Foundation (WCF) services. Worker processes handle requests that are sent to a Web Server for specific application pools. Each application pool sets boundaries for the applications it contains. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31047 |7 | |10326 |Application pools discovery |wmi.getall[root\webAdministration, select Name from ApplicationPool] |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 |31048 |7 | |10326 |IIS: AppPool {#APPPOOL} state |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool State"] |1m |7d |365d |0 |3 | | | | |NULL |98 | | |0 | | | | |2 |NULL |The state of the application pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31049 |7 | |10326 |IIS: {#APPPOOL} Uptime |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Current Application Pool Uptime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The web application uptime period since the last restart. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31050 |7 | |10326 |IIS: AppPool {#APPPOOL} recycles |perf_counter_en["\APP_POOL_WAS({#APPPOOL})\Total Application Pool Recycles"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times the application pool has been recycled since Windows Process Activation Service (WAS) started. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31051 |7 | |10326 |IIS: AppPool {#APPPOOL} current queue size |perf_counter_en["\HTTP Service Request Queues({#APPPOOL})\CurrentQueueSize"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of requests in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31054 |3 | |10323 |ClickHouse: Check port availability |net.tcp.service[{$CLICKHOUSE.SCHEME},"{HOST.CONN}","{$CLICKHOUSE.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 |31055 |11 | |10327 |MSSQL: Get performance counters |db.odbc.get[get_status_variables,"{$MSSQL.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT object_name,counter_name,instance_name,cntr_value&bsn;FROM sys.dm_os_performance_counters&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Version' as counter_name,@@version as instance_name,0 as cntr_value&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}' as object_name,'Uptime' as counter_name,'' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value&bsn;FROM sys.dm_os_sys_info&bsn;UNION&bsn;SELECT '{$MSSQL.INSTANCE}:Databases' as object_name,'State' as counter_name,name as instance_name,state as cntr_value&bsn;FROM sys.databases&bsn;UNION&bsn;SELECT a.object_name,'BufferCacheHitRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Buffer cache hit ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Buffer cache hit ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager'&bsn;UNION&bsn;SELECT a.object_name,'WorktablesFromCacheRatio' as counter_name,'' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Worktables From Cache Base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Worktables From Cache Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods'&bsn;UNION&bsn;SELECT a.object_name,'CacheHitRatio' as counter_name,'_Total' as instance_name,cast(a.cntr_value*100.0/b.cntr_value as dec(3,0)) as cntr_value&bsn;FROM sys.dm_os_performance_counters a&bsn;JOIN (SELECT cntr_value,OBJECT_NAME&bsn;FROM sys.dm_os_performance_counters&bsn;WHERE counter_name='Cache Hit Ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total') b&bsn;ON a.OBJECT_NAME=b.OBJECT_NAME&bsn;WHERE a.counter_name='Cache Hit Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total'| |0 |{$MSSQL.USER} |{$MSSQL.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 |31056 |15 | |10327 |MSSQL: Total average wait time |mssql.average_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_wait_time_raw) - prev(mssql.average_wait_time_raw)) /&bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base) + &bsn;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base)=0)) | |0 | | | | |0 |NULL |The average wait time, in milliseconds, for each lock request that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31057 |3 | |10327 |MSSQL: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$MSSQL.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of MS SQL Server on a TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31058 |15 | |10327 |MSSQL: Average latch wait time |mssql.average_latch_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_latch_wait_time_raw) - prev(mssql.average_latch_wait_time_raw)) /&bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base) + &bsn;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base)=0)) | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31122 |11 | |10327 |Availability groups discovery |db.odbc.discovery[availability_groups,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as group_name &bsn;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the existing availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &bsn;FROM sys.databases | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31124 |11 | |10327 |Local database discovery |db.odbc.discovery[local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&bsn;ON arcs.replica_id = drs.replica_id&bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the local availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31125 |11 | |10327 |Mirroring discovery |db.odbc.discovery[mirrors,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT db_name(database_id) as dbname&bsn;FROM sys.database_mirroring&bsn;WHERE mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |To see the row for a database other than master or tempdb, you must&eol;either be the database owner or have at least ALTER ANY DATABASE or VIEW ANY&eol;DATABASE server-level permission or CREATE DATABASE permission in the master&eol;database. To see non-NULL values on a mirror database, you must be a member&eol;of the sysadmin fixed server role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31126 |11 | |10327 |Non-local database discovery |db.odbc.discovery[non-local_db,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name AS group_name, arcs.replica_server_name AS replica_name,&bsn;db_name(drs.database_id) AS dbname, drs.is_local&bsn;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs &bsn;ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE drs.is_local = 0 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the non-local (not local to the SQL Server instance) availability databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31127 |11 | |10327 |Replication discovery |db.odbc.discovery[replicas,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the database replicas. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31128 |11 | |10327 |MSSQL AG '{#GROUP_NAME}': Get replica states |db.odbc.get[{#GROUP_NAME}_replica_states,"{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ag.name as group_name,&bsn;ISNULL(ags.primary_recovery_health, 2) as primary_recovery_health,&bsn;ISNULL(ags.primary_replica, 'Unknown') as primary_replica,&bsn;ISNULL(ags.secondary_recovery_health, 2) as secondary_recovery_health,&bsn;ags.synchronization_health as synchronization_health&bsn;FROM sys.dm_hadr_availability_group_states ags JOIN sys.availability_groups ag ON ag.group_id = ags.group_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting replica states - name, primary and secondary health, synchronization health. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31129 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Get local DB states |db.odbc.get["{#GROUP_NAME}_{#DBNAME}_local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.database_state as database_state, &bsn;drs.is_suspended as is_suspended, &bsn;drs.synchronization_health as synchronization_health, &bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31130 |11 | |10327 |MSSQL Mirroring '{#DBNAME}': Get the mirror state |db.odbc.get["{#DBNAME}_mirroring_state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ISNULL(m.mirroring_role,0) as mirroring_role,&bsn;ISNULL(m.mirroring_role_sequence,0) as mirroring_role_sequence,&bsn;ISNULL(m.mirroring_state,7) as mirroring_state,&bsn;ISNULL(m.mirroring_witness_state,3) as mirroring_witness_state,&bsn;ISNULL(m.mirroring_safety_level,3) as mirroring_safety_level,&bsn;db_name(m.database_id) as dbname &bsn;FROM sys.database_mirroring as m&bsn;WHERE m.mirroring_state_desc IS NOT NULL | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting mirrors state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31132 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Get the replica state |db.odbc.get["{#GROUP_NAME}_{#REPLICA_NAME}_replica.state","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT ars.connected_state as connected_state,&bsn;ars.is_local as is_local,&bsn;arcs.join_state as join_state,&bsn;ISNULL(ars.operational_state,6) as operational_state,&bsn;ISNULL(ars.recovery_health,2) as recovery_health,&bsn;ars.role as role,&bsn;ars.synchronization_health as synchronization_health,&bsn;ag.name as group_name, &bsn;arcs.replica_server_name as replica_name&bsn;FROM sys.dm_hadr_availability_replica_cluster_states as arcs &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&bsn;WHERE ag.name = '{#GROUP_NAME}' AND arcs.replica_server_name = '{#REPLICA_NAME}' | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the database replica states. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31180 |0 | |10328 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31181 |0 | |10328 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31182 |0 | |10328 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31183 |0 | |10328 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31185 |0 | |10328 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31186 |0 | |10328 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |31188 |0 | |10328 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31189 |0 | |10328 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31190 |0 | |10328 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31191 |0 | |10328 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31192 |0 | |10328 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31193 |0 | |10328 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31194 |0 | |10328 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31195 |0 | |10328 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31196 |0 | |10328 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31240 |0 | |10328 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |31241 |0 | |10328 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31242 |0 | |10328 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |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 |31243 |0 | |10328 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31273 |0 | |10275 |Block devices discovery |vfs.dev.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 |31276 |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 |31277 |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 |31278 |0 | |10275 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31305 |7 | |10281 |Block devices discovery |vfs.dev.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 |31307 |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 |31308 |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 |31309 |7 | |10281 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Get contents of /sys/block/{#DEVNAME}/stat for disk stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31325 |0 | |10286 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31326 |0 | |10287 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31327 |15 | |10287 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31333 |0 | |10289 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31336 |0 | |10289 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |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 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31337 |0 | |10289 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31338 |0 | |10289 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31343 |7 | |10293 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical processors available on the computer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31344 |7 | |10294 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The used space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31345 |15 | |10294 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("system.swap.size[,total]") - last("system.swap.size[,total]") / 100 * last("perf_counter_en[\"\Paging file(_Total)\% Usage\"]") | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31351 |7 | |10296 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31354 |7 | |10296 |{#DEVNAME}: Disk average queue size (avgqu-sz) |perf_counter_en["\PhysicalDisk({#DEVNAME})\Current Disk Queue Length",60] |1m |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 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31355 |7 | |10296 |{#DEVNAME}: Disk read rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Reads/sec",60] |1m |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of read operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31356 |7 | |10296 |{#DEVNAME}: Disk write rate |perf_counter_en["\PhysicalDisk({#DEVNAME})\Disk Writes/sec",60] |1m |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of write operations on the disk. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31499 |16 | |10169 |ClassLoading: Loaded class count |jmx["java.lang:type=ClassLoading","LoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays number of classes that are currently loaded in the Java virtual machine. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31500 |16 | |10169 |MemoryPool: PS Perm Gen used |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31501 |16 | |10169 |MemoryPool: Code Cache committed |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31502 |16 | |10169 |MemoryPool: CodeCache maximum size |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31503 |16 | |10169 |MemoryPool: Code Cache used |jmx["java.lang:type=MemoryPool,name=Code Cache","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31504 |16 | |10169 |MemoryPool: Perm Gen committed |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31505 |16 | |10169 |MemoryPool: Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31506 |16 | |10169 |MemoryPool: Perm Gen used |jmx["java.lang:type=MemoryPool,name=Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31507 |16 | |10169 |MemoryPool: PS Old Gen |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31508 |16 | |10169 |MemoryPool: PS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31509 |16 | |10169 |MemoryPool: PS Old Gen used |jmx["java.lang:type=MemoryPool,name=PS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31510 |16 | |10169 |MemoryPool: PS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31511 |16 | |10169 |MemoryPool: PS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=PS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31512 |16 | |10169 |MemoryPool: Tenured Gen committed |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31513 |16 | |10169 |MemoryPool: CMS Perm Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31514 |16 | |10169 |MemoryPool: Tenured Gen maximum size |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31515 |16 | |10169 |MemoryPool: Tenured Gen used |jmx["java.lang:type=MemoryPool,name=Tenured Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31516 |16 | |10169 |OperatingSystem: File descriptors maximum count |jmx["java.lang:type=OperatingSystem","MaxFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of file descriptors we can have opened in the same process, as determined by the operating system. You can never have more file descriptors than this number. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31517 |16 | |10169 |OperatingSystem: File descriptors opened |jmx["java.lang:type=OperatingSystem","OpenFileDescriptorCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This is the number of opened file descriptors at the moment, if this reaches the MaxFileDescriptorCount, the application will throw an IOException: Too many open files. This could mean you're are opening file descriptors and never closing them. |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 |31518 |16 | |10169 |OperatingSystem: Process CPU Load |jmx["java.lang:type=OperatingSystem","ProcessCpuLoad"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |ProcessCpuLoad represents the CPU load in this process. |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 |31519 |16 | |10169 |Runtime: JVM uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |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 |31520 |16 | |10169 |Runtime: JVM name |jmx["java.lang:type=Runtime","VmName"] |1h |7d |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 |31521 |16 | |10169 |Runtime: JVM version |jmx["java.lang:type=Runtime","VmVersion"] |1h |7d |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 |31522 |16 | |10169 |Threading: Daemon thread count |jmx["java.lang:type=Threading","DaemonThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of daemon threads running. |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 |31523 |16 | |10169 |Threading: Peak thread count |jmx["java.lang:type=Threading","PeakThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of threads being executed at the same time since the JVM was started or the peak was reset. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31524 |16 | |10169 |Threading: Thread count |jmx["java.lang:type=Threading","ThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads running at the current moment. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31525 |16 | |10169 |MemoryPool: CMS Perm Gen used |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31526 |16 | |10169 |MemoryPool: CMS Perm Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Perm Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31527 |16 | |10169 |ClassLoading: Total loaded class count |jmx["java.lang:type=ClassLoading","TotalLoadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31528 |16 | |10169 |GarbageCollector: PS MarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31529 |16 | |10169 |ClassLoading: Unloaded class count |jmx["java.lang:type=ClassLoading","UnloadedClassCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes that have been loaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31530 |16 | |10169 |Compilation: Name of the current JIT compiler |jmx["java.lang:type=Compilation","Name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of classes unloaded since the Java virtual machine has started execution. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31531 |16 | |10169 |Compilation: Accumulated time spent |jmx["java.lang:type=Compilation","TotalCompilationTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated elapsed time spent in compilation, in seconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31532 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep number of collections per second |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31533 |16 | |10169 |GarbageCollector: ConcurrentMarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ConcurrentMarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31534 |16 | |10169 |GarbageCollector: Copy number of collections per second |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31535 |16 | |10169 |GarbageCollector: Copy accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=Copy","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31536 |16 | |10169 |GarbageCollector: MarkSweepCompact number of collections per second |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31537 |16 | |10169 |GarbageCollector: MarkSweepCompact accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=MarkSweepCompact","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31538 |16 | |10169 |GarbageCollector: ParNew number of collections per second |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31539 |16 | |10169 |GarbageCollector: ParNew accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=ParNew","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31540 |16 | |10169 |GarbageCollector: PS MarkSweep accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS MarkSweep","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31541 |16 | |10169 |MemoryPool: CMS Old Gen used |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage |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 |31542 |16 | |10169 |GarbageCollector: PS Scavenge number of collections per second |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionCount"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the total number of collections that have occurred per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31543 |16 | |10169 |GarbageCollector: PS Scavenge accumulated time spent in collection |jmx["java.lang:type=GarbageCollector,name=PS Scavenge","CollectionTime"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Displays the approximate accumulated collection elapsed time, in seconds. |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 |31544 |16 | |10169 |Memory: Heap memory committed |jmx["java.lang:type=Memory","HeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current heap memory allocated. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31545 |16 | |10169 |Memory: Heap memory maximum size |jmx["java.lang:type=Memory","HeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of heap that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31546 |16 | |10169 |Memory: Heap memory used |jmx["java.lang:type=Memory","HeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap. |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 |31547 |16 | |10169 |Memory: Non-Heap memory committed |jmx["java.lang:type=Memory","NonHeapMemoryUsage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated outside the heap. This amount of memory is guaranteed for the Java virtual machine to use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31548 |16 | |10169 |Memory: Non-Heap memory maximum size |jmx["java.lang:type=Memory","NonHeapMemoryUsage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of non-heap memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31549 |16 | |10169 |Memory: Non-Heap memory used |jmx["java.lang:type=Memory","NonHeapMemoryUsage.used"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory usage outside the heap |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 |31550 |16 | |10169 |Memory: Object pending finalization count |jmx["java.lang:type=Memory","ObjectPendingFinalizationCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The approximate number of objects for which finalization is pending. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31551 |16 | |10169 |MemoryPool: CMS Old Gen committed |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.committed"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current memory allocated |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 |31552 |16 | |10169 |MemoryPool: CMS Old Gen maximum size |jmx["java.lang:type=MemoryPool,name=CMS Old Gen","Usage.max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of memory that can be used for memory management. This amount of memory is not guaranteed to be available if it is greater than the amount of committed memory. The Java virtual machine may fail to allocate memory even if the amount of used memory does not exceed this maximum size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31553 |16 | |10169 |Threading: Total started thread count |jmx["java.lang:type=Threading","TotalStartedThreadCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads started since the JVM was launched. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31554 |3 | |10173 |VMware: Event log |vmware.eventlog[{$VMWARE.URL},skip] |1m |7d |0 |0 |2 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Collect VMware event log. See also: https://www.zabbix.com/documentation/5.0/manual/config/items/preprocessing/examples#filtering_vmware_event_log_records |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31555 |3 | |10173 |VMware: Full name |vmware.fullname[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service full name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31556 |3 | |10173 |VMware: Version |vmware.version[{$VMWARE.URL}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware service version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31557 |3 | |10174 |VMware: Cluster name |vmware.vm.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31558 |3 | |10174 |VMware: Swapped memory |vmware.vm.memory.size.swapped[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory swapped out to the VM's swap device by ESX. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31559 |3 | |10174 |VMware: Unshared storage space |vmware.vm.storage.unshared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31560 |3 | |10174 |VMware: Uncommitted storage space |vmware.vm.storage.uncommitted[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31561 |3 | |10174 |VMware: Committed storage space |vmware.vm.storage.committed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31562 |3 | |10174 |VMware: Power state |vmware.vm.powerstate[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |12 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31563 |3 | |10174 |VMware: Memory size |vmware.vm.memory.size[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Total size of configured memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31564 |3 | |10174 |VMware: Host memory usage |vmware.vm.memory.size.usage.host[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of host physical memory allocated to the VM, accounting for saving from memory sharing with other VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31565 |3 | |10174 |VMware: Guest memory usage |vmware.vm.memory.size.usage.guest[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is being used by the VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31566 |3 | |10174 |VMware: Shared memory |vmware.vm.memory.size.shared[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory shared through transparent page sharing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31567 |3 | |10174 |VMware: Number of virtual CPUs |vmware.vm.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31568 |3 | |10174 |VMware: Private memory |vmware.vm.memory.size.private[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Amount of memory backed by host memory and not being shared. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31569 |3 | |10174 |VMware: Compressed memory |vmware.vm.memory.size.compressed[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of memory currently in the compression cache for this VM. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31570 |3 | |10174 |VMware: Ballooned memory |vmware.vm.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31571 |3 | |10174 |VMware: Hypervisor name |vmware.vm.hv.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31572 |3 | |10174 |VMware: Datacenter name |vmware.vm.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31573 |3 | |10174 |VMware: CPU usage |vmware.vm.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Current upper-bound on CPU usage. The upper-bound is based on the host the 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 |31574 |3 | |10174 |VMware: CPU ready |vmware.vm.cpu.ready[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31575 |3 | |10174 |VMware: Uptime |vmware.vm.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31576 |3 | |10175 |VMware: Cluster name |vmware.hv.cluster.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31577 |3 | |10175 |VMware: Vendor |vmware.hv.hw.vendor[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware vendor identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31578 |3 | |10175 |VMware: Version |vmware.hv.version[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Dot-separated version string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31579 |3 | |10175 |VMware: Uptime |vmware.hv.uptime[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |System uptime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31580 |3 | |10175 |VMware: Overall status |vmware.hv.status[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The overall alarm status of the host: gray - unknown, green - 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 |31582 |3 | |10175 |VMware: Number of bytes transmitted |vmware.hv.network.out[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31583 |3 | |10175 |VMware: Number of bytes received |vmware.hv.network.in[{$VMWARE.URL},{HOST.HOST},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |VMware hypervisor network input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31584 |3 | |10175 |VMware: Used memory |vmware.hv.memory.used[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31585 |3 | |10175 |VMware: Ballooned memory |vmware.hv.memory.size.ballooned[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The amount of guest physical memory that is currently reclaimed through the balloon driver. Sum of all guest VMs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31586 |3 | |10175 |VMware: Bios UUID |vmware.hv.hw.uuid[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The hardware BIOS identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31587 |3 | |10175 |VMware: CPU usage |vmware.hv.cpu.usage[{$VMWARE.URL},{HOST.HOST}] |1m |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Aggregated CPU usage across all cores on the host in Hz. This is only available if the host is connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31588 |3 | |10175 |VMware: Model |vmware.hv.hw.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The system model identification. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31589 |3 | |10175 |VMware: Total memory |vmware.hv.hw.memory[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The physical memory size. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31590 |3 | |10175 |VMware: CPU threads |vmware.hv.hw.cpu.threads[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31591 |3 | |10175 |VMware: CPU cores |vmware.hv.hw.cpu.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of physical CPU cores on the host. Physical CPU cores are the processors contained by a CPU package. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31592 |3 | |10175 |VMware: CPU model |vmware.hv.hw.cpu.model[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The CPU model. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31593 |3 | |10175 |VMware: CPU frequency |vmware.hv.hw.cpu.freq[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | |Hz | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |The speed of the CPU cores. This is an average value if there are multiple speeds. The product of CPU frequency and 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 |31594 |3 | |10175 |VMware: Full name |vmware.hv.fullname[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31595 |3 | |10175 |VMware: Datacenter name |vmware.hv.datacenter.name[{$VMWARE.URL},{HOST.HOST}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Datacenter name of the hypervisor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31596 |3 | |10175 |VMware: Number of guest VMs |vmware.hv.vm.num[{$VMWARE.URL},{HOST.HOST}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Number of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31597 |3 | |10173 |Discover VMware clusters |vmware.cluster.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of clusters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31598 |3 | |10173 |Discover VMware datastores |vmware.datastore.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31599 |3 | |10173 |Discover VMware hypervisors |vmware.hv.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of hypervisors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31600 |3 | |10173 |Discover VMware VMs |vmware.vm.discovery[{$VMWARE.URL}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of guest virtual machines. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31601 |3 | |10174 |Network device discovery |vmware.vm.net.if.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all network devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31602 |3 | |10174 |Disk device discovery |vmware.vm.vfs.dev.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL |Discovery of all disk devices. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31603 |3 | |10174 |Mounted filesystem discovery |vmware.vm.vfs.fs.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.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 |31604 |3 | |10175 |Datastore discovery |vmware.hv.datastore.discovery[{$VMWARE.URL},{HOST.HOST}] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31605 |3 | |10173 |VMware: Status of "{#CLUSTER.NAME}" cluster |vmware.cluster.status[{$VMWARE.URL},{#CLUSTER.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |13 | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware cluster status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31606 |3 | |10173 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.datastore.read[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31607 |3 | |10173 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31608 |3 | |10173 |VMware: Total size of datastore {#DATASTORE} |vmware.datastore.size[{$VMWARE.URL},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31609 |3 | |10173 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.datastore.write[{$VMWARE.URL},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31610 |3 | |10174 |VMware: Number of bytes received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31611 |3 | |10174 |VMware: Number of packets received on interface {#IFDESC} |vmware.vm.net.if.in[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface input statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31612 |3 | |10174 |VMware: Number of bytes transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31613 |3 | |10174 |VMware: Number of packets transmitted on interface {#IFDESC} |vmware.vm.net.if.out[{$VMWARE.URL},{HOST.HOST},{#IFNAME},pps] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine network interface output statistics (packets per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31614 |3 | |10174 |VMware: Average number of bytes read from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31615 |3 | |10174 |VMware: Average number of reads from the disk {#DISKDESC} |vmware.vm.vfs.dev.read[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device read statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31616 |3 | |10174 |VMware: Average number of bytes written to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},bps] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (bytes per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31617 |3 | |10174 |VMware: Average number of writes to the disk {#DISKDESC} |vmware.vm.vfs.dev.write[{$VMWARE.URL},{HOST.HOST},{#DISKNAME},ops] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine disk device write statistics (operations per second). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31618 |3 | |10174 |VMware: Free disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31619 |3 | |10174 |VMware: Free disk space on {#FSNAME} (percentage) |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine file system statistics (percentages). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31620 |3 | |10174 |VMware: Total disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},total] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine total disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31621 |3 | |10174 |VMware: Used disk space on {#FSNAME} |vmware.vm.vfs.fs.size[{$VMWARE.URL},{HOST.HOST},{#FSNAME},used] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware virtual machine used disk space (bytes). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31622 |3 | |10175 |VMware: Average read latency of the datastore {#DATASTORE} |vmware.hv.datastore.read[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a read operation from the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31623 |3 | |10175 |VMware: Free space on datastore {#DATASTORE} (percentage) |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},pfree] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in percentage from total. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31624 |3 | |10175 |VMware: Total size of datastore {#DATASTORE} |vmware.hv.datastore.size[{$VMWARE.URL},{HOST.HOST},{#DATASTORE}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |VMware datastore space in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31625 |3 | |10175 |VMware: Average write latency of the datastore {#DATASTORE} |vmware.hv.datastore.write[{$VMWARE.URL},{HOST.HOST},{#DATASTORE},latency] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |2 |NULL |Average amount of time for a write operation to the datastore (milliseconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31626 |15 | |10327 |MSSQL: Percent of Adhoc queries running |mssql.percent_of_adhoc_queries |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_compilations_sec.rate) * 100 /&bsn;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31627 |15 | |10327 |MSSQL: Full scans to Index searches ratio |mssql.scan_to_search |0;m0-59s3 |7d |365d |0 |0 | | | | |NULL |NULL |last(mssql.full_scans_sec.rate) / (last(mssql.index_searches_sec.rate) + (last(mssql.index_searches_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of Full scans per second to Index searches per second. The threshold recommendation is strictly for OLTP workloads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31628 |15 | |10327 |MSSQL: Percent of Recompiled Transact-SQL Objects |mssql.percent_recompilations_to_compilations |0;m0-59s3 |7d |365d |0 |0 | |% | | |NULL |NULL |last(mssql.sql_recompilations_sec.rate) * 100 /&bsn;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31629 |0 | |10333 |Oracle: Ping |oracle.ping["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the connection to Oracle Database state |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31630 |0 | |10333 |Oracle: Datafiles count |oracle.datafiles.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31631 |0 | |10333 |Oracle: Get FRA stats |oracle.fra.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get FRA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31632 |0 | |10333 |Oracle: Number of processes |oracle.proc.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |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 |31633 |0 | |10333 |Oracle: Get SGA stats |oracle.sga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get SGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31634 |0 | |10333 |Oracle: Get PDB info |oracle.pdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about PDB databases on instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31635 |0 | |10333 |Oracle: Get ASM stats |oracle.diskgroups.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31636 |0 | |10333 |Oracle: Get system metrics |oracle.sys.metrics["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31637 |0 | |10333 |Oracle: Get instance state |oracle.instance.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The item gets state of the current instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31638 |0 | |10333 |Oracle: Get system parameters |oracle.sys.params["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get a set of system parameter values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31639 |0 | |10333 |Oracle: Get PGA stats |oracle.pga.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get PGA statistics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31640 |0 | |10333 |Oracle: Redo logs available to switch |oracle.redolog.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31641 |0 | |10333 |Oracle: User's expire password |oracle.user.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31642 |0 | |10333 |Oracle: Get archive log info |oracle.archive.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |5m |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 |31643 |0 | |10333 |Oracle: Get sessions stats |oracle.sessions.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}","{$ORACLE.SESSION.LOCK.MAX.TIME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get sessions statistics. {$ORACLE.SESSION.LOCK.MAX.TIME} -- maximum seconds in the current wait condition for counting long time locked sessions. Default: 600 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31644 |0 | |10333 |Oracle: Get CDB and No-CDB info |oracle.cdb.info["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get info about CDB and No-CDB databases on instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31645 |0 | |10333 |Oracle: Get tablespaces stats |oracle.ts.stats["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31706 |0 | |10333 |Archive log discovery |oracle.archive.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31707 |0 | |10333 |Database discovery |oracle.db.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31708 |0 | |10333 |ASM disk groups discovery |oracle.diskgroups.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31709 |0 | |10333 |PDB discovery |oracle.pdb.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31710 |0 | |10333 |Tablespace discovery |oracle.ts.discovery["{$ORACLE.CONNSTRING}","{$ORACLE.USER}","{$ORACLE.PASSWORD}","{$ORACLE.SERVICE}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31787 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.10] |10233 |Temperature sensor discovery |mtxrHlTemperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrHlTemperature&eol;Since temperature sensor is not available on all Mikrotik hardware,&eol;this is done to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31788 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7] |10233 |AP channel discovery |mtxrWlAp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlAp |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31789 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |CAPsMAN AP channel discovery |mtxrWlCMChannel.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrWlCMChannel |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31790 |20 |1.3.6.1.4.1.14988.1.1.3.10.{#SNMPINDEX} |10233 |Device: Temperature |sensor.temp.value[mtxrHlTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrHlTemperature Device temperature in Celsius (degrees C).&eol;Might be missing in entry models (RB750, RB450G..).&eol;&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 |31791 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.11.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlApAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31792 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.8.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP band |ssid.band[mtxrWlApBand.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApBand |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31793 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): SSID |ssid.name[mtxrWlApSsid.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApSsid Service Set Identifier. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31794 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.9.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP noise floor |ssid.noise[mtxrWlApNoiseFloor.{#SNMPINDEX}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApNoiseFloor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31795 |20 |1.3.6.1.4.1.14988.1.1.1.3.1.6.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlApClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlApClientCount Client established connection to AP, but didn't finish all authentication procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31796 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP authenticated clients |ssid.authclient[mtxrWlCMAuthClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMAuthClientCount Number of authentication clients. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31797 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.5.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP channel |ssid.channel[mtxrWlCMChannel.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMChannel |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31798 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP registered clients |ssid.regclient[mtxrWlCMRegClientCount.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMRegClientCount Client established connection to AP, but didn't finish all authentication procedures for full connection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31799 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): AP state |ssid.state[mtxrWlCMState.{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrWlCMState Wireless interface state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31800 |0 | |10334 |Ceph: Get df |ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31801 |0 | |10334 |Ceph: Get OSD dump |ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31802 |0 | |10334 |Ceph: Get overall cluster status |ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31803 |0 | |10334 |Ceph: Ping |ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31804 |0 | |10334 |Ceph: Get OSD stats |ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31851 |0 | |10334 |OSD |ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31852 |0 | |10334 |Pool |ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"] |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 |31868 |0 | |10335 |PHP-FPM: Get status page |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.STATUS.PAGE}?json","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31869 |0 | |10335 |PHP-FPM: php-fpm_ping |web.page.get["{$PHP_FPM.HOST}","{$PHP_FPM.PING.PAGE}","{$PHP_FPM.PORT}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31870 |0 | |10335 |PHP-FPM: Number of processes running |proc.num["{$PHP_FPM.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 |31871 |15 | |10335 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+(last(php-fpm.listen_queue_len)=0))*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31872 |0 | |10335 |PHP-FPM: Memory usage (rss) |proc.mem["{$PHP_FPM.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 |31873 |0 | |10335 |PHP-FPM: Memory usage, % |proc.mem["{$PHP_FPM.PROCESS_NAME}",,,,pmem] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage relative to total memory available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31874 |0 | |10335 |PHP-FPM: CPU utilization |proc.cpu.util["{$PHP_FPM.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 |31891 |15 | |10336 |PHP-FPM: Queue usage |php-fpm.listen_queue_usage |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(php-fpm.listen_queue)/(last(php-fpm.listen_queue_len)+(last(php-fpm.listen_queue_len)=0))*100 | |0 | | | | |0 |NULL |Queue utilization |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31892 |19 | |10336 |PHP-FPM: Get status page |php-fpm.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.STATUS.PAGE}?json | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31893 |19 | |10336 |PHP-FPM: Get ping page |php-fpm.get_ping |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$PHP_FPM.SCHEME}://{$PHP_FPM.HOST}:{$PHP_FPM.PORT}/{$PHP_FPM.PING.PAGE} | | |200 |1 |0 | |2 |0 |0 |0 |0 |0 |0 |
+ROW |31910 |3 | |10337 |Squid: Service ping |net.tcp.service[tcp,,{$SQUID.HTTP.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 |31911 |20 |1.3.6.1.4.1.3495.1.3.1.7.0 |10337 |Squid: Objects count |squid[cacheNumObjCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of objects stored by the cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31912 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.5 |10337 |Squid: ICP query service time per 5 minutes |squid[cacheIcpQuerySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31913 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.6.60 |10337 |Squid: ICP query service time per hour |squid[cacheIcpQuerySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP query service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31914 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.5 |10337 |Squid: ICP reply service time per 5 minutes |squid[cacheIcpReplySvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31915 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.7.60 |10337 |Squid: ICP reply service time per hour |squid[cacheIcpReplySvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICP reply service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31916 |20 |1.3.6.1.4.1.3495.1.4.1.3.0 |10337 |Squid: IP cache hits per second |squid[cacheIpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31917 |20 |1.3.6.1.4.1.3495.1.4.1.6.0 |10337 |Squid: IP cache misses per second |squid[cacheIpMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31918 |20 |1.3.6.1.4.1.3495.1.4.1.2.0 |10337 |Squid: IP cache requests per second |squid[cacheIpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of IP Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31919 |20 |1.3.6.1.4.1.3495.1.3.1.6.0 |10337 |Squid: Memory maximum resident size |squid[cacheMaxResSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum Resident Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31920 |20 |1.3.6.1.4.1.3495.1.2.5.1.0 |10337 |Squid: Memory maximum cache size |squid[cacheMemMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The value of the cache_mem parameter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31921 |20 |1.3.6.1.4.1.3495.1.3.1.3.0 |10337 |Squid: Memory cache usage |squid[cacheMemUsage] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total accounted memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31922 |20 |1.3.6.1.4.1.3495.1.3.2.1.1.0 |10337 |Squid: HTTP requests received per second |squid[cacheProtoClientHttpRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP requests received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31923 |20 |1.3.6.1.4.1.3495.1.3.2.1.7.0 |10337 |Squid: ICP messages received per second |squid[cacheIcpPktsRecv] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31924 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.1 |10337 |Squid: Byte hit ratio per 1 minute |squid[cacheRequestByteRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31925 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.5 |10337 |Squid: Byte hit ratio per 5 minutes |squid[cacheRequestByteRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31926 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.10.60 |10337 |Squid: Byte hit ratio per 1 hour |squid[cacheRequestByteRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31927 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.1 |10337 |Squid: Request hit ratio per 1 minute |squid[cacheRequestHitRatio.1] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31928 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.5 |10337 |Squid: Request hit ratio per 5 minutes |squid[cacheRequestHitRatio.5] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31929 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.9.60 |10337 |Squid: Request hit ratio per 1 hour |squid[cacheRequestHitRatio.60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Byte Hit Ratios |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31930 |20 |1.3.6.1.4.1.3495.1.2.5.3.0 |10337 |Squid: Cache swap high water mark |squid[cacheSwapHighWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap High Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31931 |20 |1.3.6.1.4.1.3495.1.2.5.4.0 |10337 |Squid: Cache swap low water mark |squid[cacheSwapLowWM] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Swap Low Water Mark |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31932 |20 |1.3.6.1.4.1.3495.1.2.5.2.0 |10337 |Squid: Cache swap directory size |squid[cacheSwapMaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total of the cache_dir space allocated |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31933 |20 |1.3.6.1.4.1.3495.1.3.1.1.0 |10337 |Squid: Sys page faults per second |squid[cacheSysPageFaults] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Page faults with physical I/O |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31934 |20 |1.3.6.1.4.1.3495.1.1.3.0 |10337 |Squid: Uptime |squid[cacheUptime] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The Uptime of the cache in timeticks (in hundredths of a second) with preprocessing |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31935 |20 |1.3.6.1.4.1.3495.1.3.2.1.6.0 |10337 |Squid: ICP messages sent per second |squid[cacheIcpPktsSent] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP messages sent |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31936 |20 |1.3.6.1.4.1.3495.1.3.2.1.8.0 |10337 |Squid: ICP traffic transmitted per second |squid[cacheIcpKbSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic transmitted |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31937 |20 |1.3.6.1.4.1.3495.1.3.1.5.0 |10337 |Squid: CPU usage |squid[cacheCpuUsage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage use of the CPU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31938 |20 |1.3.6.1.4.1.3495.1.4.2.3.0 |10337 |Squid: FQDN cache hits per second |squid[cacheFqdnHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache hits |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31939 |20 |1.3.6.1.4.1.3495.1.3.1.12.0 |10337 |Squid: File descriptor count - current used |squid[cacheCurrentFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31940 |20 |1.3.6.1.4.1.3495.1.3.1.13.0 |10337 |Squid: File descriptor count - current maximum |squid[cacheCurrentFileDescrMax] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Highest number of file descriptors in use |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31941 |20 |1.3.6.1.4.1.3495.1.3.1.8.0 |10337 |Squid: Objects LRU expiration age |squid[cacheCurrentLRUExpiration] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage LRU Expiration Age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31942 |20 |1.3.6.1.4.1.3495.1.3.1.11.0 |10337 |Squid: File descriptor count - current reserved |squid[cacheCurrentResFileDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reserved number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31943 |20 |1.3.6.1.4.1.3495.1.3.2.1.14.0 |10337 |Squid: Cache swap current size |squid[cacheCurrentSwapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Storage Swap Size |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31944 |20 |1.3.6.1.4.1.3495.1.3.1.9.0 |10337 |Squid: Objects unlinkd requests |squid[cacheCurrentUnlinkRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Requests given to unlinkd |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31945 |20 |1.3.6.1.4.1.3495.1.3.1.10.0 |10337 |Squid: File descriptor count - current available |squid[cacheCurrentUnusedFDescrCnt] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Available number of file descriptors |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31946 |20 |1.3.6.1.4.1.3495.1.4.3.2.0 |10337 |Squid: DNS server replies per second |squid[cacheDnsReplies] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server replies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31947 |20 |1.3.6.1.4.1.3495.1.4.3.1.0 |10337 |Squid: DNS server requests per second |squid[cacheDnsRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of external dns server requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31948 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.5 |10337 |Squid: DNS service time per 5 minutes |squid[cacheDnsSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31949 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.8.60 |10337 |Squid: DNS service time per hour |squid[cacheDnsSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |DNS service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31950 |20 |1.3.6.1.4.1.3495.1.4.2.6.0 |10337 |Squid: FQDN cache misses per second |squid[cacheFqdnMisses] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache misses |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31951 |20 |1.3.6.1.4.1.3495.1.3.2.1.9.0 |10337 |Squid: ICP traffic received per second |squid[cacheIcpKbRecv] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ICP traffic received |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31952 |20 |1.3.6.1.4.1.3495.1.4.2.2.0 |10337 |Squid: FQDN cache requests per second |squid[cacheFqdnRequests] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of FQDN Cache requests |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31953 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.5 |10337 |Squid: HTTP all service time per 5 minutes |squid[cacheHttpAllSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31954 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.2.60 |10337 |Squid: HTTP all service time per hour |squid[cacheHttpAllSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP all service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31955 |20 |1.3.6.1.4.1.3495.1.3.2.1.3.0 |10337 |Squid: HTTP Errors sent per second |squid[cacheHttpErrors] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Errors sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31956 |20 |1.3.6.1.4.1.3495.1.3.2.1.2.0 |10337 |Squid: HTTP Hits sent from cache per second |squid[cacheHttpHits] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP Hits sent to clients from cache |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31957 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpHitSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31958 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.5.60 |10337 |Squid: HTTP hit service time per hour |squid[cacheHttpHitSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP hit service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31959 |20 |1.3.6.1.4.1.3495.1.3.2.1.4.0 |10337 |Squid: HTTP traffic received per second |squid[cacheHttpInKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic received from clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31960 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.5 |10337 |Squid: HTTP miss service time per 5 minutes |squid[cacheHttpMissSvcTime.5] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per 5 minutes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31961 |20 |1.3.6.1.4.1.3495.1.3.2.2.1.3.60 |10337 |Squid: HTTP miss service time per hour |squid[cacheHttpMissSvcTime.60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |HTTP miss service time per hour |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31962 |20 |1.3.6.1.4.1.3495.1.3.2.1.5.0 |10337 |Squid: HTTP traffic sent per second |squid[cacheHttpOutKb] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of HTTP traffic sent to clients |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31963 |20 |1.3.6.1.4.1.3495.1.2.3.0 |10337 |Squid: Version |squid[cacheVersionId] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache Software Version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31964 |20 |discovery[{#IFNAME},1.3.6.1.4.1.14988.1.1.14.1.1.2,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10233 |LTE modem discovery |mtxrLTEModem.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |MIKROTIK-MIB::mtxrLTEModemInterfaceIndex |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31965 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.4.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP |lte.modem.rsrp[mtxrLTEModemSignalRSRP.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRP Reference Signal Received Power. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31966 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.3.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ |lte.modem.rsrq[mtxrLTEModemSignalRSRQ.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSRQ Reference Signal Received Quality. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31967 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.2.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI |lte.modem.rssi[mtxrLTEModemSignalRSSI.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dbm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalRSSI Received Signal Strength Indicator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31968 |20 |1.3.6.1.4.1.14988.1.1.16.1.1.7.{#SNMPINDEX} |10233 |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR |lte.modem.sinr[mtxrLTEModemSignalSINR.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |db | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MIKROTIK-MIB&eol;mtxrLTEModemSignalSINR Signal to Interference & Noise Ratio. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32012 |19 | |10339 |Get DataNodes states |hadoop.datanodes.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32013 |19 | |10339 |Get NodeManagers states |hadoop.nodemanagers.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32014 |3 | |10339 |NameNode: Service status |net.tcp.service["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop NameNode API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32015 |3 | |10339 |ResourceManager: Service response time |net.tcp.service.perf["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop ResourceManager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32016 |3 | |10339 |NameNode: Service response time |net.tcp.service.perf["tcp","{$HADOOP.NAMENODE.HOST}","{$HADOOP.NAMENODE.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Hadoop NameNode API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32017 |19 | |10339 |Get ResourceManager stats |hadoop.resourcemanager.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32018 |3 | |10339 |ResourceManager: Service status |net.tcp.service["tcp","{$HADOOP.RESOURCEMANAGER.HOST}","{$HADOOP.RESOURCEMANAGER.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Hadoop ResourceManager API port availability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32019 |19 | |10339 |Get NameNode stats |hadoop.namenode.get |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32046 |19 | |10339 |Data node discovery |hadoop.datanode.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.NAMENODE.HOST}:{$HADOOP.NAMENODE.PORT}/jmx?qry=Hadoop:service=NameNode,name=NameNodeInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32047 |19 | |10339 |Node manager discovery |hadoop.nodemanager.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s |{$HADOOP.RESOURCEMANAGER.HOST}:{$HADOOP.RESOURCEMANAGER.PORT}/jmx?qry=Hadoop:service=ResourceManager,name=RMNMInfo | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32048 |19 | |10339 |Hadoop DataNode {#HOSTNAME}: Get stats |hadoop.datanode.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#INFOADDR}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32049 |19 | |10339 |Hadoop NodeManager {#HOSTNAME}: Get stats |hadoop.nodemanager.get[{#HOSTNAME}] |1m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s |{#NODEHTTPADDRESS}/jmx | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32071 |16 | |10340 |Kafka: Leader election per second |jmx["kafka.controller:type=ControllerStats,name=LeaderElectionRateAndTimeMs","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of leader elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32072 |16 | |10340 |Kafka: Request handler average idle percent |jmx["kafka.server:type=KafkaRequestHandlerPool,name=RequestHandlerAvgIdlePercent","OneMinuteRate"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Indicates the percentage of time that the request handler (IO) threads are not in use. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32073 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time for a request to update metadata. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32074 |16 | |10340 |Kafka: Network processor average idle percent |jmx["kafka.network:type=SocketServer,name=NetworkProcessorAvgIdlePercent","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The average percentage of time that the network processors are idle. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32075 |16 | |10340 |Kafka: Uptime |jmx["kafka.server:type=app-info","start-time-ms"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Service uptime in seconds. |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 |32076 |16 | |10340 |Kafka: Version |jmx["kafka.server:type=app-info","version"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Current version of broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32077 |16 | |10340 |Kafka: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data sent from producers is consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32078 |16 | |10340 |Kafka: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which data is fetched and read from the broker by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32079 |16 | |10340 |Kafka: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which bytes rejected per second by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32080 |16 | |10340 |Kafka: Client fetch request failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedFetchRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of client fetch request failures per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32081 |16 | |10340 |Kafka: Produce requests failed per second |jmx["kafka.server:type=BrokerTopicMetrics,name=FailedProduceRequestsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of failed produce requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32082 |16 | |10340 |Kafka: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which individual messages are consumed by the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32083 |16 | |10340 |Kafka: Requests in producer purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Fetch","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in producer purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32084 |16 | |10340 |Kafka: Requests in fetch purgatory |jmx["kafka.server:type=DelayedOperationPurgatory,name=PurgatorySize,delayedOperation=Produce","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of requests waiting in fetch purgatory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32085 |16 | |10340 |Kafka: Replication maximum lag |jmx["kafka.server:type=ReplicaFetcherManager,name=MaxLag,clientId=Replica","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum lag between the time that messages are received by the leader replica and by the follower replicas. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32086 |16 | |10340 |Kafka: UpdateMetadata request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32087 |16 | |10340 |Kafka: ISR expands per second |jmx["kafka.server:type=ReplicaManager,name=IsrExpandsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The rate at which the number of ISRs in the broker increases. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32088 |16 | |10340 |Kafka: ISR shrink per second |jmx["kafka.server:type=ReplicaManager,name=IsrShrinksPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Rate of replicas leaving the ISR pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32089 |16 | |10340 |Kafka: Leader count |jmx["kafka.server:type=ReplicaManager,name=LeaderCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of replicas for which this broker is the leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32090 |16 | |10340 |Kafka: Partition count |jmx["kafka.server:type=ReplicaManager,name=PartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions in the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32091 |16 | |10340 |Kafka: Number of reassigning partitions |jmx["kafka.server:type=ReplicaManager,name=ReassigningPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of reassigning leader partitions on a broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32092 |16 | |10340 |Kafka: Under minimum ISR partition count |jmx["kafka.server:type=ReplicaManager,name=UnderMinIsrPartitionCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions under the minimum In-Sync Replica (ISR) count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32093 |16 | |10340 |Kafka: Under replicated partitions |jmx["kafka.server:type=ReplicaManager,name=UnderReplicatedPartitions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of partitions that have not been fully replicated in the follower replicas (the number of non-reassigning replicas - the number of ISR > 0). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32094 |16 | |10340 |Kafka: Request queue size |jmx["kafka.server:type=Request","queue-size"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The size of the delay queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32095 |16 | |10340 |Kafka: ZooKeeper connection status |jmx["kafka.server:type=SessionExpireListener,name=SessionState","Value"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Connection status of broker's ZooKeeper session. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32096 |16 | |10340 |Kafka: ZooKeeper disconnect rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperDisconnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client disconnect per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32097 |16 | |10340 |Kafka: ZooKeeper session expiration rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperExpiresPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client session expiration per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32098 |16 | |10340 |Kafka: ZooKeeper readonly rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperReadOnlyConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client readonly per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32099 |16 | |10340 |Kafka: ZooKeeper sync rate |jmx["kafka.server:type=SessionExpireListener,name=ZooKeeperSyncConnectsPerSec","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |ZooKeeper client sync per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32100 |16 | |10340 |Kafka: UpdateMetadata request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=UpdateMetadata","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time for update metadata requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32101 |16 | |10340 |Kafka: Produce request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Produce request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32102 |16 | |10340 |Kafka: Unclean leader election per second |jmx["kafka.controller:type=ControllerStats,name=UncleanLeaderElectionsPerSec","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of “unclean” elections per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32103 |16 | |10340 |Kafka: Produce response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32104 |16 | |10340 |Kafka: Controller state on broker |jmx["kafka.controller:type=KafkaController,name=ActiveControllerCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |122 | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |One indicates that the broker is the controller for the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32105 |16 | |10340 |Kafka: Offline partitions count |jmx["kafka.controller:type=KafkaController,name=OfflinePartitionsCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Number of partitions that don't have an active leader. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32106 |16 | |10340 |Kafka: Ineligible pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32107 |16 | |10340 |Kafka: Pending replica deletes |jmx["kafka.controller:type=KafkaController,name=ReplicasToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending replica deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32108 |16 | |10340 |Kafka: Ineligible pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsIneligibleToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of ineligible pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32109 |16 | |10340 |Kafka: Pending topic deletes |jmx["kafka.controller:type=KafkaController,name=TopicsToDeleteCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of pending topic deletes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32110 |16 | |10340 |Kafka: Offline log directory count |jmx["kafka.log:type=LogManager,name=OfflineLogDirectoryCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The number of offline log directories (for example, after a hardware failure). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32111 |16 | |10340 |Kafka: Fetch-Consumer response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32112 |16 | |10340 |Kafka: Fetch-Consumer response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32113 |16 | |10340 |Kafka: Fetch-Consumer response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32114 |16 | |10340 |Kafka: Fetch-Follower response send time, p95 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32115 |16 | |10340 |Kafka: Fetch-Follower response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32116 |16 | |10340 |Kafka: Fetch-Follower response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32117 |16 | |10340 |Kafka: Produce response send time, p99 |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The time taken, in milliseconds, to send the response for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32118 |16 | |10340 |Kafka: Produce request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32119 |16 | |10340 |Kafka: Produce response send time, mean |jmx["kafka.network:type=RequestMetrics,name=ResponseSendTimeMs,request=Produce","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time taken, in milliseconds, to send the response. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32120 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32121 |16 | |10340 |Kafka: Temporary memory size in bytes (Fetch), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Fetch","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32122 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), max |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Max"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The maximum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32123 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), avg |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Mean"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The amount of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32124 |16 | |10340 |Kafka: Temporary memory size in bytes (Produce), min |jmx["kafka.network:type=RequestMetrics,name=TemporaryMemoryBytes,request=Produce","Min"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |The minimum of temporary memory used for converting message formats and decompressing messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32125 |16 | |10340 |Kafka: Fetch-Consumer request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Consumer request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32126 |16 | |10340 |Kafka: Fetch-Consumer request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the specified Fetch-Consumer for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32127 |16 | |10340 |Kafka: Fetch-Consumer request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchConsumer","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Consumer request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32128 |16 | |10340 |Kafka: Fetch-Follower request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32129 |16 | |10340 |Kafka: Fetch-Follower request total time, p99 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","99thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Fetch-Follower request for 99th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32130 |16 | |10340 |Kafka: Fetch-Follower request total time, mean |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=FetchFollower","Mean"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Average time in ms to serve the Fetch-Follower request. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32131 |16 | |10340 |Kafka: Produce request total time, p95 |jmx["kafka.network:type=RequestMetrics,name=TotalTimeMs,request=Produce","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Time in ms to serve the Produce requests for 95th percentile. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32132 |16 | |10340 |Kafka: ZooKeeper client request latency |jmx["kafka.server:type=ZooKeeperClientMetrics,name=ZooKeeperRequestLatencyMs","Count"] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |0 |NULL |Latency in milliseconds for ZooKeeper requests from broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32133 |16 | |10340 |Topic Metrics (read) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32134 |16 | |10340 |Topic Metrics (errors) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32135 |16 | |10340 |Topic Metrics (write) |jmx.discovery[beans,"kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32136 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes out per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesOutPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data is fetched and read from the broker by consumers (by topic). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32137 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes rejected per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesRejectedPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |Rejected bytes rate by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32138 |16 | |10340 |Kafka {#JMXTOPIC}: Bytes in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=BytesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which data sent from producers is consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32139 |16 | |10340 |Kafka {#JMXTOPIC}: Messages in per second |jmx["kafka.server:type=BrokerTopicMetrics,name=MessagesInPerSec,topic={#JMXTOPIC}","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$KAFKA.USER} |{$KAFKA.PASSWORD} | | |2 |NULL |The rate at which individual messages are consumed by topic. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32140 |16 | |10260 |Protocol handlers discovery |jmx.discovery[attributes,"Catalina:type=ProtocolHandler,port=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ProtocolHandler |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32141 |16 | |10260 |Global request processors discovery |jmx.discovery[beans,"Catalina:type=GlobalRequestProcessor,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for GlobalRequesProcessor |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32142 |16 | |10260 |Contexts discovery |jmx.discovery[beans,"Catalina:type=Manager,host=*,context=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for contexts |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32143 |16 | |10260 |Thread pools discovery |jmx.discovery[beans,"Catalina:type=ThreadPool,name=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |1 |NULL |Discovery for ThreadPool |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32144 |16 | |10260 |{#JMXVALUE}: Gzip compression status |jmx[{#JMXOBJ},compression] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Gzip compression status on {#JMXNAME}. Enabling gzip compression may save server bandwidth. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32145 |16 | |10260 |{#JMXNAME}: Bytes received per second |jmx[{#JMXOBJ},bytesReceived] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes received rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32146 |16 | |10260 |{#JMXNAME}: Bytes sent per second |jmx[{#JMXOBJ},bytesSent] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Bytes sent rate by processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32147 |16 | |10260 |{#JMXNAME}: Errors per second |jmx[{#JMXOBJ},errorCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Error rate of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32148 |16 | |10260 |{#JMXNAME}: Requests processing time |jmx[{#JMXOBJ},processingTime] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The total time to process all incoming requests of request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32149 |16 | |10260 |{#JMXNAME}: Requests per second |jmx[{#JMXOBJ},requestCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of requests served by request processor {#JMXNAME} |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32150 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active |jmx[{#JMXOBJ},activeSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Active sessions of the application. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32151 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions active maximum so far |jmx[{#JMXOBJ},maxActive] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Maximum number of active sessions so far. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32152 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions allowed maximum |jmx[{#JMXOBJ},maxActiveSessions] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |The maximum number of active Sessions allowed, or -1 for no limit. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32153 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions rejected per second |jmx[{#JMXOBJ},rejectedSessions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions we rejected due to maxActive being reached. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32154 |16 | |10260 |{#JMXHOST}{#JMXCONTEXT}: Sessions created per second |jmx[{#JMXOBJ},sessionCounter] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Rate of sessions created by this application per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32155 |16 | |10260 |{#JMXNAME}: Threads count |jmx[{#JMXOBJ},currentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Amount of threads the thread pool has right now, both busy and free. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32156 |16 | |10260 |{#JMXNAME}: Threads busy |jmx[{#JMXOBJ},currentThreadsBusy] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Number of the requests that are being currently handled. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32157 |16 | |10260 |{#JMXNAME}: Threads limit |jmx[{#JMXOBJ},maxThreads] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$TOMCAT.USER} |{$TOMCAT.PASSWORD} | | |2 |NULL |Limit of the threads count. When currentThreadsBusy counter reaches the maxThreads limit, no more requests could be handled, and the application chokes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32158 |19 | |10341 |Zookeeper: Get server metrics |zookeeper.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/monitor | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32159 |19 | |10341 |Zookeeper: Get connections stats |zookeeper.get_connections_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get information on client connections to server. Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32193 |19 | |10341 |Clients discovery |zookeeper.clients |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Get list of client connections.&eol;Note, depending on the number of client connections this operation may be expensive (i.e. impact server performance). |0 |30d |0 | |NULL |3s |{$ZOOKEEPER.SCHEME}://{HOST.CONN}:{$ZOOKEEPER.PORT}/{$ZOOKEEPER.COMMAND_URL}/connections | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32207 |16 | |10342 |Cluster: Name |jmx["org.apache.cassandra.db:type=StorageService","ClusterName"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32208 |16 | |10342 |Thread pool SecondaryIndexManagement: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32209 |16 | |10342 |Thread pool HintsDispatcher: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;HintsDispatcher: Performs hinted handoff. |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 |32210 |16 | |10342 |Thread pool HintsDispatcher: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;HintsDispatcher: Performs hinted handoff. |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 |32211 |16 | |10342 |Thread pool MemtableFlushWriter: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32212 |16 | |10342 |Thread pool MemtableFlushWriter: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32213 |16 | |10342 |Thread pool MemtableFlushWriter: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtableFlushWriter,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtableFlushWriter: Writes memtables to disk. |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 |32214 |16 | |10342 |Thread pool MemtablePostFlush: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32215 |16 | |10342 |Thread pool MemtablePostFlush: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32216 |16 | |10342 |Thread pool MemtablePostFlush: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MemtablePostFlush,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MemtablePostFlush: Cleans up commit log after memtable is written to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32217 |16 | |10342 |Thread pool MigrationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MigrationStage: Runs schema migrations. |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 |32218 |16 | |10342 |Thread pool MigrationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MigrationStage: Runs schema migrations. |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 |32219 |16 | |10342 |Thread pool MigrationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MigrationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MigrationStage: Runs schema migrations. |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 |32220 |16 | |10342 |Thread pool MiscStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MiscStage: Miscellaneous tasks run here. |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 |32221 |16 | |10342 |Thread pool MiscStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MiscStage: Miscellaneous tasks run here. |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 |32222 |16 | |10342 |Thread pool MiscStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=MiscStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MiscStage: Miscellaneous tasks run here. |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 |32223 |16 | |10342 |Thread pool SecondaryIndexManagement: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32224 |16 | |10342 |Storage: Hints |jmx["org.apache.cassandra.metrics:type=Storage,name=TotalHints","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of hint messages written to this node since [re]start. Includes one entry for each host to be hinted per hint. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32225 |16 | |10342 |Thread pool SecondaryIndexManagement: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=SecondaryIndexManagement,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;SecondaryIndexManagement: Performs updates to secondary indexes. |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 |32226 |16 | |10342 |Thread pool CounterMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;CounterMutationStage: Responsible for counter writes. |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 |32227 |16 | |10342 |Thread pool CounterMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;CounterMutationStage: Responsible for counter writes. |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 |32228 |16 | |10342 |Thread pool CounterMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=CounterMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;CounterMutationStage: Responsible for counter writes. |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 |32229 |16 | |10342 |Thread pool MutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32230 |16 | |10342 |Thread pool.MutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32231 |16 | |10342 |Thread pool MutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=MutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;MutationStage: Responsible for writes (exclude materialized and counter writes). |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 |32232 |16 | |10342 |Thread pool ReadStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ReadStage: Local reads run on this thread pool. |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 |32233 |16 | |10342 |Thread pool ReadStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ReadStage: Local reads run on this thread pool. |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 |32234 |16 | |10342 |Thread pool ReadStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ReadStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ReadStage: Local reads run on this thread pool. |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 |32235 |16 | |10342 |Thread pool ViewMutationStage: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32236 |16 | |10342 |Thread pool ViewMutationStage: Pending tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of queued tasks queued up on this pool.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32237 |16 | |10342 |Thread pool ViewMutationStage: Total blocked tasks |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=request,scope=ViewMutationStage,name=TotalBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that were blocked due to queue saturation.&eol;ViewMutationStage: Responsible for materialized view writes. |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 |32238 |16 | |10342 |Cluster: Nodes down |jmx["org.apache.cassandra.net:type=FailureDetector","DownEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32239 |16 | |10342 |Thread pool HintsDispatcher: Currently blocked task |jmx["org.apache.cassandra.metrics:type=ThreadPools,path=internal,scope=HintsDispatcher,name=CurrentlyBlockedTasks","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of tasks that are currently blocked due to queue saturation but on retry will become unblocked.&eol;HintsDispatcher: Performs hinted handoff. |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 |32240 |16 | |10342 |Storage: Used (bytes) |jmx["org.apache.cassandra.metrics:type=Storage,name=Load","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Size, in bytes, of the on disk data size this node manages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32241 |16 | |10342 |Version |jmx["org.apache.cassandra.db:type=StorageService","ReleaseVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32242 |16 | |10342 |KeyCache: requests per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Requests","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache requests. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32243 |16 | |10342 |Compaction: Number of completed tasks |jmx["org.apache.cassandra.metrics:name=CompletedTasks,type=Compaction","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32244 |16 | |10342 |Commitlog: Pending tasks |jmx["org.apache.cassandra.metrics:name=PendingTasks,type=CommitLog","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of commit log messages written but yet to be fsync'd. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32245 |16 | |10342 |Latency: Read median |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32246 |16 | |10342 |Latency: Read 75 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32247 |16 | |10342 |Latency: Read 95 percentile |jmx["org.apache.cassandra.metrics:name=ReadLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency read from disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32248 |16 | |10342 |Commitlog: Total size |jmx["org.apache.cassandra.metrics:name=TotalCommitLogSize,type=CommitLog","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Current size, in bytes, used by all the commit log segments. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32249 |16 | |10342 |Compaction: Total compactions completed |jmx["org.apache.cassandra.metrics:name=TotalCompactionsCompleted,type=Compaction","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Throughput of completed compactions since server [re]start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32250 |16 | |10342 |Latency: Write median |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32251 |16 | |10342 |Latency: Write 75 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32252 |16 | |10342 |Latency: Write 95 percentile |jmx["org.apache.cassandra.metrics:name=WriteLatency,type=Table","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Latency write to disk in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32253 |16 | |10342 |KeyCache: Capacity |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Capacity","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Cache capacity in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32254 |16 | |10342 |KeyCache: Entries |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Entries","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total number of cache entries. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32255 |16 | |10342 |KeyCache: HitRate |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=HitRate","Value"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |All time cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32256 |16 | |10342 |KeyCache: Hits per second |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Hits","Count"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Rate of cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32257 |16 | |10342 |KeyCache: Size |jmx["org.apache.cassandra.metrics:type=Cache,scope=KeyCache,name=Size","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total size of occupied cache, in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32258 |16 | |10342 |Storage: Errors |jmx["org.apache.cassandra.metrics:type=Storage,name=Exceptions","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of internal exceptions caught. Under normal exceptions this should be zero. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32259 |16 | |10342 |Client connections: Native |jmx["org.apache.cassandra.metrics:type=Client,name=connectedNativeClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of clients connected to this nodes native protocol server. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32260 |16 | |10342 |Client connections: Trifts |jmx["org.apache.cassandra.metrics:type=Client,name=connectedThriftClients","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of connected to this nodes thrift clients. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32261 |16 | |10342 |Latency: Client request read median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32262 |16 | |10342 |Latency: Client request read 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32263 |16 | |10342 |Latency: Client request read 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving data to clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32264 |16 | |10342 |Client request: Read per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32265 |16 | |10342 |Latency: Client request write median |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","50thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - median. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32266 |16 | |10342 |Latency: Client request write 75 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32267 |16 | |10342 |Latency: Client request write 95 percentile |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Total latency serving write requests from clients in milliseconds - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32268 |16 | |10342 |Client request: Write per second |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32269 |16 | |10342 |Client request: Write Timeouts |jmx["org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Timeouts","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of write requests timeouts encountered. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32270 |16 | |10342 |Compaction: Pending tasks |jmx["org.apache.cassandra.metrics:type=Compaction,name=PendingTasks","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Estimated number of compactions remaining to perform. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32271 |16 | |10342 |Dropped messages: Write (Mutation) |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=MUTATION,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular writes messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32272 |16 | |10342 |Dropped messages: Read |jmx["org.apache.cassandra.metrics:type=DroppedMessage,scope=READ,name=Dropped","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL |Number of dropped regular reads messages. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32273 |16 | |10342 |Cluster: Nodes up |jmx["org.apache.cassandra.net:type=FailureDetector","UpEndpointCount"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |0 |NULL | |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32274 |16 | |10342 |Tables |jmx.discovery[beans,"org.apache.cassandra.metrics:type=Table,keyspace=*,scope=*,name=ReadLatency"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |1 |NULL |Info about keyspaces and tables |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32275 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bloom filter false ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BloomFilterFalseRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The ratio of Bloom filter false positives to total checks. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32276 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHit","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32277 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32278 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency write to disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32279 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32280 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Waiting on free memtable space 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WaitingOnFreeMemtableSpace","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The time spent waiting for free memtable space either on- or off-heap - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32281 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TotalDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Disk space used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32282 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32283 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Tombstone scanned 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=TombstoneScannedHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of tombstones scanned per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32284 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","95thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32285 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: SS Tables per read 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SSTablesPerReadHistogram","75thPercentile"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of SSTable data files accessed per read - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32286 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Snapshots size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=SnapshotsSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space truly used by snapshots. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32287 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Row cache misses |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheMiss","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of table row cache misses. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32288 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Out of row cache hits |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=RowCacheHitOutOfRange","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of row cache hits that do not satisfy the query filter and went to disk. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32289 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of client requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32290 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Bytes flushed |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=BytesFlushed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was flushed since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32291 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32292 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Read latency 75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ReadLatency","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Latency read from disk in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32293 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending flushes |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingFlushes","Count"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending flushes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32294 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Pending compactions |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=PendingCompactions","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of pending compactions. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32295 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Mean partition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MeanPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The average size of compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32296 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Max sartition size |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=MaxPartitionSize","Value"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The size of the largest compacted partition. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32297 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live SS Table |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveSSTableCount","Value"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |Number of "live" (in use) SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32298 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Live disk space used |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=LiveDiskSpaceUsed","Count"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The disk space used by "live" SSTables (only counts in use files). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32299 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: KeyCache hit rate |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=KeyCacheHitRate","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The key cache hit rate. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32300 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compression ratio |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompressionRatio","Value"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The compression ratio for all SSTables. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32301 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Compaction bytes written |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=CompactionBytesWritten","Count"] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The amount of data that was compacted since (re)start. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32302 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p95. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32303 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The column update time delta - p75. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32304 |16 | |10342 |{#JMXKEYSPACE}.{#JMXSCOPE}: Write per second |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=WriteLatency","Count"] |1m |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 |{$CASSANDRA.USER} |{$CASSANDRA.PASSWORD} | | |2 |NULL |The number of local write requests per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32307 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10254 |{#SENSOR_INFO}: Voltage |sensor.voltage.value[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |0 | |V | | |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 |32308 |20 |1.3.6.1.4.1.33333.5.64.0 |10343 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Max. Power (sweep)&eol; Description:Array Max. Power (last sweep)&eol; Scaling Factor:1.0&eol; Units:W&eol; Range:[0.0, 500]&eol; Modbus address:0x003E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32309 |20 |1.3.6.1.4.1.33333.5.53.0 |10343 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |124 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load State&eol; Description:Load State&eol; Modbus address:0x002E&eol;&eol; 0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32310 |20 |1.3.6.1.4.1.33333.5.39.0 |10343 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Battery Temperature&eol; Description:Battery Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32311 |20 |1.3.6.1.4.1.33333.5.40.0 |10343 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ambient Temperature&eol; Description:Ambient Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32312 |20 |1.3.6.1.4.1.33333.5.48.0 |10343 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Target Voltage&eol; Description:Target Regulation Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32313 |20 |1.3.6.1.2.1.1.3.0 |10343 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32314 |20 |1.3.6.1.4.1.33333.5.54.0 |10343 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32315 |20 |1.3.6.1.4.1.33333.5.46.0 |10343 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32316 |20 |1.3.6.1.4.1.33333.5.59.0 |10343 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32317 |20 |1.3.6.1.4.1.33333.5.32.0 |10343 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Voltage&eol; Description:Load Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32318 |20 |1.3.6.1.4.1.33333.5.34.0 |10343 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Load Current&eol; Description:Load Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 60]&eol; Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32319 |20 |1.3.6.1.4.1.33333.5.63.0 |10343 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Vmp&eol; Description:Array Max. Power Point Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 5000.0]&eol; Modbus address:0x003D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32320 |20 |1.3.6.1.4.1.33333.5.56.0 |10343 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32321 |20 |1.3.6.1.4.1.33333.5.51.0 |10343 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;kWh Charge (Resettable)&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32322 |20 |1.3.6.1.4.1.33333.5.49.0 |10343 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Ah Charge (Resettable)&eol; Description:Ah Charge (Resettable)&eol; Scaling Factor:0.1&eol; Units:Ah&eol; Range:[0.0, 4294967294]&eol; Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32323 |20 |1.3.6.1.4.1.33333.5.45.0 |10343 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |123 | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge State&eol; Description:Control State&eol; Modbus address:0x0021&eol;&eol; 0: Start&eol; 1: NightCheck&eol; 2: Disconnect&eol; 3: Night&eol; 4: Fault&eol; 5: BulkMppt&eol; 6: Absorption&eol; 7: Float&eol; 8: Equalize&eol; 9: Slave&eol; 10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32324 |20 |1.3.6.1.4.1.33333.5.33.0 |10343 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Charge Current&eol; Description:Charge Current&eol; Scaling Factor:1.0&eol; Units:A&eol; Range:[0, 40]&eol; Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32325 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32326 |20 |1.3.6.1.4.1.33333.5.31.0 |10343 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voltage&eol; Description:Array Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0, 80]&eol; Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32327 |20 |1.3.6.1.4.1.33333.5.65.0 |10343 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Array Voc&eol; Description:Array Open Circuit Voltage&eol; Scaling Factor:1.0&eol; Units:V&eol; Range:[0.0, 80.0]&eol; Modbus address:0x003F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32328 |20 |1.3.6.1.4.1.33333.5.38.0 |10343 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-MPPT&eol;Heatsink Temperature&eol; Description:Heatsink Temperature&eol; Scaling Factor:1.0&eol; Units:deg C&eol; Range:[-128, 127]&eol; Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32330 |20 |1.3.6.1.4.1.33333.5.30.0 |10343 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-MPPT&eol;Battery Terminal Voltage&eol;Description:Battery Terminal Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32331 |20 |1.3.6.1.4.1.33333.6.31.0 |10344 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0013 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32332 |20 |1.3.6.1.4.1.33333.6.59.0 |10344 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Alarms&eol;Modbus addresses:H=0x0038 L=0x0039 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32333 |20 |1.3.6.1.4.1.33333.6.39.0 |10344 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32334 |20 |1.3.6.1.4.1.33333.6.40.0 |10344 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32335 |20 |1.3.6.1.4.1.33333.6.48.0 |10344 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Target Regulation Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32336 |20 |1.3.6.1.2.1.1.3.0 |10344 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32337 |20 |1.3.6.1.4.1.33333.6.54.0 |10344 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Faults&eol;Modbus address:0x002F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32338 |20 |1.3.6.1.4.1.33333.6.46.0 |10344 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Array Faults&eol;Modbus address:0x0022 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32339 |20 |1.3.6.1.4.1.33333.6.32.0 |10344 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32340 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryTerminalVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32341 |20 |1.3.6.1.4.1.33333.6.53.0 |10344 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |126 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load State&eol;Modbus address:0x002E&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32342 |20 |1.3.6.1.4.1.33333.6.34.0 |10344 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Load Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32343 |20 |1.3.6.1.4.1.33333.6.56.0 |10344 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Load (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0032 L=0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32344 |20 |1.3.6.1.4.1.33333.6.51.0 |10344 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResettable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Kilowatt Hours Charge (Resettable)&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32345 |20 |1.3.6.1.4.1.33333.6.49.0 |10344 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Ah Charge (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0026 L=0x0027 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32346 |20 |1.3.6.1.4.1.33333.6.45.0 |10344 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |125 | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Bulk&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32347 |20 |1.3.6.1.4.1.33333.6.33.0 |10344 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Charge Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[0, 40]&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32348 |20 |1.3.6.1.4.1.33333.6.38.0 |10344 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PROSTAR-PWM&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x001A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32350 |20 |1.3.6.1.4.1.33333.6.30.0 |10344 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryTerminalVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PROSTAR-PWM&eol;Description:Control State&eol;Modbus address:0x0021 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32351 |20 |1.3.6.1.4.1.33333.3.57.0 |10345 |Array: Sweep Pmax |array.sweep_pmax[arrayMaxPowerSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32352 |20 |1.3.6.1.4.1.33333.3.46.0 |10345 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |129 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load State&eol;Modbus address:0x001A&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: Override&eol;8: NotUsed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32353 |20 |1.3.6.1.4.1.33333.3.36.0 |10345 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000D |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32354 |20 |1.3.6.1.4.1.33333.3.37.0 |10345 |Temperature: Ambient |temp.ambient[ambientTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ambient Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32355 |20 |1.3.6.1.4.1.33333.3.42.0 |10345 |Battery: Target Voltage |target.voltage[targetVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32356 |20 |1.3.6.1.2.1.1.3.0 |10345 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32357 |20 |1.3.6.1.4.1.33333.3.47.0 |10345 |Status: Load Faults |status.load_faults[loadFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32358 |20 |1.3.6.1.4.1.33333.3.40.0 |10345 |Status: Array Faults |status.array_faults[arrayFaults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Faults&eol;Modbus address:0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32359 |20 |1.3.6.1.4.1.33333.3.52.0 |10345 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x0023 L=0x0024 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32360 |20 |1.3.6.1.4.1.33333.3.32.0 |10345 |Load: Voltage |load.voltage[loadVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32361 |20 |1.3.6.1.4.1.33333.3.34.0 |10345 |Load: Current |load.current[loadCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Load Current&eol;Scaling Factor:0.002415771484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32362 |20 |1.3.6.1.4.1.33333.3.56.0 |10345 |Array: Sweep Vmp |array.sweep_vmp[arrayVmp.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Max. Power Point Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x0028 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32363 |20 |1.3.6.1.4.1.33333.3.49.0 |10345 |Counter: Load Amp-hours |counter.load_amp_hours[ahLoadResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Load(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x001D L=0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32364 |20 |1.3.6.1.4.1.33333.3.45.0 |10345 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhCharge.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32365 |20 |1.3.6.1.4.1.33333.3.43.0 |10345 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Ah Charge(Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 4294967294]&eol;Modbus addresses:H=0x0015 L=0x0016 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32366 |20 |1.3.6.1.4.1.33333.3.39.0 |10345 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |128 | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: BulkMppt&eol;6: Pwm&eol;7: Float&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32367 |20 |1.3.6.1.4.1.33333.3.33.0 |10345 |Battery: Charge Current |charge.current[chargeCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0014 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32368 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32369 |20 |1.3.6.1.4.1.33333.3.31.0 |10345 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x0009 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32370 |20 |1.3.6.1.4.1.33333.3.58.0 |10345 |Array: Sweep Voc |array.sweep_voc[arrayVoc.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Array Open Circuit Voltage&eol;Scaling Factor:0.0030517578125&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x002A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32371 |20 |1.3.6.1.4.1.33333.3.35.0 |10345 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-128, 127]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32373 |20 |1.3.6.1.4.1.33333.3.30.0 |10345 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SUNSAVER-MPPT&eol;Description:Control State&eol;Modbus address:0x0011 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32374 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltageSlow.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32375 |20 |1.3.6.1.4.1.33333.9.31.0 |10346 |Load: A/C Current |load.ac_current[acCurrent.0] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:AC Output Current&eol;Scaling Factor:0.0001953125&eol;Units:A&eol;Range:[0.0, 17]&eol;Modbus address:0x0005 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32376 |20 |1.3.6.1.4.1.33333.9.33.0 |10346 |Load: State |load.state[loadState.0] |1m |7d |365d |0 |0 | | | | |NULL |130 | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Load State&eol;Modbus address:0x000B&eol;&eol; 0: Start&eol;1: LoadOn&eol;2: LvdWarning&eol;3: LowVoltageDisconnect&eol;4: Fault&eol;5: Disconnect&eol;6: NormalOff&eol;7: UnknownState&eol;8: Standby |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32377 |20 |1.3.6.1.4.1.33333.9.34.0 |10346 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32378 |20 |1.3.6.1.4.1.33333.9.35.0 |10346 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Faults&eol;Modbus address:0x0007 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32379 |20 |1.3.6.1.2.1.1.3.0 |10346 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32380 |20 |1.3.6.1.4.1.33333.9.32.0 |10346 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SURESINE&eol;Description:Heatsink Temperature&eol;Scaling Factor:1&eol;Units:C&eol;Range:[-128, 127]&eol;Modbus address:0x0006 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32382 |20 |1.3.6.1.4.1.33333.9.30.0 |10346 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltageSlow.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SURESINE&eol;Description:Battery Voltage(slow)&eol;Scaling Factor:0.0002581787109375&eol;Units:V&eol;Range:[0.0, 17.0]&eol;Modbus address:0x0004 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32383 |20 |1.3.6.1.4.1.33333.7.31.0 |10347 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32384 |20 |1.3.6.1.4.1.33333.7.50.0 |10347 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:1.0&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32385 |20 |1.3.6.1.4.1.33333.7.48.0 |10347 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32386 |20 |1.3.6.1.4.1.33333.7.45.0 |10347 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32387 |20 |1.3.6.1.2.1.1.3.0 |10347 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32388 |20 |1.3.6.1.4.1.33333.7.55.0 |10347 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus addresses:H=0x002c L=0x002d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32389 |20 |1.3.6.1.4.1.33333.7.57.0 |10347 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Alarms&eol;Modbus addresses:H=0x002e L=0x002f |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32390 |20 |1.3.6.1.4.1.33333.7.52.0 |10347 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32391 |20 |1.3.6.1.4.1.33333.7.46.0 |10347 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |131 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave&eol;10: Fixed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32392 |20 |1.3.6.1.4.1.33333.7.33.0 |10347 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32393 |20 |1.3.6.1.4.1.33333.7.44.0 |10347 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:1.0&eol;Units:W&eol;Range:[-10, 4000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32394 |20 |1.3.6.1.4.1.33333.7.42.0 |10347 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:1.0&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32395 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32396 |20 |1.3.6.1.4.1.33333.7.30.0 |10347 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32397 |20 |1.3.6.1.4.1.33333.7.35.0 |10347 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32398 |20 |1.3.6.1.4.1.33333.7.34.0 |10347 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 650.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32399 |20 |1.3.6.1.4.1.33333.7.49.0 |10347 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32401 |20 |1.3.6.1.4.1.33333.7.36.0 |10347 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:1.0&eol;Units:V&eol;Range:[-10, 80]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32402 |20 |1.3.6.1.4.1.33333.2.31.0 |10348 |Array: Array Current |array.current[arrayCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32403 |20 |1.3.6.1.4.1.33333.2.50.0 |10348 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32404 |20 |1.3.6.1.4.1.33333.2.48.0 |10348 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Batt. Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0025 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32405 |20 |1.3.6.1.4.1.33333.2.45.0 |10348 |Battery: Target Voltage |target.voltage[targetRegulationVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Target Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0033 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32406 |20 |1.3.6.1.2.1.1.3.0 |10348 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32407 |20 |1.3.6.1.4.1.33333.2.55.0 |10348 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32408 |20 |1.3.6.1.4.1.33333.2.57.0 |10348 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32409 |20 |1.3.6.1.4.1.33333.2.52.0 |10348 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:0.1&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32410 |20 |1.3.6.1.4.1.33333.2.46.0 |10348 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |132 | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Charge State&eol;Modbus address:0x0032&eol;&eol;0: Start&eol;1: NightCheck&eol;2: Disconnect&eol;3: Night&eol;4: Fault&eol;5: Mppt&eol;6: Absorption&eol;7: Float&eol;8: Equalize&eol;9: Slave |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32411 |20 |1.3.6.1.4.1.33333.2.33.0 |10348 |Array: Sweep Pmax |array.sweep_pmax[arrayPmaxLastSweep.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Pmax (last sweep)&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32412 |20 |1.3.6.1.4.1.33333.2.44.0 |10348 |Battery: Output Power |charge.output_power[ outputPower.0] |1m |7d |365d |0 |0 | |W | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Output Power&eol;Scaling Factor:0.10986328125&eol;Units:W&eol;Range:[-10, 5000]&eol;Modbus address:0x003a |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32413 |20 |1.3.6.1.4.1.33333.2.42.0 |10348 |Battery: Charge Current |charge.current[batteryCurrent.0] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery Current&eol;Scaling Factor:0.00244140625&eol;Units:A&eol;Range:[-10, 80]&eol;Modbus address:0x001c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32414 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32415 |20 |1.3.6.1.4.1.33333.2.30.0 |10348 |Array: Voltage |array.voltage[arrayVoltage.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Array Voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180]&eol;Modbus address:0x001b |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32416 |20 |1.3.6.1.4.1.33333.2.35.0 |10348 |Array: Sweep Voc |array.sweep_voc[arrayVocLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Voc (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003e |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32417 |20 |1.3.6.1.4.1.33333.2.34.0 |10348 |Array: Sweep Vmp |array.sweep_vmp[arrayVmpLastSweep.0] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Vmp (last sweep)&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x003d |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32418 |20 |1.3.6.1.4.1.33333.2.49.0 |10348 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:HS Temp&eol;Scaling Factor:1.0&eol;Units:C&eol;Range:[-40, 80]&eol;Modbus address:0x0023 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32420 |20 |1.3.6.1.4.1.33333.2.36.0 |10348 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR-MPPT&eol;Description:Battery voltage&eol;Scaling Factor:0.0054931640625&eol;Units:V&eol;Range:[-10, 180.0]&eol;Modbus address:0x0018 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32421 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Battery Voltage discovery |battery.voltage.discovery[batteryVoltage.0] |15m |0 |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32422 |20 |1.3.6.1.4.1.33333.8.45.0 |10349 |Status: Control Mode |control.mode[controlMode.0] |1m |7d |365d |0 |0 | | | | |NULL |135 | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Control Mode&eol;Modbus address:0x001A&eol;&eol;0: charge&eol;1: loadControl&eol;2: diversion&eol;3: lighting |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32423 |20 |1.3.6.1.4.1.33333.8.39.0 |10349 |Counter: Amp-hours |counter.charge_amp_hours[ahResettable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Ah (Resettable)&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 50000.0]&eol;Modbus addresses:H=0x0011 L=0x0012 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32424 |20 |1.3.6.1.4.1.33333.8.49.0 |10349 |Counter: KW-hours |counter.charge_kw_hours[kilowattHours.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Kilowatt Hours&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 5000.0]&eol;Modbus address:0x001E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32425 |20 |1.3.6.1.4.1.33333.8.42.0 |10349 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Alarms&eol;Modbus addresses:H=0x001D L=0x0017 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32426 |20 |1.3.6.1.4.1.33333.8.43.0 |10349 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32427 |20 |1.3.6.1.2.1.1.3.0 |10349 |Status: Uptime |status.uptime |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Device uptime in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32428 |20 |1.3.6.1.4.1.33333.8.37.0 |10349 |Temperature: Battery |temp.battery[batteryTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Battery Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000F |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32429 |20 |1.3.6.1.4.1.33333.8.36.0 |10349 |Temperature: Heatsink |temp.heatsink[heatsinkTemperature.0] |1m |7d |365d |0 |0 | |C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR&eol;Description:Heatsink Temperature&eol;Scaling Factor:1.0&eol;Units:deg C&eol;Range:[-40, 120]&eol;Modbus address:0x000E |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32436 |20 |1.3.6.1.4.1.33333.8.30.0 |10349 |Battery: Voltage{#SINGLETON} |battery.voltage[batteryVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Battery voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0008 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32437 |20 |1.3.6.1.4.1.33333.8.46.0 |10349 |Battery: Charge State{#SINGLETON} |charge.state[controlState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |133 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Control State&eol;Modbus address:0x001B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32438 |20 |1.3.6.1.4.1.33333.8.38.0 |10349 |Battery: Target Voltage{#SINGLETON} |target.voltage[targetVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Target Regulation Voltage&eol;Scaling Factor:0.002950042724609375&eol;Units:V&eol;Range:[0.0, 80.0]&eol;Modbus address:0x0010 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32439 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Array: Voltage{#SINGLETON} |array.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32440 |20 |1.3.6.1.4.1.33333.8.33.0 |10349 |Battery: Charge Current{#SINGLETON} |charge.current[chargeCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Charge Current&eol;Scaling Factor:0.002034515380859375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000B |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32441 |20 |1.3.6.1.4.1.33333.8.48.0 |10349 |Load: PWM Duty Cycle{#SINGLETON} |diversion.pwm_duty_cycle[pwmDutyCycle.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:PWM Duty Cycle&eol;Scaling Factor:0.392156862745098&eol;Units:%&eol;Range:[0.0, 100.0]&eol;Modbus address:0x001C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32442 |20 |1.3.6.1.4.1.33333.8.34.0 |10349 |Load: Current{#SINGLETON} |load.current[loadCurrent.0{#SINGLETON}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load Current&eol;Scaling Factor:0.00966400146484375&eol;Units:A&eol;Range:[0, 60]&eol;Modbus address:0x000C |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32443 |20 |1.3.6.1.4.1.33333.8.32.0 |10349 |Load: Voltage{#SINGLETON} |load.voltage[arrayloadVoltage.0{#SINGLETON}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Array/Load Voltage&eol;Scaling Factor:0.00424652099609375&eol;Units:V&eol;Range:[0, 80]&eol;Modbus address:0x000A |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32444 |20 |1.3.6.1.4.1.33333.8.47.0 |10349 |Load: State{#SINGLETON} |load.state[loadState.0{#SINGLETON}] |1m |7d |365d |0 |0 | | | | |NULL |134 | | |0 | | | | |2 |NULL |MIB: TRISTAR&eol;Description:Load State&eol;Modbus address:0x001B&eol;&eol;0: Start&eol;1: Normal&eol;2: LvdWarning&eol;3: Lvd&eol;4: Fault&eol;5: Disconnect&eol;6: LvdWarning1&eol;7: OverrideLvd&eol;8: Equalize |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32445 |0 | |10289 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32446 |0 | |10289 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32447 |0 | |10289 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32448 |0 | |10289 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32453 |7 | |10296 |{#DEVNAME}: Average disk read queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Read Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk read queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32454 |7 | |10296 |{#DEVNAME}: Disk read request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Read",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for read requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32455 |7 | |10296 |{#DEVNAME}: Disk write request avg waiting time |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk sec/Write",60] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time for write requests issued to the device to be served. This includes the time spent by the requests in queue and the time spent servicing them. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32456 |7 | |10296 |{#DEVNAME}: Average disk write queue length |perf_counter_en["\PhysicalDisk({#DEVNAME})\Avg. Disk Write Queue Length",60] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average disk write queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32463 |16 | |10350 |Destinations discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*,destinationType=*,destinationName=*"] |1h |90d |0 |0 |4 | | |{1112} and {1113}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of destinations |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32464 |16 | |10350 |Brokers discovery |jmx.discovery[beans,"org.apache.activemq:type=Broker,brokerName=*"] |1h |90d |0 |0 |4 | | |{1114} and {1115}| |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |1 |NULL |Discovery of brokers |0 |30d |3 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32465 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.CONSUMERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to the broker of this destination. Used to suppress destination's triggers when the count of consumers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32466 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count total on {#JMXBROKERNAME}|jmx["org.apache.activemq:type=Broker,brokerName={#JMXBROKERNAME}",{$ACTIVEMQ.TOTAL.PRODUCERS.COUNT: "{#JMXDESTINATIONNAME}"}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to the broker of this destination. Used to suppress destination's triggers when the count of producers on the broker is lower than threshold. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32467 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count |jmx[{#JMXOBJ},ConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32468 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages dequeue rate |jmx[{#JMXOBJ},DequeueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that has been acknowledged (and removed) from the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32469 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Messages enqueue rate |jmx[{#JMXOBJ},EnqueueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32470 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count |jmx[{#JMXOBJ},ExpiredCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages that have been expired. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32471 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage in percents |jmx[{#JMXOBJ},MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The percentage of the memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32472 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count |jmx[{#JMXOBJ},ProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this destination. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32473 |16 | |10350 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size |jmx[{#JMXOBJ},QueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of messages on this destination, including any that have been dispatched but not acknowledged. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32474 |16 | |10350 |Broker {#JMXBROKERNAME}: Version |jmx[{#JMXOBJ},BrokerVersion] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The version of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32475 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory limit |jmx[{#JMXOBJ},MemoryLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Memory limit, in bytes, used for holding undelivered messages before paging to temporary storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32476 |16 | |10350 |Broker {#JMXBROKERNAME}: Memory usage in percents |jmx[{#JMXOBJ}, MemoryPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of memory limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32477 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage limit |jmx[{#JMXOBJ},StoreLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for persistent messages before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32478 |16 | |10350 |Broker {#JMXBROKERNAME}: Storage usage in percents |jmx[{#JMXOBJ},StorePercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of store limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32479 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp limit |jmx[{#JMXOBJ},TempLimit] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Disk limit, in bytes, used for non-persistent messages and temporary data before producers are blocked. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32480 |16 | |10350 |Broker {#JMXBROKERNAME}: Temp usage in percents |jmx[{#JMXOBJ},TempPercentUsage] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Percent of temp limit used. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32481 |16 | |10350 |Broker {#JMXBROKERNAME}: Consumers count total |jmx[{#JMXOBJ},TotalConsumerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of consumers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32482 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages dequeue rate |jmx[{#JMXOBJ},TotalDequeueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been delivered by the broker and acknowledged by consumers. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32483 |16 | |10350 |Broker {#JMXBROKERNAME}: Messages enqueue rate |jmx[{#JMXOBJ},TotalEnqueueCount] |1m |7d |365d |0 |3 | |messages/sec | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Rate of messages that have been sent to the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32484 |16 | |10350 |Broker {#JMXBROKERNAME}: Producers count total |jmx[{#JMXOBJ},TotalProducerCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |Number of producers attached to this broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32485 |16 | |10350 |Broker {#JMXBROKERNAME}: Uptime |jmx[{#JMXOBJ},UptimeMillis] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$ACTIVEMQ.USER} |{$ACTIVEMQ.PASSWORD} | | |2 |NULL |The uptime of the broker. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32486 |0 | |10351 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32487 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32488 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32489 |0 | |10351 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32490 |0 | |10351 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32491 |0 | |10351 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32492 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32493 |0 | |10351 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32494 |0 | |10351 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32495 |0 | |10351 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32496 |0 | |10351 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32497 |0 | |10351 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32498 |0 | |10351 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32499 |0 | |10351 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32500 |0 | |10351 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32501 |0 | |10351 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32502 |0 | |10351 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32503 |0 | |10351 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32504 |0 | |10351 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32505 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32506 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32507 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32508 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32509 |0 | |10351 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32510 |0 | |10351 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32511 |0 | |10351 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32512 |0 | |10351 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32513 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32514 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32515 |0 | |10351 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32516 |7 | |10352 |MS Exchange: Databases total mounted |perf_counter_en["\MSExchange Active Manager(_total)\Database Mounted"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of active database copies on the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32517 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: ping command pending |perf_counter_en["\MSExchange ActiveSync\Ping Commands Pending", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of ping commands currently pending in the queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32518 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: requests per second |perf_counter_en["\MSExchange ActiveSync\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of HTTP requests received from the client via ASP.NET per second. Determines the current Exchange ActiveSync request rate. Used only to determine current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32519 |7 | |10352 |MS Exchange [Client Access Server]: ActiveSync: sync commands per second |perf_counter_en["\MSExchange ActiveSync\Sync Commands/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of sync commands processed per second. Clients use this command to synchronize items within a folder. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32520 |7 | |10352 |MS Exchange [Client Access Server]: Autodiscover: requests per second |perf_counter_en["\MSExchangeAutodiscover\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of Autodiscover service requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32521 |7 | |10352 |MS Exchange [Client Access Server]: Availability Service: availability requests per second |perf_counter_en["\MSExchange Availability Service\Availability Requests (sec)", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests serviced per second. The request can be only for free/ busy information or include suggestions. One request may contain multiple mailboxes. Determines the rate at which Availability service requests are occurring. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32522 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: current unique users |perf_counter_en["\MSExchange OWA\Current Unique Users", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of unique users currently logged on to Outlook Web App. This value monitors the number of unique active user sessions, so that users are only removed from this counter after they log off or their session times out. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32523 |7 | |10352 |MS Exchange [Client Access Server]: Outlook Web App: requests per second |perf_counter_en["\MSExchange OWA\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests handled by Outlook Web App per second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32524 |7 | |10352 |MS Exchange [Client Access Server]: MSExchangeWS: requests per second |perf_counter_en["\MSExchangeWS\Requests/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Shows the number of requests processed each second. Determines current user load. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32525 |7 | |10352 |LDAP discovery |perf_instance_en.discovery["MSExchange ADAccess Domain Controllers"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of domain controller. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32526 |7 | |10352 |Web services discovery |perf_instance_en.discovery["Web Service"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange web services. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32527 |7 | |10352 |Databases discovery |perf_instance.discovery["MSExchange Active Manager"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Exchange databases. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32528 |7 | |10352 |Domain Controller [{#INSTANCE}]: Read time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Read Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP read request to the domain controller in question and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32529 |7 | |10352 |Domain Controller [{#INSTANCE}]: Search time |perf_counter_en["\MSExchange ADAccess Domain Controllers({#INSTANCE})\LDAP Search Time", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time that it takes to send an LDAP search request and get a response. Should ideally be below 50 ms; spikes below 100 ms are acceptable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32530 |7 | |10352 |Web Service [{#INSTANCE}]: Current connections |perf_counter_en["\Web Service({#INSTANCE})\Current Connections", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the current number of connections established to the each Web Service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32531 |7 | |10352 |Active Manager [{#INSTANCE}]: Database copy role |perf_counter_en["\MSExchange Active Manager({#INSTANCE})\Database Copy Role Active"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |136 | | |0 | | | | |2 |NULL |Database copy active or passive role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32532 |7 | |10352 |Information Store [{#INSTANCE}]: Page faults per second |perf_counter_en["\MSExchange Database({#INF.STORE})\Database Page Fault Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the rate of page faults that can't be serviced because there are no pages available for allocation from the database cache. If this counter is above 0, it's an indication that the MSExchange Database\I/O Database Writes (Attached) Average Latency is too high. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32533 |7 | |10352 |Information Store [{#INSTANCE}]: Log records stalled |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Record Stalls/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of log records that can't be added to the log buffers per second because the log buffers are full. The average value should be below 10 per second. Spikes (maximum values) shouldn't be higher than 100 per second. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32534 |7 | |10352 |Information Store [{#INSTANCE}]: Log threads waiting |perf_counter_en["\MSExchange Database({#INF.STORE})\Log Threads Waiting", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the number of threads waiting to complete an update of the database by writing their data to the log. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32535 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database read operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32536 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database read operation. Should be less than 20 ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32537 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database read operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per passive database read operation. Should be less than 200ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32538 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations per second |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached)/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of database write operations per second for each attached database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32539 |7 | |10352 |Database Counters [{#INSTANCE}]: Active database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Attached) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time per database write operation. Should be less than 50ms on average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32540 |7 | |10352 |Database Counters [{#INSTANCE}]: Passive database write operations latency |perf_counter_en["\MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Writes (Recovery) Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the average length of time, in ms, per passive database write operation. Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32541 |7 | |10352 |Information Store [{#INSTANCE}]: Active mailboxes count |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Active mailboxes"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active mailboxes in this database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32542 |7 | |10352 |Information Store [{#INSTANCE}]: Database state |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\Database State"] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |137 | | |0 | | | | |2 |NULL |Database state. Possible values:&eol;0: Database without any copy and dismounted.&eol;1: Database is a primary database and mounted.&eol;2: Database is a passive copy and the state is healthy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32543 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests latency |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Average Latency", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |RPC Latency average is the average latency of RPC requests per database. Average is calculated over all RPCs since exrpc32 was loaded. Should be less than 50ms at all times, with spikes less than 100ms. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32544 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests per second |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC Operations/sec", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Shows the number of RPC operations per second for each database instance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32545 |7 | |10352 |Information Store [{#INSTANCE}]: RPC requests total |perf_counter_en["\MSExchangeIS Store({#INSTANCE})\RPC requests", {$MS.EXCHANGE.PERF.INTERVAL}] |{$MS.EXCHANGE.PERF.INTERVAL}|7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the overall RPC requests currently executing within the information store process. Should be below 70 at all times. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32546 |15 | |10316 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32560 |15 | |10320 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32574 |15 | |10317 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32592 |0 | |10328 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32595 |0 | |10328 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32597 |0 | |10328 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |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 |32612 |20 |1.3.6.1.4.1.789.1.6.4.7.0 |10353 |NetApp FAS3220: Failed disks count |fas3220.disk[diskFailedCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of disks that are currently broken. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32613 |20 |1.3.6.1.4.1.789.1.6.4.10.0 |10353 |NetApp FAS3220: Failed disks message |fas3220.disk[diskFailedMessage] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |If diskFailedCount is non-zero, this is a string describing the failed disk or disks. Each failed disk is described. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32614 |20 |1.3.6.1.4.1.789.1.1.6.0 |10353 |NetApp FAS3220: Product firmware version |fas3220.inventory[productFirmwareVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the firmware running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32615 |20 |1.3.6.1.4.1.789.1.1.2.0 |10353 |NetApp FAS3220: Product version |fas3220.inventory[productVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version string for the software running on this platform. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32616 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.25.2.1.1] |10353 |Cluster metrics discovery |fas3220.cluster.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of Cluster metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32617 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.2.1.14.1.1] |10353 |CPU discovery |fas3220.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of CPU metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32618 |20 |discovery[{#FSNAME},1.3.6.1.4.1.789.1.5.4.1.2,{#FSTYPE},1.3.6.1.4.1.789.1.5.4.1.23,{#VSERVER},1.3.6.1.4.1.789.1.5.4.1.34] |10353 |Filesystems discovery |fas3220.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filesystems discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32619 |20 |discovery[{#NODE.NAME},1.3.6.1.4.1.789.1.21.2.1.1,{#PARTNER.NAME},1.3.6.1.4.1.789.1.21.2.1.8] |10353 |HA discovery |fas3220.ha.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of high availability metrics per node |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32620 |20 |discovery[{#IFNAME},1.3.6.1.4.1.789.1.22.2.1.2,{#NODE},1.3.6.1.4.1.789.1.22.2.1.1,{#TYPE},1.3.6.1.4.1.789.1.22.2.1.15,{#ROLE},1.3.6.1.4.1.789.1.22.2.1.3,{#IFDESCR},1.3.6.1.4.1.789.1.22.1.2.1.2] |10353 |Network ports discovery |fas3220.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery with filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32621 |20 |1.3.6.1.4.1.789.1.25.2.1.19.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN count |fas3220.cluster[nodeEnvFailedFanCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of chassis fans that are not operating within the recommended RPM range. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32622 |20 |1.3.6.1.4.1.789.1.25.2.1.20.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Failed FAN message |fas3220.cluster[nodeEnvFailedFanMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing current condition of chassis fans. This is useful only if envFailedFanCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32623 |20 |1.3.6.1.4.1.789.1.25.2.1.21.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies count |fas3220.cluster[nodeEnvFailedPowerSupplyCount, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of the number of power supplies that are in degraded mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32624 |20 |1.3.6.1.4.1.789.1.25.2.1.22.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Degraded power supplies message |fas3220.cluster[nodeEnvFailedPowerSupplyMessage, "{#NODE.NAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Text message describing the state of any power supplies that are currently degraded. This is useful only if envFailedPowerSupplyCount is not zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32625 |20 |1.3.6.1.4.1.789.1.25.2.1.18.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Over-temperature |fas3220.cluster[nodeEnvOverTemperature, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |An indication of whether the hardware is currently operating outside of its recommended temperature range. The hardware will shutdown if the temperature exceeds critical thresholds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32626 |20 |1.3.6.1.4.1.789.1.25.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Health |fas3220.cluster[nodeHealth, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL |Whether or not the node can communicate with the cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32627 |20 |1.3.6.1.4.1.789.1.25.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Location |fas3220.cluster[nodeLocation, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Location. Same as sysLocation for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32628 |20 |1.3.6.1.4.1.789.1.25.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Model |fas3220.cluster[nodeModel, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Model. Same as productModel for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32629 |20 |1.3.6.1.4.1.789.1.25.2.1.17.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: NVRAM battery status |fas3220.cluster[nodeNvramBatteryStatus, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |139 | | |0 | | | | |2 |NULL |An indication of the current status of the NVRAM battery or batteries.&eol;Batteries which are fully or partially discharged may not fully protect the system during a crash. The end-of-life status values are based on the manufacturer's recommended life for the batteries.&eol;Possible values:&eol;ok(1),&eol;partiallyDischarged(2),&eol;fullyDischarged(3),&eol;notPresent(4),&eol;nearEndOfLife(5),&eol;atEndOfLife(6),&eol;unknown(7),&eol;overCharged(8),&eol;fullyCharged(9). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32630 |20 |1.3.6.1.4.1.789.1.25.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Serial number |fas3220.cluster[nodeSerialNumber, "{#NODE.NAME}"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Node Serial Number. Same as productSerialNum for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32631 |20 |1.3.6.1.4.1.789.1.25.2.1.7.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Uptime |fas3220.cluster[nodeUptime, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Node uptime. Same as sysUpTime for a specific node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32632 |20 |1.3.6.1.4.1.789.1.2.1.14.1.4.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: CPU utilization |fas3220.cpu[cDOTCpuBusyTimePerCent, "{#NODE.NAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The average, over the last minute, of the percentage of time that this processor was not idle. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32633 |20 |1.3.6.1.4.1.789.1.5.4.1.31.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space available |fas3220.fs[df64AvailKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is free for use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32634 |20 |1.3.6.1.4.1.789.1.5.4.1.29.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space |fas3220.fs[df64TotalKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total capacity in Bytes for {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32635 |20 |1.3.6.1.4.1.789.1.5.4.1.30.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Total space used |fas3220.fs[df64UsedKBytes, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total disk space that is in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32636 |20 |1.3.6.1.4.1.789.1.5.4.1.38.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by compression percents |fas3220.fs[dfCompressSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of compression savings in a volume, which is ((compr_saved/used)) * 10(compr_saved + 0). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32637 |20 |1.3.6.1.4.1.789.1.5.4.1.40.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Saved by deduplication percents |fas3220.fs[dfDedupeSavedPercent, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Provides the percentage of deduplication savings in a volume, which is ((dedup_saved/(dedup_saved + used)) * 100). This is only returned for volumes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32638 |20 |1.3.6.1.4.1.789.1.5.4.1.6.{#SNMPINDEX} |10353 |{#VSERVER}{#FSNAME}: Used space percents |fas3220.fs[dfPerCentKBytesCapacity, "{#VSERVER}{#FSNAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage of disk space currently in use on {#FSNAME}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32639 |20 |1.3.6.1.4.1.789.1.21.2.1.5.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: Cannot takeover cause |fas3220.ha[haCannotTakeoverCause, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |140 | | |0 | | | | |2 |NULL |The reason node cannot take over it's HA partner {#PARTNER.NAME}.&eol;Possible states:&eol; ok(1),&eol; unknownReason(2),&eol; disabledByOperator(3),&eol; interconnectOffline(4),&eol; disabledByPartner(5),&eol; takeoverFailed(6),&eol; mailboxIsInDegradedState(7),&eol; partnermailboxIsInUninitialisedState(8),&eol; mailboxVersionMismatch(9),&eol; nvramSizeMismatch(10),&eol; kernelVersionMismatch(11),&eol; partnerIsInBootingStage(12),&eol; diskshelfIsTooHot(13),&eol; partnerIsPerformingRevert(14),&eol; nodeIsPerformingRevert(15),&eol; sametimePartnerIsAlsoTryingToTakeUsOver(16),&eol; alreadyInTakenoverMode(17),&eol; nvramLogUnsynchronized(18),&eol; stateofBackupMailboxIsDoubtful(19). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32640 |20 |1.3.6.1.4.1.789.1.21.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE.NAME}: HA settings |fas3220.ha[haSettings, "{#NODE.NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |141 | | |0 | | | | |2 |NULL |High Availability configuration settings. The value notConfigured(1) indicates that the HA is not licensed. The thisNodeDead(5) setting indicates that this node has been takenover. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32641 |20 |1.3.6.1.4.1.789.1.22.1.2.1.28.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets discarded |fas3220.net.if[if64InDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets that were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32642 |20 |1.3.6.1.4.1.789.1.22.1.2.1.29.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Inbound packets with errors |fas3220.net.if[if64InErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32643 |20 |1.3.6.1.4.1.789.1.22.1.2.1.25.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits received |fas3220.net.if[if64InOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets received on the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32644 |20 |1.3.6.1.4.1.789.1.22.1.2.1.34.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets discarded |fas3220.net.if[if64OutDiscards, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets that were chosen to be discarded even though no errors had been detected to prevent their being transmitted. One possible reason for discarding such a packet could be to free up buffer space. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32645 |20 |1.3.6.1.4.1.789.1.22.1.2.1.35.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Outbound packets with errors |fas3220.net.if[if64OutErrors, "{#NODE}", "{#IFNAME}"] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets that could not be transmitted because of errors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32646 |20 |1.3.6.1.4.1.789.1.22.1.2.1.31.{#IFSNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Bits sent |fas3220.net.if[if64OutOctets, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of octets transmitted out of the interface, including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32647 |20 |1.3.6.1.4.1.789.1.22.2.1.32.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health degraded reason |fas3220.net.port[netportDegradedReason, "{#NODE}", "{#IFNAME}"] |1m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The list of reasons why the port is marked as degraded. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32648 |20 |1.3.6.1.4.1.789.1.22.2.1.30.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Health |fas3220.net.port[netportHealthStatus, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |0 | | | | |NULL |143 | | |0 | | | | |2 |NULL |The health status of the port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32649 |20 |1.3.6.1.4.1.789.1.22.2.1.4.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): State |fas3220.net.port[netportLinkState, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |142 | | |0 | | | | |2 |NULL |The link-state of the port. Normally it is either UP(2) or DOWN(3). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32650 |20 |1.3.6.1.4.1.789.1.22.2.1.3.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Role |fas3220.net.port[netportRole, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |145 | | |0 | | | | |2 |NULL |Role of the port. A port must have one of the following roles: cluster(1), data(2), mgmt(3), intercluster(4), cluster-mgmt(5) or undef(0). The cluster port is used to communicate to other node(s) in the cluster. The data port services clients' requests. It is where all the file requests come in. The management port is used by administrator to manage resources within a node. The intercluster port is used to communicate to other cluster. The cluster-mgmt port is used to manage resources within the cluster. The undef role is for the port that has not yet been assigned a role. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32651 |20 |1.3.6.1.4.1.789.1.22.2.1.11.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Speed |fas3220.net.port[netportSpeedOper, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |147 | | |0 | | | | |2 |NULL |The speed appears on the port. It can be either undef(0), auto(1), ten Mb/s(2), hundred Mb/s(3), one Gb/s(4), or ten Gb/s(5). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32652 |20 |1.3.6.1.4.1.789.1.22.2.1.14.{#SNMPINDEX} |10353 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Up by an administrator |fas3220.net.port[netportUpAdmin, "{#NODE}", "{#IFNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |144 | | |0 | | | | |2 |NULL |Indicates whether the port status is set 'UP' by an administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32653 |16 | |10354 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32654 |16 | |10354 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32655 |16 | |10354 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32656 |16 | |10354 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32657 |16 | |10354 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32658 |16 | |10354 |Ignite kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32659 |16 | |10354 |TCP Communication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32660 |16 | |10354 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32661 |16 | |10354 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |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 |32662 |16 | |10354 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.ignite.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32663 |16 | |10354 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32664 |16 | |10354 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32665 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32666 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32667 |16 | |10354 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32668 |16 | |10354 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32669 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32670 |16 | |10354 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32671 |16 | |10354 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32672 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The core number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32673 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32674 |16 | |10354 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32675 |16 | |10354 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32676 |16 | |10354 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32677 |16 | |10354 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32678 |16 | |10354 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32679 |16 | |10354 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32680 |16 | |10354 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32681 |16 | |10354 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32682 |16 | |10354 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32683 |16 | |10354 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32684 |16 | |10354 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32685 |16 | |10354 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32686 |16 | |10354 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32687 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32688 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32689 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32690 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32691 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32692 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32693 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32694 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32695 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32696 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32697 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32698 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32699 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32700 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32701 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32702 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Version of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32703 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32704 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Uptime of Ignite instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32705 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32706 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32708 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32709 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32710 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32711 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32712 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32713 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32714 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32715 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32716 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32717 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32718 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32719 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32720 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32721 |16 | |10354 |Ignite [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32722 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32723 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32724 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32725 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32726 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32727 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32728 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32729 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32730 |16 | |10354 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$IGNITE.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32731 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.8.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.232.6.2.6.8.1.3] |10256 |Temperature Discovery System |tempDescr.discovery.system |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries: CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32732 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32733 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Ambient: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32734 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |CPU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32735 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32736 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10256 |I/O-{#SNMPINDEX}: Temperature |sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32737 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |Memory-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32738 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |PSU-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32739 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10256 |System-{#SNMPINDEX}: Temperature sensor condition |sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32740 |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}] |1m |7d |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 |32741 |0 | |10355 |SMART: Get attributes |smart.disk.get |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 |32742 |0 | |10355 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32743 |0 | |10355 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32753 |7 | |10356 |SMART: Get attributes |smart.disk.get |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 |32754 |7 | |10356 |Attribute discovery |smart.attribute.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART Vendor Specific Attributes of disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32755 |7 | |10356 |Disk discovery |smart.disk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery SMART disks. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32776 |20 |1.3.6.1.4.1.34774.4.1.1.3.0 |10357 |OceanStor 5300 V5: Status |huawei.5300.v5[status] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System running status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32777 |20 |1.3.6.1.4.1.34774.4.1.1.5.0 |10357 |OceanStor 5300 V5: Capacity total |huawei.5300.v5[totalCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32778 |20 |1.3.6.1.4.1.34774.4.1.1.4.0 |10357 |OceanStor 5300 V5: Capacity used |huawei.5300.v5[usedCapacity] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Used capacity of a device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32779 |20 |1.3.6.1.4.1.34774.4.1.1.6.0 |10357 |OceanStor 5300 V5: Version |huawei.5300.v5[version] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The device version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32780 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.5.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.5.1.2] |10357 |BBU discovery |huawei.5300.bbu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of BBU |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32781 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.2.1.1] |10357 |Controllers discovery |huawei.5300.controllers.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of controllers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32782 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3.6.1.4.1.34774.4.1.23.5.1.1.12,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.1.1.4] |10357 |Disks discovery |huawei.5300.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of disks |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32783 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2] |10357 |Enclosure discovery |huawei.5300.enclosure.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of enclosures |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32784 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2] |10357 |FANs discovery |huawei.5300.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of FANs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32785 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2] |10357 |LUNs discovery |huawei.5300.lun.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of LUNs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32786 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10357 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes performance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32787 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14] |10357 |Storage pools discovery |huawei.5300.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of storage pools |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32788 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a BBU. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32789 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} |10357 |BBU {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Running status of a BBU. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32790 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.8.{#SNMPINDEX} |10357 |Controller {#ID}: CPU utilization |huawei.5300.v5[hwInfoControllerCPUUsage, "{#ID}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32791 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.2.{#SNMPINDEX} |10357 |Controller {#ID}: Health status |huawei.5300.v5[hwInfoControllerHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Controller health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32792 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.9.{#SNMPINDEX} |10357 |Controller {#ID}: Memory utilization |huawei.5300.v5[hwInfoControllerMemoryUsage, "{#ID}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Memory usage of a controller {#ID}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32793 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.6.{#SNMPINDEX} |10357 |Controller {#ID}: Role |huawei.5300.v5[hwInfoControllerRole, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |149 | | |0 | | | | |2 |NULL |Controller role.. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32794 |20 |1.3.6.1.4.1.34774.4.1.23.5.2.1.3.{#SNMPINDEX} |10357 |Controller {#ID}: Running status |huawei.5300.v5[hwInfoControllerRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Controller running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32795 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.25.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health score |huawei.5300.v5[hwInfoDiskHealthMark, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Health score of a disk. If the value is 255, indicating invalid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32796 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.2.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoDiskHealthStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Disk health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32797 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.3.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoDiskRunningStatus, "{#ID}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Disk running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32798 |20 |1.3.6.1.4.1.34774.4.1.23.5.1.1.11.{#SNMPINDEX} |10357 |Disk {#MODEL} on {#LOCATION}: Temperature |huawei.5300.v5[hwInfoDiskTemperature, "{#ID}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Disk temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32799 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.4.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Health status |huawei.5300.v5[hwInfoEnclosureHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Enclosure health status. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32800 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.5.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Running status |huawei.5300.v5[hwInfoEnclosureRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Enclosure running status. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32801 |20 |1.3.6.1.4.1.34774.4.1.23.5.6.1.8.{#SNMPINDEX} |10357 |Enclosure {#NAME}: Temperature |huawei.5300.v5[hwInfoEnclosureTemperature, "{#NAME}"] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Enclosure temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32802 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.3.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoFanHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a fan. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32803 |20 |1.3.6.1.4.1.34774.4.1.23.5.4.1.4.{#SNMPINDEX} |10357 |FAN {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoFanRunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a fan. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32804 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.13.{#SNMPINDEX} |10357 |LUN {#NAME}: Average total I/O latency |huawei.5300.v5[hwPerfLunAverageIOResponseTime, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32805 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.15.{#SNMPINDEX} |10357 |LUN {#NAME}: Average read I/O latency |huawei.5300.v5[hwPerfLunAverageReadIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average read I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32806 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.16.{#SNMPINDEX} |10357 |LUN {#NAME}: Average write I/O latency |huawei.5300.v5[hwPerfLunAverageWriteIOLatency, "{#NAME}"] |1m |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average write I/O response time in milliseconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32807 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.4.{#SNMPINDEX} |10357 |LUN {#NAME}: Read operations per second |huawei.5300.v5[hwPerfLunReadIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32808 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.7.{#SNMPINDEX} |10357 |LUN {#NAME}: Read traffic per second |huawei.5300.v5[hwPerfLunReadTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current read bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32809 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.3.{#SNMPINDEX} |10357 |LUN {#NAME}: Total I/O per second |huawei.5300.v5[hwPerfLunTotalIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Current IOPS of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32810 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.6.{#SNMPINDEX} |10357 |LUN {#NAME}: Total traffic per second |huawei.5300.v5[hwPerfLunTotalTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current total bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32811 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Write operations per second |huawei.5300.v5[hwPerfLunWriteIOPS, "{#NAME}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32812 |20 |1.3.6.1.4.1.34774.4.1.21.4.1.8.{#SNMPINDEX} |10357 |LUN {#NAME}: Write traffic per second |huawei.5300.v5[hwPerfLunWriteTraffic, "{#NAME}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Current write bandwidth for the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32813 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.5.{#SNMPINDEX} |10357 |LUN {#NAME}: Capacity |huawei.5300.v5[hwStorageLunCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Capacity of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32814 |20 |1.3.6.1.4.1.34774.4.1.19.9.4.1.11.{#SNMPINDEX} |10357 |LUN {#NAME}: Status |huawei.5300.v5[hwStorageLunStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |151 | | |0 | | | | |2 |NULL |Status of the LUN. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32815 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.2.{#SNMPINDEX} |10357 |Node {#NODE}: CPU utilization |huawei.5300.v5[hwPerfNodeCPUUsage, "{#NODE}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU usage of the node {#NODE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32816 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.4.{#SNMPINDEX} |10357 |Node {#NODE}: Average I/O latency |huawei.5300.v5[hwPerfNodeDelay, "{#NODE}"] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Average I/O latency of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32817 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.6.{#SNMPINDEX} |10357 |Node {#NODE}: Read operations per second |huawei.5300.v5[hwPerfNodeReadIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Read IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32818 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.9.{#SNMPINDEX} |10357 |Node {#NODE}: Read traffic per second |huawei.5300.v5[hwPerfNodeReadTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Read bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32819 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.5.{#SNMPINDEX} |10357 |Node {#NODE}: Total I/O per second |huawei.5300.v5[hwPerfNodeTotalIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32820 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX} |10357 |Node {#NODE}: Total traffic per second |huawei.5300.v5[hwPerfNodeTotalTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32821 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write operations per second |huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"] |1m |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |Write IOPS of the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32822 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10357 |Node {#NODE}: Write traffic per second |huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Write bandwidth for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32823 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity free |huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Available capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32824 |15 | |10357 |Pool {#NAME}: Capacity used percentage |huawei.5300.v5[hwInfoStoragePoolFreeCapacityPct, "{#NAME}"] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last("huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, \"{#NAME}\"]")/last("huawei.5300.v5[hwInfoStoragePoolTotalCapacity, \"{#NAME}\"]")*100 | |0 | | | | |2 |NULL |Used capacity of a storage pool in percents. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32825 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} |10357 |Pool {#NAME}: Health status |huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |150 | | |0 | | | | |2 |NULL |Health status of a storage pool. For details, see definition of Enum Values (HEALTH_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32826 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} |10357 |Pool {#NAME}: Running status |huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |152 | | |0 | | | | |2 |NULL |Operating status of a storage pool. For details, see definition of Enum Values (RUNNING_STATUS_E).&eol;https://support.huawei.com/enterprise/en/centralized-storage/oceanstor-5300-v5-pid-22462029?category=reference-guides&subcategory=mib-reference |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32827 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity used |huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32828 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.7.{#SNMPINDEX} |10357 |Pool {#NAME}: Capacity total |huawei.5300.v5[hwInfoStoragePoolTotalCapacity, "{#NAME}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total capacity of a storage pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32836 |0 | |10359 |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 |32837 |0 | |10359 |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 |32838 |0 | |10359 |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 |32839 |0 | |10359 |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 |32925 |19 | |10360 |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 |32926 |19 | |10360 |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 |32928 |19 | |10361 |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 |32929 |19 | |10361 |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 |32930 |19 | |10361 |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 |32976 |19 | |10360 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |rabbitmq.healthcheck.alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32977 |19 | |10361 |RabbitMQ: Healthcheck{#SINGLETON} |rabbitmq.healthcheck[{#SINGLETON}] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |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 |32978 |19 | |10361 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |rabbitmq.healthcheck.certificate_expiration[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32979 |19 | |10361 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |rabbitmq.healthcheck.local_alarms[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32980 |19 | |10361 |RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON} |rabbitmq.healthcheck.mirror_sync[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32981 |19 | |10361 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |rabbitmq.healthcheck.quorum[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |32982 |19 | |10361 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |rabbitmq.healthcheck.virtual_hosts[{#SINGLETON}] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |33017 |0 | |10362 |MongoDB: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns a database's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33018 |0 | |10362 |MongoDB: Get Replica Set status |mongodb.rs.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the replica set status from the point of view of the member where the method is run. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33019 |0 | |10362 |MongoDB: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33020 |0 | |10362 |MongoDB: Get oplog stats |mongodb.oplog.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of the replica set, using data polled from the oplog. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33021 |0 | |10362 |MongoDB: Get collections usage stats |mongodb.collections.usage["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns usage statistics for each collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33061 |0 | |10362 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33062 |0 | |10362 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33065 |0 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33066 |0 | |10362 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33139 |0 | |10363 |MongoDB cluster: Jumbo chunks |mongodb.jumbo_chunks.count["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of 'jumbo' chunks in the mongo cluster. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33140 |0 | |10363 |MongoDB cluster: Get server status |mongodb.server.status["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The mongos statistic |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33141 |0 | |10363 |MongoDB cluster: Ping |mongodb.ping["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test if a connection is alive or not. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33142 |0 | |10363 |MongoDB cluster: Get mongodb.connpool.stats |mongodb.connpool.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns current info about connpool.stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33173 |0 | |10363 |Config servers discovery |mongodb.cfg.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster config servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33174 |0 | |10363 |Collection discovery |mongodb.collections.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect collections metrics.&eol;Note, depending on the number of DBs and collections this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.MATCHES}, {$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33175 |0 | |10363 |Database discovery |mongodb.db.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect database metrics.&eol;Note, depending on the number of DBs this discovery operation may be expensive. Use filters with macros {$MONGODB.LLD.FILTER.DB.MATCHES}, {$MONGODB.LLD.FILTER.DB.NOT_MATCHES}. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33176 |0 | |10363 |Shards discovery |mongodb.sh.discovery["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery shared cluster hosts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33177 |0 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Get collection stats {#DBNAME}.{#COLLECTION} |mongodb.collection.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}","{#COLLECTION}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns a variety of storage statistics for a given collection. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33178 |0 | |10363 |MongoDB {#DBNAME}: Get db stats {#DBNAME} |mongodb.db.stats["{$MONGODB.CONNSTRING}","{$MONGODB.USER}","{$MONGODB.PASSWORD}","{#DBNAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns statistics reflecting the database system's state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33194 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}_non-local_db.states","{$MSSQL.DSN}"] |1m |0h |0 |0 |4 | | | | |NULL |NULL |SELECT drs.log_send_queue_size as log_send_queue_size,&bsn;drs.redo_queue_size as redo_queue_size,&bsn;ag.name as group_name,&bsn;arcs.replica_server_name as replica_name,&bsn;db_name(drs.database_id) as dbname&bsn;FROM sys.dm_hadr_database_replica_states drs &bsn;JOIN sys.dm_hadr_availability_replica_cluster_states arcs ON arcs.replica_id = drs.replica_id &bsn;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id &bsn;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |2 |NULL |Getting the states of the non-local availability database. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33197 |3 | |10366 |ICMP ping |icmpping |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 |33198 |3 | |10366 |ICMP loss |icmppingloss |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 |33199 |3 | |10366 |ICMP response time |icmppingsec |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 |33200 |17 | |10366 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33201 |20 |1.3.6.1.2.1.1.4.0 |10366 |System contact details |system.contact |1h |7d |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 |33202 |20 |1.3.6.1.2.1.1.1.0 |10366 |System description |system.descr |1h |7d |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 |33203 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10366 |Hardware model name |system.hw.model |1h |7d |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 |33204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10366 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33205 |20 |1.3.6.1.2.1.1.6.0 |10366 |System location |system.location |1h |7d |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 |33206 |20 |1.3.6.1.2.1.1.5.0 |10366 |System name |system.name |1h |7d |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 |33207 |20 |1.3.6.1.2.1.1.2.0 |10366 |System object ID |system.objectid |1m |7d |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 |33208 |20 |1.3.6.1.2.1.1.1.0 |10366 |Operating system |system.sw.os |1h |7d |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 |33209 |20 |1.3.6.1.2.1.1.3.0 |10366 |Uptime |system.uptime |1m |7d |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 |33210 |5 | |10366 |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 |33211 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10366 |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 |33212 |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] |10366 |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 |33213 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10366 |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 |33214 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10366 |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 |33215 |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] |10366 |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 |33216 |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] |10366 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33217 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10366 |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 |33218 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10366 |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 |33219 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10366 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33220 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10366 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33221 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33222 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33223 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33224 |15 | |10366 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33225 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33226 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33227 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33228 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33229 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33230 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33231 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33232 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33233 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33234 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10366 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33235 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33236 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33237 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10366 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33238 |3 | |10367 |ICMP ping |icmpping |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 |33239 |3 | |10367 |ICMP loss |icmppingloss |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 |33240 |3 | |10367 |ICMP response time |icmppingsec |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 |33241 |17 | |10367 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33242 |20 |1.3.6.1.2.1.1.4.0 |10367 |System contact details |system.contact |1h |7d |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 |33243 |20 |1.3.6.1.2.1.1.1.0 |10367 |System description |system.descr |1h |7d |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 |33244 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10367 |Hardware model name |system.hw.model |1h |7d |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 |33245 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10367 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33246 |20 |1.3.6.1.2.1.1.6.0 |10367 |System location |system.location |1h |7d |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 |33247 |20 |1.3.6.1.2.1.1.5.0 |10367 |System name |system.name |1h |7d |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 |33248 |20 |1.3.6.1.2.1.1.2.0 |10367 |System object ID |system.objectid |1m |7d |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 |33249 |20 |1.3.6.1.2.1.1.1.0 |10367 |Operating system |system.sw.os |1h |7d |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 |33250 |20 |1.3.6.1.2.1.1.3.0 |10367 |Uptime |system.uptime |1m |7d |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 |33251 |5 | |10367 |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 |33252 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10367 |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 |33253 |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] |10367 |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 |33254 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10367 |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 |33255 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10367 |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 |33256 |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] |10367 |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 |33257 |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] |10367 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33258 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10367 |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 |33259 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10367 |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 |33260 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10367 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33261 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10367 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33262 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33263 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33264 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33265 |15 | |10367 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33266 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33267 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33268 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33269 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33270 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33271 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33272 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33273 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33274 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33275 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10367 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33276 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33277 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33278 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10367 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33279 |3 | |10368 |ICMP ping |icmpping |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 |33280 |3 | |10368 |ICMP loss |icmppingloss |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 |33281 |3 | |10368 |ICMP response time |icmppingsec |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 |33282 |17 | |10368 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33283 |20 |1.3.6.1.2.1.1.4.0 |10368 |System contact details |system.contact |1h |7d |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 |33284 |20 |1.3.6.1.2.1.1.1.0 |10368 |System description |system.descr |1h |7d |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 |33285 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10368 |Hardware model name |system.hw.model |1h |7d |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 |33286 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10368 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33287 |20 |1.3.6.1.2.1.1.6.0 |10368 |System location |system.location |1h |7d |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 |33288 |20 |1.3.6.1.2.1.1.5.0 |10368 |System name |system.name |1h |7d |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 |33289 |20 |1.3.6.1.2.1.1.2.0 |10368 |System object ID |system.objectid |1m |7d |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 |33290 |20 |1.3.6.1.2.1.1.1.0 |10368 |Operating system |system.sw.os |1h |7d |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 |33291 |20 |1.3.6.1.2.1.1.3.0 |10368 |Uptime |system.uptime |1m |7d |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 |33292 |5 | |10368 |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 |33293 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10368 |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 |33294 |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] |10368 |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 |33295 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10368 |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 |33296 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10368 |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 |33297 |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] |10368 |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 |33298 |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] |10368 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33299 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10368 |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 |33300 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10368 |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 |33301 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10368 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33302 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10368 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33303 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33304 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33305 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33306 |15 | |10368 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33307 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33308 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33309 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33310 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33311 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33312 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33313 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33314 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33315 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33316 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10368 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33317 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33318 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33319 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10368 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33320 |3 | |10369 |ICMP ping |icmpping |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 |33321 |3 | |10369 |ICMP loss |icmppingloss |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 |33322 |3 | |10369 |ICMP response time |icmppingsec |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 |33323 |17 | |10369 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33324 |20 |1.3.6.1.2.1.1.4.0 |10369 |System contact details |system.contact |1h |7d |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 |33325 |20 |1.3.6.1.2.1.1.1.0 |10369 |System description |system.descr |1h |7d |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 |33326 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10369 |Hardware model name |system.hw.model |1h |7d |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 |33327 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10369 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33328 |20 |1.3.6.1.2.1.1.6.0 |10369 |System location |system.location |1h |7d |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 |33329 |20 |1.3.6.1.2.1.1.5.0 |10369 |System name |system.name |1h |7d |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 |33330 |20 |1.3.6.1.2.1.1.2.0 |10369 |System object ID |system.objectid |1m |7d |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 |33331 |20 |1.3.6.1.2.1.1.1.0 |10369 |Operating system |system.sw.os |1h |7d |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 |33332 |20 |1.3.6.1.2.1.1.3.0 |10369 |Uptime |system.uptime |1m |7d |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 |33333 |5 | |10369 |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 |33334 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10369 |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 |33335 |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] |10369 |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 |33336 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10369 |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 |33337 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10369 |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 |33338 |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] |10369 |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 |33339 |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] |10369 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33340 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10369 |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 |33341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10369 |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 |33342 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10369 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33343 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10369 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33344 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33345 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33346 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33347 |15 | |10369 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33348 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33349 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33350 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33351 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33352 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33353 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33354 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33355 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33356 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33357 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10369 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33358 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33359 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33360 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10369 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33361 |3 | |10370 |ICMP ping |icmpping |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 |33362 |3 | |10370 |ICMP loss |icmppingloss |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 |33363 |3 | |10370 |ICMP response time |icmppingsec |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 |33364 |17 | |10370 |SNMP traps (fallback) |snmptrap.fallback |1m |7d |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 |33365 |20 |1.3.6.1.2.1.1.4.0 |10370 |System contact details |system.contact |1h |7d |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 |33366 |20 |1.3.6.1.2.1.1.1.0 |10370 |System description |system.descr |1h |7d |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 |33367 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10370 |Hardware model name |system.hw.model |1h |7d |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 |33368 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10370 |Hardware serial number |system.hw.serialnumber |1h |7d |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 |33369 |20 |1.3.6.1.2.1.1.6.0 |10370 |System location |system.location |1h |7d |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 |33370 |20 |1.3.6.1.2.1.1.5.0 |10370 |System name |system.name |1h |7d |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 |33371 |20 |1.3.6.1.2.1.1.2.0 |10370 |System object ID |system.objectid |1m |7d |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 |33372 |20 |1.3.6.1.2.1.1.1.0 |10370 |Operating system |system.sw.os |1h |7d |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 |33373 |20 |1.3.6.1.2.1.1.3.0 |10370 |Uptime |system.uptime |1m |7d |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 |33374 |5 | |10370 |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 |33375 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10370 |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 |33376 |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] |10370 |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 |33377 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.4.1.2] |10370 |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 |33378 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10370 |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 |33379 |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] |10370 |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 |33380 |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] |10370 |EtherLike discovery |net.if.duplex.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB and EtherLike-MIB. Interfaces with up(1) Operational Status are discovered. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33381 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.5.1.2] |10370 |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 |33382 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10370 |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 |33383 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10370 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;Object name: cpmCPUTotal5minRev&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 |33384 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10370 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;Object name: entPhysicalSerialNum |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33385 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33386 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&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 |33387 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&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 |33388 |15 | |10370 |{#SNMPVALUE}: Memory utilization |vm.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("vm.memory.used[{#SNMPINDEX}]")/(last("vm.memory.free[{#SNMPINDEX}]")+last("vm.memory.used[{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33389 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |33390 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33391 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |33392 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |33393 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |33394 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |33395 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |33396 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |33397 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |33398 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX} |10370 |Interface {#IFNAME}({#IFALIAS}): Duplex status |net.if.duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |19 | | |0 | | | | |2 |NULL |MIB: EtherLike-MIB&eol;Object name: dot3StatsDuplexStatus&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 |33399 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Power supply status |sensor.psu.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonSupplyState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33400 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature status |sensor.temp.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureState&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 |33401 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10370 |{#SNMPVALUE}: Temperature |sensor.temp.value[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonTemperatureValue&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 |33402 |3 | |10251 |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 |33403 |3 | |10251 |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 |33404 |3 | |10251 |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 |33405 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33406 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |15m |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 |33407 |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 | |% | | |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 |33408 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |15m |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 |33409 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |15m |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 |33410 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |15m |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 |33411 |20 |1.3.6.1.2.1.1.2.0 |10251 |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 |33412 |20 |1.3.6.1.2.1.1.3.0 |10251 |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 |33413 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33414 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33415 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33416 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33417 |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 | | | | |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 |33418 |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 | | | | |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 |33419 |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 | | |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 |33420 |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 | | | | |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 |33421 |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 | | | | |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 |33422 |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 | | |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 |33423 |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 | | |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 |33424 |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 | | | | |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 |33425 |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 | | | | |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 |33426 |15 | |10251 |{#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 |33427 |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 | | |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 |33428 |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 | | |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 |33429 |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 | | |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 |33430 |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 | | |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 |33431 |15 | |10251 |{#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 |33433 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10371 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33434 |20 |1.3.6.1.2.1.1.3.0 |10371 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33435 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10371 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33436 |20 |1.3.6.1.2.1.1.2.0 |10371 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33439 |20 |1.3.6.1.2.1.1.6.0 |10371 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33440 |20 |1.3.6.1.2.1.1.1.0 |10371 |System description |system.descr[sysDescr.0] |15m |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 |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33442 |17 | |10371 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33443 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10371 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33444 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10371 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33445 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10371 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33446 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10371 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33447 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10371 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33448 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10371 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33449 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10371 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33453 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10371 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33454 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10371 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33455 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10371 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33456 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10371 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33457 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10371 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33458 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10371 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33459 |5 | |10371 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33460 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10371 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33461 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10371 |External battery packs discovery |battery.packs.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 |33462 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10371 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33463 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10371 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33464 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10371 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33465 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10371 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33466 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33467 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33468 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10371 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33471 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33472 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33473 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10371 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33474 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33475 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33476 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10371 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33477 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33478 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33479 |19 | |10372 |Get chassis |netapp.chassis.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33480 |15 | |10372 |Cluster latency, other |netapp.cluster.statistics.latency.other |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.other) - prev(netapp.cluster.statistics.latency_raw.other)) /&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) +&bsn;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33481 |19 | |10372 |Get SVMs |netapp.svms.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name,state,comment | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33482 |19 | |10372 |Get FC ports |netapp.ports.fc.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33483 |19 | |10372 |Get ethernet ports |netapp.ports.eth.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,type,node.name,broadcast_domain.name,enabled,state,mtu,speed | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33484 |19 | |10372 |Get nodes |netapp.nodes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=* | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33485 |19 | |10372 |Get LUNs |netapp.luns.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33486 |19 | |10372 |Get FRUs |netapp.frus.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33487 |19 | |10372 |Get disks |netapp.disks.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33488 |15 | |10372 |Cluster latency, write |netapp.cluster.statistics.latency.write |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.write) - prev(netapp.cluster.statistics.latency_raw.write)) /&bsn;( last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) +&bsn;(last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33489 |15 | |10372 |Cluster latency, total |netapp.cluster.statistics.latency.total |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.total) - prev(netapp.cluster.statistics.latency_raw.total)) /&bsn;( last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) +&bsn;(last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33490 |19 | |10372 |Get cluster |netapp.cluster.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33491 |15 | |10372 |Cluster latency, read |netapp.cluster.statistics.latency.read |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.cluster.statistics.latency_raw.read) - prev(netapp.cluster.statistics.latency_raw.read)) /&bsn;( last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) +&bsn;(last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33492 |19 | |10372 |Get volumes |netapp.volumes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33513 |19 | |10372 |Chassis discovery |netapp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33514 |19 | |10372 |Disks discovery |netapp.disks.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=name,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33516 |19 | |10372 |LUNs discovery |netapp.luns.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/luns?fields=name,svm.name,space.size,space.used,status.state,status.container_state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33517 |19 | |10372 |Nodes discovery |netapp.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/nodes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33518 |19 | |10372 |Ethernet ports discovery |netapp.ports.ether.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/ethernet/ports?fields=name,state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33519 |19 | |10372 |FC ports discovery |netapp.ports.fc.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=node.name,name,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33520 |19 | |10372 |SVMs discovery |netapp.svms.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33521 |19 | |10372 |Volumes discovery |netapp.volumes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |1 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33522 |15 | |10372 |{#VOLUMENAME}: Volume latency, total |netapp.volume.statistics.latency.total[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33523 |15 | |10372 |{#VOLUMENAME}: Volume latency, write |netapp.volume.statistics.latency.write[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33524 |15 | |10372 |{#VOLUMENAME}: Volume latency, read |netapp.volume.statistics.latency.read[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) = 0)) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33525 |15 | |10372 |{#VOLUMENAME}: Volume latency, other |netapp.volume.statistics.latency.other[{#VOLUMENAME}] |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}])) /&bsn;( last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) +&bsn;(last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33568 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10373 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33569 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10373 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33570 |20 |1.3.6.1.2.1.1.3.0 |10373 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33571 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10373 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33572 |20 |1.3.6.1.2.1.1.2.0 |10373 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33574 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10373 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33575 |20 |1.3.6.1.2.1.1.6.0 |10373 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33576 |20 |1.3.6.1.2.1.1.1.0 |10373 |System description |system.descr[sysDescr.0] |15m |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 |33577 |20 |1.3.6.1.2.1.1.4.0 |10373 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33578 |17 | |10373 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33579 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10373 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33580 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10373 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33581 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10373 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33582 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10373 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33583 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10373 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33584 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10373 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33585 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10373 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33589 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10373 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33590 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10373 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33591 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10373 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33592 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10373 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33593 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10373 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33594 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10373 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33595 |5 | |10373 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33596 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10373 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33597 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10373 |External battery packs discovery |battery.packs.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 |33598 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10373 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33599 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10373 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33600 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10373 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33601 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10373 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33602 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10373 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33603 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33604 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33605 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33606 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33607 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10373 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33608 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33609 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33610 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10373 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33611 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33612 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33613 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10373 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33614 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33615 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33616 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33617 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33618 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10373 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33619 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10374 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33620 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10374 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33621 |20 |1.3.6.1.2.1.1.3.0 |10374 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33622 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10374 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33623 |20 |1.3.6.1.2.1.1.2.0 |10374 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33625 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10374 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33626 |20 |1.3.6.1.2.1.1.6.0 |10374 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33627 |20 |1.3.6.1.2.1.1.1.0 |10374 |System description |system.descr[sysDescr.0] |15m |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 |33628 |20 |1.3.6.1.2.1.1.4.0 |10374 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33629 |17 | |10374 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33630 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10374 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33631 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10374 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33632 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10374 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33633 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10374 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33634 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10374 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33635 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10374 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33636 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10374 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33640 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10374 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33641 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10374 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33642 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10374 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33643 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10374 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33644 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10374 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33645 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10374 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33646 |5 | |10374 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33647 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10374 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33648 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10374 |External battery packs discovery |battery.packs.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 |33649 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10374 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33650 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10374 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33651 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10374 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33652 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10374 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33653 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10374 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33654 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33655 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33656 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33657 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33658 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10374 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33659 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33660 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33661 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10374 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33662 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33663 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33664 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10374 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33665 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33666 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33667 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33668 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33669 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10374 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33670 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10375 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33671 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10375 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33672 |20 |1.3.6.1.2.1.1.3.0 |10375 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33673 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10375 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33674 |20 |1.3.6.1.2.1.1.2.0 |10375 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33676 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10375 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33677 |20 |1.3.6.1.2.1.1.6.0 |10375 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33678 |20 |1.3.6.1.2.1.1.1.0 |10375 |System description |system.descr[sysDescr.0] |15m |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 |33679 |20 |1.3.6.1.2.1.1.4.0 |10375 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33680 |17 | |10375 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33681 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10375 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33682 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10375 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33683 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10375 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33684 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10375 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33685 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10375 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33686 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10375 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33687 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10375 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10375 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33692 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10375 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33693 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10375 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33694 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10375 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33695 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10375 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33696 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10375 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33697 |5 | |10375 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33698 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10375 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33699 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10375 |External battery packs discovery |battery.packs.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 |33700 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10375 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33701 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10375 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33702 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10375 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33703 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10375 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10375 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33705 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33706 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33707 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33708 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10375 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33710 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33711 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33712 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10375 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33713 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33714 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33715 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10375 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33716 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33717 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33718 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33719 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33720 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10375 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33721 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10376 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33722 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10376 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33723 |20 |1.3.6.1.2.1.1.3.0 |10376 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33724 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10376 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33725 |20 |1.3.6.1.2.1.1.2.0 |10376 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33727 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10376 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33728 |20 |1.3.6.1.2.1.1.6.0 |10376 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33729 |20 |1.3.6.1.2.1.1.1.0 |10376 |System description |system.descr[sysDescr.0] |15m |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 |33730 |20 |1.3.6.1.2.1.1.4.0 |10376 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33731 |17 | |10376 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33732 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10376 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33733 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10376 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33734 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10376 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33735 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10376 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33736 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10376 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33737 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10376 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33738 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10376 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33742 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10376 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33743 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10376 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33744 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10376 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33745 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10376 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33746 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10376 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33747 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10376 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33748 |5 | |10376 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33749 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10376 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33750 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10376 |External battery packs discovery |battery.packs.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 |33751 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10376 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33752 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10376 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33753 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10376 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33754 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10376 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33755 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10376 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33756 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33759 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33760 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10376 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33761 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33762 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33763 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10376 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33764 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33765 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33766 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10376 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33767 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33768 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33769 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33770 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33771 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10376 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10377 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33773 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10377 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33774 |20 |1.3.6.1.2.1.1.3.0 |10377 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33775 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10377 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33776 |20 |1.3.6.1.2.1.1.2.0 |10377 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33778 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10377 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33779 |20 |1.3.6.1.2.1.1.6.0 |10377 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33780 |20 |1.3.6.1.2.1.1.1.0 |10377 |System description |system.descr[sysDescr.0] |15m |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 |33781 |20 |1.3.6.1.2.1.1.4.0 |10377 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33782 |17 | |10377 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33783 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10377 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33784 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10377 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33785 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10377 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33786 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10377 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33787 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10377 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33788 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10377 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33789 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10377 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10377 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33794 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10377 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33795 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10377 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33796 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10377 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33797 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10377 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33798 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10377 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33799 |5 | |10377 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33800 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10377 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33801 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10377 |External battery packs discovery |battery.packs.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 |33802 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10377 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33803 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10377 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33804 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10377 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33805 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10377 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10377 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33807 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33808 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33809 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33810 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10377 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33812 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33813 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33814 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10377 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33815 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33816 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33817 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10377 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33818 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33819 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33820 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33821 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33822 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10377 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33823 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10378 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33824 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10378 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33825 |20 |1.3.6.1.2.1.1.3.0 |10378 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33826 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10378 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33827 |20 |1.3.6.1.2.1.1.2.0 |10378 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33829 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10378 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33830 |20 |1.3.6.1.2.1.1.6.0 |10378 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33831 |20 |1.3.6.1.2.1.1.1.0 |10378 |System description |system.descr[sysDescr.0] |15m |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 |33832 |20 |1.3.6.1.2.1.1.4.0 |10378 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33833 |17 | |10378 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33834 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10378 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33835 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10378 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33836 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10378 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33837 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10378 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33838 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10378 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33839 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10378 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33840 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10378 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33844 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10378 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33845 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10378 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33846 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10378 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33847 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10378 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33848 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10378 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33849 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10378 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33850 |5 | |10378 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33851 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10378 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33852 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10378 |External battery packs discovery |battery.packs.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 |33853 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10378 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33854 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10378 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33855 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10378 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33856 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10378 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33857 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10378 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33858 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33861 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33862 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10378 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33863 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33864 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33865 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10378 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33866 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33867 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33868 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10378 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33869 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33870 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33871 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33872 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33873 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10378 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10379 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33875 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10379 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33876 |20 |1.3.6.1.2.1.1.3.0 |10379 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33877 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10379 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33878 |20 |1.3.6.1.2.1.1.2.0 |10379 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33880 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10379 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33881 |20 |1.3.6.1.2.1.1.6.0 |10379 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33882 |20 |1.3.6.1.2.1.1.1.0 |10379 |System description |system.descr[sysDescr.0] |15m |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 |33883 |20 |1.3.6.1.2.1.1.4.0 |10379 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33884 |17 | |10379 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33885 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10379 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33886 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10379 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33887 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10379 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33888 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10379 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33889 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10379 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33890 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10379 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33891 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10379 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33895 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10379 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33896 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10379 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33897 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10379 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33898 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10379 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33899 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10379 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33900 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10379 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33901 |5 | |10379 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33902 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10379 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33903 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10379 |External battery packs discovery |battery.packs.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 |33904 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10379 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33905 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10379 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33906 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10379 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33907 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10379 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33908 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10379 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33909 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33910 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33911 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33912 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33913 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10379 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33914 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33915 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33916 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10379 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33917 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33918 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33919 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10379 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33920 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33921 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33922 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33923 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33924 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10379 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33925 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10371 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33926 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10371 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33927 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33928 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33929 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10371 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33930 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10380 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33931 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10380 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33932 |20 |1.3.6.1.2.1.1.3.0 |10380 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33933 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10380 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33934 |20 |1.3.6.1.2.1.1.2.0 |10380 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33936 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10380 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33937 |20 |1.3.6.1.2.1.1.6.0 |10380 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33938 |20 |1.3.6.1.2.1.1.1.0 |10380 |System description |system.descr[sysDescr.0] |15m |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 |33939 |20 |1.3.6.1.2.1.1.4.0 |10380 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33940 |17 | |10380 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33941 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10380 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33942 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10380 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33943 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10380 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33944 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10380 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33945 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10380 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33946 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10380 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33947 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10380 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33951 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10380 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33952 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10380 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33953 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10380 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33954 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10380 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33955 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10380 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33956 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10380 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33957 |5 | |10380 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33958 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10380 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33959 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10380 |External battery packs discovery |battery.packs.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 |33960 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10380 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33961 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10380 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33962 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10380 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33963 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10380 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33964 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10380 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33965 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33966 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33967 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33968 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33969 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10380 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33970 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33971 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33972 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10380 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33973 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33974 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33975 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10380 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33976 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33977 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33978 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33979 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33980 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10380 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33981 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10381 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33982 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10381 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33983 |20 |1.3.6.1.2.1.1.3.0 |10381 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33984 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10381 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33985 |20 |1.3.6.1.2.1.1.2.0 |10381 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33987 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10381 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33988 |20 |1.3.6.1.2.1.1.6.0 |10381 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |33989 |20 |1.3.6.1.2.1.1.1.0 |10381 |System description |system.descr[sysDescr.0] |15m |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 |33990 |20 |1.3.6.1.2.1.1.4.0 |10381 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |33991 |17 | |10381 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33992 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10381 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33993 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10381 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33994 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10381 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33995 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10381 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33996 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10381 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33997 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10381 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33998 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10381 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34002 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10381 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34003 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10381 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34004 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10381 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34005 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10381 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34006 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10381 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34007 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10381 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34008 |5 | |10381 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34009 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10381 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34010 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10381 |External battery packs discovery |battery.packs.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 |34011 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10381 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34012 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10381 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34013 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10381 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34014 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10381 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34015 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10381 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34016 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34017 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34018 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34019 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34020 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10381 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34021 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34022 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34023 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10381 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34024 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34025 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34026 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10381 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34027 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34028 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34029 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34030 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34031 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10381 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34032 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10382 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34033 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10382 |Output load |output.load[upsHighPrecOutputLoad] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current UPS load expressed as percentage&eol;of rated capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34034 |20 |1.3.6.1.2.1.1.3.0 |10382 |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&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34035 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10382 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34036 |20 |1.3.6.1.2.1.1.2.0 |10382 |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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what&eol;kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34038 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10382 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34039 |20 |1.3.6.1.2.1.1.6.0 |10382 |System location |system.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |34040 |20 |1.3.6.1.2.1.1.1.0 |10382 |System description |system.descr[sysDescr.0] |15m |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 |34041 |20 |1.3.6.1.2.1.1.4.0 |10382 |System contact details |system.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |34042 |17 | |10382 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34043 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10382 |Output voltage |output.voltage[upsHighPrecOutputVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The output voltage of the UPS system in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34044 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10382 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |159 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current state of the UPS. If the UPS is unable to&eol; determine the state of the UPS this variable is set&eol; to unknown(1).&eol;During self-test most UPSes report onBattery(3) but&eol; some that support it will report onBatteryTest(15).&eol; To determine self-test status across all UPSes, refer&eol; to the upsBasicStateOutputState OID. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34045 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10382 |Output current |output.current[upsHighPrecOutputCurrent] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current in amperes drawn by the load on the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34046 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10382 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34047 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10382 |Input voltage |input.voltage[upsHighPrecInputLineVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current utility line voltage in VAC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34048 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10382 |Input frequency |input.frequency[upsHighPrecInputFrequency] |1m |7d |365d |0 |0 | |Hz | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current input frequency to the UPS system in Hz. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34049 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10382 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |157 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The reason for the occurrence of the last transfer to UPS&eol;battery power. The variable is set to:&eol;- noTransfer(1) -- if there is no transfer yet.&eol;- highLineVoltage(2) -- if the transfer to battery is caused&eol;by an over voltage greater than the high transfer voltage.&eol;- brownout(3) -- if the duration of the outage is greater than&eol;five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- blackout(4) -- if the duration of the outage is greater than five&eol;seconds and the line voltage is between 40% of the rated&eol;output voltage and ground.&eol;- smallMomentarySag(5) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and the low transfer voltage.&eol;- deepMomentarySag(6) -- if the duration of the outage is less&eol;than five seconds and the line voltage is between 40% of the&eol;rated output voltage and ground. The variable is set to&eol;- smallMomentarySpike(7) -- if the line failure is caused by a&eol;rate of change of input voltage less than ten volts per cycle.&eol;- largeMomentarySpike(8) -- if the line failure is caused by&eol;a rate of change of input voltage greater than ten volts per cycle.&eol;- selfTest(9) -- if the UPS was commanded to do a self test.&eol;- rateOfVoltageChange(10) -- if the failure is due to the rate of change of&eol;the line voltage.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34053 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10382 |Battery voltage |battery.voltage[upsHighPrecBatteryActualVoltage] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The actual battery bus voltage in Volts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34054 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10382 |Battery temperature |battery.temperature[upsHighPrecBatteryTemperature] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The current internal UPS temperature in Celsius.&eol; Temperatures below zero read as 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34055 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10382 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |158 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The status of the UPS batteries. A batteryLow(3) value&eol; indicates the UPS will be unable to sustain the current&eol; load, and its services will be lost if power is not restored.&eol; The amount of run time in reserve at the time of low battery&eol; can be configured by the upsAdvConfigLowBatteryRunTime.&eol; A batteryInFaultCondition(4)value indicates that a battery&eol; installed has an internal error condition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34056 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10382 |Battery runtime remaining |battery.runtime_remaining[upsAdvBatteryRunTimeRemaining] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS battery run time remaining before battery&eol; exhaustion. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34057 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10382 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |156 | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;Indicates whether the UPS batteries need replacement. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34058 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10382 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34059 |5 | |10382 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34060 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10382 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34061 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10382 |External battery packs discovery |battery.packs.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 |34062 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10382 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34063 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10382 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34064 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10382 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34065 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10382 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34066 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10382 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34067 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34068 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge health.&eol; bit 0 Battery lifetime okay&eol; bit 1 Battery lifetime near end, order replacement cartridge&eol; bit 2 Battery lifetime exceeded, replace battery&eol; bit 3 Battery lifetime near end acknowledged, order replacement cartridge&eol; bit 4 Battery lifetime exceeded acknowledged, replace battery&eol; bit 5 Battery measured lifetime near end, order replacement cartridge&eol; bit 6 Battery measured lifetime near end acknowledged, order replacement cartridge |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34069 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge status.&eol;bit 0 Disconnected&eol;bit 1 Overvoltage&eol;bit 2 NeedsReplacement&eol;bit 3 OvertemperatureCritical&eol;bit 4 Charger&eol;bit 5 TemperatureSensor&eol;bit 6 BusSoftStart&eol;bit 7 OvertemperatureWarning&eol;bit 8 GeneralError&eol;bit 9 Communication&eol;bit 10 DisconnectedFrame&eol;bit 11 FirmwareMismatch |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34070 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack temperature in Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34071 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10382 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34072 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34073 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34074 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10382 |{#EXTERNAL_SENSOR1_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.1.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34075 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Humidity sensor |external.sensor.humidity[uioSensorStatusHumidity.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current humidity reading - a relative humidity&eol; percentage. -1 indicates an invalid reading due to either a&eol; sensor that doesn't read humidity or lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34076 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |155 | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The alarm status of the sensor. Possible values:&eol;uioNormal (1),&eol;uioWarning (2),&eol;uioCritical (3),&eol;sensorStatusNotApplicable (4) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34077 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10382 |{#EXTERNAL_SENSOR2_NAME}: Temperature sensor |external.sensor.temperature[uioSensorStatusTemperatureDegC.2.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |℃ | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The sensor's current temperature reading in Celsius.&eol; -1 indicates an invalid reading due to lost communications. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34078 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input current in 0.1 amperes, or -0.1 if it's&eol; unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34079 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The input voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34080 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34081 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34082 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10382 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34083 |20 |1.3.6.1.2.1.1.5.0 |10373 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34084 |20 |1.3.6.1.2.1.1.5.0 |10374 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34085 |20 |1.3.6.1.2.1.1.5.0 |10375 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34086 |20 |1.3.6.1.2.1.1.5.0 |10376 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34087 |20 |1.3.6.1.2.1.1.5.0 |10377 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34088 |20 |1.3.6.1.2.1.1.5.0 |10378 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34089 |20 |1.3.6.1.2.1.1.5.0 |10379 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34090 |20 |1.3.6.1.2.1.1.5.0 |10371 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34091 |20 |1.3.6.1.2.1.1.5.0 |10380 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34092 |20 |1.3.6.1.2.1.1.5.0 |10381 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34093 |20 |1.3.6.1.2.1.1.5.0 |10382 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34094 |16 | |10383 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34095 |16 | |10383 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34096 |16 | |10383 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34097 |16 | |10383 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34098 |16 | |10383 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34099 |16 | |10383 |Servers discovery |jmx.get[beans,"jboss.as:host=master,server-config=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery instances in domain. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34100 |16 | |10383 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*,server-group=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34101 |16 | |10383 |WildFly domain: Server {#SERVER}: Autostart |jmx["{#JMXOBJ}",autoStart] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Whether or not this server should be started when the Host Controller starts. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34102 |16 | |10383 |WildFly domain: Server {#SERVER}: Server group |jmx["{#JMXOBJ}",group] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The name of a server group from the domain model. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34103 |16 | |10383 |WildFly domain: Server {#SERVER}: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current status of the server. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34104 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34105 |16 | |10383 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34106 |16 | |10384 |WildFly: Uptime |jmx["java.lang:type=Runtime","Uptime"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |WildFly server uptime. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34107 |16 | |10384 |WildFly: Transactions: Committed, rate |jmx["jboss.as:subsystem=transactions","numberOfCommittedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of committed transactions |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34108 |16 | |10384 |WildFly: Transactions: Timed out, rate |jmx["jboss.as:subsystem=transactions","numberOfTimedOutTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have rolled back due to timeout. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34109 |16 | |10384 |WildFly: Transactions: System rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfSystemRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back due to internal system errors. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34110 |16 | |10384 |WildFly: Transactions: ResourceRollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfResourceRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that rolled back due to resource (participant) failure. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34111 |16 | |10384 |WildFly: Transactions: Nested, rate |jmx["jboss.as:subsystem=transactions","numberOfNestedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of nested (sub) transactions created. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34112 |16 | |10384 |WildFly: Transactions: Current |jmx["jboss.as:subsystem=transactions","numberOfInflightTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have begun but not yet terminated. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34113 |16 | |10384 |WildFly: Transactions: Heuristics, rate |jmx["jboss.as:subsystem=transactions","numberOfHeuristics"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions which have terminated with heuristic outcomes. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34114 |16 | |10384 |WildFly: Transactions: Application rollbacks, rate |jmx["jboss.as:subsystem=transactions","numberOfApplicationRollbacks"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of transactions that have been rolled back by application request. This includes those that timeout, since the timeout behavior is considered an attribute of the application configuration. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34115 |16 | |10384 |WildFly: Launch type |jmx["jboss.as:management-root=server","launchType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The manner in which the server process was launched. Either "DOMAIN" for a domain mode server launched by a Host Controller, "STANDALONE" for a standalone server launched from the command line, or "EMBEDDED" for a standalone server launched as an embedded part of an application running in the same virtual machine. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34116 |16 | |10384 |WildFly: Transactions: Aborted, rate |jmx["jboss.as:subsystem=transactions","numberOfAbortedTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The number of aborted (i.e. rolledback) transactions per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34117 |16 | |10384 |WildFly: Server controller state |jmx["jboss.as:management-root=server","serverState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current state of the server controller; either STARTING, RUNNING, RESTART_REQUIRED, RELOAD_REQUIRED or STOPPING. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34118 |16 | |10384 |WildFly: Runtime configuration state |jmx["jboss.as:management-root=server","runtimeConfigurationState"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The current persistent configuration state, one of starting, ok, reload-required, restart-required, stopping or stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34119 |16 | |10384 |WildFly: Version |jmx["jboss.as:management-root=server","productVersion"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The version of the WildFly Core based product release |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34120 |16 | |10384 |WildFly: Process type |jmx["jboss.as:management-root=server","processType"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The type of process represented by this root resource. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34121 |16 | |10384 |WildFly: Name |jmx["jboss.as:management-root=server","name"] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |For standalone mode: The name of this server. If not set, defaults to the runtime value of InetAddress.getLocalHost().getHostName().&eol;For domain mode: The name given to this domain |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34122 |16 | |10384 |WildFly: Transactions: Total, rate |jmx["jboss.as:subsystem=transactions","numberOfTransactions"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |0 |NULL |The total number of transactions (top-level and nested) created per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34123 |16 | |10384 |JDBC metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=jdbc"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34124 |16 | |10384 |Pools metrics discovery |jmx.get[beans,"jboss.as:subsystem=datasources,data-source=*,statistics=pool"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34125 |16 | |10384 |Undertow metrics discovery |jmx.get[beans,"jboss.as:subsystem=undertow,server=*,http-listener=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL | |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34126 |16 | |10384 |Deployments discovery |jmx.get[beans,"jboss.as.expr:deployment=*"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |1 |NULL |Discovery deployments metrics. |0 |30d |1 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34127 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache access, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAccessCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that the statement cache was accessed per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34128 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache add, rate |jmx["{#JMXOBJ}",PreparedStatementCacheAddCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements added to the statement cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34129 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache current size |jmx["{#JMXOBJ}",PreparedStatementCacheCurrentSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of prepared and callable statements currently cached in the statement cache. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34130 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache delete, rate |jmx["{#JMXOBJ}",PreparedStatementCacheDeleteCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of statements discarded from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34131 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache hit, rate |jmx["{#JMXOBJ}",PreparedStatementCacheHitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that statements from the cache were used per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34132 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Cache miss, rate |jmx["{#JMXOBJ}",PreparedStatementCacheMissCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of times that a statement request could not be satisfied with a statement from the cache per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34134 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Active |jmx["{#JMXOBJ}",ActiveCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of open connections. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34135 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit time, avg |jmx["{#JMXOBJ}",XACommitAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource commit invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34136 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start time, avg |jmx["{#JMXOBJ}",XAStartAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource start invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34137 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback, rate |jmx["{#JMXOBJ}",XARollbackCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource rollback invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34138 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Rollback time, avg |jmx["{#JMXOBJ}",XARollbackAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource rollback invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34139 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover, rate |jmx["{#JMXOBJ}",XARecoverCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource recover invocationsper second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34140 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Recover time, avg |jmx["{#JMXOBJ}",XARecoverAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource recover invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34141 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare, rate |jmx["{#JMXOBJ}",XAPrepareCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource prepare invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34142 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Prepare time, avg |jmx["{#JMXOBJ}",XAPrepareAverageTime] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource prepare invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34143 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget, rate |jmx["{#JMXOBJ}",XAForgetCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource forget invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34144 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Forget time, avg |jmx["{#JMXOBJ}",XAForgetAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource forget invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34145 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End, rate |jmx["{#JMXOBJ}",XAEndCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource end invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34146 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: End time, avg |jmx["{#JMXOBJ}",XAEndAverageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a XAResource end invocation. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34147 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Commit, rate |jmx["{#JMXOBJ}",XACommitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource commit invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34148 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Wait |jmx["{#JMXOBJ}",WaitCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests that had to wait to obtain a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34149 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Available |jmx["{#JMXOBJ}",AvailableCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The available count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34150 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Timed out, rate |jmx["{#JMXOBJ}",TimedOut] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The timed out connections per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34151 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Statistics enabled |jmx["{#JMXOBJ}",statisticsEnabled] |1m |7d |365d |0 |0 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Define whether runtime statistics are enabled or not. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34152 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Used, max |jmx["{#JMXOBJ}",MaxUsedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The maximum number of connections used. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34153 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: In use |jmx["{#JMXOBJ}",InUseCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently in use. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34154 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Idle |jmx["{#JMXOBJ}",IdleCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of physical connections currently idle. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34155 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Destroyed, rate |jmx["{#JMXOBJ}",DestroyedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The destroyed count. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34156 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Created, rate |jmx["{#JMXOBJ}",CreatedCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The created per second |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34157 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Blocking failure, rate |jmx["{#JMXOBJ}",BlockingFailureCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of failures trying to obtain a physical connection per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34158 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Usage time, avg |jmx["{#JMXOBJ}",AverageUsageTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent using a physical connection |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34159 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Pool time, avg |jmx["{#JMXOBJ}",AveragePoolTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time for a physical connection spent in the pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34160 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Get time, avg |jmx["{#JMXOBJ}",AverageGetTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent obtaining a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34161 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Connections: Creating time, avg |jmx["{#JMXOBJ}",AverageCreationTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The average time spent creating a physical connection. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34162 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: Blocking time, avg |jmx["{#JMXOBJ}",AverageBlockingTime] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Average Blocking Time for pool. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34163 |16 | |10384 |WildFly {#JMX_DATA_SOURCE}: XA: Start rate |jmx["{#JMXOBJ}",XAStartCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of XAResource start invocations per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34164 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes received, rate |jmx["{#JMXOBJ}",bytesReceived] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been received by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34165 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Bytes sent, rate |jmx["{#JMXOBJ}",bytesSent] |1m |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of bytes that have been sent out on this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34166 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Errors, rate |jmx["{#JMXOBJ}",errorCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of 500 responses that have been sent by this listener per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34167 |16 | |10384 |WildFly listener {#HTTP_LISTENER}: Requests, rate |jmx["{#JMXOBJ}",requestCount] |1m |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The number of requests this listener has served per second. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34168 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled |jmx["{#JMXOBJ}",enabled] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Boolean indicating whether the deployment content is currently deployed in the runtime (or should be deployed in the runtime the next time the server starts.) |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34169 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Enabled time |jmx["{#JMXOBJ}",enabledTime] |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34170 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Managed |jmx["{#JMXOBJ}",managed] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34171 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Persistent |jmx["{#JMXOBJ}",persistent] |1m |7d |365d |0 |3 | | | | |NULL |160 | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |Indicates if the deployment is managed (aka uses the ContentRepository). |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34172 |16 | |10384 |WildFly deployment [{#DEPLOYMENT}]: Status |jmx["{#JMXOBJ}",status] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$WILDFLY.USER} |{$WILDFLY.PASSWORD} | | |2 |NULL |The current runtime status of a deployment. &eol;Possible status modes are OK, FAILED, and STOPPED. &eol;FAILED indicates a dependency is missing or a service could not start. &eol;STOPPED indicates that the deployment was not enabled or was manually stopped. |0 |30d |0 |service:jmx:{$WILDFLY.JMX.PROTOCOL}://{HOST.CONN}:{HOST.PORT}|NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34173 |11 | |10327 |MSSQL: Get job status |db.odbc.get[get_job_status,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT sj.name AS JobName&bsn;, sj.enabled AS Enabled&bsn;, sjs.last_run_outcome AS RunStatus&bsn;, sjs.last_outcome_message AS LastRunStatusMessage&bsn;, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS RunDuration&bsn;, CASE sjs.last_run_date&bsn; WHEN 0 THEN NULL&bsn; ELSE msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time)&bsn; END AS LastRunDateTime&bsn;, sja.next_scheduled_run_date AS NextRunDateTime&bsn;FROM msdb..sysjobs AS sj&bsn;LEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id&bsn;LEFT JOIN ( SELECT job.job_id,&bsn; max(act.session_id) AS s_id,&bsn; max(act.next_scheduled_run_date) AS next_scheduled_run_date&bsn; FROM msdb..sysjobs AS job&bsn; LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id&bsn; GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id&bsn;WHERE Enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets sql agent job status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34174 |11 | |10327 |MSSQL: Get last backup |db.odbc.get[get_last_backup,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT bs.database_name as dbname,[type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as timesincelastbackup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration&bsn;FROM msdb.dbo.backupset as bs WHERE bs.database_name not in (&bsn;SELECT&bsn;AGDatabases.database_name AS Databasename&bsn;FROM sys.dm_hadr_availability_group_states States&bsn;INNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id&bsn;INNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id&bsn;WHERE primary_replica != @@Servername OR primary_replica is NULL&bsn;)&bsn;GROUP BY bs.database_name, backup_finish_date, [type], backup_start_date&bsn;HAVING backup_finish_date = (SELECT MAX(backup_finish_date) from msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type])&bsn;ORDER BY bs.database_name | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets information about backup processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34175 |11 | |10327 |Job discovery |db.odbc.discovery[jobname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS jobname FROM msdb..sysjobs WHERE enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning jobs in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34189 |5 | |10047 |Zabbix server: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34207 |5 | |10385 |ZYXEL AAM1212-51 / IES-612: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34208 |20 |.1.3.6.1.2.1.1.4.0 |10385 |ZYXEL AAM1212-51 / IES-612: Contact |zyxel.aam1212.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34209 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10385 |ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version |zyxel.aam1212.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34210 |20 |.1.3.6.1.2.1.1.6.0 |10385 |ZYXEL AAM1212-51 / IES-612: Location |zyxel.aam1212.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34211 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10385 |ZYXEL AAM1212-51 / IES-612: MAC address |zyxel.aam1212.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34212 |20 |.1.3.6.1.2.1.1.1.0 |10385 |ZYXEL AAM1212-51 / IES-612: Hardware model name |zyxel.aam1212.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34213 |20 |.1.3.6.1.2.1.1.5.0 |10385 |ZYXEL AAM1212-51 / IES-612: Host name |zyxel.aam1212.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34214 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10385 |ZYXEL AAM1212-51 / IES-612: Hardware serial number |zyxel.aam1212.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34215 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10385 |ZYXEL AAM1212-51 / IES-612: Alarm status |zyxel.aam1212.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34216 |20 |.1.3.6.1.2.1.1.3.0 |10385 |ZYXEL AAM1212-51 / IES-612: Uptime |zyxel.aam1212.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34217 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10385 |ADSL interface discovery |zyxel.aam1212.net.adsl.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 |34218 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10385 |Ethernet interface discovery |zyxel.aam1212.net.if.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 |34219 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10385 |Temperature discovery |zyxel.aam1212.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34220 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10385 |Voltage discovery |zyxel.aam1212.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34221 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status |zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34222 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation |zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34223 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power |zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34224 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin |zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34225 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation |zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34226 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power |zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34227 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin |zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34228 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic |zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34229 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name |zyxel.aam1212.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34230 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status |zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34231 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic |zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34232 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34233 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34234 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name |zyxel.aam1212.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34235 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34236 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34237 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.aam1212.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34238 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10385 |ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.aam1212.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34239 |5 | |10386 |ZYXEL ES3500-8PD: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34240 |20 |.1.3.6.1.2.1.1.4.0 |10386 |ZYXEL ES3500-8PD: Contact |zyxel.3500_8pd.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34241 |20 |.1.3.6.1.4.1.890.1.5.8.72.12.7.0 |10386 |ZYXEL ES3500-8PD: CPU utilization |zyxel.3500_8pd.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34242 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.72.1] |10386 |ZYXEL ES3500-8PD: ZyNOS F/W Version |zyxel.3500_8pd.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34243 |20 |.1.3.6.1.2.1.1.6.0 |10386 |ZYXEL ES3500-8PD: Location |zyxel.3500_8pd.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34244 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10386 |ZYXEL ES3500-8PD: MAC address |zyxel.3500_8pd.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34245 |20 |.1.3.6.1.2.1.1.1.0 |10386 |ZYXEL ES3500-8PD: Hardware model name |zyxel.3500_8pd.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34246 |20 |.1.3.6.1.2.1.1.5.0 |10386 |ZYXEL ES3500-8PD: Host name |zyxel.3500_8pd.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34247 |20 |.1.3.6.1.4.1.890.1.5.8.72.1.10.0 |10386 |ZYXEL ES3500-8PD: Hardware serial number |zyxel.3500_8pd.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34248 |20 |.1.3.6.1.2.1.1.3.0 |10386 |ZYXEL ES3500-8PD: Uptime |zyxel.3500_8pd.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34249 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.72.124.1.1.2] |10386 |Memory pool discovery |zyxel.3500_8pd.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 |34250 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5] |10386 |Interface discovery |zyxel.3500_8pd.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34251 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.8] |10386 |SFP with DDM discovery |zyxel.3500_8pd.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34252 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2] |10386 |SFP without DDM discovery |zyxel.3500_8pd.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34253 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.72.9.2.1.5] |10386 |Temperature discovery |zyxel.3500_8pd.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34254 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.5] |10386 |Voltage discovery |zyxel.3500_8pd.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34255 |20 |.1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_8pd.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34256 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status |zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |170 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34257 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description |zyxel.3500_8pd.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34258 |15 | |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34259 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34260 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34261 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34262 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34263 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status |zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |171 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34264 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type |zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |169 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34265 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name |zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34266 |15 | |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34267 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34268 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34269 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34270 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34271 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed |zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34272 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |168 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34273 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34274 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code |zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34275 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number |zyxel.3500_8pd.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34276 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision |zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34277 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number |zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34278 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status |zyxel.3500_8pd.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |172 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34279 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34280 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor |zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34281 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_8pd.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34282 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX} |10386 |ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_8pd.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34283 |5 | |10387 |ZYXEL GS-4012F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34284 |20 |.1.3.6.1.2.1.1.4.0 |10387 |ZYXEL GS-4012F: Contact |zyxel.4012f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34285 |20 |.1.3.6.1.4.1.890.1.5.8.20.12.7.0 |10387 |ZYXEL GS-4012F: CPU utilization |zyxel.4012f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34286 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.20.1] |10387 |ZYXEL GS-4012F: ZyNOS F/W Version |zyxel.4012f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34287 |20 |.1.3.6.1.2.1.1.6.0 |10387 |ZYXEL GS-4012F: Location |zyxel.4012f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34288 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10387 |ZYXEL GS-4012F: MAC address |zyxel.4012f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34289 |20 |.1.3.6.1.2.1.1.1.0 |10387 |ZYXEL GS-4012F: Hardware model name |zyxel.4012f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34290 |20 |.1.3.6.1.2.1.1.5.0 |10387 |ZYXEL GS-4012F: Host name |zyxel.4012f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34291 |20 |.1.3.6.1.4.1.890.1.5.8.20.1.10.0 |10387 |ZYXEL GS-4012F: Hardware serial number |zyxel.4012f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34292 |20 |.1.3.6.1.2.1.1.3.0 |10387 |ZYXEL GS-4012F: Uptime |zyxel.4012f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34293 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.1.1.5] |10387 |Fan discovery |zyxel.4012f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34294 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5] |10387 |Interface discovery |zyxel.4012f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34295 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.20.9.2.1.5] |10387 |Temperature discovery |zyxel.4012f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34296 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.5] |10387 |Voltage discovery |zyxel.4012f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34297 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Fan #{#SNMPINDEX} |zyxel.4012f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34298 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status |zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |175 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34299 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description |zyxel.4012f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34300 |15 | |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4012f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34301 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34302 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34303 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34304 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34305 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status |zyxel.4012f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |176 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34306 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type |zyxel.4012f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |174 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34307 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name |zyxel.4012f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34308 |15 | |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4012f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34309 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34310 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34311 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34312 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34313 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed |zyxel.4012f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34314 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |173 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34315 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4012f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34316 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX} |10387 |ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4012f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34317 |5 | |10388 |ZYXEL IES-500x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34318 |20 |.1.3.6.1.2.1.1.4.0 |10388 |ZYXEL IES-500x: Contact |zyxel.ies500x.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34319 |20 |.1.3.6.1.2.1.1.6.0 |10388 |ZYXEL IES-500x: Location |zyxel.ies500x.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34320 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10388 |ZYXEL IES-500x: MAC address |zyxel.ies500x.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34321 |20 |.1.3.6.1.2.1.1.1.0 |10388 |ZYXEL IES-500x: Hardware model name |zyxel.ies500x.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34322 |20 |.1.3.6.1.2.1.1.5.0 |10388 |ZYXEL IES-500x: Host name |zyxel.ies500x.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34323 |20 |.1.3.6.1.2.1.1.3.0 |10388 |ZYXEL IES-500x: Uptime |zyxel.ies500x.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34324 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10388 |Packet buffer discovery |zyxel.ies500x.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34325 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10388 |CPU discovery |zyxel.ies500x.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34326 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10388 |Fan discovery |zyxel.ies500x.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34327 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10388 |Memory discovery |zyxel.ies500x.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34328 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10388 |ADSL interface discovery |zyxel.ies500x.net.adsl.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 |34329 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10388 |Ethernet interface discovery |zyxel.ies500x.net.if.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 |34330 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10388 |Slot discovery |zyxel.ies500x.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34331 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10388 |Temperature discovery |zyxel.ies500x.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34332 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10388 |Voltage discovery |zyxel.ies500x.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34333 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies500x.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34334 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies500x.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34335 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Fan #{#SNMPINDEX} |zyxel.ies500x.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34336 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies500x.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34337 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34338 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34339 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34340 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34341 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34342 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34343 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies500x.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34344 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34345 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34346 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34347 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34348 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34349 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34350 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34351 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34352 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34353 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34354 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34355 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status |zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34356 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description |zyxel.ies500x.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34357 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed |zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34358 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34359 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34360 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34361 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34362 |15 | |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies500x.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34363 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name |zyxel.ies500x.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34364 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status |zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34365 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34366 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34367 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34368 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34369 |15 | |10388 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies500x.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34370 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies500x.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34371 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34372 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies500x.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34373 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34374 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34375 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34376 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies500x.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34377 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies500x.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34378 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies500x.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34379 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies500x.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |178 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34380 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies500x.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |179 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34381 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies500x.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34382 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies500x.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34383 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10388 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies500x.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34384 |5 | |10389 |ZYXEL IES-6000: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34385 |20 |.1.3.6.1.2.1.1.4.0 |10389 |ZYXEL IES-6000: Contact |zyxel.ies6000.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34386 |20 |.1.3.6.1.2.1.1.6.0 |10389 |ZYXEL IES-6000: Location |zyxel.ies6000.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34387 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10389 |ZYXEL IES-6000: MAC address |zyxel.ies6000.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34388 |20 |.1.3.6.1.2.1.1.1.0 |10389 |ZYXEL IES-6000: Hardware model name |zyxel.ies6000.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34389 |20 |.1.3.6.1.2.1.1.5.0 |10389 |ZYXEL IES-6000: Host name |zyxel.ies6000.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34390 |20 |.1.3.6.1.2.1.1.3.0 |10389 |ZYXEL IES-6000: Uptime |zyxel.ies6000.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34391 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10389 |Packet buffer discovery |zyxel.ies6000.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34392 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10389 |CPU discovery |zyxel.ies6000.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34393 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10389 |Fan discovery |zyxel.ies6000.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34394 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10389 |Memory discovery |zyxel.ies6000.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34395 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10389 |ADSL interface discovery |zyxel.ies6000.net.adsl.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 |34396 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10389 |Ethernet interface discovery |zyxel.ies6000.net.if.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 |34397 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10389 |Slot discovery |zyxel.ies6000.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34398 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10389 |Temperature discovery |zyxel.ies6000.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34399 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10389 |Voltage discovery |zyxel.ies6000.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34400 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies6000.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34401 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies6000.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34402 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Fan #{#SNMPINDEX} |zyxel.ies6000.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34403 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies6000.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34404 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34405 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34406 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34407 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34408 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34409 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34410 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies6000.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34411 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34412 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34413 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34414 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34415 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34416 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34417 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34418 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34419 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34420 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34421 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34422 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status |zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34423 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description |zyxel.ies6000.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34424 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed |zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34425 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34426 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34427 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34428 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34429 |15 | |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies6000.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34430 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name |zyxel.ies6000.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34431 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status |zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34432 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34433 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34434 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34435 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34436 |15 | |10389 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies6000.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34437 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies6000.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34438 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34439 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies6000.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34440 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34441 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34442 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34443 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies6000.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34444 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies6000.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34445 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies6000.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34446 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies6000.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |184 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34447 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies6000.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |185 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34448 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies6000.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34449 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies6000.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34450 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10389 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies6000.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34451 |5 | |10390 |ZYXEL IES1248-51: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34452 |20 |.1.3.6.1.2.1.1.4.0 |10390 |ZYXEL IES1248-51: Contact |zyxel.ies1248.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34453 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10390 |ZYXEL IES1248-51: ZyNOS F/W Version |zyxel.ies1248.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34454 |20 |.1.3.6.1.2.1.1.6.0 |10390 |ZYXEL IES1248-51: Location |zyxel.ies1248.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34455 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10390 |ZYXEL IES1248-51: MAC address |zyxel.ies1248.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34456 |20 |.1.3.6.1.2.1.1.1.0 |10390 |ZYXEL IES1248-51: Hardware model name |zyxel.ies1248.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34457 |20 |.1.3.6.1.2.1.1.5.0 |10390 |ZYXEL IES1248-51: Host name |zyxel.ies1248.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34458 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10390 |ZYXEL IES1248-51: Hardware serial number |zyxel.ies1248.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34459 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10390 |ZYXEL IES1248-51: Alarm status |zyxel.ies1248.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34460 |20 |.1.3.6.1.2.1.1.3.0 |10390 |ZYXEL IES1248-51: Uptime |zyxel.ies1248.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34461 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.1.1.5] |10390 |Fan discovery |zyxel.ies1248.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34462 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10390 |ADSL interface discovery |zyxel.ies1248.net.adsl.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 |34463 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10390 |Ethernet interface discovery |zyxel.ies1248.net.if.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 |34464 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10390 |Temperature discovery |zyxel.ies1248.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34465 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10390 |Voltage discovery |zyxel.ies1248.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34466 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Fan #{#SNMPINDEX} |zyxel.ies1248.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34467 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status |zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34468 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation |zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34469 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power |zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34470 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin |zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34471 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation |zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34472 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power |zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34473 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin |zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber’s ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34474 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34475 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34476 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status |zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34477 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34478 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34479 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34480 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34481 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34482 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34483 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies1248.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34484 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10390 |ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies1248.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34485 |5 | |10391 |ZYXEL MES-3528: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34486 |20 |.1.3.6.1.2.1.1.4.0 |10391 |ZYXEL MES-3528: Contact |zyxel.3528.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34487 |20 |.1.3.6.1.4.1.890.1.5.8.51.12.7.0 |10391 |ZYXEL MES-3528: CPU utilization |zyxel.3528.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34488 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.51.1] |10391 |ZYXEL MES-3528: ZyNOS F/W Version |zyxel.3528.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34489 |20 |.1.3.6.1.2.1.1.6.0 |10391 |ZYXEL MES-3528: Location |zyxel.3528.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34490 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10391 |ZYXEL MES-3528: MAC address |zyxel.3528.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34491 |20 |.1.3.6.1.2.1.1.1.0 |10391 |ZYXEL MES-3528: Hardware model name |zyxel.3528.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34492 |20 |.1.3.6.1.2.1.1.5.0 |10391 |ZYXEL MES-3528: Host name |zyxel.3528.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34493 |20 |.1.3.6.1.4.1.890.1.5.8.51.1.10.0 |10391 |ZYXEL MES-3528: Hardware serial number |zyxel.3528.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34494 |20 |.1.3.6.1.2.1.1.3.0 |10391 |ZYXEL MES-3528: Uptime |zyxel.3528.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34495 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5] |10391 |Interface discovery |zyxel.3528.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34496 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.8] |10391 |SFP with DDM discovery |zyxel.3528.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34497 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2] |10391 |SFP without DDM discovery |zyxel.3528.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34498 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status |zyxel.3528.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |197 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34499 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description |zyxel.3528.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34500 |15 | |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3528.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34501 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34502 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3528.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34503 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34504 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34505 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status |zyxel.3528.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |198 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34506 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link type |zyxel.3528.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |196 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34507 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name |zyxel.3528.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34508 |15 | |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization |zyxel.3528.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34509 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34510 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic |zyxel.3528.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34511 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34512 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34513 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed |zyxel.3528.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34514 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX} |10391 |ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex |zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |195 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34515 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3528.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34516 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code |zyxel.3528.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34517 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number |zyxel.3528.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34518 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision |zyxel.3528.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34519 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number |zyxel.3528.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34520 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Status |zyxel.3528.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |199 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34521 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver |zyxel.3528.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34522 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX} |10391 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor |zyxel.3528.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34523 |5 | |10392 |ZYXEL MES3500-10: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34524 |20 |.1.3.6.1.2.1.1.4.0 |10392 |ZYXEL MES3500-10: Contact |zyxel.3500_10.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34525 |20 |.1.3.6.1.4.1.890.1.5.8.80.12.7.0 |10392 |ZYXEL MES3500-10: CPU utilization |zyxel.3500_10.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34526 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.80.1] |10392 |ZYXEL MES3500-10: ZyNOS F/W Version |zyxel.3500_10.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34527 |20 |.1.3.6.1.2.1.1.6.0 |10392 |ZYXEL MES3500-10: Location |zyxel.3500_10.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34528 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10392 |ZYXEL MES3500-10: MAC address |zyxel.3500_10.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34529 |20 |.1.3.6.1.2.1.1.1.0 |10392 |ZYXEL MES3500-10: Hardware model name |zyxel.3500_10.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34530 |20 |.1.3.6.1.2.1.1.5.0 |10392 |ZYXEL MES3500-10: Host name |zyxel.3500_10.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34531 |20 |.1.3.6.1.4.1.890.1.5.8.80.1.10.0 |10392 |ZYXEL MES3500-10: Hardware serial number |zyxel.3500_10.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34532 |20 |.1.3.6.1.2.1.1.3.0 |10392 |ZYXEL MES3500-10: Uptime |zyxel.3500_10.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34533 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.80.124.1.1.2] |10392 |Memory pool discovery |zyxel.3500_10.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 |34534 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5] |10392 |Interface discovery |zyxel.3500_10.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34535 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.8] |10392 |SFP with DDM discovery |zyxel.3500_10.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34536 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2] |10392 |SFP without DDM discovery |zyxel.3500_10.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34537 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.80.9.2.1.5] |10392 |Temperature discovery |zyxel.3500_10.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34538 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.5] |10392 |Voltage discovery |zyxel.3500_10.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34539 |20 |.1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_10.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34540 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status |zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |202 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34541 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description |zyxel.3500_10.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34542 |15 | |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_10.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34543 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34544 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34545 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34546 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34547 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status |zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |203 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34548 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type |zyxel.3500_10.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |201 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34549 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name |zyxel.3500_10.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34550 |15 | |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_10.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34551 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34552 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34553 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34554 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34555 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed |zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34556 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |200 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34557 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_10.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34558 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code |zyxel.3500_10.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34559 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number |zyxel.3500_10.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34560 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision |zyxel.3500_10.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34561 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number |zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34562 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status |zyxel.3500_10.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |204 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34563 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34564 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor |zyxel.3500_10.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34565 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_10.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34566 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX} |10392 |ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_10.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34567 |5 | |10393 |ZYXEL MES3500-24: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34568 |20 |.1.3.6.1.2.1.1.4.0 |10393 |ZYXEL MES3500-24: Contact |zyxel.3500_24.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34569 |20 |.1.3.6.1.4.1.890.1.5.8.68.12.7.0 |10393 |ZYXEL MES3500-24: CPU utilization |zyxel.3500_24.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34570 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.68.1] |10393 |ZYXEL MES3500-24: ZyNOS F/W Version |zyxel.3500_24.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34571 |20 |.1.3.6.1.2.1.1.6.0 |10393 |ZYXEL MES3500-24: Location |zyxel.3500_24.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34572 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10393 |ZYXEL MES3500-24: MAC address |zyxel.3500_24.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34573 |20 |.1.3.6.1.2.1.1.1.0 |10393 |ZYXEL MES3500-24: Hardware model name |zyxel.3500_24.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34574 |20 |.1.3.6.1.2.1.1.5.0 |10393 |ZYXEL MES3500-24: Host name |zyxel.3500_24.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34575 |20 |.1.3.6.1.4.1.890.1.5.8.68.1.10.0 |10393 |ZYXEL MES3500-24: Hardware serial number |zyxel.3500_24.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34576 |20 |.1.3.6.1.2.1.1.3.0 |10393 |ZYXEL MES3500-24: Uptime |zyxel.3500_24.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34577 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.68.124.1.1.2] |10393 |Memory pool discovery |zyxel.3500_24.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 |34578 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5] |10393 |Interface discovery |zyxel.3500_24.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34579 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.8] |10393 |SFP with DDM discovery |zyxel.3500_24.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34580 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2] |10393 |SFP without DDM discovery |zyxel.3500_24.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34581 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.68.9.2.1.5] |10393 |Temperature discovery |zyxel.3500_24.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34582 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.5] |10393 |Voltage discovery |zyxel.3500_24.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34583 |20 |.1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_24.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34584 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |207 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34585 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description |zyxel.3500_24.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34586 |15 | |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34587 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34588 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34589 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34590 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34591 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status |zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |208 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34592 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type |zyxel.3500_24.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |206 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34593 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name |zyxel.3500_24.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34594 |15 | |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34595 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34596 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34597 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34598 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34599 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed |zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34600 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |205 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34601 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34602 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code |zyxel.3500_24.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34603 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number |zyxel.3500_24.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34604 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision |zyxel.3500_24.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34605 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34606 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status |zyxel.3500_24.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |209 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34607 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34608 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34609 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_24.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34610 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX} |10393 |ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_24.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34611 |5 | |10394 |ZYXEL MGS-3712: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34612 |20 |.1.3.6.1.2.1.1.4.0 |10394 |ZYXEL MGS-3712: Contact |zyxel.3712.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34613 |20 |.1.3.6.1.4.1.890.1.5.8.47.11.7.0 |10394 |ZYXEL MGS-3712: CPU utilization |zyxel.3712.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34614 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.47.1] |10394 |ZYXEL MGS-3712: ZyNOS F/W Version |zyxel.3712.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34615 |20 |.1.3.6.1.2.1.1.6.0 |10394 |ZYXEL MGS-3712: Location |zyxel.3712.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34616 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10394 |ZYXEL MGS-3712: MAC address |zyxel.3712.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34617 |20 |.1.3.6.1.2.1.1.1.0 |10394 |ZYXEL MGS-3712: Hardware model name |zyxel.3712.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34618 |20 |.1.3.6.1.2.1.1.5.0 |10394 |ZYXEL MGS-3712: Host name |zyxel.3712.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34619 |20 |.1.3.6.1.4.1.890.1.5.8.47.1.10.0 |10394 |ZYXEL MGS-3712: Hardware serial number |zyxel.3712.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34620 |20 |.1.3.6.1.2.1.1.3.0 |10394 |ZYXEL MGS-3712: Uptime |zyxel.3712.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34621 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.1.1.5] |10394 |Fan discovery |zyxel.3712.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34622 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5] |10394 |Interface discovery |zyxel.3712.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34623 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.8] |10394 |SFP with DDM discovery |zyxel.3712.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34624 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2] |10394 |SFP without DDM discovery |zyxel.3712.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34625 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.47.8.2.1.5] |10394 |Temperature discovery |zyxel.3712.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34626 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.5] |10394 |Voltage discovery |zyxel.3712.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34627 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Fan #{#SNMPINDEX} |zyxel.3712.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34628 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status |zyxel.3712.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |212 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34629 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description |zyxel.3712.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34630 |15 | |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34631 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34632 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34633 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34634 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34635 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status |zyxel.3712.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |213 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34636 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type |zyxel.3712.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |211 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34637 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name |zyxel.3712.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34638 |15 | |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34639 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34640 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34641 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34642 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34643 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed |zyxel.3712.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34644 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |210 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34645 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34646 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code |zyxel.3712.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34647 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number |zyxel.3712.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34648 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision |zyxel.3712.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34649 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number |zyxel.3712.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34650 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status |zyxel.3712.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |214 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34651 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver |zyxel.3712.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34652 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor |zyxel.3712.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34653 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34654 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX} |10394 |ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34655 |5 | |10395 |ZYXEL MGS-3712F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34656 |20 |.1.3.6.1.2.1.1.4.0 |10395 |ZYXEL MGS-3712F: Contact |zyxel.3712f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34657 |20 |.1.3.6.1.4.1.890.1.5.8.48.11.7.0 |10395 |ZYXEL MGS-3712F: CPU utilization |zyxel.3712f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34658 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.48.1] |10395 |ZYXEL MGS-3712F: ZyNOS F/W Version |zyxel.3712f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34659 |20 |.1.3.6.1.2.1.1.6.0 |10395 |ZYXEL MGS-3712F: Location |zyxel.3712f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34660 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10395 |ZYXEL MGS-3712F: MAC address |zyxel.3712f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34661 |20 |.1.3.6.1.2.1.1.1.0 |10395 |ZYXEL MGS-3712F: Hardware model name |zyxel.3712f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34662 |20 |.1.3.6.1.2.1.1.5.0 |10395 |ZYXEL MGS-3712F: Host name |zyxel.3712f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34663 |20 |.1.3.6.1.4.1.890.1.5.8.48.1.10.0 |10395 |ZYXEL MGS-3712F: Hardware serial number |zyxel.3712f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34664 |20 |.1.3.6.1.2.1.1.3.0 |10395 |ZYXEL MGS-3712F: Uptime |zyxel.3712f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34665 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.1.1.5] |10395 |Fan discovery |zyxel.3712f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34666 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5] |10395 |Interface discovery |zyxel.3712f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34667 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.8] |10395 |SFP with DDM discovery |zyxel.3712f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34668 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2] |10395 |SFP without DDM discovery |zyxel.3712f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34669 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.48.8.2.1.5] |10395 |Temperature discovery |zyxel.3712f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34670 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.5] |10395 |Voltage discovery |zyxel.3712f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34671 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Fan #{#SNMPINDEX} |zyxel.3712f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34672 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status |zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |217 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34673 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description |zyxel.3712f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34674 |15 | |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34675 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34676 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34677 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34678 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34679 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status |zyxel.3712f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |218 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34680 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type |zyxel.3712f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |216 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34681 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name |zyxel.3712f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34682 |15 | |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34683 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34684 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34685 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34686 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34687 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed |zyxel.3712f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34688 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |215 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34689 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34690 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code |zyxel.3712f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34691 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number |zyxel.3712f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34692 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision |zyxel.3712f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34693 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number |zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34694 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status |zyxel.3712f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |219 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34695 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver |zyxel.3712f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34696 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor |zyxel.3712f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34697 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34698 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX} |10395 |ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34699 |5 | |10396 |ZYXEL MES3500-24S: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34700 |20 |.1.3.6.1.2.1.1.4.0 |10396 |ZYXEL MES3500-24S: Contact |zyxel.3500_24s.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34701 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10396 |ZYXEL MES3500-24S: CPU utilization |zyxel.3500_24s.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34702 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10396 |ZYXEL MES3500-24S: ZyNOS F/W Version |zyxel.3500_24s.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34703 |20 |.1.3.6.1.2.1.1.6.0 |10396 |ZYXEL MES3500-24S: Location |zyxel.3500_24s.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34704 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10396 |ZYXEL MES3500-24S: MAC address |zyxel.3500_24s.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34705 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10396 |ZYXEL MES3500-24S: Memory utilization |zyxel.3500_24s.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34706 |20 |.1.3.6.1.2.1.1.1.0 |10396 |ZYXEL MES3500-24S: Hardware model name |zyxel.3500_24s.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34707 |20 |.1.3.6.1.2.1.1.5.0 |10396 |ZYXEL MES3500-24S: Host name |zyxel.3500_24s.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34708 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10396 |ZYXEL MES3500-24S: Hardware serial number |zyxel.3500_24s.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34709 |20 |.1.3.6.1.2.1.1.3.0 |10396 |ZYXEL MES3500-24S: Uptime |zyxel.3500_24s.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34710 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10396 |Fan discovery |zyxel.3500_24s.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34711 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10396 |Interface discovery |zyxel.3500_24s.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34712 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10396 |SFP with DDM discovery |zyxel.3500_24s.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34713 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10396 |SFP without DDM discovery |zyxel.3500_24s.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34714 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10396 |Temperature discovery |zyxel.3500_24s.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34715 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10396 |Voltage discovery |zyxel.3500_24s.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34716 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3500_24s.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34717 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34718 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description |zyxel.3500_24s.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34719 |15 | |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34720 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34721 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34722 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34723 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34724 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status |zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |223 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34725 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type |zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |221 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34726 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name |zyxel.3500_24s.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34727 |15 | |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34728 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34729 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34730 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34731 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34732 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed |zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34733 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34734 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34735 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code |zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34736 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number |zyxel.3500_24s.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34737 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision |zyxel.3500_24s.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34738 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34739 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status |zyxel.3500_24s.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |224 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34740 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34741 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34742 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3500_24s.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34743 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10396 |ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3500_24s.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34744 |5 | |10397 |ZYXEL MGS3520-28x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34745 |20 |.1.3.6.1.2.1.1.4.0 |10397 |ZYXEL MGS3520-28x: Contact |zyxel.3520_28.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34746 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10397 |ZYXEL MGS3520-28x: CPU utilization |zyxel.3520_28.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34747 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10397 |ZYXEL MGS3520-28x: ZyNOS F/W Version |zyxel.3520_28.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34748 |20 |.1.3.6.1.2.1.1.6.0 |10397 |ZYXEL MGS3520-28x: Location |zyxel.3520_28.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34749 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10397 |ZYXEL MGS3520-28x: MAC address |zyxel.3520_28.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34750 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10397 |ZYXEL MGS3520-28x: Memory utilization |zyxel.3520_28.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34751 |20 |.1.3.6.1.2.1.1.1.0 |10397 |ZYXEL MGS3520-28x: Hardware model name |zyxel.3520_28.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34752 |20 |.1.3.6.1.2.1.1.5.0 |10397 |ZYXEL MGS3520-28x: Host name |zyxel.3520_28.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34753 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10397 |ZYXEL MGS3520-28x: Hardware serial number |zyxel.3520_28.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34754 |20 |.1.3.6.1.2.1.1.3.0 |10397 |ZYXEL MGS3520-28x: Uptime |zyxel.3520_28.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34755 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10397 |Fan discovery |zyxel.3520_28.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34756 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10397 |Interface discovery |zyxel.3520_28.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34757 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10397 |SFP with DDM discovery |zyxel.3520_28.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34758 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10397 |SFP without DDM discovery |zyxel.3520_28.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34759 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10397 |Temperature discovery |zyxel.3520_28.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34760 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10397 |Voltage discovery |zyxel.3520_28.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34761 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3520_28.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34762 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status |zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |227 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34763 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description |zyxel.3520_28.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34764 |15 | |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3520_28.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34765 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34766 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34767 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34768 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34769 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status |zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |228 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34770 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type |zyxel.3520_28.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |226 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34771 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name |zyxel.3520_28.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34772 |15 | |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization |zyxel.3520_28.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34773 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34774 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic |zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34775 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34776 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34777 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed |zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34778 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex |zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |225 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34779 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3520_28.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34780 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code |zyxel.3520_28.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34781 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number |zyxel.3520_28.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34782 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision |zyxel.3520_28.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34783 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number |zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34784 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status |zyxel.3520_28.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |229 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34785 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver |zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34786 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor |zyxel.3520_28.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34787 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3520_28.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34788 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10397 |ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3520_28.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34789 |5 | |10398 |ZYXEL XGS-4728F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34790 |20 |.1.3.6.1.2.1.1.4.0 |10398 |ZYXEL XGS-4728F: Contact |zyxel.4728f.contact |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34791 |20 |.1.3.6.1.4.1.890.1.5.8.46.12.7.0 |10398 |ZYXEL XGS-4728F: CPU utilization |zyxel.4728f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34792 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.46.1] |10398 |ZYXEL XGS-4728F: ZyNOS F/W Version |zyxel.4728f.fwversion |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34793 |20 |.1.3.6.1.2.1.1.6.0 |10398 |ZYXEL XGS-4728F: Location |zyxel.4728f.location |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34794 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10398 |ZYXEL XGS-4728F: MAC address |zyxel.4728f.mac |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34795 |20 |.1.3.6.1.2.1.1.1.0 |10398 |ZYXEL XGS-4728F: Hardware model name |zyxel.4728f.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34796 |20 |.1.3.6.1.2.1.1.5.0 |10398 |ZYXEL XGS-4728F: Host name |zyxel.4728f.name |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34797 |20 |.1.3.6.1.4.1.890.1.5.8.46.1.10.0 |10398 |ZYXEL XGS-4728F: Hardware serial number |zyxel.4728f.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34798 |20 |.1.3.6.1.2.1.1.3.0 |10398 |ZYXEL XGS-4728F: Uptime |zyxel.4728f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34799 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.1.1.5] |10398 |Fan discovery |zyxel.4728f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34800 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.46.124.1.1.2] |10398 |Memory pool discovery |zyxel.4728f.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 |34801 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5] |10398 |Interface discovery |zyxel.4728f.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34802 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.8] |10398 |SFP with DDM discovery |zyxel.4728f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34803 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2] |10398 |SFP without DDM discovery |zyxel.4728f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34804 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.46.9.2.1.5] |10398 |Temperature discovery |zyxel.4728f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34805 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.5] |10398 |Voltage discovery |zyxel.4728f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34806 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Fan #{#SNMPINDEX} |zyxel.4728f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34807 |20 |.1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.4728f.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34808 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status |zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |232 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34809 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description |zyxel.4728f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34810 |15 | |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4728f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34811 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34812 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34813 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34814 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34815 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status |zyxel.4728f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |233 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34816 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type |zyxel.4728f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |231 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34817 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name |zyxel.4728f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34818 |15 | |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4728f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34819 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34820 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34821 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34822 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34823 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed |zyxel.4728f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34824 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |230 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34825 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.4728f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34826 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code |zyxel.4728f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34827 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number |zyxel.4728f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34828 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision |zyxel.4728f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34829 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number |zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34830 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status |zyxel.4728f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |234 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34831 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver |zyxel.4728f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34832 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34833 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34834 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10398 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34835 |19 | |10399 |Nginx: Get connections |nginx.connections |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns statistics of client connections. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/connections/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34836 |19 | |10399 |Nginx: Get info |nginx.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Return status of nginx running instance. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/nginx/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34837 |19 | |10399 |Nginx: Get Stream server zones |nginx.stream.server_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each stream server zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/stream/server_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34838 |19 | |10399 |Nginx: Get SSL |nginx.ssl |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns SSL statistics. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/ssl/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34839 |19 | |10399 |Nginx: Get resolvers |nginx.resolvers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each resolver zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/resolvers/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34840 |19 | |10399 |Nginx: Get requests |nginx.requests |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of client HTTP requests. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/requests/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34841 |19 | |10399 |Nginx: Get Stream upstreams |nginx.stream.upstreams |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of each stream upstream server group and its servers. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/stream/upstreams/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34842 |19 | |10399 |Nginx: Get HTTP upstreams |nginx.http.upstreams |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status of each HTTP upstream server group and its servers. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/upstreams/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34843 |19 | |10399 |Nginx: Get HTTP location zones |nginx.http.location_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each HTTP location zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/location_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34844 |19 | |10399 |Nginx: Get HTTP zones |nginx.http.server_zones |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns status information for each HTTP server zone. |0 |30d |0 | |NULL |3s |{$NGINX.API.ENDPOINT}/6/http/server_zones/ | | |200,404 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34944 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |34945 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34946 |20 |1.3.6.1.2.1.1.4.0 |10400 |System contact details |cisco.ucs.contact[sysContact.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&eol;node, together with information on how to contact this person. If no contact&eol;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 |34947 |20 |1.3.6.1.2.1.1.1.0 |10400 |System description |cisco.ucs.descr[sysDescr.0] |15m |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 |34948 |20 |1.3.6.1.2.1.1.6.0 |10400 |System location |cisco.ucs.location[sysLocation.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet,&eol;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 |34949 |20 |1.3.6.1.2.1.1.5.0 |10400 |System name |cisco.ucs.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34950 |20 |1.3.6.1.2.1.1.2.0 |10400 |System object ID |cisco.ucs.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&eol;subsystem contained in the entity. This value is allocated within the SMI enterprises&eol;subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining 'what&eol;kind of box' is being managed. For example, if vendor 'Flintstones, Inc.' was&eol;assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1&eol;to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34951 |20 |1.3.6.1.2.1.1.3.0 |10400 |Uptime |cisco.ucs.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time in seconds since the network management&eol;portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34952 |17 | |10400 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34953 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34954 |20 |discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2] |10400 |Array controller cache discovery |cisco.ucs.array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34955 |20 |discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2] |10400 |Array controller discovery |cisco.ucs.array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34956 |20 |discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2] |10400 |FAN discovery |cisco.ucs.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 |34957 |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] |10400 |Network interface discovery |cisco.ucs.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 |34958 |20 |discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2] |10400 |Physical disk discovery |cisco.ucs.physicalDisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34959 |20 |discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2] |10400 |PSU discovery |cisco.ucs.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 |34960 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2] |10400 |Temperature CPU discovery |cisco.ucs.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 |34961 |20 |discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2] |10400 |Temperature discovery |cisco.ucs.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 |34962 |20 |discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2] |10400 |Unit discovery |cisco.ucs.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 |34963 |20 |discovery[{#VDISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.8.1.2] |10400 |Virtual disk discovery |cisco.ucs.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 |34964 |20 |1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX} |10400 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery status |cisco.ucs.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 |34965 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX} |10400 |{#DISKARRAY_LOCATION}: Disk array controller model |cisco.ucs.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 |34966 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX} |10400 |{#DISKARRAY_LOCATION}: Disk array controller status |cisco.ucs.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |84 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:RaidBattery:operability managed object property. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34967 |20 |1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX} |10400 |{#FAN_LOCATION}: Fan status |cisco.ucs.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 |34968 |20 |1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Interface description |cisco.ucs.if.descr[ifDescr.{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the&eol;interface. This string should include the name of the&eol;manufacturer, the product name and the version of the&eol;interface hardware/software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34969 |20 |1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Broadcast packets received |cisco.ucs.if.in.broadcast[ifHCInBroadcastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. This object is a 64-bit version&eol;of ifInBroadcastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34970 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |cisco.ucs.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 |34971 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |cisco.ucs.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 |34972 |20 |1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Multicast packets received |cisco.ucs.if.in.multicast[ifHCInMulticastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. This object&eol;is a 64-bit version of ifInMulticastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34973 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Bits received |cisco.ucs.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 |34974 |20 |1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Broadcast packets sent |cisco.ucs.if.out.broadcast[ifHCOutBroadcastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. This object is a 64-bit version&eol;of ifOutBroadcastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34975 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |cisco.ucs.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 |34976 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |cisco.ucs.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 |34977 |20 |1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Multicast packets sent |cisco.ucs.if.out.multicast[ifHCOutMulticastPkts.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. This object&eol;is a 64-bit version of ifOutMulticastPkts.&eol;&eol;Discontinuities in the value of this counter can occur at&eol;re-initialization of the management system, and at other&eol;times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34978 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Bits sent |cisco.ucs.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 |34979 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Speed |cisco.ucs.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 |34980 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Operational status |cisco.ucs.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 |34981 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10400 |Interface {#IFNAME}({#IFALIAS}): Interface type |cisco.ucs.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 |34982 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.17.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk media type |cisco.ucs.hw.physicaldisk.media_type[cucsStorageLocalDiskDeviceType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |235 | | |0 | | | | |2 |NULL |MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB&eol;Cisco UCS storage:LocalDisk:deviceType managed object property. Actually returns 'HDD' or 'SSD'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34983 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk model name |cisco.ucs.hw.physicaldisk.model[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. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34984 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk serial number |cisco.ucs.hw.physicaldisk.serialnumber[cucsStorageLocalDiskSerial.{#SNMPINDEX}] |1h |90d |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 |34985 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Disk size |cisco.ucs.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 |34986 |20 |1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX} |10400 |{#DISK_LOCATION}: Physical disk status |cisco.ucs.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 |34987 |20 |1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX} |10400 |{#PSU_LOCATION}: Power supply status |cisco.ucs.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 |34988 |20 |1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}: Temperature |cisco.ucs.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 |34989 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.IOH: Temperature |cisco.ucs.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 |34990 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Ambient: Temperature |cisco.ucs.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 |34991 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Front: Temperature |cisco.ucs.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 |34992 |20 |1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX} |10400 |{#SENSOR_LOCATION}.Rear: Temperature |cisco.ucs.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 |34993 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Hardware model name |cisco.ucs.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 |34994 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.47.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Hardware serial number |cisco.ucs.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 |34995 |20 |1.3.6.1.4.1.9.9.719.1.9.35.1.42.{#SNMPINDEX} |10400 |{#UNIT_LOCATION}: Overall system health status |cisco.ucs.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 |34996 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.14.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Layout type |cisco.ucs.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 |34997 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.13.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Disk size |cisco.ucs.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 |34998 |20 |1.3.6.1.4.1.9.9.719.1.45.8.1.10.{#SNMPINDEX} |10400 |{#VDISK_LOCATION}: Status |cisco.ucs.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 |35041 |20 |1.3.6.1.2.1.1.4.0 |10402 |Dell R720: System contact details |dell.server.contact[sysContact] |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 |35042 |20 |1.3.6.1.2.1.1.1.0 |10402 |Dell R720: System description |dell.server.descr[sysDescr] |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 |35043 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10402 |Dell R720: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35044 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10402 |Dell R720: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35045 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10402 |Dell R720: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35046 |20 |1.3.6.1.2.1.1.6.0 |10402 |Dell R720: System location |dell.server.location[sysLocation] |15m |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 |35047 |20 |1.3.6.1.2.1.1.5.0 |10402 |Dell R720: System name |dell.server.name[sysName] |15m |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 |35048 |20 |1.3.6.1.2.1.1.2.0 |10402 |Dell R720: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35049 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10402 |Dell R720: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35050 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10402 |Dell R720: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35051 |20 |1.3.6.1.2.1.1.3.0 |10402 |Dell R720: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35052 |17 | |10402 |Dell R720: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35053 |5 | |10402 |Dell R720: 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 |35054 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10402 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35055 |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] |10402 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35056 |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] |10402 |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 |35057 |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] |10402 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35058 |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] |10402 |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 |35059 |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] |10402 |Temperature discovery |temp.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 |35060 |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] |10402 |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 |35061 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10402 |Dell R720: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35062 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10402 |Dell R720: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35063 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10402 |Dell R720: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35064 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10402 |Dell R720: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35065 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10402 |Dell R720: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35066 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35067 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35068 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35069 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35070 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35071 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35072 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10402 |Dell R720: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35073 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10402 |Dell R720: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35074 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10402 |Dell R720: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35075 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35076 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35077 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35078 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Current state |dell.server.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 |35079 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35080 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10402 |Dell R720: {#DISK_NAME} Write policy |dell.server.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 |35123 |20 |1.3.6.1.2.1.1.4.0 |10404 |Dell R740: System contact details |dell.server.contact[sysContact] |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 |35124 |20 |1.3.6.1.2.1.1.1.0 |10404 |Dell R740: System description |dell.server.descr[sysDescr] |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 |35125 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10404 |Dell R740: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35126 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10404 |Dell R740: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35127 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10404 |Dell R740: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35128 |20 |1.3.6.1.2.1.1.6.0 |10404 |Dell R740: System location |dell.server.location[sysLocation] |15m |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 |35129 |20 |1.3.6.1.2.1.1.5.0 |10404 |Dell R740: System name |dell.server.name[sysName] |15m |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 |35130 |20 |1.3.6.1.2.1.1.2.0 |10404 |Dell R740: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35131 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10404 |Dell R740: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35132 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10404 |Dell R740: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35133 |20 |1.3.6.1.2.1.1.3.0 |10404 |Dell R740: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35134 |17 | |10404 |Dell R740: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35135 |5 | |10404 |Dell R740: 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 |35136 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10404 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35137 |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] |10404 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35138 |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] |10404 |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 |35139 |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] |10404 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35140 |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] |10404 |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 |35141 |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] |10404 |Temperature discovery |temp.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 |35142 |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] |10404 |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 |35143 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10404 |Dell R740: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35144 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10404 |Dell R740: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35145 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10404 |Dell R740: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35146 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10404 |Dell R740: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35147 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10404 |Dell R740: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35148 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35149 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35150 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35151 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35152 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35153 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35154 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10404 |Dell R740: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35155 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10404 |Dell R740: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35156 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10404 |Dell R740: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35157 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35158 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35159 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35160 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Current state |dell.server.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 |35161 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35162 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10404 |Dell R740: {#DISK_NAME} Write policy |dell.server.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 |35205 |20 |1.3.6.1.2.1.1.4.0 |10406 |Dell R820: System contact details |dell.server.contact[sysContact] |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 |35206 |20 |1.3.6.1.2.1.1.1.0 |10406 |Dell R820: System description |dell.server.descr[sysDescr] |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 |35207 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10406 |Dell R820: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35208 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10406 |Dell R820: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35209 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10406 |Dell R820: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35210 |20 |1.3.6.1.2.1.1.6.0 |10406 |Dell R820: System location |dell.server.location[sysLocation] |15m |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 |35211 |20 |1.3.6.1.2.1.1.5.0 |10406 |Dell R820: System name |dell.server.name[sysName] |15m |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 |35212 |20 |1.3.6.1.2.1.1.2.0 |10406 |Dell R820: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35213 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10406 |Dell R820: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35214 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10406 |Dell R820: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35215 |20 |1.3.6.1.2.1.1.3.0 |10406 |Dell R820: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35216 |17 | |10406 |Dell R820: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35217 |5 | |10406 |Dell R820: 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 |35218 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10406 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35219 |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] |10406 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35220 |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] |10406 |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 |35221 |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] |10406 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35222 |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] |10406 |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 |35223 |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] |10406 |Temperature discovery |temp.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 |35224 |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] |10406 |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 |35225 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10406 |Dell R820: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35226 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10406 |Dell R820: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35227 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10406 |Dell R820: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35228 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10406 |Dell R820: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35229 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10406 |Dell R820: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35230 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35231 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35232 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35233 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35234 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35235 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35236 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10406 |Dell R820: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35237 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10406 |Dell R820: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35238 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10406 |Dell R820: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35239 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35240 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35241 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35242 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Current state |dell.server.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 |35243 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35244 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10406 |Dell R820: {#DISK_NAME} Write policy |dell.server.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 |35287 |20 |1.3.6.1.2.1.1.4.0 |10408 |Dell R840: System contact details |dell.server.contact[sysContact] |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 |35288 |20 |1.3.6.1.2.1.1.1.0 |10408 |Dell R840: System description |dell.server.descr[sysDescr] |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 |35289 |20 |1.3.6.1.4.1.674.10892.5.1.1.8.0 |10408 |Dell R840: Firmware version |dell.server.hw.firmware[racFirmwareVersion] |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 |35290 |20 |1.3.6.1.4.1.674.10892.5.1.3.12.0 |10408 |Dell R840: Hardware model name |dell.server.hw.model[systemModelName] |1m |7d |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 |35291 |20 |1.3.6.1.4.1.674.10892.5.1.3.2.0 |10408 |Dell R840: Hardware serial number |dell.server.hw.serialnumber[systemServiceTag] |1m |7d |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 |35292 |20 |1.3.6.1.2.1.1.6.0 |10408 |Dell R840: System location |dell.server.location[sysLocation] |15m |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 |35293 |20 |1.3.6.1.2.1.1.5.0 |10408 |Dell R840: System name |dell.server.name[sysName] |15m |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 |35294 |20 |1.3.6.1.2.1.1.2.0 |10408 |Dell R840: System object ID |dell.server.objectid[sysObjectID] |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 subtree 1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its 'Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35295 |20 |1.3.6.1.4.1.674.10892.5.2.1.0 |10408 |Dell R840: Overall system health status |dell.server.status[globalSystemStatus] |1m |7d |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 |35296 |20 |1.3.6.1.4.1.674.10892.5.1.3.6.0 |10408 |Dell R840: Operating system |dell.server.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 host is running. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35297 |20 |1.3.6.1.2.1.1.3.0 |10408 |Dell R840: Uptime |dell.server.uptime[sysUpTime] |1m |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 |35298 |17 | |10408 |Dell R840: SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35299 |5 | |10408 |Dell R840: 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 |35300 |20 |discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1,{#BATTERY_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.21] |10408 |Array controller cache discovery |array.cache.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::batteryTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35301 |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] |10408 |Array controller discovery |array.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Array controllers: IDRAC-MIB-SMIv2::controllerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35302 |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] |10408 |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 |35303 |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] |10408 |Physical disk discovery |physicaldisk.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of physical drive entries IDRAC-MIB-SMIv2::physicalDiskTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35304 |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] |10408 |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 |35305 |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] |10408 |Temperature discovery |temp.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 |35306 |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] |10408 |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 |35307 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10408 |Dell R840: {#BATTERY_NAME} Status |dell.server.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |7d |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 |35308 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10408 |Dell R840: {#CNTLR_NAME} Model |dell.server.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1m |7d |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 |35309 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10408 |Dell R840: {#CNTLR_NAME} Status |dell.server.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35310 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX} |10408 |Dell R840: {#FAN_DESCR} Speed |dell.server.sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35311 |20 |1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX} |10408 |Dell R840: {#FAN_DESCR} Status |dell.server.sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}] |1m |7d |0d |0 |3 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;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 |35312 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Media type |dell.server.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}] |1m |7d |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 |35313 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Model name |dell.server.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}] |1m |7d |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 |35314 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Serial number |dell.server.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}] |1m |7d |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 |35315 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Size |dell.server.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}] |1m |7d |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 |35316 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} S.M.A.R.T. Status |dell.server.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}] |1m |7d |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 |35317 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Status |dell.server.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}] |1m |7d |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 |35318 |20 |1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX} |10408 |Dell R840: {#PSU_DESCR} |dell.server.sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}] |1m |7d |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 |35319 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX} |10408 |Dell R840: {#SENSOR_LOCALE} Status |dell.server.sensor.temp.status[temperatureProbeStatus.{#SNMPINDEX}] |1m |7d |0d |0 |0 | | | | |NULL |60 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the probe status of the temperature probe.&eol;Possible values:&eol;other(1), -- probe status is not one of the following:&eol;unknown(2), -- probe status is unknown (not known or monitored)&eol;ok(3), -- probe is reporting a value within the thresholds&eol;nonCriticalUpper(4), -- probe has crossed the upper noncritical threshold&eol;criticalUpper(5), -- probe has crossed the upper critical threshold&eol;nonRecoverableUpper(6), -- probe has crossed the upper non-recoverable threshold&eol;nonCriticalLower(7), -- probe has crossed the lower noncritical threshold&eol;criticalLower(8), -- probe has crossed the lower critical threshold&eol;nonRecoverableLower(9), -- probe has crossed the lower non-recoverable threshold&eol;failed(10) -- probe is not functional |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35320 |20 |1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX} |10408 |Dell R840: {#SENSOR_LOCALE} Value |dell.server.sensor.temp.value[temperatureProbeReading.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete. When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, the value returned for this attribute is the temperature that the probe is reading in Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35321 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Layout type |dell.server.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}] |1m |7d |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 |35322 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Read policy |dell.server.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}] |1h |2w |365d |0 |3 | | | | |NULL |68 | | |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 |35323 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Size |dell.server.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}] |1m |7d |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 |35324 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Current state |dell.server.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 |35325 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Status |dell.server.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}] |1m |7d |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. Data on the disk is lost or is about to be lost.&eol;4: The virtual disk encountered 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 |35326 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX} |10408 |Dell R840: {#DISK_NAME} Write policy |dell.server.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 |35327 |20 |1.3.6.1.2.1.1.4.0 |10409 |System contact details |hp.server.contact[sysContact] |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 |35328 |20 |1.3.6.1.2.1.1.1.0 |10409 |System description |hp.server.descr[sysDescr] |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 |35329 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10409 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35330 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10409 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35331 |20 |1.3.6.1.2.1.1.6.0 |10409 |System location |hp.server.location[sysLocation] |15m |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 |35332 |20 |1.3.6.1.2.1.1.5.0 |10409 |System name |hp.server.name[sysName] |15m |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 |35333 |20 |1.3.6.1.2.1.1.2.0 |10409 |System object ID |hp.server.objectid[sysObjectID] |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 |35334 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10409 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35335 |20 |1.3.6.1.4.1.232.6.1.3.0 |10409 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35336 |20 |1.3.6.1.2.1.1.3.0 |10409 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35337 |17 | |10409 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35338 |5 | |10409 |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 |35339 |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] |10409 |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 |35340 |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] |10409 |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 |35341 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10409 |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 |35342 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10409 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35343 |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] |10409 |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 |35344 |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] |10409 |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 |35345 |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] |10409 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35346 |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] |10409 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35347 |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] |10409 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35348 |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] |10409 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35349 |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] |10409 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35350 |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] |10409 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35351 |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] |10409 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35352 |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] |10409 |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 |35353 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10409 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35354 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10409 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35355 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10409 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35356 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10409 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35357 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10409 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35358 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10409 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35359 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35360 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35361 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35362 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35363 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35364 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10409 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35365 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10409 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35366 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35367 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35368 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35369 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35370 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35371 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35372 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35373 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35374 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35375 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35376 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35377 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35378 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35379 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10409 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35380 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10409 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35381 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35382 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35383 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10409 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35384 |20 |1.3.6.1.2.1.1.4.0 |10410 |System contact details |hp.server.contact[sysContact] |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 |35385 |20 |1.3.6.1.2.1.1.1.0 |10410 |System description |hp.server.descr[sysDescr] |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 |35386 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10410 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35387 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10410 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35388 |20 |1.3.6.1.2.1.1.6.0 |10410 |System location |hp.server.location[sysLocation] |15m |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 |35389 |20 |1.3.6.1.2.1.1.5.0 |10410 |System name |hp.server.name[sysName] |15m |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 |35390 |20 |1.3.6.1.2.1.1.2.0 |10410 |System object ID |hp.server.objectid[sysObjectID] |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 |35391 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10410 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35392 |20 |1.3.6.1.4.1.232.6.1.3.0 |10410 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35393 |20 |1.3.6.1.2.1.1.3.0 |10410 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35394 |17 | |10410 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35395 |5 | |10410 |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 |35396 |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] |10410 |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 |35397 |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] |10410 |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 |35398 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10410 |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 |35399 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10410 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35400 |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] |10410 |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 |35401 |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] |10410 |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 |35402 |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] |10410 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35403 |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] |10410 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35404 |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] |10410 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35405 |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] |10410 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35406 |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] |10410 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35407 |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] |10410 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35408 |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] |10410 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35409 |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] |10410 |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 |35410 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10410 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35411 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10410 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35412 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10410 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35413 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10410 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35414 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10410 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35415 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10410 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35416 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35417 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35418 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35419 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35420 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35421 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10410 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35422 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10410 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35423 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35424 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35425 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35426 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35427 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35428 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35429 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35430 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35431 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35432 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35433 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35434 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35435 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35436 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10410 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35437 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10410 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35438 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35439 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35440 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10410 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35441 |20 |1.3.6.1.2.1.1.4.0 |10411 |System contact details |hp.server.contact[sysContact] |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 |35442 |20 |1.3.6.1.2.1.1.1.0 |10411 |System description |hp.server.descr[sysDescr] |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 |35443 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10411 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35444 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10411 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35445 |20 |1.3.6.1.2.1.1.6.0 |10411 |System location |hp.server.location[sysLocation] |15m |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 |35446 |20 |1.3.6.1.2.1.1.5.0 |10411 |System name |hp.server.name[sysName] |15m |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 |35447 |20 |1.3.6.1.2.1.1.2.0 |10411 |System object ID |hp.server.objectid[sysObjectID] |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 |35448 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10411 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35449 |20 |1.3.6.1.4.1.232.6.1.3.0 |10411 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35450 |20 |1.3.6.1.2.1.1.3.0 |10411 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35451 |17 | |10411 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35452 |5 | |10411 |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 |35453 |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] |10411 |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 |35454 |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] |10411 |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 |35455 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10411 |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 |35456 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10411 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35457 |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] |10411 |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 |35458 |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] |10411 |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 |35459 |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] |10411 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35460 |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] |10411 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35461 |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] |10411 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35462 |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] |10411 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35463 |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] |10411 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35464 |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] |10411 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35465 |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] |10411 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35466 |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] |10411 |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 |35467 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10411 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35468 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10411 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35469 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10411 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35470 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10411 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35471 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10411 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35472 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10411 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35473 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35474 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35475 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35476 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35477 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35478 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10411 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35479 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10411 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35480 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35481 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35482 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35483 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35484 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35485 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35486 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35487 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35488 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35489 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35490 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35491 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35492 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35493 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10411 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35494 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10411 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35495 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35496 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35497 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10411 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35498 |20 |1.3.6.1.2.1.1.4.0 |10412 |System contact details |hp.server.contact[sysContact] |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 |35499 |20 |1.3.6.1.2.1.1.1.0 |10412 |System description |hp.server.descr[sysDescr] |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 |35500 |20 |1.3.6.1.4.1.232.2.2.4.2.0 |10412 |Hardware model name |hp.server.hw.model[cpqSiProductName] |1m |7d |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 |35501 |20 |1.3.6.1.4.1.232.2.2.2.1.0 |10412 |Hardware serial number |hp.server.hw.serialnumber[cpqSiSysSerialNum] |1m |7d |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 |35502 |20 |1.3.6.1.2.1.1.6.0 |10412 |System location |hp.server.location[sysLocation] |15m |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 |35503 |20 |1.3.6.1.2.1.1.5.0 |10412 |System name |hp.server.name[sysName] |15m |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 |35504 |20 |1.3.6.1.2.1.1.2.0 |10412 |System object ID |hp.server.objectid[sysObjectID] |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 |35505 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10412 |System temperature status |hp.server.sensor.temp.status[cpqHeThermalCondition] |1m |7d |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 |35506 |20 |1.3.6.1.4.1.232.6.1.3.0 |10412 |Overall system health status |hp.server.status[cpqHeMibCondition] |1m |7d |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 |35507 |20 |1.3.6.1.2.1.1.3.0 |10412 |Uptime |hp.server.uptime[sysUpTime] |1m |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 |35508 |17 | |10412 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |The item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35509 |5 | |10412 |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 |35510 |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] |10412 |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 |35511 |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] |10412 |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 |35512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.232.6.2.6.7.1.9] |10412 |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 |35513 |20 |discovery[{#ADAPTER_INDEX},1.3.6.1.4.1.232.18.2.3.1.1.1,{#ADAPTER_NAME},1.3.6.1.4.1.232.18.2.3.1.1.39] |10412 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |CPQIDA-MIB::cpqNicIfPhysAdapterTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35514 |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] |10412 |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 |35515 |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] |10412 |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 |35516 |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] |10412 |Temperature ambient discovery |temp.ambient.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;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 |35517 |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] |10412 |Temperature CPU discovery |temp.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with cpu(6) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35518 |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] |10412 |Temperature discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35519 |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] |10412 |Temperature I/O discovery |temp.io.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with ioBoard(5) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35520 |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] |10412 |Temperature memory discovery |temp.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with memory(7) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35521 |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] |10412 |Temperature PSU discovery |temp.psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with powerSupply(10) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35522 |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] |10412 |Temperature system discovery |temp.system.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning table of Temperature Sensor Entries:&eol;CPQHLTH-MIB::cpqHeTemperatureTable with system(3) filter |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35523 |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] |10412 |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 |35524 |20 |1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX} |10412 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery status |hp.server.hw.diskarray.cache.battery.status[cpqDaAccelBattery.{#SNMPINDEX}] |1m |7d |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 |35525 |20 |1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX} |10412 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller status |hp.server.hw.diskarray.cache.status[cpqDaAccelStatus.{#SNMPINDEX}] |1m |7d |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;&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module.&eol;&eol;Invalid (2)&eol; Indicates that a cache module board has not been installed in this system or is present but not configured.&eol;&eol;Enabled (3)&eol; Indicates that cache operations are currently configured and enabled for at least one logical drive.&eol;&eol;Temporarily Disabled (4)&eol; Indicates that cache operations have been temporarily disabled. (5)&eol; Indicates that cache operations have been permanently disabled. &eol;&eol;Cache Module Flash Memory Not Attached (6)&eol; Indicates that the flash memory component of the flash backed cache module is not attached. This status will be set when the flash memory is not attached and the Supercap is attached. This value is only used on flash backed cache modules that support removable flash memory.&eol;&eol;Cache Module Degraded Failsafe Speed (7)&eol; Indicates that the cache module board is currently degraded and operating at a failsafe speed. &eol;&eol;Cache Module Critical Failure (8)&eol; Indicates that the cache module board has encountered a critical failure. The controller is currently operating in Zero Memory Raid mode.&eol;&eol;Read Cache Could Not Be Mapped (9)&eol; Indicates that the read cache memory in a split cache configuration could not be mapped by the operating system and as a result is not available.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35526 |20 |1.3.6.1.4.1.232.3.2.2.1.1.2.{#SNMPINDEX} |10412 |{#CNTLR_LOCATION}: Disk array controller model |hp.server.hw.diskarray.model[cpqDaCntlrModel.{#SNMPINDEX}] |1m |7d |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 |35527 |20 |1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX} |10412 |{#CNTLR_LOCATION}: Disk array controller status |hp.server.hw.diskarray.status[cpqDaCntlrCondition.{#SNMPINDEX}] |1m |7d |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 |35528 |20 |1.3.6.1.4.1.232.6.2.6.7.1.9.{#SNMPINDEX} |10412 |Fan {#SNMPINDEX}: Fan status |hp.server.sensor.fan.status[cpqHeFltTolFanCondition.{#SNMPINDEX}] |1m |7d |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 |35529 |20 |1.3.6.1.4.1.232.18.2.3.1.1.14.{#SNMPINDEX} |10412 |{#ADAPTER_NAME} port {#ADAPTER_INDEX}: Status |hp.server.net.if.status[cpqNicIfPhysAdapterStatus.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CPQNIC-MIB&eol;The physical adapter status. The following values are valid:&eol;unknown(1)&eol; The instrument agent was not able to determine the status of the adapter. The instrument agent may need to be upgraded.&eol;ok(2)&eol; The physical adapter is operating properly.&eol;generalFailure(3)&eol; The physical adapter has failed.&eol;linkFailure(4)&eol; The physical adapter has lost link. Check the cable connections to this adapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35530 |20 |1.3.6.1.4.1.232.3.2.5.1.1.69.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk media type |hp.server.hw.physicaldisk.media_type[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35531 |20 |1.3.6.1.4.1.232.3.2.5.1.1.3.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk model name |hp.server.hw.physicaldisk.model[cpqDaPhyDrvModel.{#SNMPINDEX}] |1m |7d |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 |35532 |20 |1.3.6.1.4.1.232.3.2.5.1.1.51.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk serial number |hp.server.hw.physicaldisk.serialnumber[cpqDaPhyDrvSerialNum.{#SNMPINDEX}] |1m |7d |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 |35533 |20 |1.3.6.1.4.1.232.3.2.5.1.1.45.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Disk size |hp.server.hw.physicaldisk.size[cpqDaPhyDrvMediaType.{#SNMPINDEX}] |1m |7d |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 |35534 |20 |1.3.6.1.4.1.232.3.2.5.1.1.57.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. status |hp.server.hw.physicaldisk.smart_status[cpqDaPhyDrvSmartStatus.{#SNMPINDEX}] |1m |7d |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 |35535 |20 |1.3.6.1.4.1.232.3.2.5.1.1.6.{#SNMPINDEX} |10412 |{#DISK_LOCATION}: Physical disk status |hp.server.hw.physicaldisk.status[cpqDaPhyDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35536 |20 |1.3.6.1.4.1.232.6.2.9.3.1.4.{#SNMPINDEX} |10412 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply status |hp.server.sensor.psu.status[cpqHeFltTolPowerSupplyCondition.{#SNMPINDEX}] |1m |7d |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 |35537 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |Ambient: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Ambient.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35538 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |Ambient: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Ambient.{#SNMPINDEX}] |1m |7d |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 |35539 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |CPU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.CPU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35540 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |CPU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.CPU.{#SNMPINDEX}] |1m |7d |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 |35541 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35542 |20 |1.3.6.1.4.1.232.6.2.6.8.1.3.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature sensor location |hp.server.sensor.temp.locale[cpqHeTemperatureLocale.{#SNMPINDEX}] |1m |7d |365d |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 |35543 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.{#SNMPINDEX}] |1m |7d |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 |35544 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |I/O-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35545 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |I/O-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius."I/O.{#SNMPINDEX}"] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;Temperature readings of testpoint: I/O-{#SNMPINDEX} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35546 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |Memory-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.Memory.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35547 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |Memory-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.Memory.{#SNMPINDEX}] |1m |7d |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 |35548 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |PSU-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.PSU.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35549 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |PSU-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}] |1m |7d |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 |35550 |20 |1.3.6.1.4.1.232.6.2.6.8.1.6.{#SNMPINDEX} |10412 |System-{#SNMPINDEX}: Temperature sensor condition |hp.server.sensor.temp.condition[cpqHeTemperatureCondition.System.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |148 | | |0 | | | | |2 |NULL |MIB: CPQHLTH-MIB&eol;The Temperature sensor condition.&eol;This value will be one of the following:&eol;other(1)&eol; Temperature could not be determined.&eol;ok(2)&eol; The temperature sensor is within normal operating range.&eol;degraded(3)&eol; The temperature sensor is outside of normal operating range.&eol;failed(4)&eol; The temperature sensor detects a condition that could&eol; permanently damage the system.&eol;The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35551 |20 |1.3.6.1.4.1.232.6.2.6.8.1.4.{#SNMPINDEX} |10412 |System-{#SNMPINDEX}: Temperature |hp.server.sensor.temp.value[cpqHeTemperatureCelsius.System.{#SNMPINDEX}] |1m |7d |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 |35552 |20 |1.3.6.1.4.1.232.3.2.3.1.1.3.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Layout type |hp.server.hw.virtualdisk.layout[cpqDaLogDrvFaultTol.{#SNMPINDEX}] |1m |7d |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 |35553 |20 |1.3.6.1.4.1.232.3.2.3.1.1.9.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Disk size |hp.server.hw.virtualdisk.size[cpqDaLogDrvSize.{#SNMPINDEX}] |1m |7d |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 |35554 |20 |1.3.6.1.4.1.232.3.2.3.1.1.4.{#SNMPINDEX} |10412 |Disk {#SNMPINDEX}({#DISK_NAME}): Status |hp.server.hw.virtualdisk.status[cpqDaLogDrvStatus.{#SNMPINDEX}] |1m |7d |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 |35558 |0 | |10413 |Service units discovery |systemd.unit.discovery[service] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discover systemd service units and their details. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35559 |0 | |10413 |Socket units discovery |systemd.unit.discovery[socket] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discover systemd socket units and their details. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35560 |0 | |10413 |{#UNIT.NAME}: Get unit info |systemd.unit.get["{#UNIT.NAME}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns all properties of a systemd service unit.&eol; Unit description: {#UNIT.DESCRIPTION}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35561 |0 | |10413 |{#UNIT.NAME}: Get unit info |systemd.unit.get["{#UNIT.NAME}",Socket] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Returns all properties of a systemd socket unit.&eol; Unit description: {#UNIT.DESCRIPTION}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35568 |16 | |10414 |Cache groups |jmx.discovery[beans,"org.apache:group=\"Cache groups\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35569 |16 | |10414 |Thread pool metrics |jmx.discovery[beans,"org.apache:group=\"Thread Pools\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35570 |16 | |10414 |Data region metrics |jmx.discovery[beans,"org.apache:group=DataRegionMetrics,*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35571 |16 | |10414 |Local node metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterLocalNodeMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35572 |16 | |10414 |Cluster metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=ClusterMetricsMXBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35573 |16 | |10414 |GridGain kernal metrics |jmx.discovery[beans,"org.apache:group=Kernal,name=IgniteKernal,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35574 |16 | |10414 |TCP Communication SPI metrics |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpCommunicationSpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35575 |16 | |10414 |TCP discovery SPI |jmx.discovery[beans,"org.apache:group=SPIs,name=TcpDiscoverySpi,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35576 |16 | |10414 |Transaction metrics |jmx.discovery[beans,"org.apache:group=TransactionMetrics,name=TransactionMetricsMxBeanImpl,*"] |30m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |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 |35577 |16 | |10414 |Cache metrics |jmx.discovery[beans,"org.apache:name=\"org.apache.gridgain.internal.processors.cache.CacheLocalMetricsMXBeanImpl\",*"] |10m |90d |0 |0 |4 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |1 |NULL | |0 |30d |1 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35578 |16 | |10414 |Cache group [{#JMXNAME}]: Backups |jmx["{#JMXOBJ}",Backups] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of backups configured for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35579 |16 | |10414 |Cache group [{#JMXNAME}]: Caches |jmx["{#JMXOBJ}",Caches] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |List of caches. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35580 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, moving |jmx["{#JMXOBJ}",LocalNodeMovingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state MOVING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35581 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, owning |jmx["{#JMXOBJ}",LocalNodeOwningPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state OWNING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35582 |16 | |10414 |Cache group [{#JMXNAME}]: Local node entries, renting |jmx["{#JMXOBJ}",LocalNodeRentingEntriesCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of entries remains to evict in RENTING partitions located on this node for this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35583 |16 | |10414 |Cache group [{#JMXNAME}]: Local node partitions, renting |jmx["{#JMXOBJ}",LocalNodeRentingPartitionsCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions with state RENTING for this cache group located on this node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35584 |16 | |10414 |Cache group [{#JMXNAME}]: Partition copies, max |jmx["{#JMXOBJ}",MaximumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Maximum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35585 |16 | |10414 |Cache group [{#JMXNAME}]: Partition copies, min |jmx["{#JMXOBJ}",MinimumNumberOfPartitionCopies] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Minimum number of partition copies for all partitions of this cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35586 |16 | |10414 |Cache group [{#JMXNAME}]: Partitions |jmx["{#JMXOBJ}",Partitions] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Count of partitions for cache group. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35587 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size, core |jmx["{#JMXOBJ}",CorePoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The core number of threads. |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 |35588 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size, max |jmx["{#JMXOBJ}",MaximumPoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The maximum allowed number of threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35589 |16 | |10414 |Thread pool [{#JMXNAME}]: Pool size |jmx["{#JMXOBJ}",PoolSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current number of threads in the pool. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35590 |16 | |10414 |Thread pool [{#JMXNAME}]: Queue size |jmx["{#JMXOBJ}",QueueSize] |1m |7d |365d |0 |3 | |!msg | | |NULL |NULL | | |0 |{$IGNITE.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current size of the execution queue. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35591 |16 | |10414 |Data region {#JMXNAME}: Allocation, rate |jmx["{#JMXOBJ}",AllocationRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Allocation rate (pages per second) averaged across rateTimeInternal. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35592 |16 | |10414 |Data region {#JMXNAME}: Checkpoint buffer size |jmx["{#JMXOBJ}",CheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total size in bytes for checkpoint buffer. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35593 |16 | |10414 |Data region {#JMXNAME}: Dirty pages |jmx["{#JMXOBJ}",DirtyPages] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of pages in memory not yet synchronized with persistent storage. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35594 |16 | |10414 |Data region {#JMXNAME}: Eviction, rate |jmx["{#JMXOBJ}",EvictionRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Eviction rate (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35595 |16 | |10414 |Data region {#JMXNAME}: Size, max |jmx["{#JMXOBJ}",MaxSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Maximum memory region size defined by its data region. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35596 |16 | |10414 |Data region {#JMXNAME}: Offheap size |jmx["{#JMXOBJ}",OffHeapSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35597 |16 | |10414 |Data region {#JMXNAME}: Offheap used size |jmx["{#JMXOBJ}",OffheapUsedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total used offheap size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35598 |16 | |10414 |Data region {#JMXNAME}: Pages fill factor |jmx["{#JMXOBJ}",PagesFillFactor] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The percentage of the used space. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35599 |16 | |10414 |Data region {#JMXNAME}: Pages replace, rate |jmx["{#JMXOBJ}",PagesReplaceRate] |1m |7d |365d |0 |0 | |!pps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Rate at which pages in memory are replaced with pages from persistent storage (pages per second). |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35600 |16 | |10414 |Data region {#JMXNAME}: Allocated, bytes |jmx["{#JMXOBJ}",TotalAllocatedSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total size of memory allocated in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35601 |16 | |10414 |Data region {#JMXNAME}: Used checkpoint buffer size |jmx["{#JMXOBJ}",UsedCheckpointBufferSize] |1m |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Used checkpoint buffer size in bytes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35602 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs active, current |jmx["{#JMXOBJ}",CurrentActiveJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of currently active jobs concurrently executing on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35603 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, current |jmx["{#JMXOBJ}",CurrentCancelledJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of cancelled jobs that are still running. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35604 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: PME duration, current |jmx["{#JMXOBJ}",CurrentPmeDuration] |1m |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current PME duration in milliseconds. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35605 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejected, current |jmx["{#JMXOBJ}",CurrentRejectedJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of jobs rejected after more recent collision resolution operation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35606 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Threads count, current |jmx["{#JMXOBJ}",CurrentThreadCount] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current number of live threads. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35607 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs waiting, current |jmx["{#JMXOBJ}",CurrentWaitingJobs] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of queued jobs currently waiting to be executed. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35608 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Heap memory used |jmx["{#JMXOBJ}",HeapMemoryUsed] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current heap size that is used for object allocation. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35609 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs cancelled, rate |jmx["{#JMXOBJ}",TotalCancelledJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs cancelled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35610 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs executed, rate |jmx["{#JMXOBJ}",TotalExecutedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs handled by the node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35611 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Jobs rejects, rate |jmx["{#JMXOBJ}",TotalRejectedJobs] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of jobs this node rejects during collision resolution operations since node startup per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35612 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Active baseline |jmx["{#JMXOBJ}",ActiveBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of nodes that are currently active in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35613 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Baseline |jmx["{#JMXOBJ}",TotalBaselineNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total baseline nodes that are registered in the baseline topology. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35614 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Client |jmx["{#JMXOBJ}",TotalClientNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of client nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35615 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, total |jmx["{#JMXOBJ}",TotalNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Total number of nodes. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35616 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes, Server |jmx["{#JMXOBJ}",TotalServerNodes] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of server nodes in the cluster. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35617 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Version |jmx["{#JMXOBJ}",FullVersion] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Version of GridGain instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35618 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Local node ID |jmx["{#JMXOBJ}",LocalNodeId] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Unique identifier for this node within grid. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35619 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Uptime |jmx["{#JMXOBJ}",UpTime] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Uptime of GridGain instance. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35620 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication outbound messages queue |jmx["{#JMXOBJ}",OutboundMessagesQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Outbound messages queue size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35621 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages received, rate |jmx["{#JMXOBJ}",ReceivedMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35623 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Communication messages sent, rate |jmx["{#JMXOBJ}",SentMessagesCount] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages sent per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35624 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Coordinator |jmx["{#JMXOBJ}",Coordinator] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Current coordinator UUID. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35625 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery message worker queue |jmx["{#JMXOBJ}",MessageWorkerQueueSize] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Message worker queue current size. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35626 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes failed |jmx["{#JMXOBJ}",NodesFailed] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes failed count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35627 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes joined |jmx["{#JMXOBJ}",NodesJoined] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes join count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35628 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Nodes left |jmx["{#JMXOBJ}",NodesLeft] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Nodes left count. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35629 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery reconnect, rate |jmx["{#JMXOBJ}",ReconnectCount] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Number of times node tries to (re)establish connection to another node per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35630 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: TotalProcessedMessages |jmx["{#JMXOBJ}",TotalProcessedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages received per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35631 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Discovery messages received, rate |jmx["{#JMXOBJ}",TotalReceivedMessages] |1m |7d |365d |0 |0 | |!msg/s | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of messages processed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35632 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Locked keys |jmx["{#JMXOBJ}",LockedKeysNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of keys locked on the node. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35633 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions owner, current |jmx["{#JMXOBJ}",OwnerTransactionsNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of active transactions for which this node is the initiator. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35634 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions committed, rate |jmx["{#JMXOBJ}",TransactionsCommittedNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transactions which were committed per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35635 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions holding lock, current |jmx["{#JMXOBJ}",TransactionsHoldingLockNumber] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of active transactions holding at least one key lock. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35636 |16 | |10414 |GridGain [{#JMXIGNITEINSTANCENAME}]: Transactions rolledback, rate |jmx["{#JMXOBJ}",TransactionsRolledBackNumber] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transactions which were rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35637 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache gets, rate |jmx["{#JMXOBJ}",CacheGets] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of gets to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35638 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache hits, pct |jmx["{#JMXOBJ}",CacheHitPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Percentage of successful hits. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35639 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache misses, pct |jmx["{#JMXOBJ}",CacheMissPercentage] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |Percentage of accesses that failed to find anything. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35640 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache puts, rate |jmx["{#JMXOBJ}",CachePuts] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of puts to the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35641 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache removals, rate |jmx["{#JMXOBJ}",CacheRemovals] |1m |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of removals from the cache per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35642 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache size |jmx["{#JMXOBJ}",CacheSize] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of non-null values in the cache as a long value. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35643 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache transaction commits, rate |jmx["{#JMXOBJ}",CacheTxCommits] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transaction commits per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35644 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache transaction rollbacks, rate |jmx["{#JMXOBJ}",CacheTxRollbacks] |1m |7d |365d |0 |0 | |!tps | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of transaction rollback per second. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35645 |16 | |10414 |Cache group [{#JMXGROUP}]: Cache heap entries |jmx["{#JMXOBJ}",HeapEntriesCount] |1m |7d |365d |0 |3 | |!keys | | |NULL |NULL | | |0 |{$GRIDGAIN.USER} |{$GRIDGAIN.PASSWORD} | | |2 |NULL |The number of entries in heap memory. |0 |30d |0 |service:jmx:rmi:///jndi/rmi://{HOST.CONN}:{HOST.PORT}/jmxrmi |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35646 |20 |.1.3.6.1.2.1.1.4.0 |10415 |F5 BIG-IP: Contact |bigip.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35647 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.3.0 |10415 |F5 BIG-IP: TCP connections, CLOSE-WAIT/LAST-ACK |bigip.tcp.close_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in CLOSE-WAIT/LAST-ACK. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35648 |20 |.1.3.6.1.4.1.3375.2.1.6.6.0 |10415 |F5 BIG-IP: Uptime |bigip.uptime |1m |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The system up time in 1/100 seconds since boot. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35649 |20 |.1.3.6.1.4.1.3375.2.1.1.2.13.2.0 |10415 |F5 BIG-IP: Open UDP connections |bigip.udp.open |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current open UDP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35650 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.5.0 |10415 |F5 BIG-IP: TCP connections, TIME-WAIT |bigip.tcp.time_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in TIME-WAIT. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35651 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.2.0 |10415 |F5 BIG-IP: Open TCP connections |bigip.tcp.open |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current open TCP connections. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35652 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.20.0 |10415 |F5 BIG-IP: TCP connections, FIN-WAIT-2 |bigip.tcp.fin2_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in FIN-WAIT-2. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35653 |20 |.1.3.6.1.4.1.3375.2.1.1.2.12.4.0 |10415 |F5 BIG-IP: TCP connections, FIN-WAIT-1/CLOSING |bigip.tcp.fin1_wait |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of current TCP connections in FIN-WAIT-1/CLOSING. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35654 |20 |.1.3.6.1.4.1.3375.2.1.3.3.3.0 |10415 |F5 BIG-IP: Chassis serial number |bigip.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35655 |20 |.1.3.6.1.2.1.1.6.0 |10415 |F5 BIG-IP: Location |bigip.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35656 |20 |.1.3.6.1.4.1.3375.2.1.4.2.0 |10415 |F5 BIG-IP: Product version |bigip.product.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35657 |20 |.1.3.6.1.4.1.3375.2.1.4.1.0 |10415 |F5 BIG-IP: Product name |bigip.product.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35658 |20 |.1.3.6.1.4.1.3375.2.1.4.4.0 |10415 |F5 BIG-IP: Product edition |bigip.product.edition |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product edition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35659 |20 |.1.3.6.1.4.1.3375.2.1.4.5.0 |10415 |F5 BIG-IP: Product build date |bigip.product.date |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product build date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35660 |20 |.1.3.6.1.4.1.3375.2.1.4.3.0 |10415 |F5 BIG-IP: Product build |bigip.product.build |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The product build number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35661 |20 |.1.3.6.1.2.1.1.5.0 |10415 |F5 BIG-IP: Host name |bigip.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35662 |20 |.1.3.6.1.2.1.1.1.0 |10415 |F5 BIG-IP: Hardware model name |bigip.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35663 |5 | |10415 |F5 BIG-IP: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35664 |20 |discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.1,{#SLOT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.4,{#TEMP.LOCATION},.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.3] |10415 |Blade temperature discovery |bigip.blade.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Containing information of blade temperature of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35665 |20 |discovery[{#VOLT.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.1] |10415 |Blade voltage discovery |bigip.blade.voltage.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of blade voltage of the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35666 |20 |discovery[{#CERT.NAME},.1.3.6.1.4.1.3375.2.1.15.1.2.1.1] |10415 |Certificate discovery |bigip.cert.discovery |1d |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing certificate configuration. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35667 |20 |discovery[{#FAN.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.1] |10415 |Chassis fan discovery |bigip.chassis.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis fan status of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35668 |20 |discovery[{#POWER.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.1] |10415 |Chassis power supply discovery |bigip.chassis.power.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis power supply status of the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35669 |20 |discovery[{#TEMP.INDEX},.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.1] |10415 |Chassis temperature discovery |bigip.chassis.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of chassis temperature of the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35670 |20 |discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.1,{#CPU.ID},.1.3.6.1.4.1.3375.2.1.7.5.2.1.3] |10415 |CPU discovery |bigip.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing entries of system CPU usage information for a system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35671 |20 |discovery[{#CPU.SENSOR.INDEX},.1.3.6.1.4.1.3375.2.1.3.6.2.1.1,{#CPU.SENSOR.SLOT},.1.3.6.1.4.1.3375.2.1.3.6.2.1.5,{#CPU.SENSOR.NAME},.1.3.6.1.4.1.3375.2.1.3.6.2.1.4] |10415 |CPU sensor discovery |bigip.cpu.sensor.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of CPU sensor status on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35672 |20 |discovery[{#PART.NAME},.1.3.6.1.4.1.3375.2.1.7.3.2.1.1] |10415 |File system discovery |bigip.disktable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing entries of system disk usage information. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35673 |20 |discovery[{#HOST.ID},.1.3.6.1.4.1.3375.2.1.7.4.2.1.1] |10415 |Memory discovery |bigip.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Containing system statistics information of the memory usage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35674 |20 |discovery[{#MODULE.NAME},.1.3.6.1.4.1.3375.2.1.11.1.2.1.1] |10415 |Module discovery |bigip.module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Resource allocation information about modules on the system |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35675 |20 |discovery[{#IF.NAME},.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.1] |10415 |Network interface discovery |bigip.net.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of the interfaces on the device. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35676 |20 |discovery[{#NODE.NAME},.1.3.6.1.4.1.3375.2.2.4.2.3.1.20] |10415 |Node discovery |bigip.node.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of node addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35677 |20 |discovery[{#POOL.NAME},.1.3.6.1.4.1.3375.2.2.5.2.3.1.1] |10415 |Pool discovery |bigip.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing statistic information of pools. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35678 |20 |discovery[{#VSERVER.NAME},.1.3.6.1.4.1.3375.2.2.10.2.3.1.1] |10415 |Virtual server discovery |bigip.virtual_server.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table containing information of virtual servers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35679 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#SLOT.INDEX}:{#TEMP.INDEX}]: Temperature |bigip.blade.temp.value[{#SLOT.INDEX},{#TEMP.INDEX}] |1m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Location: {#TEMP.LOCATION}&eol;The blade temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35680 |20 |.1.3.6.1.4.1.3375.2.1.3.2.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Slot |bigip.blade.voltage.slot[{#VOLT.INDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis slot number, if applicable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35681 |20 |.1.3.6.1.4.1.3375.2.1.3.2.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Voltage [{#VOLT.INDEX}]: Value |bigip.blade.voltage.value[{#VOLT.INDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The blade voltage (in V) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35682 |20 |.1.3.6.1.4.1.3375.2.1.15.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Certificate [{#CERT.NAME}]: Expiration date |bigip.cert.expiration.date[{#CERT.NAME}] |12h |7d |0 |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The expiration date of the certificate in unix time. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35683 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Speed |bigip.chassis.fan.speed[{#FAN.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The actual speed of the indexed chassis fan on the system.&eol;This is only supported for the platform where the actual&eol;fan speed data is available.&eol;'0' means fan speed is unavailable while the associated chassis status is good. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35684 |20 |.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: FAN [{#FAN.INDEX}]: Status |bigip.chassis.fan.status[{#FAN.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed chassis fan on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35685 |20 |.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Power supply [{#POWER.INDEX}]: Status |bigip.chassis.power.status[{#POWER.INDEX}] |5m |7d |365d |0 |3 | | | | |NULL |240 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The status of the indexed power supply on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available.&eol;Possible values: 0 - bad, 1 - good, 2 - notpresent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35686 |20 |.1.3.6.1.4.1.3375.2.1.3.2.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#TEMP.INDEX}]: Temperature |bigip.chassis.temp.value[{#TEMP.INDEX}] |5m |7d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The chassis temperature (in Celsius) of the indexed sensor on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35687 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 1m |bigip.cpu.idle.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35688 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.17.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5s |bigip.cpu.spftirq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35689 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.28.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5m |bigip.cpu.user.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35690 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.20.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 1m |bigip.cpu.user.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35691 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5s |bigip.cpu.usageratio.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five seconds. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5s;&eol;niced:sysMultiHostCpuNiced5s;&eol;stolen:sysMultiHostCpuStolen5s;&eol;system:sysMultiHostCpuSystem5s;&eol;idle:sysMultiHostCpuIdle5s;&eol;irq:sysMultiHostCpuIrq5s;&eol;iowait:sysMultiHostCpuIowait5s |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35692 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 5m |bigip.cpu.usageratio.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last five minutes. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser5m;&eol;niced:sysMultiHostCpuNiced5m;&eol;stolen:sysMultiHostCpuStolen5m;&eol;system:sysMultiHostCpuSystem5m;&eol;idle:sysMultiHostCpuIdle5m;&eol;irq:sysMultiHostCpuIrq5m;&eol;iowait:sysMultiHostCpuIowait5m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35693 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.27.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Usage ratio, avg 1m |bigip.cpu.usageratio.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;This is average usage ratio of CPU for the associated host in the last one minute. It is calculated by&eol;(sum of deltas for user, niced, system)/(sum of deltas of user, niced, system, idle, irq, softirq, and iowait),&eol;where each delta is the difference for each stat over the last 5-second interval;&eol;user:sysMultiHostCpuUser1m;&eol;niced:sysMultiHostCpuNiced1m;&eol;stolen:sysMultiHostCpuStolen1m;&eol;system:sysMultiHostCpuSystem1m;&eol;idle:sysMultiHostCpuIdle1m;&eol;irq:sysMultiHostCpuIrq1m;&eol;iowait:sysMultiHostCpuIowait1m |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35694 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5s |bigip.cpu.system.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35695 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.30.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 5m |bigip.cpu.system.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35696 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: System, avg 1m |bigip.cpu.system.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing system calls for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35697 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.39.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 5m |bigip.cpu.stolen.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35698 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.37.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1s) |bigip.cpu.stolen.1s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35699 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.38.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Stolen, avg 1m |bigip.cpu.stolen.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time 'stolen' from the specified processor for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35700 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 5m |bigip.cpu.spftirq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35701 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5m |bigip.cpu.idle.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35702 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.25.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Soft IRQ, avg 1m |bigip.cpu.spftirq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing soft interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35703 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5s |bigip.cpu.nice.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35704 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.29.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 5m |bigip.cpu.nice.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35705 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Nice, avg 1m |bigip.cpu.nice.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor running niced processes for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35706 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.16.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5s |bigip.cpu.irq.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35707 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 5m |bigip.cpu.irq.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35708 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.24.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IRQ, avg 1m |bigip.cpu.irq.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor servicing hardware interrupts for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35709 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5s |bigip.cpu.iowait.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35710 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 5m |bigip.cpu.iowait.5m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last five minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35711 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.26.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: IO wait, avg 1m |bigip.cpu.iowait.1m[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor waiting for external I/O to complete for the associated host in the last one minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35712 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: Idle, avg 5s |bigip.cpu.idle.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor doing nothing for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35713 |20 |.1.3.6.1.4.1.3375.2.1.7.5.2.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}] CPU{#CPU.ID}: User, avg 5s |bigip.cpu.user.5s[{#HOST.ID},{#CPU.ID}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The average time spent by the specified processor in user context for the associated host in the last five seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35714 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: FAN speed |bigip.cpu.sensor.fan[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The fan speed (in RPM) of the indexed CPU on the system.,&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35715 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Name |bigip.cpu.sensor.name[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;Identifier for the CPU. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35716 |20 |.1.3.6.1.4.1.3375.2.1.3.6.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Sensor [{#CPU.SENSOR.SLOT}:{#CPU.SENSOR.INDEX}]: Temperature |bigip.cpu.sensor.temperature[{#CPU.SENSOR.SLOT},{#CPU.SENSOR.INDEX}] |5m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;CPU: {#CPU.SENSOR.NAME}&eol;The temperature of the indexed CPU on the system.&eol;This is only supported for the platform where&eol;the sensor data is available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35717 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Block size |bigip.disktable.blocksize[{#PART.NAME}] |1h |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of bytes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35718 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free blocks |bigip.disktable.freeblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35719 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Free nodes |bigip.disktable.freenodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of free file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35720 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total blocks |bigip.disktable.totalblocks[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total blocks in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35721 |20 |.1.3.6.1.4.1.3375.2.1.7.3.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Mount point [{#PART.NAME}]: Total nodes |bigip.disktable.totalnodes[{#PART.NAME}] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of total file nodes in the specified partition. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35722 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total other non-TMM memory |bigip.memory.total.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total other non-TMM memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35723 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total swap |bigip.memory.total.swap[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total swap in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35724 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Total memory |bigip.memory.total[{#HOST.ID}] |1d |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The total host memory in bytes for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35725 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used other non-TMM memory |bigip.memory.used.other[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The other non-TMM memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35726 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used swap |bigip.memory.used.swap[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The swap in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35727 |20 |.1.3.6.1.4.1.3375.2.1.7.4.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Host [{#HOST.ID}]: Used memory |bigip.memory.used[{#HOST.ID}] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The host memory in bytes currently in use for the specified host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35728 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: CPU ratio |bigip.module.cpu.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of CPU to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35729 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Disk ratio |bigip.module.disk.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available disk space to allocate to this module. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35730 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Memory ratio |bigip.module.memory.ratio[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The ratio of available memory to allocate. Only valid if level is 'custom' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35731 |20 |.1.3.6.1.4.1.3375.2.1.11.1.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Module [{#MODULE.NAME}]: Provision level |bigip.module.provision.level[{#MODULE.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |241 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The provisioning level indicates how the systems resources&eol;are distributed amongst the modules&eol;Possible values: 1 - none, 2 - minimum, 3 - nominal, 4 - dedicated, 5 - custom. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35732 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Collisions |bigip.net.collisions[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of collisions on the specified interface, incremented by the&eol;number of collisions experienced during transmissions of a frame |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35733 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming traffic, rate |bigip.net.in.bytes.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of bytes received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35734 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.10.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet drops |bigip.net.in.drops[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of packets dropped on ingress for various reasons on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35735 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet error |bigip.net.in.error[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of received packets that are either undersized,&eol;oversized, or have FCS errors by the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35736 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming multicast packet, rate |bigip.net.in.multicast.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of multicast packets received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35737 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming packet, rate |bigip.net.in.pkts.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of packets received on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35738 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.13.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Incoming QnQ packet, rate |bigip.net.in.qq.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of double tagged packets received on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35739 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing traffic, rate |bigip.net.out.bytes.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of bytes transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35740 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.11.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet drops |bigip.net.out.drops[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of packets aged out or with excessive transmission&eol;delays due to multiple deferrals on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35741 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet error |bigip.net.out.error[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The number of excessive collisions, incremented for each&eol;frame that experienced 16 collisions during transmission and&eol;was aborted on the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35742 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing multicast packet, rate |bigip.net.out.multicast.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of multicast packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35743 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing packet, rate |bigip.net.out.pkts.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35744 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.14.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Outgoing QnQ packet, rate |bigip.net.out.qq.rate[{#IF.NAME}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The rate of double tagged packets transmitted out of the specified interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35745 |20 |.1.3.6.1.4.1.3375.2.1.2.4.4.3.1.15.{#SNMPINDEX} |10415 |F5 BIG-IP: Interface [{#IF.NAME}]: Pause state |bigip.net.pause[{#IF.NAME}] |1m |7d |365d |0 |3 | | | | |NULL |242 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The pause state of the specified interface.&eol;none - no pause;&eol;txrx - pause all data flow;&eol;tx - pause outgoing data flow;&eol;rx - pause incoming data flow. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35746 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current connections |bigip.node.net.conn[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35747 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming traffic, rate |bigip.node.net.in.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35748 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Incoming packet, rate |bigip.node.net.in.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified node address from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35749 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing traffic, rate |bigip.node.net.out.bytes.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35750 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Outgoing packet, rate |bigip.node.net.out.pkts.rate[{#NODE.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35751 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.21.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Current sessions |bigip.node.net.sessions[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified node address. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35752 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.22.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Connections hit a rate limit |bigip.node.overlimit[{#NODE.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the node address when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the node. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35753 |20 |.1.3.6.1.4.1.3375.2.2.4.2.3.1.23.{#SNMPINDEX} |10415 |F5 BIG-IP: Node [{#NODE.NAME}]: Duration of exceeding rate limit |bigip.node.overtime[{#NODE.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified node address has exceeded the&eol;configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35754 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current connections |bigip.pool.net.conn[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from server-side to the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35755 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming traffic, rate |bigip.pool.net.in.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35756 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Incoming packet, rate |bigip.pool.net.in.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified pool from server-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35757 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.5.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing traffic, rate |bigip.pool.net.out.bytes.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35758 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.4.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Outgoing packet, rate |bigip.pool.net.out.pkts.rate[{#POOL.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to server-side from the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35759 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Current sessions |bigip.pool.net.sessions[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The number of current sessions going through the specified pool. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35760 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.19.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Age of the oldest queue entry |bigip.pool.queue.age[{#POOL.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Age of the oldest queue entry, max. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35761 |20 |.1.3.6.1.4.1.3375.2.2.5.2.3.1.18.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Queue |bigip.pool.queue[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Number of connections currently in queue, sum. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35762 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.12.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Current connections |bigip.vserver.net.conn[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The current connections from client-side to the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35763 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.7.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming traffic, rate |bigip.vserver.net.in.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35764 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.6.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Incoming packet, rate |bigip.vserver.net.in.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets received by the specified virtual server from client-side. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35765 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.9.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing traffic, rate |bigip.vserver.net.out.bytes.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of bytes sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35766 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.8.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Outgoing packet, rate |bigip.vserver.net.out.pkts.rate[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The rate of packets sent to client-side from the specified virtual server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35767 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.34.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Connections hit a rate limit |bigip.vserver.overlimit[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The last recorded value for the number of connections to the virtual server when connections hit a rate limit;&eol;this calculation is only maintained if rate limiting is configured for the service. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35768 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.35.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Duration of exceeding rate limit |bigip.vserver.overtime[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;Duration of time in seconds the specified virtual server has exceeded the configured connection rate limit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35769 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.32.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 1m |bigip.vserver.usage.1m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35770 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.33.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5m |bigip.vserver.usage.5m[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35771 |20 |.1.3.6.1.4.1.3375.2.2.10.2.3.1.31.{#SNMPINDEX} |10415 |F5 BIG-IP: Virtual server [{#VSERVER.NAME}]: Usage ratio, avg 5s |bigip.vserver.usage.5s[{#VSERVER.NAME}] |5m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The percentage of time Virtual Server was busy over the last 5 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35772 |0 | |10416 |Cert: Get |web.certificate.get[{$CERT.WEBSITE.HOSTNAME},{$CERT.WEBSITE.PORT},{$CERT.WEBSITE.IP}] |15m |0h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Returns the JSON with attributes of a certificate of the requested site. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35786 |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 |35845 |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 |35903 |20 |.1.3.6.1.2.1.1.4.0 |10417 |Cisco ASAv: Contact |cisco.asav.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35904 |20 |.1.3.6.1.2.1.1.6.0 |10417 |Cisco ASAv: Location |cisco.asav.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35905 |20 |.1.3.6.1.2.1.1.1.0 |10417 |Cisco ASAv: System description |cisco.asav.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35906 |20 |.1.3.6.1.2.1.1.5.0 |10417 |Cisco ASAv: Host name |cisco.asav.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35907 |20 |.1.3.6.1.2.1.1.3.0 |10417 |Cisco ASAv: Uptime |cisco.asav.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35908 |5 | |10417 |Cisco ASAv: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35909 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.8] |10417 |CPU discovery |cisco.asav.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of cpmCPUTotalTable, a table of CPU monitoring entries. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35910 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10417 |Memory discovery |cisco.asav.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35911 |20 |discovery[{#CISCO.IF.NAME}, .1.3.6.1.2.1.31.1.1.1.1,{#CISCO.IF.STATUS.ADMIN},.1.3.6.1.2.1.2.2.1.7,{#CISCO.IF.STATUS.OPER},.1.3.6.1.2.1.2.2.1.8,{#CISCO.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10417 |Interface discovery |cisco.asav.net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Network interfaces discovery |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35912 |20 |discovery[{#CISCO.ASAV.PHYS.DESC},.1.3.6.1.2.1.47.1.1.1.1.2,{#CISCO.ASAV.PHYS.CLASS},.1.3.6.1.2.1.47.1.1.1.1.5,{#CISCO.ASAV.PHYS.NAME},.1.3.6.1.2.1.47.1.1.1.1.7] |10417 |Physical entry discovery |cisco.asav.physical.entry.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Information about a particular physical entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35913 |20 |discovery[{#CISCO.CRAS.USER},.1.3.6.1.4.1.9.9.392.1.3.21.1.1,{#CISCO.CRAS.INDEX},.1.3.6.1.4.1.9.9.392.1.3.21.1.3] |10417 |Session discovery |cisco.asav.session.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Remote access session discovery |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35914 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: CPU [{#SNMPINDEX}] Utilization |cisco.asav.cpu.util[{#SNMPINDEX}] |1m |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 object cpmCPUTotal5min&eol;and increases the value range to (0..100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35915 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#SNMPVALUE} Free memory |cisco.asav.memory.free[{#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 |35916 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#SNMPVALUE} Used memory |cisco.asav.memory.used[{#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 |35917 |15 | |10417 |Cisco ASAv: {#SNMPVALUE} Memory utilization |cisco.asav.memory.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.memory.used[{#SNMPINDEX}])/(last(cisco.asav.memory.free[{#SNMPINDEX}])+last(cisco.asav.memory.used[{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35918 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Administrative status |cisco.asav.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |246 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35919 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Interface description |cisco.asav.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35920 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Link speed |cisco.asav.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35921 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming broadcast packets |cisco.asav.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35922 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming multicast packets |cisco.asav.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35923 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming traffic |cisco.asav.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35924 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming unicast packets |cisco.asav.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35925 |15 | |10417 |Cisco ASAv: {#CISCO.IF.NAME} Incoming utilization |cisco.asav.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.net.if.in.traffic[{#SNMPINDEX}]) * (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35926 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Interface name |cisco.asav.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35927 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Operational status |cisco.asav.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |247 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35928 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing broadcast packets |cisco.asav.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35929 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing multicast packets |cisco.asav.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35930 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing traffic |cisco.asav.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35931 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing unicast packets |cisco.asav.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35932 |15 | |10417 |Cisco ASAv: {#CISCO.IF.NAME} Outgoing utilization |cisco.asav.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(cisco.asav.net.if.out.traffic[{#SNMPINDEX}]) * (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) + (last(cisco.asav.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35933 |20 |.1.3.6.1.2.1.47.1.1.1.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical class |cisco.asav.phys.class[{#SNMPINDEX}] |1h |7d |365d |0 |3 | | | | |NULL |250 | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;An indication of the general hardware type of the physical&eol;entity.&eol;An agent should set this object to the standard enumeration&eol;value that most accurately indicates the general class of&eol;the physical entity, or the primary class if there is more&eol;than one entity.&eol;If no appropriate standard registration identifier exists&eol;for this physical entity, then the value 'other(1)' is&eol;returned. If the value is unknown by this agent, then the&eol;value 'unknown(2)' is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35934 |20 |.1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical description |cisco.asav.phys.description[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;A textual description of physical entity. This object&eol;should contain a string that identifies the manufacturer's&eol;name for the physical entity, and should be set to a&eol;distinct value for each version or model of the physical&eol;entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35935 |20 |.1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Hardware revision |cisco.asav.phys.hw[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific hardware revision string for the&eol;physical entity. The preferred value is the hardware&eol;revision identifier actually printed on the component itself&eol;(if present).&eol;Note that if revision information is stored internally in a&eol;non-printable (e.g., binary) format, then the agent must&eol;convert such information to a printable format, in an&eol;implementation-specific manner.&eol;If no specific hardware revision string is associated with&eol;the physical component, or if this information is unknown to&eol;the agent, then this object will contain a zero-length&eol;string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35936 |20 |.1.3.6.1.2.1.47.1.1.1.1.12.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Manufacturer name |cisco.asav.phys.mfgname[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The name of the manufacturer of this physical component.&eol;The preferred value is the manufacturer name string actually&eol;printed on the component itself (if present).&eol;Note that comparisons between instances of the&eol;entPhysicalModelName, entPhysicalFirmwareRev,&eol;entPhysicalSoftwareRev, and the entPhysicalSerialNum&eol;objects, are only meaningful amongst entPhysicalEntries with&eol;the same value of entPhysicalMfgName.&eol;If the manufacturer name string associated with the physical&eol;component is unknown to the agent, then this object will&eol;contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35937 |20 |.1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Model name |cisco.asav.phys.model[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific model name identifier string associated&eol;with this physical component. The preferred value is the&eol;customer-visible part number, which may be printed on the&eol;component itself.&eol;If the model name string associated with the physical&eol;component is unknown to the agent, then this object will&eol;contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35938 |20 |.1.3.6.1.2.1.47.1.1.1.1.7.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Physical name |cisco.asav.phys.name[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The textual name of the physical entity. The value of this&eol;object should be the name of the component as assigned by&eol;the local device and should be suitable for use in commands&eol;entered at the device's `console'. This might be a text&eol;name (e.g., `console') or a simple component number (e.g.,&eol;port or module number, such as `1'), depending on the&eol;physical component naming syntax of the device.&eol;If there is no local name, or if this object is otherwise&eol;not applicable, then this object contains a zero-length&eol;string.&eol;Note that the value of entPhysicalName for two physical&eol;entities will be the same in the event that the console&eol;interface does not distinguish between them, e.g., slot-1&eol;and the card in slot-1. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35939 |20 |.1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Serial number |cisco.asav.phys.sn[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific serial number string for the physical&eol;entity. The preferred value is the serial number string&eol;actually printed on the component itself (if present).&eol;On the first instantiation of an physical entity, the value&eol;of entPhysicalSerialNum associated with that entity is set&eol;to the correct vendor-assigned serial number, if this&eol;information is available to the agent. If a serial number&eol;is unknown or non-existent, the entPhysicalSerialNum will be&eol;set to a zero-length string instead. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35940 |20 |.1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.ASAV.PHYS.NAME} Software revision |cisco.asav.phys.sw[{#SNMPINDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB&eol;The vendor-specific software revision string for the&eol;physical entity.&eol;Note that if revision information is stored internally in a&eol;non-printable (e.g., binary) format, then the agent must&eol;convert such information to a printable format, in an&eol;implementation-specific manner.&eol;If no specific software programs are associated with the&eol;physical component, or if this information is unknown to the&eol;agent, then this object will contain a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35941 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.10.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] ISP address |cisco.asav.session.addr.isp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The IP address of the peer (client) assigned by the ISP.&eol;This is the address of the client device in the public&eol;network. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35942 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.8.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Local address |cisco.asav.session.addr.local[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The IP address assigned to the client of this session&eol;in the private network assigned by the managed entity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35943 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.14.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Algorithm validate packets |cisco.asav.session.authen.algorithm[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |244 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The algorithm used by this remote access session to&eol;to validate packets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35944 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.4.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authenticate method |cisco.asav.session.authen.method[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |249 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The method used to authenticate the user prior to&eol;establishing the session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35945 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.5.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Authorize method |cisco.asav.session.author.method[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |249 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The method used to authorize the user prior to&eol;establishing the session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35946 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.6.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session duration |cisco.asav.session.duration[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The number of seconds elapsed since this session&eol;was established. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35947 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.13.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Encryption algorithm |cisco.asav.session.encryption[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |245 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The algorithm used by this remote access session to&eol;encrypt its payload. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35948 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.35.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Incoming traffic |cisco.asav.session.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The rate of octets received by this Remote&eol;Access Session.&eol;This value is accumulated BEFORE determining whether&eol;or not the packet should be decompressed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35949 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.36.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Outgoing traffic |cisco.asav.session.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The rate of octets transmitted by this Remote&eol;Access Session.&eol;This value is accumulated AFTER determining whether&eol;or not the packet should be compressed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35950 |20 |.1.3.6.1.4.1.9.9.392.1.3.21.1.11.{#SNMPINDEX} |10417 |Cisco ASAv: {#CISCO.CRAS.USER} [{#CISCO.CRAS.INDEX}] Session protocol |cisco.asav.session.protocol[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |248 | | |0 | | | | |2 |NULL |MIB: CISCO-REMOTE-ACCESS-MONITOR-MIB&eol;The protocol underlying this remote access session. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35951 |5 | |10418 |ZYXEL AAM1212-51 / IES-612: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35952 |20 |.1.3.6.1.2.1.1.4.0 |10418 |ZYXEL AAM1212-51 / IES-612: Contact |zyxel.aam1212.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35953 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10418 |ZYXEL AAM1212-51 / IES-612: ZyNOS F/W Version |zyxel.aam1212.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35954 |20 |.1.3.6.1.2.1.1.6.0 |10418 |ZYXEL AAM1212-51 / IES-612: Location |zyxel.aam1212.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35955 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10418 |ZYXEL AAM1212-51 / IES-612: MAC address |zyxel.aam1212.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35956 |20 |.1.3.6.1.2.1.1.1.0 |10418 |ZYXEL AAM1212-51 / IES-612: Hardware model name |zyxel.aam1212.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35957 |20 |.1.3.6.1.2.1.1.5.0 |10418 |ZYXEL AAM1212-51 / IES-612: Host name |zyxel.aam1212.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35958 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10418 |ZYXEL AAM1212-51 / IES-612: Hardware serial number |zyxel.aam1212.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35959 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10418 |ZYXEL AAM1212-51 / IES-612: Alarm status |zyxel.aam1212.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35960 |20 |.1.3.6.1.2.1.1.3.0 |10418 |ZYXEL AAM1212-51 / IES-612: Uptime |zyxel.aam1212.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35961 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10418 |ADSL interface discovery |zyxel.aam1212.net.adsl.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 |35962 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10418 |Ethernet interface discovery |zyxel.aam1212.net.if.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 |35963 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10418 |Temperature discovery |zyxel.aam1212.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35964 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10418 |Voltage discovery |zyxel.aam1212.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35965 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Administrative status |zyxel.aam1212.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35966 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC attenuation |zyxel.aam1212.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35967 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC output power |zyxel.aam1212.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35968 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUC noise margin |zyxel.aam1212.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL AAM1212-51 / IES-612, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35969 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR attenuation |zyxel.aam1212.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35970 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR output power |zyxel.aam1212.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35971 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: ATUR noise margin |zyxel.aam1212.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35972 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Incoming traffic |zyxel.aam1212.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35973 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Interface name |zyxel.aam1212.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35974 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Operational status |zyxel.aam1212.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35975 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#SNMPINDEX}: Outgoing traffic |zyxel.aam1212.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35976 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.aam1212.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |166 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35977 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.aam1212.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35978 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Interface name |zyxel.aam1212.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35979 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.aam1212.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |167 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35980 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.aam1212.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35981 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.aam1212.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35982 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10418 |ZYXEL AAM1212-51 / IES-612: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.aam1212.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35983 |5 | |10419 |ZYXEL ES3500-8PD: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35984 |20 |.1.3.6.1.2.1.1.4.0 |10419 |ZYXEL ES3500-8PD: Contact |zyxel.3500_8pd.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35985 |20 |.1.3.6.1.4.1.890.1.5.8.72.12.7.0 |10419 |ZYXEL ES3500-8PD: CPU utilization |zyxel.3500_8pd.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35986 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.72.1] |10419 |ZYXEL ES3500-8PD: ZyNOS F/W Version |zyxel.3500_8pd.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35987 |20 |.1.3.6.1.2.1.1.6.0 |10419 |ZYXEL ES3500-8PD: Location |zyxel.3500_8pd.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35988 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10419 |ZYXEL ES3500-8PD: MAC address |zyxel.3500_8pd.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35989 |20 |.1.3.6.1.2.1.1.1.0 |10419 |ZYXEL ES3500-8PD: Hardware model name |zyxel.3500_8pd.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35990 |20 |.1.3.6.1.2.1.1.5.0 |10419 |ZYXEL ES3500-8PD: Host name |zyxel.3500_8pd.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35991 |20 |.1.3.6.1.4.1.890.1.5.8.72.1.10.0 |10419 |ZYXEL ES3500-8PD: Hardware serial number |zyxel.3500_8pd.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35992 |20 |.1.3.6.1.2.1.1.3.0 |10419 |ZYXEL ES3500-8PD: Uptime |zyxel.3500_8pd.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35993 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.72.124.1.1.2] |10419 |Memory pool discovery |zyxel.3500_8pd.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 |35994 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5] |10419 |Interface discovery |zyxel.3500_8pd.net.if.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 |35995 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.72.117.2.1.8] |10419 |SFP with DDM discovery |zyxel.3500_8pd.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35996 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2] |10419 |SFP without DDM discovery |zyxel.3500_8pd.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35997 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.72.9.2.1.5] |10419 |Temperature discovery |zyxel.3500_8pd.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35998 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.72.9.3.1.5] |10419 |Voltage discovery |zyxel.3500_8pd.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35999 |20 |.1.3.6.1.4.1.890.1.5.8.72.124.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_8pd.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36000 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Administrative status |zyxel.3500_8pd.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |170 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36001 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.3.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface description |zyxel.3500_8pd.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36002 |15 | |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_8pd.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36003 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_8pd.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36004 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_8pd.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36005 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_8pd.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36006 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_8pd.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36007 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Operational status |zyxel.3500_8pd.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |171 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36008 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link type |zyxel.3500_8pd.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |169 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36009 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Interface name |zyxel.3500_8pd.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36010 |15 | |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_8pd.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36011 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_8pd.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36012 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_8pd.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36013 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_8pd.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36014 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_8pd.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36015 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Link speed |zyxel.3500_8pd.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36016 |20 |.1.3.6.1.4.1.890.1.5.8.72.24.1.1.1.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_8pd.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |168 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36017 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.2.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_8pd.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36018 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.7.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Date code |zyxel.3500_8pd.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36019 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.4.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Part number |zyxel.3500_8pd.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36020 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.6.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Revision |zyxel.3500_8pd.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36021 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.5.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Serial number |zyxel.3500_8pd.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36022 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Status |zyxel.3500_8pd.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |172 | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36023 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.8.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_8pd.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36024 |20 |.1.3.6.1.4.1.890.1.5.8.72.117.1.1.3.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: SFP {#SNMPINDEX}: Vendor |zyxel.3500_8pd.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36025 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.2.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_8pd.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36026 |20 |.1.3.6.1.4.1.890.1.5.8.72.9.3.1.2.{#SNMPINDEX} |10419 |ZYXEL ES3500-8PD: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_8pd.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-ES3500-8PD-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36027 |5 | |10420 |ZYXEL GS-4012F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36028 |20 |.1.3.6.1.2.1.1.4.0 |10420 |ZYXEL GS-4012F: Contact |zyxel.4012f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36029 |20 |.1.3.6.1.4.1.890.1.5.8.20.12.7.0 |10420 |ZYXEL GS-4012F: CPU utilization |zyxel.4012f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36030 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.20.1] |10420 |ZYXEL GS-4012F: ZyNOS F/W Version |zyxel.4012f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36031 |20 |.1.3.6.1.2.1.1.6.0 |10420 |ZYXEL GS-4012F: Location |zyxel.4012f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36032 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10420 |ZYXEL GS-4012F: MAC address |zyxel.4012f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36033 |20 |.1.3.6.1.2.1.1.1.0 |10420 |ZYXEL GS-4012F: Hardware model name |zyxel.4012f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36034 |20 |.1.3.6.1.2.1.1.5.0 |10420 |ZYXEL GS-4012F: Host name |zyxel.4012f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36035 |20 |.1.3.6.1.4.1.890.1.5.8.20.1.10.0 |10420 |ZYXEL GS-4012F: Hardware serial number |zyxel.4012f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36036 |20 |.1.3.6.1.2.1.1.3.0 |10420 |ZYXEL GS-4012F: Uptime |zyxel.4012f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36037 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.1.1.5] |10420 |Fan discovery |zyxel.4012f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36038 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5] |10420 |Interface discovery |zyxel.4012f.net.if.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 |36039 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.20.9.2.1.5] |10420 |Temperature discovery |zyxel.4012f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36040 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.20.9.3.1.5] |10420 |Voltage discovery |zyxel.4012f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36041 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.1.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Fan #{#SNMPINDEX} |zyxel.4012f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36042 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Administrative status |zyxel.4012f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |175 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36043 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.3.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface description |zyxel.4012f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36044 |15 | |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4012f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36045 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4012f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36046 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4012f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36047 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4012f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36048 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4012f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36049 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Operational status |zyxel.4012f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |176 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36050 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.5.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link type |zyxel.4012f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |174 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36051 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Interface name |zyxel.4012f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36052 |15 | |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4012f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4012f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36053 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4012f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36054 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4012f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36055 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4012f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36056 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4012f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36057 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Link speed |zyxel.4012f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36058 |20 |.1.3.6.1.4.1.890.1.5.8.20.23.1.1.1.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4012f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |173 | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36059 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.2.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4012f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36060 |20 |.1.3.6.1.4.1.890.1.5.8.20.9.3.1.2.{#SNMPINDEX} |10420 |ZYXEL GS-4012F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4012f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-GS4012F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36061 |5 | |10421 |ZYXEL IES-500x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36062 |20 |.1.3.6.1.2.1.1.4.0 |10421 |ZYXEL IES-500x: Contact |zyxel.ies500x.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36063 |20 |.1.3.6.1.2.1.1.6.0 |10421 |ZYXEL IES-500x: Location |zyxel.ies500x.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36064 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10421 |ZYXEL IES-500x: MAC address |zyxel.ies500x.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36065 |20 |.1.3.6.1.2.1.1.1.0 |10421 |ZYXEL IES-500x: Hardware model name |zyxel.ies500x.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36066 |20 |.1.3.6.1.2.1.1.5.0 |10421 |ZYXEL IES-500x: Host name |zyxel.ies500x.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36067 |20 |.1.3.6.1.2.1.1.3.0 |10421 |ZYXEL IES-500x: Uptime |zyxel.ies500x.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36068 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10421 |Packet buffer discovery |zyxel.ies500x.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36069 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10421 |CPU discovery |zyxel.ies500x.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36070 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10421 |Fan discovery |zyxel.ies500x.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36071 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10421 |Memory discovery |zyxel.ies500x.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36072 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10421 |ADSL interface discovery |zyxel.ies500x.net.adsl.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 |36073 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10421 |Ethernet interface discovery |zyxel.ies500x.net.if.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 |36074 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10421 |Slot discovery |zyxel.ies500x.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36075 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10421 |Temperature discovery |zyxel.ies500x.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36076 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10421 |Voltage discovery |zyxel.ies500x.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36077 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies500x.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36078 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies500x.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36079 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Fan #{#SNMPINDEX} |zyxel.ies500x.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36080 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies500x.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36081 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies500x.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36082 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies500x.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36083 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies500x.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36084 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies500x.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36085 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies500x.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36086 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies500x.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36087 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies500x.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36088 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies500x.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36089 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies500x.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36090 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies500x.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36091 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies500x.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36092 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies500x.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36093 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies500x.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36094 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies500x.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36095 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies500x.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36096 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies500x.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36097 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies500x.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-500x, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36098 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies500x.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36099 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Administrative status |zyxel.ies500x.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |182 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36100 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface description |zyxel.ies500x.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36101 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Link speed |zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36102 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies500x.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36103 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies500x.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36104 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36105 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies500x.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36106 |15 | |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies500x.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36107 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Interface name |zyxel.ies500x.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36108 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Operational status |zyxel.ies500x.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |183 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36109 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies500x.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36110 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies500x.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36111 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36112 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies500x.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36113 |15 | |10421 |ZYXEL IES-500x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies500x.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies500x.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies500x.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36114 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies500x.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36115 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies500x.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36116 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies500x.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36117 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies500x.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36118 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies500x.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36119 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies500x.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36120 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies500x.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36121 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies500x.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36122 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies500x.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36123 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies500x.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |178 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36124 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies500x.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |179 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36125 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies500x.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36126 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies500x.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36127 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10421 |ZYXEL IES-500x: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies500x.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36128 |5 | |10422 |ZYXEL IES-6000: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36129 |20 |.1.3.6.1.2.1.1.4.0 |10422 |ZYXEL IES-6000: Contact |zyxel.ies6000.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36130 |20 |.1.3.6.1.2.1.1.6.0 |10422 |ZYXEL IES-6000: Location |zyxel.ies6000.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36131 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10422 |ZYXEL IES-6000: MAC address |zyxel.ies6000.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36132 |20 |.1.3.6.1.2.1.1.1.0 |10422 |ZYXEL IES-6000: Hardware model name |zyxel.ies6000.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36133 |20 |.1.3.6.1.2.1.1.5.0 |10422 |ZYXEL IES-6000: Host name |zyxel.ies6000.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36134 |20 |.1.3.6.1.2.1.1.3.0 |10422 |ZYXEL IES-6000: Uptime |zyxel.ies6000.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36135 |20 |discovery[{#ZYXEL.BUFFERHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.4] |10422 |Packet buffer discovery |zyxel.ies6000.buffer.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains packet buffer usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36136 |20 |discovery[{#ZYXEL.CPU.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.4] |10422 |CPU discovery |zyxel.ies6000.cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains CPU utilization information.&eol;This table is supported by R1.03 and later versions. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36137 |20 |discovery[{#ZYXEL.FANRPM.THRESH.HIGH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.7,{#ZYXEL.FANRPM.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.5] |10422 |Fan discovery |zyxel.ies6000.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36138 |20 |discovery[{#ZYXEL.MEMORYHIGHTHRESH}, .1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.4] |10422 |Memory discovery |zyxel.ies6000.memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A table that contains memory usage information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36139 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10422 |ADSL interface discovery |zyxel.ies6000.net.adsl.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 |36140 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.31.1.1.1.1,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8,{#ZYXEL.IF.DESC},.1.3.6.1.2.1.31.1.1.1.18] |10422 |Ethernet interface discovery |zyxel.ies6000.net.if.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 |36141 |20 |discovery[{#ZYXEL.SLOTSTATUS},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7,{#ZYXEL.SLOT.ID},.1.3.6.1.4.1.890.1.5.13.5.6.3.1.1] |10422 |Slot discovery |zyxel.ies6000.slot.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table which contains the slot information in a chassis. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36142 |20 |discovery[{#ZYXEL.TEMP.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.7,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.5] |10422 |Temperature discovery |zyxel.ies6000.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36143 |20 |discovery[{#ZYXEL.VOLT.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.8,{#ZYXEL.VOLT.THRESH.LOW}, .1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.5] |10422 |Voltage discovery |zyxel.ies6000.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36144 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.5.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Packet buffer utilization |zyxel.ies6000.buffer[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The packet buffer usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36145 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.4.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: CPU utilization |zyxel.ies6000.cpu[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The CPU utilization in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36146 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.1.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Fan #{#SNMPINDEX} |zyxel.ies6000.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36147 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.6.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Memory utilization |zyxel.ies6000.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The memory usage in the past 60 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36148 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Administrative status |zyxel.ies6000.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36149 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming traffic |zyxel.ies6000.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36150 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing traffic |zyxel.ies6000.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36151 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing multicast packages |zyxel.ies6000.net.adsl.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36152 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing broadcast packages |zyxel.ies6000.net.adsl.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36153 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Operational status |zyxel.ies6000.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36154 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface name |zyxel.ies6000.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36155 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming unicast packages |zyxel.ies6000.net.adsl.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36156 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming multicast packages |zyxel.ies6000.net.adsl.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36157 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC attenuation |zyxel.ies6000.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36158 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Incoming broadcast packages |zyxel.ies6000.net.adsl.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36159 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Interface description |zyxel.ies6000.net.adsl.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36160 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR noise margin |zyxel.ies6000.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36161 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR output power |zyxel.ies6000.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36162 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUR attenuation |zyxel.ies6000.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36163 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC noise margin |zyxel.ies6000.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36164 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: ATUC output power |zyxel.ies6000.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES-6000, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36165 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID} Port {#ZYXEL.PORTID}: Outgoing unicast packages |zyxel.ies6000.net.adsl.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36166 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Administrative status |zyxel.ies6000.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |188 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36167 |20 |.1.3.6.1.2.1.31.1.1.1.18.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface description |zyxel.ies6000.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36168 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Link speed |zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36169 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.ies6000.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36170 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.ies6000.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36171 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36172 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.ies6000.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36173 |15 | |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Incoming utilization |zyxel.ies6000.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36174 |20 |.1.3.6.1.2.1.31.1.1.1.1.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Interface name |zyxel.ies6000.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36175 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Operational status |zyxel.ies6000.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |189 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36176 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.ies6000.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36177 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.ies6000.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36178 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36179 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.ies6000.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36180 |15 | |10422 |ZYXEL IES-6000: Port {#SNMPINDEX}: Outgoing utilization |zyxel.ies6000.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.ies6000.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) <> 0) /&bsn;( last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.ies6000.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36181 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.8.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Alarm status |zyxel.ies6000.slot.alarm[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36182 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.6.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: DSL modem code version |zyxel.ies6000.slot.cv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL modem code version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36183 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.3.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Description |zyxel.ies6000.slot.desc[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The descriptions of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36184 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.5.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Driver version |zyxel.ies6000.slot.dv.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The DSL driver of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36185 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.4.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Firmware version |zyxel.ies6000.slot.fw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The firmware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36186 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.10.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Hardware version |zyxel.ies6000.slot.hw.ver[{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The hardware version of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36187 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.12.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 1 |zyxel.ies6000.slot.mac1[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36188 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.13.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: MAC address 2 |zyxel.ies6000.slot.mac2[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The MAC Address of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36189 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.9.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Serial number |zyxel.ies6000.slot.serial[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The serial number of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36190 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.7.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Status |zyxel.ies6000.slot.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |184 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The module state of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36191 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Type |zyxel.ies6000.slot.type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |185 | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;Card type of the plug-in card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36192 |20 |.1.3.6.1.4.1.890.1.5.13.5.6.3.1.11.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Uptime |zyxel.ies6000.slot.uptime[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The time (in seconds) since the plug-in card was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36193 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.3.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies6000.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36194 |20 |.1.3.6.1.4.1.890.1.5.13.5.11.3.2.1.2.{#SNMPINDEX} |10422 |ZYXEL IES-6000: Slot {#ZYXEL.SLOT.ID}: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies6000.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IES5000-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36195 |5 | |10423 |ZYXEL IES1248-51: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36196 |20 |.1.3.6.1.2.1.1.4.0 |10423 |ZYXEL IES1248-51: Contact |zyxel.ies1248.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36197 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.4.0.0 |10423 |ZYXEL IES1248-51: ZyNOS F/W Version |zyxel.ies1248.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36198 |20 |.1.3.6.1.2.1.1.6.0 |10423 |ZYXEL IES1248-51: Location |zyxel.ies1248.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36199 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10423 |ZYXEL IES1248-51: MAC address |zyxel.ies1248.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36200 |20 |.1.3.6.1.2.1.1.1.0 |10423 |ZYXEL IES1248-51: Hardware model name |zyxel.ies1248.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36201 |20 |.1.3.6.1.2.1.1.5.0 |10423 |ZYXEL IES1248-51: Host name |zyxel.ies1248.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36202 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.2.1.3.0 |10423 |ZYXEL IES1248-51: Hardware serial number |zyxel.ies1248.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36203 |20 |.1.3.6.1.4.1.890.1.5.13.1.1.3.1.8.0.0 |10423 |ZYXEL IES1248-51: Alarm status |zyxel.ies1248.slot.alarm |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;This variable indicates the alarm status of the module.&eol;It is a bit map represented a sum, therefore, it can represent&eol;multiple defects simultaneously. The moduleNoDefect should be set&eol;if and only if no other flag is set.&eol;The various bit positions are:&eol;1 moduleNoDefect&eol;2 moduleOverHeat&eol;3 moduleFanRpmLow&eol;4 moduleVoltageLow&eol;5 moduleThermalSensorFailure&eol;6 modulePullOut&eol;7 powerDC48VAFailure&eol;8 powerDC48VBFailure&eol;9 extAlarmInputTrigger&eol;10 moduleDown&eol;11 mscSwitchOverOK&eol;12 networkTopologyChange&eol;13 macSpoof&eol;14 cpuHigh&eol;15 memoryUsageHigh&eol;16 packetBufferUsageHigh&eol;17 loopguardOccurence |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36204 |20 |.1.3.6.1.2.1.1.3.0 |10423 |ZYXEL IES1248-51: Uptime |zyxel.ies1248.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36205 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.1.1.5] |10423 |Fan discovery |zyxel.ies1248.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36206 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10423 |ADSL interface discovery |zyxel.ies1248.net.adsl.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 |36207 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.2.1.2.2.1.2,{#ZYXEL.IF.LINKSTATUS},.1.3.6.1.2.1.2.2.1.8] |10423 |Ethernet interface discovery |zyxel.ies1248.net.if.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 |36208 |20 |discovery[{#ZYXEL.TEMP.ID}, .1.3.6.1.4.1.890.1.5.13.1.2.3.1.1,{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.13.1.2.3.1.5] |10423 |Temperature discovery |zyxel.ies1248.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36209 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.13.1.2.2.1.6,{#ZYXEL.VOLT.NOMINAL}, .1.3.6.1.4.1.890.1.5.13.1.2.2.1.5] |10423 |Voltage discovery |zyxel.ies1248.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36210 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.1.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Fan #{#SNMPINDEX} |zyxel.ies1248.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36211 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Administrative status |zyxel.ies1248.net.adsl.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36212 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.5.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC attenuation |zyxel.ies1248.net.adsl.atuc.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36213 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC output power |zyxel.ies1248.net.adsl.atuc.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36214 |20 |.1.3.6.1.2.1.10.94.1.1.2.1.4.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUC noise margin |zyxel.ies1248.net.adsl.atuc.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atuc fields show data acquired from the ATUC (ADSL Termination Unit – Central), in this case ZYXEL IES1248-51, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36215 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.5.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR attenuation |zyxel.ies1248.net.adsl.atur.atn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured difference in the total power transmitted by&eol;the peer ATU and the total power received by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36216 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR output power |zyxel.ies1248.net.adsl.atur.outpwr[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Measured total output power transmitted by this ATU. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36217 |20 |.1.3.6.1.2.1.10.94.1.1.3.1.4.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: ATUR noise margin |zyxel.ies1248.net.adsl.atur.snrmgn[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |dB | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ADSL-LINE-MIB&eol;Noise Margin as seen by this ATU with respect to its&eol;received signal in tenth dB. &eol;The Info Atur fields show data acquired from the ATUR (ADSL Termination Unit – Remote), in this case the subscriber's ADSL modem or router, during negotiation/provisioning message interchanges. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36218 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Incoming traffic |zyxel.ies1248.net.adsl.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36219 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.adsl.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36220 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Operational status |zyxel.ies1248.net.adsl.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36221 |20 |.1.3.6.1.2.1.2.2.1.16.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Outgoing traffic |zyxel.ies1248.net.adsl.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36222 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Administrative status |zyxel.ies1248.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |193 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36223 |20 |.1.3.6.1.2.1.2.2.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Incoming traffic |zyxel.ies1248.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36224 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#SNMPINDEX}: Interface name |zyxel.ies1248.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36225 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Operational status |zyxel.ies1248.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |194 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36226 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Port {#ZYXEL.IF.NAME}: Outgoing traffic |zyxel.ies1248.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36227 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.3.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.ies1248.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36228 |20 |.1.3.6.1.4.1.890.1.5.13.1.2.2.1.2.{#SNMPINDEX} |10423 |ZYXEL IES1248-51: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.ies1248.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-IESCOMMON-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36229 |5 | |10424 |ZYXEL MES-3528: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36230 |20 |.1.3.6.1.2.1.1.4.0 |10424 |ZYXEL MES-3528: Contact |zyxel.3528.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36231 |20 |.1.3.6.1.4.1.890.1.5.8.51.12.7.0 |10424 |ZYXEL MES-3528: CPU utilization |zyxel.3528.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36232 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.51.1] |10424 |ZYXEL MES-3528: ZyNOS F/W Version |zyxel.3528.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36233 |20 |.1.3.6.1.2.1.1.6.0 |10424 |ZYXEL MES-3528: Location |zyxel.3528.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36234 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10424 |ZYXEL MES-3528: MAC address |zyxel.3528.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36235 |20 |.1.3.6.1.2.1.1.1.0 |10424 |ZYXEL MES-3528: Hardware model name |zyxel.3528.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36236 |20 |.1.3.6.1.2.1.1.5.0 |10424 |ZYXEL MES-3528: Host name |zyxel.3528.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36237 |20 |.1.3.6.1.4.1.890.1.5.8.51.1.10.0 |10424 |ZYXEL MES-3528: Hardware serial number |zyxel.3528.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36238 |20 |.1.3.6.1.2.1.1.3.0 |10424 |ZYXEL MES-3528: Uptime |zyxel.3528.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36239 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5] |10424 |Interface discovery |zyxel.3528.net.if.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 |36240 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.51.117.2.1.8] |10424 |SFP with DDM discovery |zyxel.3528.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36241 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2] |10424 |SFP without DDM discovery |zyxel.3528.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36242 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Administrative status |zyxel.3528.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |197 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36243 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.3.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface description |zyxel.3528.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36244 |15 | |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3528.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3528.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36245 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3528.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36246 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3528.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36247 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3528.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36248 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3528.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36249 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Operational status |zyxel.3528.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |198 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36250 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.5.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link type |zyxel.3528.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |196 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36251 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Interface name |zyxel.3528.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36252 |15 | |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming utilization |zyxel.3528.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3528.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3528.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36253 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3528.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36254 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming traffic |zyxel.3528.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36255 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3528.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36256 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3528.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36257 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Link speed |zyxel.3528.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36258 |20 |.1.3.6.1.4.1.890.1.5.8.51.24.1.1.1.{#SNMPINDEX} |10424 |ZYXEL MES-3528: Port {#SNMPINDEX}: Speed Duplex |zyxel.3528.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |195 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36259 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.2.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3528.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36260 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.7.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Date code |zyxel.3528.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36261 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.4.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Part number |zyxel.3528.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36262 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.6.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Revision |zyxel.3528.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36263 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.5.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Serial number |zyxel.3528.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36264 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.2.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Status |zyxel.3528.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |199 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36265 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.8.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Transceiver |zyxel.3528.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36266 |20 |.1.3.6.1.4.1.890.1.5.8.51.117.1.1.3.{#SNMPINDEX} |10424 |ZYXEL MES-3528: SFP {#SNMPINDEX}: Vendor |zyxel.3528.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3528-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36267 |5 | |10425 |ZYXEL MES3500-10: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36268 |20 |.1.3.6.1.2.1.1.4.0 |10425 |ZYXEL MES3500-10: Contact |zyxel.3500_10.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36269 |20 |.1.3.6.1.4.1.890.1.5.8.80.12.7.0 |10425 |ZYXEL MES3500-10: CPU utilization |zyxel.3500_10.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36270 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.80.1] |10425 |ZYXEL MES3500-10: ZyNOS F/W Version |zyxel.3500_10.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36271 |20 |.1.3.6.1.2.1.1.6.0 |10425 |ZYXEL MES3500-10: Location |zyxel.3500_10.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36272 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10425 |ZYXEL MES3500-10: MAC address |zyxel.3500_10.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36273 |20 |.1.3.6.1.2.1.1.1.0 |10425 |ZYXEL MES3500-10: Hardware model name |zyxel.3500_10.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36274 |20 |.1.3.6.1.2.1.1.5.0 |10425 |ZYXEL MES3500-10: Host name |zyxel.3500_10.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36275 |20 |.1.3.6.1.4.1.890.1.5.8.80.1.10.0 |10425 |ZYXEL MES3500-10: Hardware serial number |zyxel.3500_10.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36276 |20 |.1.3.6.1.2.1.1.3.0 |10425 |ZYXEL MES3500-10: Uptime |zyxel.3500_10.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36277 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.80.124.1.1.2] |10425 |Memory pool discovery |zyxel.3500_10.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 |36278 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5] |10425 |Interface discovery |zyxel.3500_10.net.if.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 |36279 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.80.117.2.1.8] |10425 |SFP with DDM discovery |zyxel.3500_10.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36280 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2] |10425 |SFP without DDM discovery |zyxel.3500_10.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36281 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.80.9.2.1.5] |10425 |Temperature discovery |zyxel.3500_10.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36282 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.80.9.3.1.5] |10425 |Voltage discovery |zyxel.3500_10.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36283 |20 |.1.3.6.1.4.1.890.1.5.8.80.124.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_10.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36284 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Administrative status |zyxel.3500_10.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |202 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36285 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.3.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface description |zyxel.3500_10.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36286 |15 | |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_10.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36287 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_10.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36288 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_10.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36289 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_10.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36290 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_10.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36291 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Operational status |zyxel.3500_10.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |203 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36292 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link type |zyxel.3500_10.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |201 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36293 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Interface name |zyxel.3500_10.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36294 |15 | |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_10.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36295 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_10.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36296 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_10.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36297 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_10.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36298 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_10.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36299 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Link speed |zyxel.3500_10.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36300 |20 |.1.3.6.1.4.1.890.1.5.8.80.24.1.1.1.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_10.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |200 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36301 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.2.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_10.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36302 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.7.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Date code |zyxel.3500_10.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36303 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.4.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Part number |zyxel.3500_10.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36304 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.6.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Revision |zyxel.3500_10.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36305 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.5.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Serial number |zyxel.3500_10.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36306 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Status |zyxel.3500_10.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |204 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36307 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.8.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_10.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36308 |20 |.1.3.6.1.4.1.890.1.5.8.80.117.1.1.3.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: SFP {#SNMPINDEX}: Vendor |zyxel.3500_10.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36309 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.2.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_10.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36310 |20 |.1.3.6.1.4.1.890.1.5.8.80.9.3.1.2.{#SNMPINDEX} |10425 |ZYXEL MES3500-10: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_10.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-10-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36311 |5 | |10426 |ZYXEL MES3500-24: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36312 |20 |.1.3.6.1.2.1.1.4.0 |10426 |ZYXEL MES3500-24: Contact |zyxel.3500_24.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36313 |20 |.1.3.6.1.4.1.890.1.5.8.68.12.7.0 |10426 |ZYXEL MES3500-24: CPU utilization |zyxel.3500_24.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36314 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.68.1] |10426 |ZYXEL MES3500-24: ZyNOS F/W Version |zyxel.3500_24.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36315 |20 |.1.3.6.1.2.1.1.6.0 |10426 |ZYXEL MES3500-24: Location |zyxel.3500_24.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36316 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10426 |ZYXEL MES3500-24: MAC address |zyxel.3500_24.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36317 |20 |.1.3.6.1.2.1.1.1.0 |10426 |ZYXEL MES3500-24: Hardware model name |zyxel.3500_24.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36318 |20 |.1.3.6.1.2.1.1.5.0 |10426 |ZYXEL MES3500-24: Host name |zyxel.3500_24.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36319 |20 |.1.3.6.1.4.1.890.1.5.8.68.1.10.0 |10426 |ZYXEL MES3500-24: Hardware serial number |zyxel.3500_24.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36320 |20 |.1.3.6.1.2.1.1.3.0 |10426 |ZYXEL MES3500-24: Uptime |zyxel.3500_24.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36321 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.68.124.1.1.2] |10426 |Memory pool discovery |zyxel.3500_24.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 |36322 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5] |10426 |Interface discovery |zyxel.3500_24.net.if.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 |36323 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.68.117.2.1.8] |10426 |SFP with DDM discovery |zyxel.3500_24.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36324 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2] |10426 |SFP without DDM discovery |zyxel.3500_24.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36325 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.68.9.2.1.5] |10426 |Temperature discovery |zyxel.3500_24.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36326 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.68.9.3.1.5] |10426 |Voltage discovery |zyxel.3500_24.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36327 |20 |.1.3.6.1.4.1.890.1.5.8.68.124.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.3500_24.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36328 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |207 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36329 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.3.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface description |zyxel.3500_24.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36330 |15 | |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36331 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36332 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36333 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36334 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36335 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Operational status |zyxel.3500_24.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |208 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36336 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link type |zyxel.3500_24.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |206 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36337 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Interface name |zyxel.3500_24.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36338 |15 | |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36339 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36340 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36341 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36342 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36343 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Link speed |zyxel.3500_24.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36344 |20 |.1.3.6.1.4.1.890.1.5.8.68.24.1.1.1.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |205 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36345 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.2.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36346 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.7.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Date code |zyxel.3500_24.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36347 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.4.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Part number |zyxel.3500_24.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36348 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.6.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Revision |zyxel.3500_24.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36349 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.5.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36350 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Status |zyxel.3500_24.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |209 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36351 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.8.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36352 |20 |.1.3.6.1.4.1.890.1.5.8.68.117.1.1.3.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36353 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.2.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3500_24.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36354 |20 |.1.3.6.1.4.1.890.1.5.8.68.9.3.1.2.{#SNMPINDEX} |10426 |ZYXEL MES3500-24: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3500_24.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MES3500-24-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36355 |5 | |10427 |ZYXEL MGS-3712: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36356 |20 |.1.3.6.1.2.1.1.4.0 |10427 |ZYXEL MGS-3712: Contact |zyxel.3712.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36357 |20 |.1.3.6.1.4.1.890.1.5.8.47.11.7.0 |10427 |ZYXEL MGS-3712: CPU utilization |zyxel.3712.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36358 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.47.1] |10427 |ZYXEL MGS-3712: ZyNOS F/W Version |zyxel.3712.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36359 |20 |.1.3.6.1.2.1.1.6.0 |10427 |ZYXEL MGS-3712: Location |zyxel.3712.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36360 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10427 |ZYXEL MGS-3712: MAC address |zyxel.3712.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36361 |20 |.1.3.6.1.2.1.1.1.0 |10427 |ZYXEL MGS-3712: Hardware model name |zyxel.3712.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36362 |20 |.1.3.6.1.2.1.1.5.0 |10427 |ZYXEL MGS-3712: Host name |zyxel.3712.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36363 |20 |.1.3.6.1.4.1.890.1.5.8.47.1.10.0 |10427 |ZYXEL MGS-3712: Hardware serial number |zyxel.3712.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36364 |20 |.1.3.6.1.2.1.1.3.0 |10427 |ZYXEL MGS-3712: Uptime |zyxel.3712.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36365 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.1.1.5] |10427 |Fan discovery |zyxel.3712.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36366 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5] |10427 |Interface discovery |zyxel.3712.net.if.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 |36367 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.47.117.2.1.8] |10427 |SFP with DDM discovery |zyxel.3712.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36368 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2] |10427 |SFP without DDM discovery |zyxel.3712.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36369 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.47.8.2.1.5] |10427 |Temperature discovery |zyxel.3712.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36370 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.47.8.3.1.5] |10427 |Voltage discovery |zyxel.3712.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36371 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.1.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Fan #{#SNMPINDEX} |zyxel.3712.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36372 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Administrative status |zyxel.3712.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |212 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36373 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.3.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface description |zyxel.3712.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36374 |15 | |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36375 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36376 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36377 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36378 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36379 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Operational status |zyxel.3712.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |213 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36380 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.5.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link type |zyxel.3712.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |211 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36381 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Interface name |zyxel.3712.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36382 |15 | |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36383 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36384 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36385 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36386 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36387 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Link speed |zyxel.3712.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36388 |20 |.1.3.6.1.4.1.890.1.5.8.47.22.1.1.1.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |210 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36389 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.2.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36390 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.7.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Date code |zyxel.3712.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36391 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.4.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Part number |zyxel.3712.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36392 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.6.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Revision |zyxel.3712.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36393 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.5.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Serial number |zyxel.3712.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36394 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Status |zyxel.3712.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |214 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36395 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.8.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Transceiver |zyxel.3712.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36396 |20 |.1.3.6.1.4.1.890.1.5.8.47.117.1.1.3.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: SFP {#SNMPINDEX}: Vendor |zyxel.3712.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36397 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.2.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36398 |20 |.1.3.6.1.4.1.890.1.5.8.47.8.3.1.2.{#SNMPINDEX} |10427 |ZYXEL MGS-3712: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36399 |5 | |10428 |ZYXEL MGS-3712F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36400 |20 |.1.3.6.1.2.1.1.4.0 |10428 |ZYXEL MGS-3712F: Contact |zyxel.3712f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36401 |20 |.1.3.6.1.4.1.890.1.5.8.48.11.7.0 |10428 |ZYXEL MGS-3712F: CPU utilization |zyxel.3712f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36402 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.48.1] |10428 |ZYXEL MGS-3712F: ZyNOS F/W Version |zyxel.3712f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36403 |20 |.1.3.6.1.2.1.1.6.0 |10428 |ZYXEL MGS-3712F: Location |zyxel.3712f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36404 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10428 |ZYXEL MGS-3712F: MAC address |zyxel.3712f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36405 |20 |.1.3.6.1.2.1.1.1.0 |10428 |ZYXEL MGS-3712F: Hardware model name |zyxel.3712f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36406 |20 |.1.3.6.1.2.1.1.5.0 |10428 |ZYXEL MGS-3712F: Host name |zyxel.3712f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36407 |20 |.1.3.6.1.4.1.890.1.5.8.48.1.10.0 |10428 |ZYXEL MGS-3712F: Hardware serial number |zyxel.3712f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36408 |20 |.1.3.6.1.2.1.1.3.0 |10428 |ZYXEL MGS-3712F: Uptime |zyxel.3712f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36409 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.1.1.5] |10428 |Fan discovery |zyxel.3712f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36410 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5] |10428 |Interface discovery |zyxel.3712f.net.if.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 |36411 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.48.117.2.1.8] |10428 |SFP with DDM discovery |zyxel.3712f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36412 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2] |10428 |SFP without DDM discovery |zyxel.3712f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36413 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.48.8.2.1.5] |10428 |Temperature discovery |zyxel.3712f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36414 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.48.8.3.1.5] |10428 |Voltage discovery |zyxel.3712f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36415 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.1.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Fan #{#SNMPINDEX} |zyxel.3712f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36416 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Administrative status |zyxel.3712f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |217 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36417 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.3.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface description |zyxel.3712f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36418 |15 | |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3712f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36419 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3712f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36420 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3712f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36421 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3712f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36422 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3712f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36423 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Operational status |zyxel.3712f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |218 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36424 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.5.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link type |zyxel.3712f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |216 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36425 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Interface name |zyxel.3712f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36426 |15 | |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming utilization |zyxel.3712f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3712f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36427 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3712f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36428 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming traffic |zyxel.3712f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36429 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3712f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36430 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3712f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36431 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Link speed |zyxel.3712f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36432 |20 |.1.3.6.1.4.1.890.1.5.8.48.22.1.1.1.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Port {#SNMPINDEX}: Speed Duplex |zyxel.3712f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |215 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36433 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.2.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3712f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36434 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.7.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Date code |zyxel.3712f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36435 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.4.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Part number |zyxel.3712f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36436 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.6.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Revision |zyxel.3712f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36437 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.5.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Serial number |zyxel.3712f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36438 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Status |zyxel.3712f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |219 | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36439 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.8.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Transceiver |zyxel.3712f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36440 |20 |.1.3.6.1.4.1.890.1.5.8.48.117.1.1.3.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: SFP {#SNMPINDEX}: Vendor |zyxel.3712f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36441 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.2.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.3712f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36442 |20 |.1.3.6.1.4.1.890.1.5.8.48.8.3.1.2.{#SNMPINDEX} |10428 |ZYXEL MGS-3712F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.3712f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-MGS3712F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36443 |5 | |10429 |ZYXEL MES3500-24S: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36444 |20 |.1.3.6.1.2.1.1.4.0 |10429 |ZYXEL MES3500-24S: Contact |zyxel.3500_24s.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36445 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10429 |ZYXEL MES3500-24S: CPU utilization |zyxel.3500_24s.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36446 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10429 |ZYXEL MES3500-24S: ZyNOS F/W Version |zyxel.3500_24s.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36447 |20 |.1.3.6.1.2.1.1.6.0 |10429 |ZYXEL MES3500-24S: Location |zyxel.3500_24s.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36448 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10429 |ZYXEL MES3500-24S: MAC address |zyxel.3500_24s.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36449 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10429 |ZYXEL MES3500-24S: Memory utilization |zyxel.3500_24s.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36450 |20 |.1.3.6.1.2.1.1.1.0 |10429 |ZYXEL MES3500-24S: Hardware model name |zyxel.3500_24s.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36451 |20 |.1.3.6.1.2.1.1.5.0 |10429 |ZYXEL MES3500-24S: Host name |zyxel.3500_24s.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36452 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10429 |ZYXEL MES3500-24S: Hardware serial number |zyxel.3500_24s.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36453 |20 |.1.3.6.1.2.1.1.3.0 |10429 |ZYXEL MES3500-24S: Uptime |zyxel.3500_24s.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36454 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10429 |Fan discovery |zyxel.3500_24s.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36455 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10429 |Interface discovery |zyxel.3500_24s.net.if.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 |36456 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10429 |SFP with DDM discovery |zyxel.3500_24s.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36457 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10429 |SFP without DDM discovery |zyxel.3500_24s.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36458 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10429 |Temperature discovery |zyxel.3500_24s.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36459 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10429 |Voltage discovery |zyxel.3500_24s.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36460 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3500_24s.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36461 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Administrative status |zyxel.3500_24s.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36462 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface description |zyxel.3500_24s.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36463 |15 | |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3500_24s.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36464 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3500_24s.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36465 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3500_24s.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36466 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3500_24s.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36467 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3500_24s.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36468 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Operational status |zyxel.3500_24s.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |223 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36469 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link type |zyxel.3500_24s.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |221 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36470 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Interface name |zyxel.3500_24s.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36471 |15 | |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming utilization |zyxel.3500_24s.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36472 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3500_24s.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36473 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming traffic |zyxel.3500_24s.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36474 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3500_24s.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36475 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3500_24s.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36476 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Link speed |zyxel.3500_24s.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36477 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Port {#SNMPINDEX}: Speed Duplex |zyxel.3500_24s.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36478 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3500_24s.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36479 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Date code |zyxel.3500_24s.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36480 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Part number |zyxel.3500_24s.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36481 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Revision |zyxel.3500_24s.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36482 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Serial number |zyxel.3500_24s.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36483 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Status |zyxel.3500_24s.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |224 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36484 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Transceiver |zyxel.3500_24s.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36485 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: SFP {#SNMPINDEX}: Vendor |zyxel.3500_24s.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36486 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3500_24s.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36487 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10429 |ZYXEL MES3500-24S: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3500_24s.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36488 |5 | |10430 |ZYXEL MGS3520-28x: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36489 |20 |.1.3.6.1.2.1.1.4.0 |10430 |ZYXEL MGS3520-28x: Contact |zyxel.3520_28.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36490 |20 |.1.3.6.1.4.1.890.1.15.3.2.4.0 |10430 |ZYXEL MGS3520-28x: CPU utilization |zyxel.3520_28.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36491 |20 |.1.3.6.1.4.1.890.1.15.3.1.6.0 |10430 |ZYXEL MGS3520-28x: ZyNOS F/W Version |zyxel.3520_28.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36492 |20 |.1.3.6.1.2.1.1.6.0 |10430 |ZYXEL MGS3520-28x: Location |zyxel.3520_28.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36493 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10430 |ZYXEL MGS3520-28x: MAC address |zyxel.3520_28.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36494 |20 |.1.3.6.1.4.1.890.1.15.3.2.5.0 |10430 |ZYXEL MGS3520-28x: Memory utilization |zyxel.3520_28.memusage |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Show device memory usage in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36495 |20 |.1.3.6.1.2.1.1.1.0 |10430 |ZYXEL MGS3520-28x: Hardware model name |zyxel.3520_28.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36496 |20 |.1.3.6.1.2.1.1.5.0 |10430 |ZYXEL MGS3520-28x: Host name |zyxel.3520_28.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36497 |20 |.1.3.6.1.4.1.890.1.15.3.1.12.0 |10430 |ZYXEL MGS3520-28x: Hardware serial number |zyxel.3520_28.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-ES-COMMON&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36498 |20 |.1.3.6.1.2.1.1.3.0 |10430 |ZYXEL MGS3520-28x: Uptime |zyxel.3520_28.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36499 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.6,{#ZYXEL.FAN.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.1.1.2] |10430 |Fan discovery |zyxel.3520_28.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36500 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2] |10430 |Interface discovery |zyxel.3520_28.net.if.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 |36501 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.4,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.5,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.84.1.2.1.7] |10430 |SFP with DDM discovery |zyxel.3520_28.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36502 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1] |10430 |SFP without DDM discovery |zyxel.3520_28.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36503 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.6,{#ZYXEL.TEMPDESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.2.1.2] |10430 |Temperature discovery |zyxel.3520_28.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36504 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.7,{#ZYXEL.DESCRIPTION},.1.3.6.1.4.1.890.1.15.3.26.1.3.1.2] |10430 |Voltage discovery |zyxel.3520_28.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36505 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: {#ZYXEL.FAN.DESCRIPTION} |zyxel.3520_28.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36506 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Administrative status |zyxel.3520_28.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |227 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36507 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface description |zyxel.3520_28.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Descriptive name that identifies this port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36508 |15 | |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing utilization |zyxel.3520_28.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36509 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.3520_28.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36510 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing traffic |zyxel.3520_28.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36511 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.3520_28.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36512 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.3520_28.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36513 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Operational status |zyxel.3520_28.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |228 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36514 |20 |.1.3.6.1.4.1.890.1.15.3.61.2.1.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link type |zyxel.3520_28.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |226 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;The entry shows the linkUp cable type (copper, fiber, xfp or cx4) for the combo ports. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36515 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Interface name |zyxel.3520_28.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36516 |15 | |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming utilization |zyxel.3520_28.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36517 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.3520_28.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36518 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming traffic |zyxel.3520_28.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36519 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.3520_28.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36520 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.3520_28.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36521 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Link speed |zyxel.3520_28.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36522 |20 |.1.3.6.1.4.1.890.1.15.3.61.1.1.1.1.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Port {#SNMPINDEX}: Speed Duplex |zyxel.3520_28.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |225 | | |0 | | | | |2 |NULL |MIB: ZYXEL-PORT-MIB&eol;Select The speed and the duplex mode of the Ethernet connection on this port. Selecting Auto &eol;(auto-negotiation) allows one port to negotiate with a peer port automatically to obtain the &eol;connection speed and duplex mode that both ends support. When auto-negotiation is turned on, &eol;a port on the Switch negotiates with the peer automatically to determine the connection speed &eol;and duplex mode. If the peer port does not support auto-negotiation or turns off this feature, &eol;the Switch determines the connection speed by detecting the signal on the cable and using half &eol;duplex mode. Thus requiring you to make sure that the settings of the peer port are the same in &eol;order to connect. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36523 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.2.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.3520_28.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36524 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.6.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Date code |zyxel.3520_28.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36525 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Part number |zyxel.3520_28.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36526 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.5.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Revision |zyxel.3520_28.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36527 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.4.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Serial number |zyxel.3520_28.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36528 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.1.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Status |zyxel.3520_28.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |229 | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36529 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.7.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Transceiver |zyxel.3520_28.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36530 |20 |.1.3.6.1.4.1.890.1.15.3.84.1.1.1.2.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: SFP {#SNMPINDEX}: Vendor |zyxel.3520_28.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-TRANSCEIVER-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36531 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.2.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Temperature "{#ZYXEL.TEMPDESCRIPTION}" |zyxel.3520_28.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36532 |20 |.1.3.6.1.4.1.890.1.15.3.26.1.3.1.3.{#SNMPINDEX} |10430 |ZYXEL MGS3520-28x: Nominal "{#ZYXEL.DESCRIPTION}" |zyxel.3520_28.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-HW-MONITOR-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36533 |5 | |10431 |ZYXEL XGS-4728F: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36534 |20 |.1.3.6.1.2.1.1.4.0 |10431 |ZYXEL XGS-4728F: Contact |zyxel.4728f.contact |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The textual identification of the contact person&eol;for this managed node, together with information&eol;on how to contact this person. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36535 |20 |.1.3.6.1.4.1.890.1.5.8.46.12.7.0 |10431 |ZYXEL XGS-4728F: CPU utilization |zyxel.4728f.cpuusage |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Show device CPU load in %, it's the snapshot of CPU load when &eol;getting the values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36536 |20 |discovery[{#SNMP.ARRAY},.1.3.6.1.4.1.890.1.5.8.46.1] |10431 |ZYXEL XGS-4728F: ZyNOS F/W Version |zyxel.4728f.fwversion |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB |17 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36537 |20 |.1.3.6.1.2.1.1.6.0 |10431 |ZYXEL XGS-4728F: Location |zyxel.4728f.location |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The physical location of this node (e.g.,&eol;`telephone closet, 3rd floor'). |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36538 |20 |.1.3.6.1.2.1.2.2.1.6.1 |10431 |ZYXEL XGS-4728F: MAC address |zyxel.4728f.mac |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: IF-MIB&eol;The interface's address at the protocol layer&eol;immediately `below' the network layer in the&eol;protocol stack. For interfaces which do not have&eol;such an address (e.g., a serial line), this object&eol;should contain an octet string of zero length. |12 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36539 |20 |.1.3.6.1.2.1.1.1.0 |10431 |ZYXEL XGS-4728F: Hardware model name |zyxel.4728f.model |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;A textual description of the entity. This value&eol;should include the full name and version&eol;identification of the system's hardware type,&eol;software operating-system, and networking&eol;software. It is mandatory that this only contain&eol;printable ASCII characters. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36540 |20 |.1.3.6.1.2.1.1.5.0 |10431 |ZYXEL XGS-4728F: Host name |zyxel.4728f.name |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;An administratively-assigned name for this&eol;managed node. By convention, this is the node's&eol;fully-qualified domain name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36541 |20 |.1.3.6.1.4.1.890.1.5.8.46.1.10.0 |10431 |ZYXEL XGS-4728F: Hardware serial number |zyxel.4728f.serialnumber |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36542 |20 |.1.3.6.1.2.1.1.3.0 |10431 |ZYXEL XGS-4728F: Uptime |zyxel.4728f.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: RFC1213-MIB&eol;The time (in hundredths of a second) since the&eol;network management portion of the system was last&eol;re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36543 |20 |discovery[{#ZYXEL.FANRPM.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.1.1.5] |10431 |Fan discovery |zyxel.4728f.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in fanRpmTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36544 |20 |discovery[{#ZYXEL.MEMORY.NAME},.1.3.6.1.4.1.890.1.5.8.46.124.1.1.2] |10431 |Memory pool discovery |zyxel.4728f.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 |36545 |20 |discovery[{#ZYXEL.IF.NAME},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3,{#ZYXEL.IF.LINKUPTYPE},.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5] |10431 |Interface discovery |zyxel.4728f.net.if.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 |36546 |20 |discovery[{#ZYXEL.SFP.WARN.MAX},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.5,{#ZYXEL.SFP.WARN.MIN},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.6,{#ZYXEL.SFP.DESCRIPTION},.1.3.6.1.4.1.890.1.5.8.46.117.2.1.8] |10431 |SFP with DDM discovery |zyxel.4728f.sfp.ddm.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP DDM module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36547 |20 |discovery[{#ZYXEL.SFP.STATUS},.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2] |10431 |SFP without DDM discovery |zyxel.4728f.sfp.discovery |12h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |SFP module discovery. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36548 |20 |discovery[{#ZYXEL.TEMP.THRESH.HIGH},.1.3.6.1.4.1.890.1.5.8.46.9.2.1.5] |10431 |Temperature discovery |zyxel.4728f.temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in tempTable.&eol;Index of temperature unit. 1:MAC, 2:CPU, 3:PHY |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36549 |20 |discovery[{#ZYXEL.VOLT.THRESH.LOW},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.6,{#ZYXEL.VOLT.NOMINAL},.1.3.6.1.4.1.890.1.5.8.46.9.3.1.5] |10431 |Voltage discovery |zyxel.4728f.volt.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |An entry in voltageTable. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36550 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.1.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Fan #{#SNMPINDEX} |zyxel.4728f.fan[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |!rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Current speed in Revolutions Per Minute (RPM) on the fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36551 |20 |.1.3.6.1.4.1.890.1.5.8.46.124.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Memory "{#ZYXEL.MEMORY.NAME}" utilization |zyxel.4728f.memory[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Utilization of memory pool in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36552 |20 |.1.3.6.1.2.1.2.2.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Administrative status |zyxel.4728f.net.if.adminstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |232 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The desired state of the interface. The&eol;testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36553 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.3.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface description |zyxel.4728f.net.if.name[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36554 |15 | |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing utilization |zyxel.4728f.net.if.out.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36555 |20 |.1.3.6.1.2.1.31.1.1.1.11.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing unicast packages |zyxel.4728f.net.if.out.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were not addressed to a&eol;multicast or broadcast address at this sub-layer, including&eol;those that were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36556 |20 |.1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing traffic |zyxel.4728f.net.if.out.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the&eol;interface, including framing characters. This object is a&eol;64-bit version of ifOutOctets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36557 |20 |.1.3.6.1.2.1.31.1.1.1.12.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing multicast packages |zyxel.4728f.net.if.out.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;multicast address at this sub-layer, including those that&eol;were discarded or not sent. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36558 |20 |.1.3.6.1.2.1.31.1.1.1.13.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Outgoing broadcast packages |zyxel.4728f.net.if.out.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of packets that higher-level protocols&eol;requested be transmitted, and which were addressed to a&eol;broadcast address at this sub-layer, including those that&eol;were discarded or not sent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36559 |20 |.1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Operational status |zyxel.4728f.net.if.operstatus[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |233 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;The testing(3) state indicates that no operational&eol;packets can be passed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36560 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link type |zyxel.4728f.net.if.link_type[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |231 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Physical connection type |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36561 |20 |.1.3.6.1.2.1.2.2.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Interface name |zyxel.4728f.net.if.descr[{#SNMPINDEX}] |1m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;A textual string containing information about the interface |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36562 |15 | |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming utilization |zyxel.4728f.net.if.in.util[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}]) * (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) <> 0) / &bsn;( last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) + (last(zyxel.4728f.net.if.highspeed[{#SNMPINDEX}]) = 0) ) * 100 | |0 | | | | |2 |NULL |Interface utilization percentage |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36563 |20 |.1.3.6.1.2.1.31.1.1.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming unicast packages |zyxel.4728f.net.if.in.ucastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were not addressed to a multicast&eol;or broadcast address at this sub-layer |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36564 |20 |.1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming traffic |zyxel.4728f.net.if.in.traffic[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface,&eol;including framing characters. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36565 |20 |.1.3.6.1.2.1.31.1.1.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming multicast packages |zyxel.4728f.net.if.in.multicastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a multicast&eol;address at this sub-layer. For a MAC layer protocol, this&eol;includes both Group and Functional addresses. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36566 |20 |.1.3.6.1.2.1.31.1.1.1.9.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Incoming broadcast packages |zyxel.4728f.net.if.in.broadcastpkts[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |packets/s | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of packets, delivered by this sub-layer to a&eol;higher (sub-)layer, which were addressed to a broadcast&eol;address at this sub-layer. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36567 |20 |.1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Link speed |zyxel.4728f.net.if.highspeed[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in bits per second |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36568 |20 |.1.3.6.1.4.1.890.1.5.8.46.23.1.1.1.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Port {#SNMPINDEX}: Speed Duplex |zyxel.4728f.net.if.speed_duplex[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |230 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transmission mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36569 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.2.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#ZYXEL.SFP.PORT}: {#ZYXEL.SFP.DESCRIPTION} |zyxel.4728f.sfp.ddm[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |0 | |!{#ZYXEL.SFP.UNIT}| | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module DDM data ({#ZYXEL.SFP.DESCRIPTION}). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36570 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.7.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Date code |zyxel.4728f.sfp.datecode[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor's manufacturing date code. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36571 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.4.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Part number |zyxel.4728f.sfp.part[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36572 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.6.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Revision |zyxel.4728f.sfp.revision[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Revision level for part number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36573 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.5.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Serial number |zyxel.4728f.sfp.serialnumber[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Serial number provided by transceiver module vendor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36574 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Status |zyxel.4728f.sfp.status[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |365d |0 |3 | | | | |NULL |234 | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36575 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.8.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Transceiver |zyxel.4728f.sfp.transceiver[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module type names. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36576 |20 |.1.3.6.1.4.1.890.1.5.8.46.117.1.1.3.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: SFP {#SNMPINDEX}: Vendor |zyxel.4728f.sfp.vendor[{#SNMPINDEX}] |{$ZYXEL.LLD.SFP.UPDATE} |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;Transceiver module vendor name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36577 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.2.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Temperature "{#ZYXEL.TEMP.ID}" |zyxel.4728f.temp[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current temperature measured at this sensor |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36578 |20 |.1.3.6.1.4.1.890.1.5.8.46.9.3.1.2.{#SNMPINDEX} |10431 |ZYXEL XGS-4728F: Nominal "{#ZYXEL.VOLT.NOMINAL}" |zyxel.4728f.volt[{#SNMPINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ZYXEL-XGS4728F-MIB&eol;The current voltage reading. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36579 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36583 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFGUID}",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 |36584 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFGUID}",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 |36585 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFGUID}"] |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 |36586 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",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 |36587 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",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 |36588 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |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 |36601 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus,GUID from win32_networkadapter where PhysicalAdapter=True and NetConnectionStatus>0"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Raw data of win32_networkadapter. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36605 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFGUID}",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 |36606 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFGUID}",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 |36607 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFGUID}"] |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 |36608 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFGUID}",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 |36609 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFGUID}",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 |36610 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |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 |36626 |20 |1.3.6.1.4.1.3375.2.1.14.1.1.0 |10415 |F5 BIG-IP: Sync Status |bigip.syncstatus |1m |7d |365d |0 |3 | | | | |NULL |254 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The sync status ID on the system.&eol;unknown - the device is disconnected from the device group;&eol;syncing - the device is joining the device group or has requested changes from device group or inconsistent with the group;&eol;needManualSync - changes have been made on the device not syncd to the device group;&eol;inSync - the device is consistent with the device group;&eol;syncFailed - the device is inconsistent with the device group, requires user intervention;&eol;syncDisconnected - the device is not connected to any peers;&eol;standalone - the device is in a standalone configuration;&eol;awaitingInitialSync - the device is waiting for initial sync;&eol;incompatibleVersion - the device's version is incompatible with rest of the devices in the device group;&eol;partialSync - some but not all devices successfully received the last sync. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36627 |20 |1.3.6.1.4.1.3375.2.1.14.3.1.0 |10415 |F5 BIG-IP: Failover status |bigip.failover |1m |7d |365d |0 |3 | | | | |NULL |253 | | |0 | | | | |0 |NULL |MIB: F5-BIGIP-SYSTEM-MIB&eol;The failover status ID on the system.&eol;unknown - the failover status of the device is unknown;&eol;offline - the device is offline;&eol;forcedOffline - the device is forced offline;&eol;standby - the device is standby;&eol;active - the device is active. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36628 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.2.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status available |bigip.pool.available[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |252 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;none(0),&eol;green(1),&eol;tyellow(2),&eol;tred(3),&eol;tblue(4),&eol;tgrey(5) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36629 |20 |1.3.6.1.4.1.3375.2.2.5.5.2.1.3.{#SNMPINDEX} |10415 |F5 BIG-IP: Pool [{#POOL.NAME}]: Status enabled |bigip.pool.enabled[{#POOL.NAME}] |5m |7d |365d |0 |3 | | | | |NULL |251 | | |0 | | | | |2 |NULL |MIB: F5-BIGIP-LOCAL-MIB&eol;The activity status of the specified pool, as specified by the user.&eol;none(0),&eol;enabled(1),&eol;disabled(2),&eol;disabledbyparent(3) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36630 |0 | |10289 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |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 based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36632 |7 | |10296 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |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 based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36705 |15 | |10433 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pgsql.dbstat.sum.blks_hit.rate") * 100 / (last("pgsql.dbstat.sum.blks_hit.rate") + last("pgsql.dbstat.sum.blks_read.rate")) | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36706 |0 | |10433 |Replication: Standby count |pgsql.replication.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36707 |0 | |10433 |PostgreSQL: Get connections |pgsql.connections["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36708 |0 | |10433 |PostgreSQL: Custom queries |pgsql.custom.query["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DATABASE}",""] |1m |1h |0 |1 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Execute custom queries from file *.sql (check for option Plugins.Postgres.CustomQueriesPath at agent configuration) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36709 |0 | |10433 |PostgreSQL: Get dbstat sum |pgsql.dbstat.sum["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36710 |0 | |10433 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36711 |0 | |10433 |PostgreSQL: Get locks |pgsql.locks["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |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 |36712 |0 | |10433 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |https://www.postgresql.org/docs/12/monitoring-stats.html#PG-STAT-BGWRITER-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36713 |0 | |10433 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Age of oldest xid. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36714 |0 | |10433 |PostgreSQL: Ping |pgsql.ping["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36715 |0 | |10433 |Replication: Lag in bytes |pgsql.replication.lag.b["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in byte. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36716 |0 | |10433 |Replication: Lag in seconds |pgsql.replication.lag.sec["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36717 |0 | |10433 |PostgreSQL: Get replication |pgsql.replication.process["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics from the pg_stat_replication, which contains information about the WAL sender process, showing statistics about replication to that sender's connected standby server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36718 |0 | |10433 |Replication: Recovery role |pgsql.replication.recovery_role["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36719 |0 | |10433 |Replication: Status |pgsql.replication.status["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36720 |0 | |10433 |PostgreSQL: Uptime |pgsql.uptime["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36721 |0 | |10433 |Autovacuum: Count of autovacuum workers |pgsql.autovacuum.count["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of autovacuum workers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36722 |0 | |10433 |PostgreSQL: Get archive |pgsql.archive["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect archive status metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36723 |0 | |10433 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36768 |0 | |10433 |Database discovery |pgsql.db.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |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 |36769 |0 | |10433 |Replication Discovery |pgsql.replication.process.discovery["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}"] |15m |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 |36770 |0 | |10433 |DB {#DBNAME}: Database age |pgsql.db.age["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |10m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database age |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36771 |0 | |10433 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |5m |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 |36772 |0 | |10433 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36802 |3 | |10434 |PFSense: ICMP ping |icmpping |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Host accessibility by ICMP.&eol;0 - ICMP ping fails.&eol;1 - ICMP ping successful. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36803 |20 |1.3.6.1.4.1.2021.4.4.0 |10434 |PFSense: Free swap space |system.swap.free |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 |36804 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10434 |PFSense: Load average (5m avg) |system.cpu.load.avg5 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 5 minutes load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36805 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.25.3.3.1.1] |10434 |PFSense: Number of CPUs |system.cpu.num |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 |36806 |20 |1.3.6.1.4.1.2021.11.60.0 |10434 |PFSense: Context switches per second |system.cpu.switches |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Number of context switches |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36807 |20 |1.3.6.1.2.1.1.1.0 |10434 |PFSense: System description |system.descr |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36808 |20 |1.3.6.1.2.1.1.6.0 |10434 |PFSense: System location |system.location |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node. 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 |36809 |20 |1.3.6.1.2.1.1.5.0 |10434 |PFSense: System name |system.name |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36810 |20 |1.3.6.1.2.1.1.2.0 |10434 |PFSense: System object ID |system.objectid |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor 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. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36811 |15 | |10434 |PFSense: Free swap space in % |system.swap.pfree |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("system.swap.free")/last("system.swap.total")*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 |36812 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10434 |PFSense: Load average (1m avg) |system.cpu.load.avg1 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 1 minute load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36813 |20 |1.3.6.1.4.1.2021.4.3.0 |10434 |PFSense: Total swap space |system.swap.total |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 |36814 |20 |1.3.6.1.2.1.25.1.1.0 |10434 |PFSense: Uptime |system.uptime |30s |7d |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;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 |36815 |15 | |10434 |PFSense: Available memory |vm.memory.available |1m |7d |365d |0 |3 | |B | | |NULL |NULL |last("vm.memory.free")+last("vm.memory.buffers")+last("vm.memory.cached") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36816 |20 |1.3.6.1.4.1.2021.4.14.0 |10434 |PFSense: Memory (buffers) |vm.memory.buffers |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of real or virtual memory currently allocated for use as memory buffers. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36817 |20 |1.3.6.1.4.1.2021.4.15.0 |10434 |PFSense: Memory (cached) |vm.memory.cached |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of real or virtual memory currently allocated for use as cached memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36818 |20 |1.3.6.1.4.1.2021.4.6.0 |10434 |PFSense: Free memory |vm.memory.free |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of real/physical memory currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36819 |20 |1.3.6.1.4.1.2021.4.5.0 |10434 |PFSense: Total memory |vm.memory.total |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 |36820 |15 | |10434 |PFSense: Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |NULL |NULL |(last("vm.memory.total")-(last("vm.memory.free")+last("vm.memory.buffers")+last("vm.memory.cached")))/last("vm.memory.total")*100 | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36821 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10434 |PFSense: Load average (15m avg) |system.cpu.load.avg15 |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The 15 minutes load averages. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36822 |20 |1.3.6.1.4.1.2021.11.59.0 |10434 |PFSense: Interrupts per second |system.cpu.intr |1m |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Number of interrupts processed |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36823 |3 | |10434 |PFSense: ICMP loss |icmppingloss |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of lost packets. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36824 |20 |1.3.6.1.4.1.12325.1.200.1.2.5.0 |10434 |PFSense: Normalized packets |pfsense.packets.normalize |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36825 |3 | |10434 |PFSense: ICMP response time |icmppingsec |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |ICMP ping response time (in seconds). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36826 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","dhcpd"] |10434 |PFSense: DHCP server status |pfsense.dhcpd.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of DHCP server process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36827 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","unbound"] |10434 |PFSense: DNS server status |pfsense.dns.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of DNS server process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36828 |20 |.1.3.6.1.2.1.25.4.2.1.7["index",".1.3.6.1.2.1.25.4.2.1.2","nginx"] |10434 |PFSense: State of nginx process |pfsense.nginx.status |1m |7d |365d |0 |3 | | | | |NULL |256 | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The status of nginx process. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36829 |20 |1.3.6.1.4.1.12325.1.200.1.2.2.0 |10434 |PFSense: Packets with bad offset |pfsense.packets.bad.offset |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36830 |20 |1.3.6.1.4.1.12325.1.200.1.2.3.0 |10434 |PFSense: Fragmented packets |pfsense.packets.fragment |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36831 |20 |1.3.6.1.4.1.12325.1.200.1.2.1.0 |10434 |PFSense: Packets matched a filter rule |pfsense.packets.match |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36832 |20 |1.3.6.1.4.1.12325.1.200.1.2.6.0 |10434 |PFSense: Packets dropped due to memory limitation |pfsense.packets.mem.drop |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36833 |20 |1.3.6.1.4.1.12325.1.200.1.2.4.0 |10434 |PFSense: Short packets |pfsense.packets.short |1m |7d |365d |0 |0 | |pps | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if the packet was logged with the specified packet filter reason code. The known codes are: match, bad-offset, fragment, short, normalize, and memory |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36834 |20 |1.3.6.1.2.1.1.4.0 |10434 |PFSense: System contact details |system.contact |15m |7d |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 |36835 |20 |1.3.6.1.4.1.12325.1.200.1.1.1.0 |10434 |PFSense: Packet filter running status |pfsense.pf.status |1m |7d |365d |0 |3 | | | | |NULL |257 | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;True if packet filter is currently enabled |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36836 |20 |.1.3.6.1.4.1.12325.1.200.1.11.1.0 |10434 |PFSense: Firewall rules count |pfsense.rules.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;The number of labeled filter rules on this system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36837 |20 |1.3.6.1.4.1.12325.1.200.1.4.1.0 |10434 |PFSense: Source tracking table current |pfsense.source.tracking.table.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Number of entries in the source tracking table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36838 |20 |1.3.6.1.4.1.12325.1.200.1.5.2.0 |10434 |PFSense: Source tracking table limit |pfsense.source.tracking.table.limit |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Maximum number of 'sticky-address' or 'source-track' rules in the ruleset. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36839 |15 | |10434 |PFSense: Source tracking table utilization in % |pfsense.source.tracking.table.pused |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pfsense.source.tracking.table.count") * 100 / last("pfsense.source.tracking.table.limit") | |0 | | | | |0 |NULL |Utilization of source tracking table in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36840 |20 |1.3.6.1.4.1.12325.1.200.1.3.1.0 |10434 |PFSense: States table current |pfsense.state.table.count |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Number of entries in the state table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36841 |20 |1.3.6.1.4.1.12325.1.200.1.5.1.0 |10434 |PFSense: States table limit |pfsense.state.table.limit |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: BEGEMOT-PF-MIB&eol;Maximum number of 'keep state' rules in the ruleset. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36842 |15 | |10434 |PFSense: States table utilization in % |pfsense.state.table.pused |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last("pfsense.state.table.count") * 100 / last("pfsense.state.table.limit") | |0 | | | | |0 |NULL |Utilization of state table in %. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36843 |5 | |10434 |PFSense: SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL |Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.&eol;Possible value:&eol;0 - not available&eol;1 - available&eol;2 - unknown |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36845 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3] |10434 |Network 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 |36846 |20 |discovery[{#DEVNAME},1.3.6.1.4.1.2021.13.15.1.1.2] |10434 |Block devices discovery |vfs.dev.discovery |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 |36847 |20 |discovery[{#FSNAME},.1.3.6.1.2.1.25.3.8.1.2,{#FSTYPE},.1.3.6.1.2.1.25.3.8.1.4] |10434 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrFS discovery with filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36848 |20 |1.3.6.1.4.1.2021.11.11.0 |10434 |PFSense: CPU idle time |system.cpu.idle[{#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 |36849 |20 |1.3.6.1.4.1.2021.11.56.0 |10434 |PFSense: CPU interrupt time |system.cpu.interrupt[{#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 |36850 |20 |1.3.6.1.4.1.2021.11.54.0 |10434 |PFSense: CPU iowait time |system.cpu.iowait[{#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 |36851 |20 |1.3.6.1.4.1.2021.11.51.0 |10434 |PFSense: CPU nice time |system.cpu.nice[{#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 |36852 |20 |1.3.6.1.4.1.2021.11.52.0 |10434 |PFSense: CPU system time |system.cpu.system[{#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 |36853 |20 |1.3.6.1.4.1.2021.11.50.0 |10434 |PFSense: CPU user time |system.cpu.user[{#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 |36854 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.8["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic blocked |net.if.in.block.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36855 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.22["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets blocked |net.if.out.block.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36856 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Operational status |net.if.status[{#SNMPINDEX}] |1m |7d |365d |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 |36857 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Speed |net.if.speed[{#SNMPINDEX}] |1m |7d |365d |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 |36858 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.6["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Rules references count |net.if.rules.refs[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of rules referencing this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36859 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits sent |net.if.out[{#SNMPINDEX}] |1m |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 |36860 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.21["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 packets passed |net.if.out.pass.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36861 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.17["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic passed |net.if.out.pass.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36862 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.13["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets passed |net.if.out.pass.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36863 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.9["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic passed |net.if.out.pass.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second passed going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36864 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets with errors |net.if.out.errors[{#SNMPINDEX}] |1m |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 |36865 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound packets discarded |net.if.out.discards[{#SNMPINDEX}] |1m |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 |36866 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.18["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv6 traffic blocked |net.if.out.block.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36867 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.12["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets blocked |net.if.in.block.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36868 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.14["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 packets blocked |net.if.out.block.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36869 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.10["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Outbound IPv4 traffic blocked |net.if.out.block.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second blocked going out on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36870 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Bits received |net.if.in[{#SNMPINDEX}] |1m |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 |36871 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.19["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets passed |net.if.in.pass.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36872 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.15["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic passed |net.if.in.pass.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36873 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.11["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 packets passed |net.if.in.pass.v4.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv4 packets passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36874 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.7["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv4 traffic passed |net.if.in.pass.v4.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv4 bits per second passed coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36875 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |36876 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |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 |36877 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.20["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 packets blocked |net.if.in.block.v6.pps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |pps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;The number of IPv6 packets blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36878 |20 |.1.3.6.1.4.1.12325.1.200.1.8.2.1.16["index",".1.3.6.1.4.1.12325.1.200.1.8.2.1.2","{#IFDESCR}"] |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Inbound IPv6 traffic blocked |net.if.in.block.v6.bps[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |BEGEMOT-PF-MIB&eol;IPv6 bits per second blocked coming in on this interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36879 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10434 |PFSense: Interface [{#IFNAME}({#IFALIAS})]: Interface type |net.if.type[{#SNMPINDEX}] |1m |7d |365d |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 |36880 |20 |1.3.6.1.4.1.2021.13.15.1.1.5.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk read rate |vfs.dev.read.rate[{#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 |36881 |20 |1.3.6.1.4.1.2021.13.15.1.1.9.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk utilization |vfs.dev.util[{#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 |36882 |20 |1.3.6.1.4.1.2021.13.15.1.1.6.{#SNMPINDEX} |10434 |PFSense: [{#DEVNAME}]: Disk write rate |vfs.dev.write.rate[{#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 |36883 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Free inodes in % |vfs.fs.inode.pfree[{#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 |36884 |20 |1.3.6.1.4.1.2021.9.1.9["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Space utilization |vfs.fs.pused[{#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 |36885 |20 |1.3.6.1.4.1.2021.9.1.6["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Total space |vfs.fs.total[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |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 |36886 |20 |1.3.6.1.4.1.2021.9.1.8["index","1.3.6.1.4.1.2021.9.1.2","{#FSNAME}"] |10434 |PFSense: [{#FSNAME}]: Used space |vfs.fs.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |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 |36888 |3 | |10175 |VMware: Hypervisor ping |icmpping[] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Checks if the hypervisor is running and accepting ICMP pings. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36889 |5 | |10048 |Zabbix proxy: Required performance |zabbix[requiredperformance] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Required performance of Zabbix proxy, in new values per second expected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36890 |5 | |10048 |Zabbix proxy: Uptime |zabbix[uptime] |1m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zabbix proxy process in seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36891 |5 | |10048 |Zabbix proxy: Version |zabbix[version] |1m |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36892 |5 | |10048 |Zabbix proxy: Values waiting to be sent |zabbix[proxy_history] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of values in the proxy history table waiting to be sent to the server. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36893 |5 | |10262 |Remote Zabbix proxy: Zabbix stats |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT}] |1m |0d |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 |36894 |5 | |10262 |Remote Zabbix proxy: Zabbix stats queue |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 6 seconds. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36895 |5 | |10262 |Remote Zabbix proxy: Zabbix stats queue over 10m |zabbix[stats,{$ZABBIX.PROXY.ADDRESS},{$ZABBIX.PROXY.PORT},queue,10m] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of monitored items in the queue which are delayed at least by 10 minutes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36934 |0 | |10432 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36935 |0 | |10432 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36936 |0 | |10432 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$PG.DB}"] |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 |36937 |0 | |10432 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.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 |36938 |0 | |10432 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36939 |0 | |10432 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36940 |0 | |10432 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36941 |0 | |10432 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36942 |0 | |10432 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36943 |0 | |10432 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36944 |0 | |10432 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36945 |0 | |10432 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36946 |0 | |10432 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36947 |0 | |10432 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36948 |0 | |10432 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36949 |0 | |10432 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36950 |0 | |10432 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36974 |0 | |10432 |Database discovery |pgsql.discovery.db["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36975 |0 | |10432 |DB {#DBNAME}: Database size |pgsql.db.size["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{$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 |36976 |0 | |10432 |DB {#DBNAME}: Get frozen XID |pgsql.frozenxid["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#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 |36977 |0 | |10432 |DB {#DBNAME}: Get scans |pgsql.scans["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.PASSWORD}","{#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 |37006 |0 | |10358 |RabbitMQ: Get overview |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37007 |0 | |10358 |RabbitMQ: Get exchanges |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/exchanges"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns exchanges metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37008 |0 | |10359 |RabbitMQ: Service response time |net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{$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 |37009 |0 | |10359 |RabbitMQ: Service ping |net.tcp.service["{$RABBITMQ.API.SCHEME}","{$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 |37010 |0 | |10359 |RabbitMQ: Get node overview |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/overview"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns cluster-wide metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37011 |0 | |10359 |RabbitMQ: Get nodes |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/nodes/{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME}?memory=true"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns nodes metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37012 |0 | |10359 |RabbitMQ: Get queues |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/queues"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The HTTP API endpoint that returns queues metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37057 |0 | |10358 |RabbitMQ: Healthcheck: alarms in effect in the cluster{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.CLUSTER_HOST}:{$RABBITMQ.API.PORT}/api/health/checks/alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no alarms in effect in the cluster, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s |{$RABBITMQ.API.SCHEME}://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/health/checks/alarms | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37058 |0 | |10359 |RabbitMQ: Healthcheck: expiration date on the certificates{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/certificate-expiration/1/months{#SINGLETON}"]|1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks the expiration date on the certificates for every listener configured to use TLS. Responds a 200 OK if all certificates are valid (have not expired), otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37059 |0 | |10359 |RabbitMQ: Healthcheck: local alarms in effect on the this node{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/local-alarms{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if there are no local alarms in effect on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37060 |0 | |10359 |RabbitMQ: Healthcheck: classic mirrored queues without synchronized mirrors online{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-mirror-sync-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronized mirrors online (queues that would potentially lose data if the target node is shut down). Responds a 200 OK if there are no such classic mirrored queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37061 |0 | |10359 |RabbitMQ: Healthcheck: queues with minimum online quorum{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/node-is-quorum-critical{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are quorum queues with minimum online quorum (queues that would lose their quorum and availability if the target node is shut down). Responds a 200 OK if there are no such quorum queues, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37062 |0 | |10359 |RabbitMQ: Healthcheck: virtual hosts on the this node{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/health/checks/virtual-hosts{#SINGLETON}"] |1m |7d |365d |0 |3 | | | | |NULL |82 | | |1 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Responds a 200 OK if all virtual hosts and running on the target node, otherwise responds with a 503 Service Unavailable. |0 |30d |0 | |NULL |3s | | | |200,503,404 |1 |0 | |1 |0 |0 |0 |0 |0 |0 |
+ROW |37063 |0 | |10359 |RabbitMQ: Healthcheck{#SINGLETON} |web.page.get["{$RABBITMQ.API.SCHEME}://{$RABBITMQ.API.USER}:{$RABBITMQ.API.PASSWORD}@{$RABBITMQ.API.HOST}:{$RABBITMQ.API.PORT}/api/healthchecks/node{#SINGLETON}"] |1m |7h |365d |0 |3 | | | | |NULL |82 | | |0 | | | | |2 |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 |37098 |3 | |10361 |RabbitMQ: Service response time |net.tcp.service.perf["{$RABBITMQ.API.SCHEME}","{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 |37099 |3 | |10361 |RabbitMQ: Service ping |net.tcp.service["{$RABBITMQ.API.SCHEME}","{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 |37100 |3 | |10175 |VMware: Get sensors |vmware.hv.sensors.get[{$VMWARE.URL},{HOST.HOST}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 |{$VMWARE.USERNAME} |{$VMWARE.PASSWORD} | | |0 |NULL |Master item for sensors data. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37103 |0 | |10276 |Interface {#IFNAME}: Speed |vfs.file.contents["/sys/class/net/{#IFNAME}/speed"] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.&eol;This attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).&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 |37106 |7 | |10282 |Interface {#IFNAME}: Speed |vfs.file.contents["/sys/class/net/{#IFNAME}/speed"] |5m |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.&eol;This attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).&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 |
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|discover|
-ROW |28306 |18 | |10254 |Temperature discovery |temp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28307 |18 | |10254 |Fan discovery |fan.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28542 |18 | |10261 |Remote Zabbix server: History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28543 |18 | |10261 |Remote Zabbix server: Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28544 |18 | |10261 |Remote Zabbix server: Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix value cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28545 |18 | |10261 |Remote Zabbix server: Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache) |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28546 |18 | |10261 |Remote Zabbix server: Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database) |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28547 |18 | |10261 |Remote Zabbix server: Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL |Value cache operating mode |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28548 |18 | |10261 |Remote Zabbix server: VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28549 |18 | |10261 |Remote Zabbix server: History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28550 |18 | |10261 |Remote Zabbix server: Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28551 |18 | |10261 |Remote Zabbix server: Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used trend buffer.&eol;Trend cache stores aggregate for the current hour for all items that receive data. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28552 |18 | |10261 |Remote Zabbix server: Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28553 |18 | |10261 |Remote Zabbix server: Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28554 |18 | |10261 |Remote Zabbix server: Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28555 |18 | |10261 |Remote Zabbix server: Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28556 |18 | |10261 |Remote Zabbix server: Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28557 |18 | |10261 |Remote Zabbix server: Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28558 |18 | |10261 |Remote Zabbix server: Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28559 |18 | |10261 |Remote Zabbix server: Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28560 |18 | |10261 |Remote Zabbix server: 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 |Remote Zabbix server: Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alerter processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28562 |18 | |10261 |Remote Zabbix server: Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28563 |18 | |10261 |Remote Zabbix server: Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28564 |18 | |10261 |Remote Zabbix server: Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28565 |18 | |10261 |Remote Zabbix server: Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28566 |18 | |10261 |Remote Zabbix server: Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time escalator processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28567 |18 | |10261 |Remote Zabbix server: Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28568 |18 | |10261 |Remote Zabbix server: Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28569 |18 | |10261 |Remote Zabbix server: Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28570 |18 | |10261 |Remote Zabbix server: Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28571 |18 | |10261 |Remote Zabbix server: Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28572 |18 | |10261 |Remote Zabbix server: Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time timer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28573 |18 | |10261 |Remote Zabbix server: Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28574 |18 | |10261 |Remote Zabbix server: Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28575 |18 | |10261 |Remote Zabbix server: Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28576 |18 | |10261 |Remote Zabbix server: Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28577 |18 | |10261 |Remote Zabbix server: Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time proxy poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28578 |18 | |10261 |Remote Zabbix server: Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28579 |18 | |10261 |Remote Zabbix server: Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28580 |18 | |10261 |Remote Zabbix server: Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28581 |18 | |10261 |Remote Zabbix server: Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28582 |18 | |10261 |Remote Zabbix server: Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28583 |18 | |10261 |Remote Zabbix server: Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28584 |18 | |10261 |Remote Zabbix server: LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |28539 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |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 |Remote Zabbix server: Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |28539 |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 |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 |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 |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 |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 |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 |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 |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |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 |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 start. |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 |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 |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 amount 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 |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 |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 |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 has 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 |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 |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |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 |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 |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |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 |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 |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 |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |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 |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 start. |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 |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 |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 |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 |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 |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 |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 has 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 |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 amount of seconds that the server has been up. |0 |30d |0 | |30479 |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 amount of seconds the slave SQL thread has been 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 a 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 |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 |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 |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 |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |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 |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 start. |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 |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 |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 amount 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 |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 |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 |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 has 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 |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 |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |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 |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 |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 a 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 |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 |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 |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 |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 |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 |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 |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 background 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 background 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 background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&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 |30897 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30898 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30899 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30900 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30901 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30902 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30903 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30904 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30905 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30906 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30907 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30908 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30909 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30910 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30911 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30912 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30913 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30914 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30915 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30916 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30917 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30918 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30919 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30920 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30921 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30922 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30927 |18 | |10324 |Etcd: Open file descriptors |etcd.open.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30928 |18 | |10324 |Etcd: Proposals applied per second |etcd.proposals.applied.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals applied. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30929 |18 | |10324 |Etcd: Proposals committed per second |etcd.proposals.committed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals committed. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30930 |18 | |10324 |Etcd: Proposals failed per second |etcd.proposals.failed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed proposals seen. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30931 |18 | |10324 |Etcd: Proposals pending |etcd.proposals.pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of pending proposals to commit. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30932 |18 | |10324 |Etcd: PUT per second |etcd.put.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of puts seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30933 |18 | |10324 |Etcd: Range per second |etcd.range.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of ranges seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30934 |18 | |10324 |Etcd: Reads per second |etcd.reads.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of reads action by (get/getRecursive), local to this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30935 |18 | |10324 |Etcd: Client gRPC received bytes per second |etcd.network.grpc.received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30936 |18 | |10324 |Etcd: Resident memory |etcd.res.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30937 |18 | |10324 |Etcd: Server version |etcd.server.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd server. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30938 |18 | |10324 |Etcd: Transaction per second |etcd.txn.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of transactions seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30939 |18 | |10324 |Etcd: Uptime |etcd.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Etcd server uptime. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30940 |18 | |10324 |Etcd: Virtual memory |etcd.virtual.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30941 |18 | |10324 |Etcd: Writes per second |etcd.writes.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of writes (e.g. set/compareAndDelete) seen by this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30942 |18 | |10324 |Etcd: Client gRPC sent bytes per second |etcd.network.grpc.sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30943 |18 | |10324 |Etcd: Cluster version |etcd.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd cluster. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30944 |18 | |10324 |Etcd: Maximum open file descriptors |etcd.max.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Maximum number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30945 |18 | |10324 |Etcd: Server has a leader |etcd.has.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not a leader exists. 1 is existence, 0 is not. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30946 |18 | |10324 |Etcd: DB size |etcd.db.size |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of the underlying database. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30947 |18 | |10324 |Etcd: Deletes per second |etcd.delete.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of deletes seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30948 |18 | |10324 |Etcd: Pending events |etcd.events.sent.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pending events to be sent. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30949 |18 | |10324 |Etcd: RPCs received per second |etcd.grpc.received.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPC stream messages received on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30950 |18 | |10324 |Etcd: RPCs sent per second |etcd.grpc.sent.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of gRPC stream messages sent by the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30951 |18 | |10324 |Etcd: RPCs started per second |etcd.grpc.started.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPCs started on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30952 |18 | |10324 |Etcd: HTTP 4XX |etcd.http.requests.4xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 4XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30953 |18 | |10324 |Etcd: CPU |etcd.cpu.util |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total user and system CPU time spent in seconds. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30954 |18 | |10324 |Etcd: HTTP 5XX |etcd.http.requests.5xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 5XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30955 |18 | |10324 |Etcd: HTTP requests received |etcd.http.requests.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests received into the system (successfully parsed and authd). |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30956 |18 | |10324 |Etcd: Server is a leader |etcd.is.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not this member is a leader. 1 if is, 0 otherwise. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30957 |18 | |10324 |Etcd: Keys compacted per second |etcd.keys.compacted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of DB keys compacted per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30958 |18 | |10324 |Etcd: Keys expired per second |etcd.keys.expired.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of expired keys per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30959 |18 | |10324 |Etcd: Keys total |etcd.keys.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of keys. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30960 |18 | |10324 |Etcd: Leader changes |etcd.leader.changes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The the number of leader changes the member has seen since its start. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30961 |18 | |10324 |gRPC codes discovery |etcd.grpc_code.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30962 |18 | |10324 |Peers discovery |etcd.peer.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30963 |18 | |10324 |Etcd: RPCs completed with code {#GRPC.CODE} |etcd.grpc.handled.rate[{#GRPC.CODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of RPCs completed on the server with grpc_code {#GRPC.CODE} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30964 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes received |etcd.bytes.received.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes received from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30965 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes sent |etcd.bytes.sent.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes sent to peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30966 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Receive failures failures |etcd.received.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of receive failures from the peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30967 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Send failures |etcd.sent.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of send failures from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31053 |18 | |10261 |Remote Zabbix server: Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31059 |18 | |10327 |MSSQL: Average latch wait time base |mssql.average_latch_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31060 |18 | |10327 |MSSQL: Table lock escalations per second |mssql.table_lock_escalations.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times locks on a table were escalated to the TABLE or HoBT granularity. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31061 |18 | |10327 |MSSQL: Memory grants pending |mssql.memory_grants_pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes waiting for a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31062 |18 | |10327 |MSSQL: Total lock requests per second that have deadlocks |mssql.number_deadlocks_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that resulted in a deadlock. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31063 |18 | |10327 |MSSQL: Errors per second (DB offline errors) |mssql.offline_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31064 |18 | |10327 |MSSQL: Page life expectancy |mssql.page_life_expectancy |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of seconds a page will stay in the buffer pool without references. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31065 |18 | |10327 |MSSQL: Page lookups per second |mssql.page_lookups_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second to find a page in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31066 |18 | |10327 |MSSQL: Page reads per second |mssql.page_reads_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. Because physical I/O is expensive, you may be able to minimize the cost, either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31067 |18 | |10327 |MSSQL: Page splits per second |mssql.page_splits_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of page splits per second that occur as the result of overflowing index pages. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31068 |18 | |10327 |MSSQL: Page writes per second |mssql.page_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page writes that are issued per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31069 |18 | |10327 |MSSQL: Number of blocked processes |mssql.processes_blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently blocked processes. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31070 |18 | |10327 |MSSQL: Read-ahead pages per second |mssql.readahead_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages read per second in anticipation of use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimal number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31078 |18 | |10327 |MSSQL: Total server memory |mssql.total_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the amount of memory the server has committed using the memory manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31079 |18 | |10327 |MSSQL: Total transactions number |mssql.transactions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently active transactions of all types. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31080 |18 | |10327 |MSSQL: Total transactions per second |mssql.transactions_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions started for all databases per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31081 |18 | |10327 |MSSQL: Unsafe auto-params per second |mssql.unsafe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31082 |18 | |10327 |MSSQL: Uptime |mssql.uptime |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31083 |18 | |10327 |MSSQL: Number users connected |mssql.user_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users connected to MS SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31084 |18 | |10327 |MSSQL: Errors per second (User errors) |mssql.user_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31085 |18 | |10327 |MSSQL: Version |mssql.version |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server version. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufficient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31091 |18 | |10327 |MSSQL: Average latch wait time raw |mssql.average_latch_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second |mssql.forwarded_records_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of records per second fetched through forwarded record pointers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31093 |18 | |10327 |MSSQL: Total average wait time base |mssql.average_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31094 |18 | |10327 |MSSQL: Total average wait time raw |mssql.average_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31095 |18 | |10327 |MSSQL: Batch requests per second |mssql.batch_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to SQL Server or using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation which required all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufficient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / Index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection errors) |mssql.kill_connection_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31113 |18 | |10327 |MSSQL: Latch waits per second |mssql.latch_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31114 |18 | |10327 |MSSQL: Lazy writes per second |mssql.lazy_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of buffers written per second by the buffer manager's lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31115 |18 | |10327 |MSSQL: Total lock requests per second |mssql.lock_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new locks and lock conversions per second requested from the lock manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of timed out lock requests per second, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters to me reuse of the resulting cached execution plan across multiple similar-looking requests possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of the primary replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31134 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica name |mssql.primary_replica["{#GROUP_NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Name of the server instance that is hosting the current primary replica. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31135 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health |mssql.secondary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of a secondary replica replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy synchronization.&eol;1: Partially healthy. The synchronization of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = ONLINE&eol;1 = RESTORING&eol;2 = RECOVERING &pipe; SQL Server 2008 and later&eol;3 = RECOVERY_PENDING &pipe; SQL Server 2008 and later&eol;4 = SUSPECT&eol;5 = EMERGENCY &pipe; SQL Server 2008 and later&eol;6 = OFFLINE &pipe; SQL Server 2008 and later&eol;7 = COPYING &pipe; Azure SQL Database Active Geo-Replication&eol;10 = OFFLINE_SECONDARY &pipe; Azure SQL Database Active Geo-Replication |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31150 |18 | |10327 |MSSQL DB '{#DBNAME}': Transactions per second |mssql.db.transactions_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions started for the database per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31151 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Suspended |mssql.local_db.is_suspended["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database state:&eol;0 = Resumed&eol;1 = Suspended |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31152 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': State |mssql.local_db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = Online&eol;1 = Restoring&eol;2 = Recovering&eol;3 = Recovery pending&eol;4 = Suspect&eol;5 = Emergency&eol;6 = Offline |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Synchronization health |mssql.local_db.synchronization_health["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode):&eol;0 = Not healthy. The synchronization_state of the database is 0 (NOT SYNCHRONIZING).&eol;1 = Partially healthy. A database on a synchronous-commit availability replica is considered &eol;partially healthy if synchronization_state is 1 (SYNCHRONIZING).&eol;2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 (SYNCHRONIZED), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 (SYNCHRONIZING). |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31154 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role sequence |mssql.mirroring.role_sequence["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31155 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role |mssql.mirroring.role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |109 | | |0 | | | | |2 |NULL |Current role of the local database plays in the database mirroring session.&eol;1 = Principal&eol;2 = Mirror |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31156 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Safety level |mssql.mirroring.safety_level["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |110 | | |0 | | | | |2 |NULL |Safety setting for updates on the mirror database:&eol;0 = Unknown state&eol;1 = Off [asynchronous]&eol;2 = Full [synchronous] |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |111 | | |0 | | | | |2 |NULL |State of the witness in the database mirroring session of the database:&eol;0 = Unknown&eol;1 = Connected&eol;2 = Disconnected |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31161 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Connected state |mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |100 | | |0 | | | | |2 |NULL |Whether a secondary replica is currently connected to the primary replica:&eol;0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:&eol;On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;&eol;On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.&eol;1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31162 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Is local |mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |107 | | |0 | | | | |2 |NULL |Whether the replica is local:&eol;0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.&eol;1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Join state |mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |101 | | |0 | | | | |2 |NULL |0 = Not joined&eol;1 = Joined, standalone instance&eol;2 = Joined, failover cluster instance |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31164 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Operational state |mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |102 | | |0 | | | | |2 |NULL |Current operational state of the replica:&eol;0 = Pending failover&eol;1 = Pending&eol;2 = Online&eol;3 = Offline&eol;4 = Failed&eol;5 = Failed, no quorum&eol;6 = Not local |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31165 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Recovery health |mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:&eol;0 : In progress. At least one joined database has a database state other than ONLINE &eol;(database_state is not 0).&eol;1 : Online. All the joined databases have a database state of ONLINE (database_state is 0). |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31166 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Role |mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |104 | | |0 | | | | |2 |NULL |Current Always On availability groups role of a local replica or a connected remote replica:&eol;0 = Resolving&eol;1 = Primary&eol;2 = Secondary |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31197 |18 | |10328 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31198 |18 | |10328 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31199 |18 | |10328 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31200 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31201 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31202 |18 | |10328 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31203 |18 | |10328 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31204 |18 | |10328 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31205 |18 | |10328 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31206 |18 | |10328 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31207 |18 | |10328 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31208 |18 | |10328 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31209 |18 | |10328 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31210 |18 | |10328 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31211 |18 | |10328 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31212 |18 | |10328 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31213 |18 | |10328 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31215 |18 | |10328 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31216 |18 | |10328 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31217 |18 | |10328 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31218 |18 | |10328 |Bgwriter: Times a backend execute its own fsync |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31219 |18 | |10328 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31220 |18 | |10328 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31221 |18 | |10328 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31222 |18 | |10328 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31223 |18 | |10328 |Checkpoint: Requested |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31224 |18 | |10328 |Checkpoint: By timeout |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31225 |18 | |10328 |Bgwriter: Number of bgwriter stopped |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31226 |18 | |10328 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31227 |18 | |10328 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31228 |18 | |10328 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31229 |18 | |10328 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31230 |18 | |10328 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31231 |18 | |10328 |Connections sum: Idle in transaction |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31232 |18 | |10328 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31233 |18 | |10328 |Connections sum: Prepared |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31234 |18 | |10328 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31235 |18 | |10328 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31236 |18 | |10328 |Connections sum: Waiting |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31237 |18 | |10328 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31238 |18 | |10328 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31239 |18 | |10328 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31244 |18 | |10328 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31245 |18 | |10328 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31246 |18 | |10328 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31247 |18 | |10328 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31248 |18 | |10328 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31249 |18 | |10328 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31250 |18 | |10328 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31251 |18 | |10328 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31252 |18 | |10328 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31253 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31254 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31255 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31256 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31257 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31258 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31259 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31260 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31261 |18 | |10328 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31262 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31263 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31264 |18 | |10328 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31265 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31266 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31267 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31268 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31269 |18 | |10328 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31270 |18 | |10274 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29103 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31285 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31286 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31287 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31288 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31289 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31290 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31303 |18 | |10280 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29289 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31313 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31314 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31315 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31316 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31317 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31318 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31331 |18 | |10287 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31349 |18 | |10294 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31344 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31646 |18 | |10333 |Oracle: Active user sessions |oracle.session_active_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31647 |18 | |10333 |Oracle: Rows per sort |oracle.rows_per_sort |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average number of rows per sort for all types of sorts performed. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31648 |18 | |10333 |Oracle: Active background sessions |oracle.session_active_background |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active background sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31649 |18 | |10333 |Oracle: Sessions concurrency |oracle.session_concurrency_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of concurrency. Concurrency is a DB behavior when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31650 |18 | |10333 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31651 |18 | |10333 |Oracle: Inactive user sessions |oracle.session_inactive_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of inactive user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31652 |18 | |10333 |Oracle: SQL service response time |oracle.service_response_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |SQL service response time in seconds. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31653 |18 | |10333 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31654 |18 | |10333 |Oracle: Sessions lock rate |oracle.session_lock_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31655 |18 | |10333 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31656 |18 | |10333 |Oracle: Active parallel sessions |oracle.active_parallel_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active parallel sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31657 |18 | |10333 |Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s |oracle.session_long_time_locked |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of the prolongedly locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec) |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31658 |18 | |10333 |Oracle: SGA, buffer cache |oracle.sga_buffer_cache |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The size of the cache of standard blocks. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31659 |18 | |10333 |Oracle: SGA, fixed |oracle.sga_fixed |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The fixed SGA is an internal housekeeping area. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31660 |18 | |10333 |Oracle: SGA, java pool |oracle.sga_java_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the java pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31661 |18 | |10333 |Oracle: SGA, log buffer |oracle.sga_log_buffer |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes allocated for the redo log buffer. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31662 |18 | |10333 |Oracle: SGA, shared pool |oracle.sga_shared_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the shared pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31663 |18 | |10333 |Oracle: Shared pool free % |oracle.shared_pool_free |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Shared pool free memory percent. Free/Total |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31664 |18 | |10333 |Oracle: Total sorts per user call |oracle.sorts_per_user_call |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total sorts per user call. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31665 |18 | |10333 |Oracle: Temp space used |oracle.temp_space_used |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Temp space used. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31666 |18 | |10333 |Oracle: PGA, Total allocated |oracle.total_pga_allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31667 |18 | |10333 |Oracle: PGA, Total freeable |oracle.total_pga_freeable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes of PGA memory in all processes that could be freed back to the operating system. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31668 |18 | |10333 |Oracle: PGA, Total inuse |oracle.total_pga_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java). |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31669 |18 | |10333 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31670 |18 | |10333 |Oracle: User rollbacks per second |oracle.user_rollbacks_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that users manually issue the ROLLBACK statement or an error occurred during a user's transactions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31671 |18 | |10333 |Oracle: SGA, large pool |oracle.sga_large_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the large pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31672 |18 | |10333 |Oracle: Physical reads bytes per second |oracle.physical_read_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Read bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31673 |18 | |10333 |Oracle: Physical writes per second |oracle.physical_writes_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Writes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31674 |18 | |10333 |Oracle: FRA, Space reclaimable |oracle.fra_space_reclaimable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31675 |18 | |10333 |Oracle: Average active sessions |oracle.active_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average active sessions at a point in time. It is the number of sessions that are either working or waiting. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31676 |18 | |10333 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31677 |18 | |10333 |Oracle: Buffer cache hit ratio |oracle.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31678 |18 | |10333 |Oracle: Global cache blocks corrupted |oracle.cache_blocks_corrupt |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks that encountered a corruption or checksum failure during interconnect. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31679 |18 | |10333 |Oracle: Global cache blocks lost |oracle.cache_blocks_lost |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of global cache blocks lost |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31680 |18 | |10333 |Oracle: Cursor cache hit ratio |oracle.cursor_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of cursor cache hits. CursorCacheHit/SoftParse |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31681 |18 | |10333 |Oracle: Database CPU time ratio |oracle.database_cpu_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31682 |18 | |10333 |Oracle: Database wait time ratio |oracle.database_wait_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31683 |18 | |10333 |Oracle: Datafiles limit |oracle.db_files_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max allowable number of datafile. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31684 |18 | |10333 |Oracle: Disk sort per second |oracle.disk_sorts |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sorts going to disk per second |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31685 |18 | |10333 |Oracle: Enqueue timeouts per second |oracle.enqueue_timeouts_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Enqueue timeouts per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31686 |18 | |10333 |Oracle: FRA, Number of files |oracle.fra_number_of_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of files in the fast recovery area |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31687 |18 | |10333 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31688 |18 | |10333 |Oracle: FRA, Space limit |oracle.fra_space_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of disk space (in bytes) that the database can use for the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31689 |18 | |10333 |Oracle: FRA, Used space |oracle.fra_space_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31690 |18 | |10333 |Oracle: Physical writes bytes per second |oracle.physical_write_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Write bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31691 |18 | |10333 |Oracle: FRA, Usable space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31692 |18 | |10333 |Oracle: GC CR block received per second |oracle.gc_cr_block_received_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |GC CR block received per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31693 |18 | |10333 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31694 |18 | |10333 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31695 |18 | |10333 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31696 |18 | |10333 |Oracle: Instance role |oracle.instance.role |0 |7d |365d |0 |3 | | | | |NULL |115 | | |0 | | | | |0 |NULL |Indicates whether the instance is an active instance or an inactive secondary instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31697 |18 | |10333 |Oracle: Library cache hit ratio |oracle.library_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of library cache hits. Hits/Pins |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31698 |18 | |10333 |Oracle: Logons per second |oracle.logons_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logon attempts. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31699 |18 | |10333 |Oracle: Long table scans per second |oracle.long_table_scans_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of long table scans per second. A table is considered 'long' if the table is not cached and if its high-water mark is greater than 5 blocks. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31700 |18 | |10333 |Oracle: Memory sorts ratio |oracle.memory_sorts_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31701 |18 | |10333 |Oracle: PGA, Global memory bound |oracle.pga_global_bound |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum size of a work area executed in automatic mode. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31702 |18 | |10333 |Oracle: PGA, Aggregate target parameter |oracle.pga_target |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31703 |18 | |10333 |Oracle: Active serial sessions |oracle.active_serial_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active serial sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31704 |18 | |10333 |Oracle: Physical reads per second |oracle.physical_reads_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Reads per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31705 |18 | |10333 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31711 |18 | |10333 |Archivelog '{#DEST_NAME}': Error |oracle.archivelog_error["{#DEST_NAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Displays the error text |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31712 |18 | |10333 |Archivelog '{#DEST_NAME}': Last sequence |oracle.archivelog_log_sequence["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Identifies the sequence number of the last archived redo log to be archived |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31713 |18 | |10333 |Archivelog '{#DEST_NAME}': Status |oracle.archivelog_log_status["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |118 | | |0 | | | | |2 |NULL |Identifies the current status of the destination: 1 - 'Valid', 2 - 'Deferred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31714 |18 | |10333 |Oracle Database '{#DBNAME}': Force logging |oracle.db_force_logging["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |119 | | |0 | | | | |2 |NULL |Indicates whether the database is under force logging mode (YES) or not (NO) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31715 |18 | |10333 |Oracle Database '{#DBNAME}': Log mode |oracle.db_log_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |120 | | |0 | | | | |2 |NULL |Archive log mode, 0 - 'NOARCHIVELOG', 1 - 'ARCHIVELOG', 2 - 'MANUAL' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31716 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.db_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31717 |18 | |10333 |Oracle Database '{#DBNAME}': Role |oracle.db_role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |113 | | |0 | | | | |2 |NULL |Current role of the database, 1 - 'SNAPSHOT STANDBY', 2 - 'LOGICAL STANDBY', 3 - 'PHYSICAL STANDBY', 4 - 'PRIMARY ', 5 -'FAR SYNC' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31718 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_free_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31719 |18 | |10333 |ASM '{#DG_NAME}': Total size |oracle.asm_total_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31720 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_used_pct["{#DG_NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Usage percent of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31721 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.pdb_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31634 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31722 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, bytes |oracle.tbs_alloc_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently allocated bytes for tablespace (sum of the current size of datafiles). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31723 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace free, bytes |oracle.tbs_free_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free bytes of allocated space. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31724 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace MAX size, bytes |oracle.tbs_max_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of tablespace. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31725 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Open status |oracle.tbs_status["{#TABLESPACE}"] |0 |7d |365d |0 |3 | | | | |NULL |117 | | |0 | | | | |2 |NULL |Tablespace status. 1 - 'ONLINE' 2 - 'OFFLINE' 3- 'READ ONLY' |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31726 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, percent |oracle.tbs_used_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Allocated bytes/Max bytes*100 |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31805 |18 | |10334 |Ceph: Number of OSDs in state: UP |ceph.num_osd_up |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of online storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31806 |18 | |10334 |Ceph: Number of Placement Groups in Undersized state |ceph.pg_states.undersized |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in undersized state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31807 |18 | |10334 |Ceph: Number of Placement Groups in Clean state |ceph.pg_states.clean |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in clean state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31808 |18 | |10334 |Ceph: Number of Placement Groups in degraded state |ceph.pg_states.degraded |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in degraded state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31809 |18 | |10334 |Ceph: Number of Placement Groups in inconsistent state |ceph.pg_states.inconsistent |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in inconsistent state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31810 |18 | |10334 |Ceph: Number of Placement Groups in Peering state |ceph.pg_states.peering |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in peering state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31811 |18 | |10334 |Ceph: Number of Placement Groups in recovering state |ceph.pg_states.recovering |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in recovering state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31812 |18 | |10334 |Ceph: Number of Placement Groups in recovery_wait state |ceph.pg_states.recovery_wait |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in recovery_wait state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31813 |18 | |10334 |Ceph: Number of Placement Groups in remapped state |ceph.pg_states.remapped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in remapped state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31814 |18 | |10334 |Ceph: Number of Placement Groups in Scrubbing state |ceph.pg_states.scrubbing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in scrubbing state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31815 |18 | |10334 |Ceph: Number of Placement Groups in Unknown state |ceph.pg_states.unknown |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in unknown state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31816 |18 | |10334 |Ceph: Number of Placement Groups in backfill_wait state |ceph.pg_states.backfill_wait |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfill_wait state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31817 |18 | |10334 |Ceph: Number of OSDs |ceph.num_osd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of known storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31818 |18 | |10334 |Ceph: Ceph Read bandwidth |ceph.rd_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Global read Bytes per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31819 |18 | |10334 |Ceph: Ceph Read operations per sec |ceph.rd_ops.rate |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Global read operations per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31820 |18 | |10334 |Ceph: Number of Monitors |ceph.num_mon |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Monitors configured in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31821 |18 | |10334 |Ceph: Total bytes available |ceph.total_avail_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes available in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31822 |18 | |10334 |Ceph: Total bytes |ceph.total_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total (RAW) capacity of Ceph cluster in bytes |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31823 |18 | |10334 |Ceph: Total number of objects |ceph.total_objects |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of objects in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31824 |18 | |10334 |Ceph: Total bytes used |ceph.total_used_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes used in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31825 |18 | |10334 |Ceph: Ceph Write bandwidth |ceph.wr_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Global write Bytes per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31826 |18 | |10334 |Ceph: Number of Placement Groups in Backfilling state |ceph.pg_states.backfilling |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfilling state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31827 |18 | |10334 |Ceph: Number of Placement Groups in backfill_toofull state |ceph.pg_states.backfill_toofull |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfill_toofull state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31828 |18 | |10334 |Ceph: Number of Placement Groups |ceph.num_pg |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31829 |18 | |10334 |Ceph: Ceph OSD Apply latency Min |ceph.osd_latency_apply.min |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31830 |18 | |10334 |Ceph: Number of Placement Groups in Temporary state |ceph.num_pg_temp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in pg_temp state |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31831 |18 | |10334 |Ceph: Number of Pools |ceph.num_pools |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pools in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31832 |18 | |10334 |Ceph: Ceph backfill full ratio |ceph.osd_backfillfull_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Backfill full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31833 |18 | |10334 |Ceph: Ceph OSD avg fill |ceph.osd_fill.avg |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average fill of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31834 |18 | |10334 |Ceph: Ceph OSD max fill |ceph.osd_fill.max |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage fill of maximum filled OSD |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31835 |18 | |10334 |Ceph: Ceph OSD min fill |ceph.osd_fill.min |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage fill of minimum filled OSD |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31836 |18 | |10334 |Ceph: Ceph full ratio |ceph.osd_full_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31837 |18 | |10334 |Ceph: Ceph OSD Apply latency Avg |ceph.osd_latency_apply.avg |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31838 |18 | |10334 |Ceph: Ceph OSD Apply latency Max |ceph.osd_latency_apply.max |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31839 |18 | |10334 |Ceph: Ceph OSD Commit latency Avg |ceph.osd_latency_commit.avg |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31840 |18 | |10334 |Ceph: Number of Placement Groups in Active state |ceph.pg_states.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in active state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31841 |18 | |10334 |Ceph: Ceph OSD Commit latency Max |ceph.osd_latency_commit.max |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31842 |18 | |10334 |Ceph: Ceph OSD Commit latency Min |ceph.osd_latency_commit.min |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31843 |18 | |10334 |Ceph: Ceph nearfull ratio |ceph.osd_nearfull_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Near full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31844 |18 | |10334 |Ceph: Ceph OSD avg PGs |ceph.osd_pgs.avg |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31845 |18 | |10334 |Ceph: Ceph OSD max PGs |ceph.osd_pgs.max |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31846 |18 | |10334 |Ceph: Ceph OSD min PGs |ceph.osd_pgs.min |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31847 |18 | |10334 |Ceph: Number of OSDs in state: IN |ceph.num_osd_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of participating storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31848 |18 | |10334 |Ceph: Minimum Mon release version |ceph.min_mon_release_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |min_mon_release_name |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31849 |18 | |10334 |Ceph: Overall cluster status |ceph.overall_status |0 |7d |365d |0 |3 | | | | |NULL |121 | | |0 | | | | |0 |NULL |Overall Ceph cluster status, eg 0 - HEALTH_OK, 1 - HEALTH_WARN or 2 - HEALTH_ERR |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31850 |18 | |10334 |Ceph: Ceph Write operations per sec |ceph.wr_ops.rate |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Global write operations per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31853 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD fill |ceph.osd[{#OSDNAME},fill] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31854 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD in |ceph.osd[{#OSDNAME},in] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31855 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD latency apply |ceph.osd[{#OSDNAME},latency_apply] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time taken to flush an update to disks. |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31856 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD latency commit |ceph.osd[{#OSDNAME},latency_commit] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time taken to commit an operation to the journal. |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31857 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD PGs |ceph.osd[{#OSDNAME},num_pgs] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31858 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD up |ceph.osd[{#OSDNAME},up] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31875 |18 | |10335 |PHP-FPM: Slow requests |php-fpm.slow_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests that exceeded your request_slowlog_timeout value. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31876 |18 | |10335 |PHP-FPM: Version |php-fpm.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers. |0 |30d |0 | |31869 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31877 |18 | |10335 |PHP-FPM: Uptime |php-fpm.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |How long has this pool been running. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31878 |18 | |10335 |PHP-FPM: Start time |php-fpm.start_time |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The time when this pool was started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31879 |18 | |10335 |PHP-FPM: Accepted connections per second |php-fpm.conn_accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted requests per second. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31880 |18 | |10335 |PHP-FPM: Processes, total |php-fpm.processes_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of server processes currently running. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31881 |18 | |10335 |PHP-FPM: Listen queue |php-fpm.listen_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections that have been initiated, but not yet accepted. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31882 |18 | |10335 |PHP-FPM: Processes, idle |php-fpm.processes_idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of idle processes. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31883 |18 | |10335 |PHP-FPM: Processes, active |php-fpm.processes_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of active processes. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31884 |18 | |10335 |PHP-FPM: Process manager |php-fpm.process_manager |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The method used by the process manager to control the number of child processes for this pool. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31885 |18 | |10335 |PHP-FPM: Ping |php-fpm.ping |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |31869 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31886 |18 | |10335 |PHP-FPM: Pool name |php-fpm.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of current pool. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31887 |18 | |10335 |PHP-FPM: Max children reached |php-fpm.max_children |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that pm.max_children has been reached since the php-fpm pool started |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31888 |18 | |10335 |PHP-FPM: Listen queue, max |php-fpm.listen_queue_max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of requests in the queue of pending connections since this FPM pool has started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31889 |18 | |10335 |PHP-FPM: Listen queue, len |php-fpm.listen_queue_len |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of the socket queue of pending connections. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31890 |18 | |10335 |PHP-FPM: Processes, max active |php-fpm.processes_max_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The highest value that 'active processes' has reached since the php-fpm server started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31894 |18 | |10336 |PHP-FPM: Accepted connections per second |php-fpm.conn_accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted requests per second. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31895 |18 | |10336 |PHP-FPM: Processes, idle |php-fpm.processes_idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of idle processes. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31896 |18 | |10336 |PHP-FPM: Uptime |php-fpm.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |How long has this pool been running. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31897 |18 | |10336 |PHP-FPM: Start time |php-fpm.start_time |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The time when this pool was started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31898 |18 | |10336 |PHP-FPM: Slow requests |php-fpm.slow_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests that exceeded your request_slowlog_timeout value. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31899 |18 | |10336 |PHP-FPM: Processes, total |php-fpm.processes_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of server processes currently running. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31900 |18 | |10336 |PHP-FPM: Processes, max active |php-fpm.processes_max_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The highest value that 'active processes' has reached since the php-fpm server started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31901 |18 | |10336 |PHP-FPM: Ping |php-fpm.ping |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |31893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31902 |18 | |10336 |PHP-FPM: Processes, active |php-fpm.processes_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of active processes. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31903 |18 | |10336 |PHP-FPM: Process manager |php-fpm.process_manager |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The method used by the process manager to control the number of child processes for this pool. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31904 |18 | |10336 |PHP-FPM: Pool name |php-fpm.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of current pool. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31905 |18 | |10336 |PHP-FPM: Max children reached |php-fpm.max_children |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that pm.max_children has been reached since the php-fpm pool started |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31906 |18 | |10336 |PHP-FPM: Listen queue, max |php-fpm.listen_queue_max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of requests in the queue of pending connections since this FPM pool has started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31907 |18 | |10336 |PHP-FPM: Listen queue, len |php-fpm.listen_queue_len |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of the socket queue of pending connections. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31908 |18 | |10336 |PHP-FPM: Listen queue |php-fpm.listen_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections that have been initiated, but not yet accepted. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31909 |18 | |10336 |PHP-FPM: Version |php-fpm.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers. |0 |30d |0 | |31893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32003 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Used |ceph.pool["{#POOLNAME}",bytes_used] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bytes used in pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32004 |18 | |10334 |Ceph: [{#POOLNAME}] Max available |ceph.pool["{#POOLNAME}",max_avail] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum available space in the given pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32005 |18 | |10334 |Ceph: [{#POOLNAME}] Pool objects |ceph.pool["{#POOLNAME}",objects] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects in the pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32006 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Percent Used |ceph.pool["{#POOLNAME}",percent_used] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of storage used per pool |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32007 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Read bandwidth |ceph.pool["{#POOLNAME}",rd_bytes.rate] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool read Bytes/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32008 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Read operations |ceph.pool["{#POOLNAME}",rd_ops.rate] |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool read operations/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32009 |18 | |10334 |Ceph: [{#POOLNAME}] Pool RAW Used |ceph.pool["{#POOLNAME}",stored_raw] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes used in pool including copies made. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32010 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Write bandwidth |ceph.pool["{#POOLNAME}",wr_bytes.rate] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool write Bytes/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32011 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Write operations |ceph.pool["{#POOLNAME}",wr_ops.rate] |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool write operations/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32020 |18 | |10339 |NameNode: Missing blocks |hadoop.namenode.missing_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missing blocks. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32021 |18 | |10339 |ResourceManager: Decommissioned NMs |hadoop.resourcemanager.num_decommissioned_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Decommissioned NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32022 |18 | |10339 |NameNode: Total blocks |hadoop.namenode.blocks_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of blocks tracked by NameNode. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32023 |18 | |10339 |NameNode: Capacity remaining |hadoop.namenode.capacity_remaining |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available capacity. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32024 |18 | |10339 |NameNode: Corrupt blocks |hadoop.namenode.corrupt_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of corrupt blocks. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32025 |18 | |10339 |ResourceManager: Uptime |hadoop.resourcemanager.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32026 |18 | |10339 |ResourceManager: RPC queue & processing time |hadoop.resourcemanager.rpc_processing_time_avg |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32027 |18 | |10339 |ResourceManager: Unhealthy NMs |hadoop.resourcemanager.num_unhealthy_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Unhealthy NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32028 |18 | |10339 |ResourceManager: Shutdown NMs |hadoop.resourcemanager.num_shutdown_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Shutdown NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32029 |18 | |10339 |ResourceManager: Rebooted NMs |hadoop.resourcemanager.num_rebooted_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Rebooted NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32030 |18 | |10339 |ResourceManager: Lost NMs |hadoop.resourcemanager.num_lost_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Lost NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32031 |18 | |10339 |ResourceManager: Decommissioning NMs |hadoop.resourcemanager.num_decommissioning_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Decommissioning NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32032 |18 | |10339 |NameNode: Total files |hadoop.namenode.files_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total count of files tracked by the NameNode. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32033 |18 | |10339 |ResourceManager: Active NMs |hadoop.resourcemanager.num_active_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Active NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32034 |18 | |10339 |NameNode: Dead DataNodes |hadoop.namenode.num_dead_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of dead DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32035 |18 | |10339 |NameNode: Failed volumes |hadoop.namenode.volume_failures_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed volumes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32036 |18 | |10339 |NameNode: Blocks allocable |hadoop.namenode.block_capacity |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of blocks allocable. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32037 |18 | |10339 |NameNode: Under-replicated blocks |hadoop.namenode.under_replicated_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks with insufficient replication. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32038 |18 | |10339 |NameNode: Transactions since last checkpoint |hadoop.namenode.transactions_since_last_checkpoint |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions since last checkpoint. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32039 |18 | |10339 |NameNode: Total load |hadoop.namenode.total_load |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of concurrent file accesses (read/write) across all DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32040 |18 | |10339 |NameNode: RPC queue & processing time |hadoop.namenode.rpc_processing_time_avg |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32041 |18 | |10339 |NameNode: Percent capacity remaining |hadoop.namenode.percent_remaining |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available capacity in percent. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32042 |18 | |10339 |NameNode: Block Pool Renaming |hadoop.namenode.percent_block_pool_used |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32043 |18 | |10339 |NameNode: Stale DataNodes |hadoop.namenode.num_stale_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |DataNodes that do not send a heartbeat within 30 seconds are marked as "stale". |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32044 |18 | |10339 |NameNode: Alive DataNodes |hadoop.namenode.num_live_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of alive DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32045 |18 | |10339 |NameNode: Uptime |hadoop.namenode.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32050 |18 | |10339 |{#HOSTNAME}: Admin state |hadoop.datanode.admin_state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Administrative state. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32051 |18 | |10339 |{#HOSTNAME}: Used |hadoop.datanode.dfs_used[{#HOSTNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used disk space. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32052 |18 | |10339 |{#HOSTNAME}: JVM Garbage collection time |hadoop.datanode.jvm.gc_time[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM garbage collection time in milliseconds. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32053 |18 | |10339 |{#HOSTNAME}: JVM Heap usage |hadoop.datanode.jvm.mem_heap_used[{#HOSTNAME}] |0 |7d |365d |0 |0 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM heap usage in MBytes. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32054 |18 | |10339 |{#HOSTNAME}: JVM Threads |hadoop.datanode.jvm.threads[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of JVM threads. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32055 |18 | |10339 |{#HOSTNAME}: Number of failed volumes |hadoop.datanode.numfailedvolumes[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of failed storage volumes. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32056 |18 | |10339 |{#HOSTNAME}: Oper state |hadoop.datanode.oper_state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Operational state. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32057 |18 | |10339 |{#HOSTNAME}: Remaining |hadoop.datanode.remaining[{#HOSTNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Remaining disk space. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32058 |18 | |10339 |{#HOSTNAME}: Uptime |hadoop.datanode.uptime[{#HOSTNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32059 |18 | |10339 |{#HOSTNAME}: Version |hadoop.datanode.version[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |DataNode software version. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32060 |18 | |10339 |{#HOSTNAME}: Available memory |hadoop.nodemanager.availablememory[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32061 |18 | |10339 |{#HOSTNAME}: Container launch avg duration |hadoop.nodemanager.container_launch_duration_avg[{#HOSTNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32062 |18 | |10339 |{#HOSTNAME}: JVM Garbage collection time |hadoop.nodemanager.jvm.gc_time[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM garbage collection time in milliseconds. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32063 |18 | |10339 |{#HOSTNAME}: JVM Heap usage |hadoop.nodemanager.jvm.mem_heap_used[{#HOSTNAME}] |0 |7d |365d |0 |0 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM heap usage in MBytes. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32064 |18 | |10339 |{#HOSTNAME}: JVM Threads |hadoop.nodemanager.jvm.threads[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of JVM threads. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32065 |18 | |10339 |{#HOSTNAME}: Number of containers |hadoop.nodemanager.numcontainers[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32066 |18 | |10339 |{#HOSTNAME}: RPC queue & processing time |hadoop.nodemanager.rpc_processing_time_avg[{#HOSTNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32067 |18 | |10339 |{#HOSTNAME}: State |hadoop.nodemanager.state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |State of the node - valid values are: NEW, RUNNING, UNHEALTHY, DECOMMISSIONING, DECOMMISSIONED, LOST, REBOOTED, SHUTDOWN. |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32068 |18 | |10339 |{#HOSTNAME}: Uptime |hadoop.nodemanager.uptime[{#HOSTNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32069 |18 | |10339 |{#HOSTNAME}: Used memory |hadoop.nodemanager.usedmemory[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32070 |18 | |10339 |{#HOSTNAME}: Version |hadoop.nodemanager.version[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32160 |18 | |10341 |Zookeeper: Approximate data size |zookeeper.approximate_data_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Data tree size in bytes.The size includes the znode path and its value. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32161 |18 | |10341 |Zookeeper: Outstanding requests |zookeeper.outstanding_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queued requests when the server is under load and is receiving more sustained requests than it can process. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32162 |18 | |10341 |Zookeeper: Latency, max |zookeeper.max_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32163 |18 | |10341 |Zookeeper: Latency, min |zookeeper.min_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The minimum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32164 |18 | |10341 |Zookeeper: Alive connections |zookeeper.num_alive_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of active clients connected to a zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32165 |18 | |10341 |Zookeeper: File descriptors, open |zookeeper.open_file_descriptor_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors that a zookeeper server has open. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32166 |18 | |10341 |Zookeeper: Packets received per sec |zookeeper.packets_received.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of zookeeper packets received by a server per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32167 |18 | |10341 |Zookeeper: Looking per sec |zookeeper.looking_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of transitions into looking state. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32168 |18 | |10341 |Zookeeper: Packets sent per sec |zookeeper.packets_sent |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of zookeeper packets sent from a server per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32169 |18 | |10341 |Zookeeper: Revalidate per sec |zookeeper.revalidate_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of revalidations. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32170 |18 | |10341 |Zookeeper: Server mode |zookeeper.server_state |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Mode of the server. In an ensemble, this may either be leader or follower. Otherwise, it is standalone |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32171 |18 | |10341 |Zookeeper: Snap syncs per sec |zookeeper.snap_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of snap syncs performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32172 |18 | |10341 |Zookeeper: Uptime |zookeeper.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32173 |18 | |10341 |Zookeeper: Version |zookeeper.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32174 |18 | |10341 |Zookeeper: Watch count |zookeeper.watch_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches currently set on the local ZooKeeper process. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32175 |18 | |10341 |Zookeeper: File descriptors, max |zookeeper.max_file_descriptor_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of file descriptors that a zookeeper server can open. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32176 |18 | |10341 |Zookeeper: Global sessions |zookeeper.global_sessions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of global sessions. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32177 |18 | |10341 |Zookeeper: Local sessions |zookeeper.local_sessions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of local sessions. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32178 |18 | |10341 |Zookeeper: Election time, avg |zookeeper.avg_election_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Time between entering and leaving election. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32179 |18 | |10341 |Zookeeper: Ephemeral nodes count |zookeeper.ephemerals_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ephemeral nodes that a zookeeper server has in its data tree. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32180 |18 | |10341 |Zookeeper: Diff syncs per sec |zookeeper.diff_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of diff syncs performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32181 |18 | |10341 |Zookeeper: Revalidate connections per sec |zookeeper.connection_revalidate_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate ofconnection revalidations. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32182 |18 | |10341 |Zookeeper: Rejected connections per sec |zookeeper.connection_rejected.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of connection rejected. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32183 |18 | |10341 |Zookeeper: Drop connections per sec |zookeeper.connection_drop_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of connection drops. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32184 |18 | |10341 |Zookeeper: Commit per sec |zookeeper.commit_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of commits performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32185 |18 | |10341 |Zookeeper: Snapshot writes |zookeeper.cnt_snapshottime |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of performed snapshot writes. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32186 |18 | |10341 |Zookeeper: Fsync |zookeeper.cnt_fsynctime |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of performed fsyncs. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32187 |18 | |10341 |Zookeeper: Elections |zookeeper.cnt_election_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of elections happened. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32188 |18 | |10341 |Zookeeper: Bytes received per sec |zookeeper.bytes_received_count.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32189 |18 | |10341 |Zookeeper: Snapshot write time, avg |zookeeper.avg_snapshottime |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time to write a snapshot. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32190 |18 | |10341 |Zookeeper: Latency, avg |zookeeper.avg_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The average amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32191 |18 | |10341 |Zookeeper: Fsync time, avg |zookeeper.avg_fsynctime |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Time to fsync transaction log. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32192 |18 | |10341 |Zookeeper: Znode count |zookeeper.znode_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of znodes in the ZooKeeper namespace (the data) |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32194 |18 | |10341 |Leader metrics discovery |zookeeper.metrics.leader |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for leader node |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32195 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg |zookeeper.avg_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32196 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max |zookeeper.max_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32197 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min |zookeeper.min_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The minimum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32198 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests |zookeeper.outstanding_requests[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queued requests when the server is under load and is receiving more sustained requests than it can process. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32199 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec |zookeeper.packets_received[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of packets received. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32200 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec |zookeeper.packets_sent[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of packets sent. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32201 |18 | |10341 |Zookeeper: Learners{#SINGLETON} |zookeeper.learners[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of learners. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32202 |18 | |10341 |Zookeeper: Pending syncs{#SINGLETON} |zookeeper.pending_syncs[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pending syncs to carry out to ZooKeeper ensemble followers. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32203 |18 | |10341 |Zookeeper: Quorum size{#SINGLETON} |zookeeper.quorum_size[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32204 |18 | |10341 |Zookeeper: Synced followers{#SINGLETON} |zookeeper.synced_followers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced followers reported when a node server_state is leader. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32205 |18 | |10341 |Zookeeper: Synced non-voting follower{#SINGLETON} |zookeeper.synced_non_voting_followers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced voting followers reported when a node server_state is leader. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32206 |18 | |10341 |Zookeeper: Synced observers{#SINGLETON} |zookeeper.synced_observers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced observers. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32306 |18 | |10254 |Voltage discovery |voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with volts filter |0 |30d |2 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32329 |18 | |10343 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32325 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32349 |18 | |10344 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32340 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32372 |18 | |10345 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32381 |18 | |10346 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32374 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32400 |18 | |10347 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32419 |18 | |10348 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32414 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32430 |18 | |10349 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32421 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32431 |18 | |10349 |Charge + Diversion mode discovery |controlmode.charge_diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in charge and diversion modes |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32432 |18 | |10349 |Charge mode discovery |controlmode.charge.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in charge mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32433 |18 | |10349 |Diversion mode discovery |controlmode.diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in diversion mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32434 |18 | |10349 |Load + Diversion mode discovery |controlmode.load_diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in load and diversion modes |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32435 |18 | |10349 |Load mode discovery |controlmode.load.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in load mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32547 |18 | |10316 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32548 |18 | |10316 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32549 |18 | |10316 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32550 |18 | |10316 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32551 |18 | |10316 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32552 |18 | |10316 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32553 |18 | |10316 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30431 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32554 |18 | |10316 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32555 |18 | |10316 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32556 |18 | |10316 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32557 |18 | |10316 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32558 |18 | |10316 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32559 |18 | |10316 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32561 |18 | |10320 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32562 |18 | |10320 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32563 |18 | |10320 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32564 |18 | |10320 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32565 |18 | |10320 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32566 |18 | |10320 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32567 |18 | |10320 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32568 |18 | |10320 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32569 |18 | |10320 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32570 |18 | |10320 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32571 |18 | |10320 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32572 |18 | |10320 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32573 |18 | |10320 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.replication.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32575 |18 | |10317 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32576 |18 | |10317 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32577 |18 | |10317 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32578 |18 | |10317 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32579 |18 | |10317 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32580 |18 | |10317 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32581 |18 | |10317 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30480 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32582 |18 | |10317 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32583 |18 | |10317 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32584 |18 | |10317 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32585 |18 | |10317 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32586 |18 | |10317 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32587 |18 | |10317 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32588 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace used, bytes |oracle.tbs_used_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently used bytes for tablespace (current size of datafiles-free space). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32589 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace usage, percent |oracle.tbs_used_file_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Used bytes/Allocated bytes*100 |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32596 |18 | |10328 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time.rate |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32598 |18 | |10328 |Application {#APPLICATION}: Replication flush lag |pgsql.replication.process.flush_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32599 |18 | |10328 |Application {#APPLICATION}: Replication replay lag |pgsql.replication.process.replay_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32600 |18 | |10328 |Application {#APPLICATION}: Replication write lag |pgsql.replication.process.write_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32744 |18 | |10355 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} |smart.disk.error[{#NAME},{#ID}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32745 |18 | |10355 |SMART [{#NAME}]: Critical warning |smart.disk.critical_warning[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This field indicates critical warnings for the state of the controller. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32746 |18 | |10355 |SMART [{#NAME}]: Power on hours |smart.disk.hours[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32747 |18 | |10355 |SMART [{#NAME}]: Media errors |smart.disk.media_errors[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32748 |18 | |10355 |SMART [{#NAME}]: Device model |smart.disk.model[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32749 |18 | |10355 |SMART [{#NAME}]: Percentage used |smart.disk.percentage_used[{#NAME}] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer's prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state). |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32750 |18 | |10355 |SMART [{#NAME}]: Serial number |smart.disk.sn[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32751 |18 | |10355 |SMART [{#NAME}]: Temperature |smart.disk.temperature[{#NAME}] |0 |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Current drive temperature. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32752 |18 | |10355 |SMART [{#NAME}]: Self-test passed |smart.disk.test[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The disk is passed the SMART self-test or not. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32756 |18 | |10356 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} |smart.disk.error[{#NAME},{#ID}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32757 |18 | |10356 |SMART [{#NAME}]: Critical warning |smart.disk.critical_warning[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This field indicates critical warnings for the state of the controller. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32758 |18 | |10356 |SMART [{#NAME}]: Power on hours |smart.disk.hours[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32759 |18 | |10356 |SMART [{#NAME}]: Media errors |smart.disk.media_errors[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32760 |18 | |10356 |SMART [{#NAME}]: Device model |smart.disk.model[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32761 |18 | |10356 |SMART [{#NAME}]: Percentage used |smart.disk.percentage_used[{#NAME}] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer's prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state). |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32762 |18 | |10356 |SMART [{#NAME}]: Serial number |smart.disk.sn[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32763 |18 | |10356 |SMART [{#NAME}]: Temperature |smart.disk.temperature[{#NAME}] |0 |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Current drive temperature. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32764 |18 | |10356 |SMART [{#NAME}]: Self-test passed |smart.disk.test[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The disk is passed the SMART self-test or not. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32840 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32841 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32842 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32843 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32844 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32845 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32846 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32847 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32848 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32849 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32850 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32851 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32852 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32853 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32854 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32855 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32856 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32857 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32858 |18 | |10358 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32859 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32860 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32861 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32862 |18 | |10358 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32863 |18 | |10358 |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 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32864 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32865 |18 | |10359 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32866 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32867 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32868 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32869 |18 | |10359 |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 | |32833 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32870 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32871 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32872 |18 | |10359 |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 | |32833 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32873 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32874 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32875 |18 | |10359 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32876 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32877 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32878 |18 | |10359 |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 | |32834 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32879 |18 | |10358 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32880 |18 | |10358 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32829 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32881 |18 | |10359 |Health Check 3.8.9- discovery |rabbitmq.healthcheck.v389.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Specific metrics up to and including version 3.8.4 |0 |30d |0 | |32833 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32882 |18 | |10359 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32833 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32883 |18 | |10359 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32891 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32892 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32893 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32894 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32895 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32896 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32897 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32898 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32899 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32900 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32901 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32902 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32903 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32904 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32905 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32906 |18 | |10358 |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 | |32830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32907 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32908 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32909 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32910 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32911 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32912 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32913 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32914 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32915 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32916 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32917 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32918 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32919 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32920 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32921 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32922 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32923 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32924 |18 | |10359 |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 | |32835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32932 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32933 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32934 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32935 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32936 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32937 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32938 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32939 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32940 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32941 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32942 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32943 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32944 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32945 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32946 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32947 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32948 |18 | |10360 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32949 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32950 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32951 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32952 |18 | |10360 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32953 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32954 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32955 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32956 |18 | |10361 |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 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32957 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32958 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32959 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32960 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32961 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32962 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32963 |18 | |10361 |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 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32964 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32965 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32966 |18 | |10361 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32967 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32968 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32969 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32970 |18 | |10361 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32971 |18 | |10360 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32972 |18 | |10360 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32973 |18 | |10361 |Health Check 3.8.9- discovery |rabbitmq.healthcheck.v389.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Specific metrics up to and including version 3.8.4 |0 |30d |0 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32974 |18 | |10361 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32975 |18 | |10361 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32983 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32984 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32985 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32986 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32987 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32988 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32989 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32990 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32991 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32992 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32993 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32994 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32995 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32996 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32997 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32998 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32999 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33000 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33001 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33002 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33003 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33004 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33005 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33006 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33007 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33008 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33009 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33010 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33011 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33012 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33013 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33014 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33015 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33016 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33022 |18 | |10362 |MongoDB: Document: deleted, rate |mongod.document.deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents deleted per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33023 |18 | |10362 |MongoDB: Requests, rate |mongodb.network.numRequests.rate |0 |7d |365d |0 |0 | |!Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of distinct requests that the server has received per second |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33024 |18 | |10362 |MongoDB: Memory: mapped with journal |mongodb.mem.mapped_with_journal |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of mapped memory, including the memory used for journaling. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33025 |18 | |10362 |MongoDB: Memory: resident |mongodb.mem.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory currently used by the database process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33026 |18 | |10362 |MongoDB: Memory: virtual |mongodb.mem.virtual |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of virtual memory used by the mongod process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33027 |18 | |10362 |MongoDB: Cursor: open no timeout |mongodb.metrics.cursor.open.no_timeout |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33028 |18 | |10362 |MongoDB: Bytes in, rate |mongodb.network.bytes_in.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33029 |18 | |10362 |MongoDB: Bytes out, rate |mongodb.network.bytes_out.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33030 |18 | |10362 |MongoDB: Operations: delete, rate |mongodb.opcounters.delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of delete operations the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33031 |18 | |10362 |MongoDB: Operations: command, rate |mongodb.opcounters.command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of commands issued to the database the mongod instance per second.&eol;Counts all commands except the write commands: insert, update, and delete. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33032 |18 | |10362 |MongoDB: Architecture |mongodb.mem.bits |0 |7d |365d |0 |3 | |bit | | |NULL |NULL | | |0 | | | | |0 |NULL |A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33033 |18 | |10362 |MongoDB: Operations: getmore, rate |mongodb.opcounters.getmore.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of “getmore” operations since the mongod instance per second. This counter can be high even if the query count is low. &eol;Secondary nodes send getMore operations as part of the replication process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33034 |18 | |10362 |MongoDB: Operations: insert, rate |mongodb.opcounters.insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of insert operations received since the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33035 |18 | |10362 |MongoDB: Operations: query, rate |mongodb.opcounters.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries received the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33036 |18 | |10362 |MongoDB: Operations: update, rate |mongodb.opcounters.update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of update operations the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33037 |18 | |10362 |MongoDB: Uptime |mongodb.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds that the mongod process has been active. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33038 |18 | |10362 |MongoDB: Memory: mapped |mongodb.mem.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of mapped memory by the database. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33039 |18 | |10362 |MongoDB: Cursor: timed out, rate |mongodb.cursor.timed_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that time out, per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33040 |18 | |10362 |MongoDB: Document: inserted, rate |mongod.document.inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents inserted per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33041 |18 | |10362 |MongoDB: Asserts: user, rate |mongodb.asserts.user.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of “user asserts” that have occurred per second.&eol;These are errors that user may generate, such as out of disk space or duplicate key. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33042 |18 | |10362 |MongoDB: Document: returned, rate |mongod.document.returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents returned by queries per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33043 |18 | |10362 |MongoDB: Document: updated, rate |mongod.document.updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents updated per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33044 |18 | |10362 |MongoDB: Active clients: readers |mongodb.active_clients.readers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of the active client connections performing read operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33045 |18 | |10362 |MongoDB: Active clients: total |mongodb.active_clients.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of internal client connections to the database including system threads as well as queued readers and writers. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33046 |18 | |10362 |MongoDB: Active clients: writers |mongodb.active_clients.writers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active client connections performing write operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33047 |18 | |10362 |MongoDB: Asserts: message, rate |mongodb.asserts.msg.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of message assertions raised per second.&eol;Check the log file for more information about these messages. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33048 |18 | |10362 |MongoDB: Asserts: regular, rate |mongodb.asserts.regular.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of regular assertions raised per second.&eol;Check the log file for more information about these messages. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33049 |18 | |10362 |MongoDB: Asserts: rollovers, rate |mongodb.asserts.rollovers.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that the rollover counters roll over per second.&eol;The counters rollover to zero every 2^30 assertions. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33050 |18 | |10362 |MongoDB: Asserts: warning, rate |mongodb.asserts.warning.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of warnings raised per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33051 |18 | |10362 |MongoDB: Cursor: open total |mongodb.cursor.open.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that MongoDB is maintaining for clients. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33052 |18 | |10362 |MongoDB: Connections, active |mongodb.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active client connections to the server.&eol;Active client connections refers to client connections that currently have operations in progress.&eol;Available starting in 4.0.7, 0 for older versions. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33053 |18 | |10362 |MongoDB: Connections, available |mongodb.connections.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unused incoming connections available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33054 |18 | |10362 |MongoDB: Connections, current |mongodb.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of incoming connections from clients to the database server.&eol;This number includes the current shell session |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33055 |18 | |10362 |MongoDB: New connections, rate |mongodb.connections.rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of all incoming connections created to the server. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33056 |18 | |10362 |MongoDB: Current queue: readers |mongodb.current_queue.readers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of operations that are currently queued and waiting for the read lock.&eol;A consistently small read-queue, particularly of shorter operations, should cause no concern. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33057 |18 | |10362 |MongoDB: Current queue: total |mongodb.current_queue.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of operations queued waiting for the lock. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33058 |18 | |10362 |MongoDB: Current queue: writers |mongodb.current_queue.writers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of operations that are currently queued and waiting for the write lock. &eol; A consistently small write-queue, particularly of shorter operations, is no cause for concern. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33059 |18 | |10362 |MongoDB: Cursor: open pinned |mongodb.cursor.open.pinned |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pinned open cursors. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33060 |18 | |10362 |MongoDB: MongoDB version |mongodb.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the MongoDB server. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33063 |18 | |10362 |Replication discovery |mongodb.rs.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33064 |18 | |10362 |WiredTiger metrics |mongodb.wired_tiger.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics of WiredTiger Storage Engine if it exists |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33067 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size |mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size of the average object in the collection in bytes. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33068 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s |mongodb.collection.ops.remove.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33069 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s |mongodb.collection.write_lock.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33070 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Storage size |mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total storage space allocated to this collection for document storage. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33071 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Size |mongodb.collection.size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33072 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate |mongodb.collection.read_lock.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33073 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s |mongodb.collection.read_lock.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33074 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate |mongodb.collection.ops.update.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33075 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s |mongodb.collection.ops.update.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33076 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate |mongodb.collection.ops.total.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33077 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s |mongodb.collection.ops.total.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33078 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate |mongodb.collection.ops.remove.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33079 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate |mongodb.collection.ops.queries.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33080 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped |mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |153 | | |0 | | | | |2 |NULL |Whether or not the collection is capped. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33081 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s |mongodb.collection.ops.queries.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33082 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate |mongodb.collection.ops.insert.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33083 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s |mongodb.collection.ops.insert.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33084 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate |mongodb.collection.ops.getmore.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33085 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s |mongodb.collection.ops.getmore.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33086 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate |mongodb.collection.ops.commands.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33087 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s |mongodb.collection.ops.commands.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33088 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Indexes |mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of indices on the collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33089 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size |mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of a capped collection in bytes. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33090 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number |mongodb.collection.max_number["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum number of documents that may be present in a capped collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33091 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, count |mongodb.collection.count["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of objects in the collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33092 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate |mongodb.collection.write_lock.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33093 |18 | |10362 |MongoDB {#DBNAME}: Collections |mongodb.db.collections["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of collections in that database. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33094 |18 | |10362 |MongoDB {#DBNAME}: Size, data |mongodb.db.data_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33095 |18 | |10362 |MongoDB {#DBNAME}: Extents |mongodb.db.extents["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of extents in the database across all collections. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33096 |18 | |10362 |MongoDB {#DBNAME}: Size, file |mongodb.db.file_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine). |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33097 |18 | |10362 |MongoDB {#DBNAME}: Size, index |mongodb.db.index_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of all indexes created on this database. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33098 |18 | |10362 |MongoDB {#DBNAME}: Objects, count |mongodb.db.objects["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects (documents) in the database across all collections. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33099 |18 | |10362 |MongoDB {#DBNAME}: Objects, avg size |mongodb.db.size["{#DBNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The average size of each document in bytes. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33100 |18 | |10362 |MongoDB {#DBNAME}: Size, storage |mongodb.db.storage_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of space allocated to collections in this database for document storage. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33101 |18 | |10362 |MongoDB: Apply batches, ms/s |mongodb.rs.apply.batches.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent applying operations from the oplog. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33102 |18 | |10362 |MongoDB: Network readers created, rate |mongodb.rs.network.readers.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of oplog query processes created per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33103 |18 | |10362 |MongoDB: Number of unhealthy replicas |mongodb.rs.unhealthy_count[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of replicated nodes with member health value = 0. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
-ROW |33104 |18 | |10362 |MongoDB: Number of replicas |mongodb.rs.total_nodes[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of replicated nodes in current ReplicaSet. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
-ROW |33105 |18 | |10362 |MongoDB: Node state |mongodb.rs.state[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |154 | | |0 | | | | |2 |NULL |An integer between 0 and 10 that represents the replica state of the current member. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33106 |18 | |10362 |MongoDB: Preload indexes, rate |mongodb.rs.preload.indexes.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index entries loaded by members before updating documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33107 |18 | |10362 |MongoDB: Preload indexes, ms/s |mongodb.rs.preload.indexes.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33108 |18 | |10362 |MongoDB: Preload docs, rate |mongodb.rs.preload.docs.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of documents loaded per second during the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33109 |18 | |10362 |MongoDB: Preload docs, ms/s |mongodb.rs.preload.docs.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33110 |18 | |10362 |MongoDB {#RS_NAME}: Oplog time diff |mongodb.rs.oplog.timediff[{#RS_NAME}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Oplog window: difference between the first and last operation in the oplog. Only present if there are entries in the oplog. |0 |30d |0 | |33020 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33111 |18 | |10362 |MongoDB: Network ops, rate |mongodb.rs.network.ops.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of operations read from the replication source per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33112 |18 | |10362 |MongoDB: Apply batches, rate |mongodb.rs.apply.batches.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of batches applied across all databases per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33113 |18 | |10362 |MongoDB: Network getmores, rate |mongodb.rs.network.getmores.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of getmore operations per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33114 |18 | |10362 |MongoDB: Network getmores, ms/s |mongodb.rs.network.getmores.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) required to collect data from getmore operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33115 |18 | |10362 |MongoDB: Network bytes, rate |mongodb.rs.network.bytes.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of data read from the replication sync source per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33116 |18 | |10362 |MongoDB: Replication lag |mongodb.rs.lag[{#RS_NAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Delay between a write operation on the primary and its copy to a secondary. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33117 |18 | |10362 |MongoDB: Buffer, size |mongodb.rs.buffer.size[{#RS_NAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Current size of the contents of the oplog buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33118 |18 | |10362 |MongoDB: Buffer, max size |mongodb.rs.buffer.max_size[{#RS_NAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of the buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33119 |18 | |10362 |MongoDB: Buffer |mongodb.rs.buffer.count[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of operations in the oplog buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33120 |18 | |10362 |MongoDB: Apply ops, rate |mongodb.rs.apply.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of oplog operations applied per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33121 |18 | |10362 |MongoDB: Unhealthy replicas |mongodb.rs.unhealthy[{#RS_NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The replicated nodes in current ReplicaSet with member health value = 0. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
-ROW |33122 |18 | |10362 |MongoDB: WiredTiger cache: bytes |mongodb.wired_tiger.cache.bytes_in_cache[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the data currently in cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33123 |18 | |10362 |MongoDB: WiredTiger cache: tracked dirty bytes in the cache |mongodb.wired_tiger.cache.tracked_dirty_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the dirty data in the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33124 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, out |mongodb.wired_tiger.concurrent_transactions.write.out[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of write tickets (concurrent transactions) in use. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33125 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, available |mongodb.wired_tiger.concurrent_transactions.write.available[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of available write tickets (concurrent transactions) remaining. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33126 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, total tickets |mongodb.wired_tiger.concurrent_transactions.read.totalTickets[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of read tickets (concurrent transactions) available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33127 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, out |mongodb.wired_tiger.concurrent_transactions.read.out[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of read tickets (concurrent transactions) in use. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33128 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, available |mongodb.wired_tiger.concurrent_transactions.read.available[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of available read tickets (concurrent transactions) remaining. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33129 |18 | |10362 |MongoDB: WiredTiger cache: unmodified pages evicted |mongodb.wired_tiger.cache.unmodified_pages_evicted[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages, that were not modified, evicted from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33130 |18 | |10362 |MongoDB: WiredTiger cache: in-memory page splits |mongodb.wired_tiger.cache.splits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |In-memory page splits. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33131 |18 | |10362 |MongoDB: WiredTiger cache: max page size at eviction |mongodb.wired_tiger.cache.max_page_size_eviction[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum page size at eviction. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33132 |18 | |10362 |MongoDB: WiredTiger cache: pages written from cache |mongodb.wired_tiger.cache.pages_written[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages written from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33133 |18 | |10362 |MongoDB: WiredTiger cache: pages read into cache |mongodb.wired_tiger.cache.pages_read[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages read into the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33134 |18 | |10362 |MongoDB: WiredTiger cache: pages held in cache |mongodb.wired_tiger.cache.pages_in_cache[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages currently held in the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33135 |18 | |10362 |MongoDB: WiredTiger cache: pages evicted by application threads, rate |mongodb.wired_tiger.cache.pages_evicted_threads.rate[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of page evicted by application threads per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33136 |18 | |10362 |MongoDB: WiredTiger cache: modified pages evicted |mongodb.wired_tiger.cache.modified_pages_evicted[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages, that have been modified, evicted from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33137 |18 | |10362 |MongoDB: WiredTiger cache: bytes, max |mongodb.wired_tiger.cache.maximum_bytes_configured[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum cache size. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33138 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, total tickets |mongodb.wired_tiger.concurrent_transactions.write.totalTickets[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of write tickets (concurrent transactions) available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33144 |18 | |10363 |MongoDB cluster: Operations: command |mongodb.opcounters.command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of commands issued to the database per second.&eol;Counts all commands except the write commands: insert, update, and delete." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33145 |18 | |10363 |MongoDB cluster: Bytes in, rate |mongodb.network.bytes_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33146 |18 | |10363 |MongoDB cluster: Bytes out, rate |mongodb.network.bytes_out.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33147 |18 | |10363 |MongoDB cluster: Requests, rate |mongodb.network.numRequests.rate |0 |7d |365d |0 |0 | |!Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of distinct requests that the server has received per second |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33148 |18 | |10363 |MongoDB cluster: Operations: getmore, rate |mongodb.opcounters.getmore.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of “getmore” operations the mongos per second. This counter can be high even if the query count is low.&eol;Secondary nodes send getMore operations as part of the replication process." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33149 |18 | |10363 |MongoDB cluster: Operations: delete |mongodb.opcounters.delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of delete operations the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33150 |18 | |10363 |MongoDB cluster: Memory: virtual |mongodb.mem.virtual |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of virtual memory used by the mongos process. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33151 |18 | |10363 |MongoDB cluster: Operations: insert, rate |mongodb.opcounters.insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of insert operations received the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33152 |18 | |10363 |MongoDB cluster: Operations: query, rate |mongodb.opcounters.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of queries received the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33153 |18 | |10363 |MongoDB cluster: Operations: update, rate |mongodb.opcounters.update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of update operations the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33154 |18 | |10363 |MongoDB cluster: Uptime |mongodb.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Mongos server start |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33155 |18 | |10363 |MongoDB cluster: Cursor: open no timeout |mongodb.metrics.cursor.open.no_timeout |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33156 |18 | |10363 |MongoDB cluster: Architecture |mongodb.mem.bits |0 |7d |365d |0 |3 | |bit | | |NULL |NULL | | |0 | | | | |0 |NULL |A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33157 |18 | |10363 |MongoDB cluster: Memory: resident |mongodb.mem.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory currently used by the database process. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33158 |18 | |10363 |MongoDB cluster: Connection pool: available |mongodb.connection_pool.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of available outgoing connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33159 |18 | |10363 |MongoDB cluster: Last seen configserver |mongodb.last_seen_config_server |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The latest optime of the CSRS primary that the mongos has seen. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33160 |18 | |10363 |MongoDB cluster: Cursor: timed out, rate |mongodb.cursor.timed_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that time out, per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33161 |18 | |10363 |MongoDB cluster: Cursor: open total |mongodb.cursor.open.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that MongoDB is maintaining for clients. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33162 |18 | |10363 |MongoDB cluster: Cursor: open pinned |mongodb.cursor.open.pinned |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pinned open cursors. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33163 |18 | |10363 |MongoDB cluster: New connections, rate |mongodb.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Rate of all incoming connections created to the server." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33164 |18 | |10363 |MongoDB cluster: Connections, current |mongodb.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of incoming connections from clients to the database server. &eol;This number includes the current shell session" |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33165 |18 | |10363 |MongoDB cluster: Connections, available |mongodb.connections.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of unused incoming connections available." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33166 |18 | |10363 |MongoDB cluster: Connections, active |mongodb.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of active client connections to the server. &eol;Active client connections refers to client connections that currently have operations in progress.&eol;Available starting in 4.0.7, 0 for older versions." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33167 |18 | |10363 |MongoDB cluster: Connection pool: scoped |mongodb.connection_pool.scoped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of active and stored outgoing scoped synchronous connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33168 |18 | |10363 |MongoDB cluster: Connection pool: refreshing |mongodb.connection_pool.refreshing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster that are currently being refreshed. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33169 |18 | |10363 |MongoDB cluster: Connection pool: in use |mongodb.connection_pool.in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster set that are currently in use. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33170 |18 | |10363 |MongoDB cluster: Connection pool: created, rate |mongodb.connection_pool.created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of outgoing connections created per second by the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33171 |18 | |10363 |MongoDB cluster: Connection pool: client connections |mongodb.connection_pool.client |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active and stored outgoing synchronous connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33172 |18 | |10363 |MongoDB cluster: Mongos version |mongodb.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Mongos server |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33179 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size |mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size of the average object in the collection in bytes. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33180 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped |mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"] |0 |7d |0 |0 |1 | | | | |NULL |153 | | |0 | | | | |2 |NULL |Whether or not the collection is capped. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33181 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, count |mongodb.collection.count["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of objects in the collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33182 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size |mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of a capped collection in bytes. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33183 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number |mongodb.collection.max["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum number of documents in a capped collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33184 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Indexes |mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of indices on the collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33185 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Size |mongodb.collection.size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33186 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Storage size |mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total storage space allocated to this collection for document storage. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33187 |18 | |10363 |MongoDB {#DBNAME}: Size, data |mongodb.db.data_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33188 |18 | |10363 |MongoDB {#DBNAME}: Extents |mongodb.db.extents["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of extents in the database across all collections. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33189 |18 | |10363 |MongoDB {#DBNAME}: Size, file |mongodb.db.file_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine). |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33190 |18 | |10363 |MongoDB {#DBNAME}: Size, index |mongodb.db.index_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of all indexes created on this database. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33191 |18 | |10363 |MongoDB {#DBNAME}: Objects, count |mongodb.db.objects["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects (documents) in the database across all collections. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33192 |18 | |10363 |MongoDB {#DBNAME}: Objects, avg size |mongodb.db.size["{#DBNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The average size of each document in bytes. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33193 |18 | |10363 |MongoDB {#DBNAME}: Size, storage |mongodb.db.storage_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of space allocated to collections in this database for document storage. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33195 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]|0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of the log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33196 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records in the log files of the secondary replica that has not yet been redone. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33493 |18 | |10372 |Cluster status |netapp.cluster.status |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The status of the cluster: ok, error, partial_no_data, partial_no_response, partial_other_error, negative_delta, backfilled_data, inconsistent_delta_time, inconsistent_old_data. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33494 |18 | |10372 |Cluster location |netapp.cluster.location |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The location of the cluster. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33495 |18 | |10372 |Cluster name |netapp.cluster.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of the cluster. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33496 |18 | |10372 |Cluster IOPS raw, other |netapp.cluster.statistics.iops_raw.other |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33497 |18 | |10372 |Cluster IOPS raw, read |netapp.cluster.statistics.iops_raw.read |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33498 |18 | |10372 |Cluster IOPS raw, total |netapp.cluster.statistics.iops_raw.total |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33499 |18 | |10372 |Cluster IOPS raw, write |netapp.cluster.statistics.iops_raw.write |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33500 |18 | |10372 |Cluster IOPS, other rate |netapp.cluster.statistics.iops.other.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33501 |18 | |10372 |Cluster software version |netapp.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33502 |18 | |10372 |Cluster latency raw, read |netapp.cluster.statistics.latency_raw.read |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33503 |18 | |10372 |Cluster latency raw, total |netapp.cluster.statistics.latency_raw.total |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33504 |18 | |10372 |Cluster throughput, total rate |netapp.cluster.statistics.throughput.total.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33505 |18 | |10372 |Cluster throughput, read rate |netapp.cluster.statistics.throughput.read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33506 |18 | |10372 |Cluster throughput, other rate |netapp.cluster.statistics.throughput.other.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33507 |18 | |10372 |Cluster IOPS, read rate |netapp.cluster.statistics.iops.read.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33508 |18 | |10372 |Cluster IOPS, total rate |netapp.cluster.statistics.iops.total.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33509 |18 | |10372 |Cluster IOPS, write rate |netapp.cluster.statistics.iops.write.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33510 |18 | |10372 |Cluster latency raw, other |netapp.cluster.statistics.latency_raw.other |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33511 |18 | |10372 |Cluster latency raw, write |netapp.cluster.statistics.latency_raw.write |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33512 |18 | |10372 |Cluster throughput, write rate |netapp.cluster.statistics.throughput.write.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33515 |18 | |10372 |FRUs discovery |netapp.frus.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |33486 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33526 |18 | |10372 |{#ID}: State |netapp.chassis.state[{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The chassis state: ok, error. |0 |30d |0 | |33479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33527 |18 | |10372 |{#DISKNAME}: State |netapp.disk.state[{#NODENAME},{#DISKNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the disk. Possible values: broken, copy, maintenance, partner, pending, present, reconstructing, removed, spare, unfail, zeroing |0 |30d |0 | |33487 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33528 |18 | |10372 |{#FRUID}: State |netapp.chassis.fru.state[{#CHASSISID},{#FRUID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The FRU state: ok, error. |0 |30d |0 | |33486 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33529 |18 | |10372 |{#LUNNAME}: Space size |netapp.lun.space.size[{#SVMNAME},{#LUNNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total provisioned size of the LUN. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33530 |18 | |10372 |{#LUNNAME}: Space used |netapp.lun.space.used[{#SVMNAME},{#LUNNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of space consumed by the main data stream of the LUN. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33531 |18 | |10372 |{#LUNNAME}: Container state |netapp.lun.status.container_state[{#SVMNAME},{#LUNNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the volume and aggregate that contain the LUN: online, aggregate_offline, volume_offline. LUNs are only available when their containers are available. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33532 |18 | |10372 |{#LUNNAME}: State |netapp.lun.status.state[{#SVMNAME},{#LUNNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the LUN. Normal states for a LUN are online and offline. Other states indicate errors. Possible values: foreign_lun_error, nvfail, offline, online, space_error. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33533 |18 | |10372 |{#NODENAME}: Software version |netapp.node.version[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33534 |18 | |10372 |{#NODENAME}: Controller over temperature |netapp.nodes.controller.over_temperature[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Specifies whether the hardware is currently operating outside of its recommended temperature range. The hardware shuts down if the temperature exceeds critical thresholds. Possible values: over, normal |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33535 |18 | |10372 |{#NODENAME}: Location |netapp.nodes.location[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The location of the node. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33536 |18 | |10372 |{#NODENAME}: Membership |netapp.nodes.membership[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol; available - If a node is available, this means it is detected on the internal cluster network and can be added to the cluster. Nodes that have a membership of “available” are not returned when a GET request is called when the cluster exists. A query on the “membership” property for available must be provided to scan for nodes on the cluster network. Nodes that have a membership of “available” are returned automatically before a cluster is created.&eol; joining - Joining nodes are in the process of being added to the cluster. The node may be progressing through the steps to become a member or might have failed. The job to add the node or create the cluster provides details on the current progress of the node.&eol; member - Nodes that are members have successfully joined the cluster. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33537 |18 | |10372 |{#NODENAME}: State |netapp.nodes.state[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |State of the node:&eol;up - Node is up and operational.&eol;booting - Node is booting up.&eol;down - Node has stopped or is dumping core.&eol;taken_over - Node has been taken over by its HA partner and is not yet waiting for giveback.&eol;waiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks.&eol;degraded - Node has one or more critical services offline.&eol;unknown - Node or its HA partner cannot be contacted and there is no information on the node's state. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33538 |18 | |10372 |{#NODENAME}: Uptime |netapp.nodes.uptime[{#NODENAME}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The total time, in seconds, that the node has been up. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33539 |18 | |10372 |{#ETHPORTNAME}: State |netapp.port.eth.state[{#NODENAME},{#ETHPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The operational state of the port. Possible values: up, down. |0 |30d |0 | |33483 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33540 |18 | |10372 |{#FCPORTNAME}: Description |netapp.port.fc.description[{#NODENAME},{#FCPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |A description of the FC port. |0 |30d |0 | |33482 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33541 |18 | |10372 |{#FCPORTNAME}: State |netapp.port.fc.state[{#NODENAME},{#FCPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The operational state of the FC port. Possible values:&eol;startup - The port is booting up.&eol;link_not_connected - The port has finished initialization, but a link with the fabric is not established.&eol;online - The port is initialized and a link with the fabric has been established.&eol;link_disconnected - The link was present at one point on this port but is currently not established.&eol;offlined_by_user - The port is administratively disabled.&eol;offlined_by_system - The port is set to offline by the system. This happens when the port encounters too many errors.&eol;node_offline - The state information for the port cannot be retrieved. The node is offline or inaccessible. |0 |30d |0 | |33482 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33542 |18 | |10372 |{#SVMNAME}: Comment |netapp.svm.comment[{#SVMNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The comment for the SVM. |0 |30d |0 | |33481 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33543 |18 | |10372 |{#SVMNAME}: State |netapp.svm.state[{#SVMNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |SVM state: starting, running, stopping, stopped, deleting. |0 |30d |0 | |33481 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33544 |18 | |10372 |{#VOLUMENAME}: Comment |netapp.volume.comment[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |A comment for the volume. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33545 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, read |netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33546 |18 | |10372 |{#VOLUMENAME}: SVM name |netapp.volume.svm_name[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The volume belongs this SVM. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33547 |18 | |10372 |{#VOLUMENAME}: Volume throughput, write rate |netapp.volume.statistics.throughput.write.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33548 |18 | |10372 |{#VOLUMENAME}: Volume throughput, total rate |netapp.volume.statistics.throughput.total.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33549 |18 | |10372 |{#VOLUMENAME}: Volume throughput, read rate |netapp.volume.statistics.throughput.read.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33550 |18 | |10372 |{#VOLUMENAME}: Volume throughput, other rate |netapp.volume.statistics.throughput.other.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33551 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, write |netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33552 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, total |netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33553 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, other |netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33554 |18 | |10372 |{#VOLUMENAME}: Available size |netapp.volume.space_available[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The available space, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33555 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, write rate |netapp.volume.statistics.iops.write.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33556 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, total rate |netapp.volume.statistics.iops.total.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33557 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, read rate |netapp.volume.statistics.iops.read.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33558 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, other rate |netapp.volume.statistics.iops.other.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33559 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, write |netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33560 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, total |netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33561 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, read |netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33562 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, other |netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33563 |18 | |10372 |{#VOLUMENAME}: State |netapp.volume.state[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Volume state. A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The 'mixed' state applies to FlexGroup volumes only and cannot be specified as a target state. An 'error' state implies that the volume is not in a state to serve data. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33564 |18 | |10372 |{#VOLUMENAME}: Used size |netapp.volume.space_used[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The virtual space used (includes volume reserves) before storage efficiency, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33565 |18 | |10372 |{#VOLUMENAME}: Space size |netapp.volume.space_size[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total provisioned size. The default size is equal to the minimum size of 20MB, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33566 |18 | |10372 |{#VOLUMENAME}: Type |netapp.volume.type[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Type of the volume.&eol;rw - read-write volume.&eol;dp - data-protection volume.&eol;ls - load-sharing dp volume. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33567 |18 | |10363 |MongoDB cluster: Configserver heartbeat |mongodb.config_server_heartbeat |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34176 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup duration |mssql.backup.diff.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34177 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup (time ago) |mssql.backup.diff["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34178 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup |mssql.backup.log["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34179 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup duration |mssql.backup.log.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34180 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup (time ago) |mssql.backup.full["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34181 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup duration |mssql.backup.full.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34182 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run date-time |mssql.job.lastrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The last date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34183 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run status message |mssql.job.lastrunstatusmessage["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The informational message about the last run of the job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34184 |18 | |10327 |MSSQL Job '{#JOBNAME}': Next run date-time |mssql.job.nextrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The next date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34185 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run duration |mssql.job.run_duration["{#JOBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last run job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34186 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run status |mssql.job.runstatus["{#JOBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |161 | | |0 | | | | |2 |NULL |The job status possible values:&eol;0 ⇒ Failed&eol;1 ⇒ Succeeded&eol;2 ⇒ Retry&eol;3 ⇒ Canceled&eol;4 ⇒ Running |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34845 |18 | |10399 |Nginx: Connections idle |nginx.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34846 |18 | |10399 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34847 |18 | |10399 |Nginx: SSL session reuses, rate |nginx.ssl.session_reuses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of session reuses during SSL handshake per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34848 |18 | |10399 |Nginx: SSL handshakes, rate |nginx.ssl.handshakes.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of successful SSL handshakes per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34849 |18 | |10399 |Nginx: SSL handshakes failed, rate |nginx.ssl.handshakes_failed.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of failed SSL handshakes per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34850 |18 | |10399 |Nginx: Connections dropped |nginx.connections.dropped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34851 |18 | |10399 |Nginx: Requests current |nginx.requests.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of client requests. |0 |30d |0 | |34840 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34852 |18 | |10399 |Nginx: Requests total, rate |nginx.requests.total.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests per second. |0 |30d |0 | |34840 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34853 |18 | |10399 |Nginx: Version |nginx.info.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of nginx. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34854 |18 | |10399 |Nginx: Connections accepted, rate |nginx.connections.accepted.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections per second. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34855 |18 | |10399 |Nginx: Generation |nginx.info.generation |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of configuration reloads. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34856 |18 | |10399 |Nginx: Get info error |nginx.info.error |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Nginx error description. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34857 |18 | |10399 |Nginx: Address |nginx.info.address |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The address of the server that accepted status request. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34858 |18 | |10399 |Nginx: Uptime |nginx.info.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Server uptime. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34859 |18 | |10399 |HTTP location zones discovery |nginx.http.location_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34860 |18 | |10399 |HTTP server zones discovery |nginx.http.server_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34861 |18 | |10399 |HTTP upstream peers discovery |nginx.http.upstream.peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34862 |18 | |10399 |HTTP upstreams discovery |nginx.http.upstreams.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34863 |18 | |10399 |Resolvers discovery |nginx.resolvers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34864 |18 | |10399 |Stream server zones discovery |nginx.stream.server_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34865 |18 | |10399 |Stream upstream peers discovery |nginx.stream.upstream.peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34866 |18 | |10399 |Stream upstreams discovery |nginx.stream.upstreams.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34867 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Discarded, rate |nginx.http.location_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed without sending a response per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34868 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Received, rate |nginx.http.location_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34869 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Requests, rate |nginx.http.location_zones.requests.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests received from clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34870 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 1xx, rate |nginx.http.location_zones.responses.1xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34871 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 2xx, rate |nginx.http.location_zones.responses.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34872 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 3xx, rate |nginx.http.location_zones.responses.3xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34873 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 4xx, rate |nginx.http.location_zones.responses.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34874 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 5xx, rate |nginx.http.location_zones.responses.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34875 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses total, rate |nginx.http.location_zones.responses.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses sent to clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34876 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Sent, rate |nginx.http.location_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34877 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Discarded, rate |nginx.http.server_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed without sending a response per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34878 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Processing |nginx.http.server_zones.processing[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of client requests that are currently being processed. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34879 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Received, rate |nginx.http.server_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34880 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Requests, rate |nginx.http.server_zones.requests.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests received from clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34881 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 1xx, rate |nginx.http.server_zones.responses.1xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34882 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 2xx, rate |nginx.http.server_zones.responses.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34883 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 3xx, rate |nginx.http.server_zones.responses.3xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34884 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 4xx, rate |nginx.http.server_zones.responses.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34885 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 5xx, rate |nginx.http.server_zones.responses.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34886 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses total, rate |nginx.http.server_zones.responses.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses sent to clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34887 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Sent, rate |nginx.http.server_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34888 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active |nginx.http.upstream.peer.active[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of active connections. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34889 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate |nginx.http.upstream.peer.responses.2xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34890 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State |nginx.http.upstream.peer.state[{#UPSTREAM},{#PEER}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34891 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate |nginx.http.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34892 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate |nginx.http.upstream.peer.responses.total.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses obtained from this server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34893 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate |nginx.http.upstream.peer.responses.5xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34894 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate |nginx.http.upstream.peer.responses.4xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34895 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate |nginx.http.upstream.peer.responses.3xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34896 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate |nginx.http.upstream.peer.responses.1xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34897 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate |nginx.http.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of unsuccessful attempts to communicate with the server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34898 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time |nginx.http.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to get the full response from the server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34899 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate |nginx.http.upstream.peer.requests.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests forwarded to this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34900 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate |nginx.http.upstream.peer.received.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34901 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy |nginx.http.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unhealthy (state “unhealthy”). |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34902 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails |nginx.http.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of failed health checks. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34903 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check |nginx.http.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of health check requests made. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34904 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time |nginx.http.upstream.peer.header_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to get the response header from the server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34905 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail |nginx.http.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34906 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Keepalive |nginx.http.upstreams.keepalive[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of idle keepalive connections. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34907 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Zombies |nginx.http.upstreams.zombies[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of servers removed from the group but still processing active client requests. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34908 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Zone |nginx.http.upstreams.zone[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The name of the shared memory zone that keeps the group's configuration and run-time state. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34909 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests addr, rate |nginx.resolvers.requests.addr.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve addresses to names per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34910 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests name, rate |nginx.resolvers.requests.name.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve names to addresses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34911 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests srv, rate |nginx.resolvers.requests.srv.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve SRV records per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34912 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses formerr, rate |nginx.resolvers.responses.formerr.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of FORMERR (Format error) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34913 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses noerror, rate |nginx.resolvers.responses.noerror.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of successful responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34914 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses notimp, rate |nginx.resolvers.responses.notimp.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of NOTIMP (Unimplemented) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34915 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses nxdomain, rate |nginx.resolvers.responses.nxdomain.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of NXDOMAIN (Host not found) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34916 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses refused, rate |nginx.resolvers.responses.refused.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of REFUSED (Operation refused) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34917 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses servfail, rate |nginx.resolvers.responses.servfail.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of SERVFAIL (Server failure) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34918 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses timedout, rate |nginx.resolvers.responses.timedout.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of timed out requests per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34919 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses unknown, rate |nginx.resolvers.responses.unknown.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed with an unknown error per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34920 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Connections, rate |nginx.stream.server_zones.connections.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of connections accepted from clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34921 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Discarded, rate |nginx.stream.server_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of connections completed without creating a session per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34922 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Processing |nginx.stream.server_zones.processing[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of client connections that are currently being processed. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34923 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Received, rate |nginx.stream.server_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34924 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sent, rate |nginx.stream.server_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34925 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 2xx, rate |nginx.stream.server_zones.sessions.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “2xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34926 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 4xx, rate |nginx.stream.server_zones.sessions.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “4xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34927 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 5xx, rate |nginx.stream.server_zones.sessions.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “5xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34928 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions total, rate |nginx.stream.server_zones.sessions.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of completed client sessions per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34929 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active |nginx.stream.upstream.peer.active[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of connections. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34930 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time |nginx.stream.upstream.peer.connect_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to connect to the upstream server. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34931 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections |nginx.stream.upstream.peer.connections.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client connections forwarded to this server. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34932 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate |nginx.stream.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of unsuccessful attempts to communicate with the server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34933 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time |nginx.stream.upstream.peer.first_byte_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to receive the first byte of data. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34934 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check |nginx.stream.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of health check requests made. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34935 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails |nginx.stream.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of failed health checks. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34936 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy |nginx.stream.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unhealthy (state “unhealthy”). |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34937 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate |nginx.stream.upstream.peer.received.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from this server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34938 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time |nginx.stream.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to receive the last byte of data. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34939 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate |nginx.stream.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to this server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34940 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State |nginx.stream.upstream.peer.state[{#UPSTREAM},{#PEER}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34941 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail |nginx.stream.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34942 |18 | |10399 |Nginx: Stream upstream [{#NAME}]: Zombies |nginx.stream.upstreams.zombies[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34943 |18 | |10399 |Nginx: Stream upstream [{#NAME}]: Zone |nginx.stream.upstreams.zone[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35562 |18 | |10413 |{#UNIT.NAME}: Active state |systemd.service.active_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |238 | | |0 | | | | |2 |NULL |State value that reflects whether the unit is currently active or not. The following states are currently defined: "active", "reloading", "inactive", "failed", "activating", and "deactivating". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35563 |18 | |10413 |{#UNIT.NAME}: Load state |systemd.service.load_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |237 | | |0 | | | | |2 |NULL |State value that reflects whether the configuration file of this unit has been loaded. The following states are currently defined: "loaded", "error", and "masked". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35564 |18 | |10413 |{#UNIT.NAME}: Unit file state |systemd.service.unitfile_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |239 | | |0 | | | | |2 |NULL |Encodes the install state of the unit file of FragmentPath. It currently knows the following states: "enabled", "enabled-runtime", "linked", "linked-runtime", "masked", "masked-runtime", "static", "disabled", and "invalid". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35565 |18 | |10413 |{#UNIT.NAME}: Active time |systemd.service.uptime["{#UNIT.NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since unit entered the active state. |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35566 |18 | |10413 |{#UNIT.NAME}: Connections accepted per sec |systemd.socket.conn_accepted.rate["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of accepted socket connections (NAccepted) per second. |0 |30d |0 | |35561 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35567 |18 | |10413 |{#UNIT.NAME}: Connections connected |systemd.socket.conn_count["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of socket connections (NConnections). |0 |30d |0 | |35561 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35773 |18 | |10416 |Cert: Subject alternative name |cert.alternative_names |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate. Defined options include an Internet electronic mail address, a DNS name, an IP address, and a Uniform Resource Identifier (URI). |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35774 |18 | |10416 |Cert: Issuer |cert.issuer |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The field identifies the entity that has signed and issued the certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35775 |18 | |10416 |Cert: Last validation status |cert.message |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Last check result message. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35776 |18 | |10416 |Cert: Expires on |cert.not_after |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The date on which the certificate validity period ends. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35777 |18 | |10416 |Cert: Valid from |cert.not_before |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The date on which the certificate validity period begins. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35778 |18 | |10416 |Cert: Public key algorithm |cert.public_key_algorithm |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The digital signature algorithm is used to verify the signature of a certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35779 |18 | |10416 |Cert: Serial number |cert.serial_number |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The serial number is a positive integer assigned by the CA to each certificate. It is unique for each certificate issued by a given CA. Non-conforming CAs may issue certificates with serial numbers that are negative or zero. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35780 |18 | |10416 |Cert: Fingerprint |cert.sha1_fingerprint |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Certificate Signature (SHA1 Fingerprint or Thumbprint) is the hash of the entire certificate in DER form. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35781 |18 | |10416 |Cert: Signature algorithm |cert.signature_algorithm |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The algorithm identifier for the algorithm used by the CA to sign the certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35782 |18 | |10416 |Cert: Subject |cert.subject |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The field identifies the entity associated with the public key stored in the subject public key field. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35783 |18 | |10416 |Cert: Validation result |cert.validation |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The certificate validation result. Possible values: valid/invalid/valid-but-self-signed |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35784 |18 | |10416 |Cert: Version |cert.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The version of the encoded certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35785 |18 | |10308 |HAProxy: Get nodes |haproxy.get.nodes |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Array for LLD rules. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35787 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of active servers |haproxy.backend.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active servers. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35788 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35789 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35790 |18 | |10308 |HAProxy Backend {#PXNAME}: Weight |haproxy.backend.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total effective weight. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35791 |18 | |10308 |HAProxy Backend {#PXNAME}: Sessions per second |haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35792 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol;UP - The server is reporting as healthy.&eol;DOWN - The server is reporting as unhealthy and unable to receive requests.&eol;NOLB - You've added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.&eol;MAINT - The server has been disabled or put into maintenance mode.&eol;DRAIN - The server has been put into drain mode.&eol;no check - Health checks are not enabled for this server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35793 |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 |35794 |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 |35795 |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 |35796 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35797 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of backup servers |haproxy.backend.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backup servers. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35798 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35799 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35800 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35801 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35802 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35803 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35804 |18 | |10308 |HAProxy Backend {#PXNAME}: Outgoing traffic |haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35805 |18 | |10308 |HAProxy Backend {#PXNAME}: Incoming traffic |haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35806 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35807 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin.rate[{#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 |35808 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |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 |35809 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35810 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35811 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35812 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35813 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35814 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35815 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35816 |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 |35817 |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 |35818 |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 |35819 |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 |35820 |18 | |10308 |HAProxy Frontend {#PXNAME}: Status |haproxy.frontend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values: OPEN, STOP.&eol;When Status is OPEN, the frontend is operating normally and ready to receive traffic. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35821 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server is active |haproxy.server.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is active (marked with a Y) or a backup (marked with a -). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35822 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35823 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35824 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Weight |haproxy.server.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Effective weight. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35825 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Sessions per second |haproxy.server.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35826 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35827 |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 |35828 |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 |35829 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue |haproxy.server.qlimit[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35830 |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 |35831 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server was selected per second |haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times that server was selected. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35832 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35833 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server is backup |haproxy.server.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is a backup (marked with a Y) or active (marked with a -). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35834 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second |haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35835 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second |haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35836 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second |haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35837 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35838 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35839 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35840 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status of last health check |haproxy.server.check_status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of last health check, one of:&eol;UNK -> unknown&eol;INI -> initializing&eol;SOCKERR -> socket error&eol;L4OK -> check passed on layer 4, no upper layers testing enabled&eol;L4TOUT -> layer 1-4 timeout&eol;L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)&eol;L6OK -> check passed on layer 6&eol;L6TOUT -> layer 6 (SSL) timeout&eol;L6RSP -> layer 6 invalid response - protocol error&eol;L7OK -> check passed on layer 7&eol;L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404&eol;L7TOUT -> layer 7 (HTTP/SMTP) timeout&eol;L7RSP -> layer 7 invalid response - protocol error&eol;L7STS -> layer 7 response error, for example HTTP 5xx&eol;Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".|0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35841 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic |haproxy.server.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35842 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Incoming traffic |haproxy.server.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35843 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35844 |18 | |10309 |HAProxy: Get nodes |haproxy.get.nodes |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Array for LLD rules. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35846 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of active servers |haproxy.backend.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active servers. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35847 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35848 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35849 |18 | |10309 |HAProxy Backend {#PXNAME}: Weight |haproxy.backend.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total effective weight. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35850 |18 | |10309 |HAProxy Backend {#PXNAME}: Sessions per second |haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35851 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol;UP - The server is reporting as healthy.&eol;DOWN - The server is reporting as unhealthy and unable to receive requests.&eol;NOLB - You've added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.&eol;MAINT - The server has been disabled or put into maintenance mode.&eol;DRAIN - The server has been put into drain mode.&eol;no check - Health checks are not enabled for this server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35852 |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 |35853 |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 |35854 |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 |35855 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35856 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of backup servers |haproxy.backend.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backup servers. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35857 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35858 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35859 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35860 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35861 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35862 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35863 |18 | |10309 |HAProxy Backend {#PXNAME}: Outgoing traffic |haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35864 |18 | |10309 |HAProxy Backend {#PXNAME}: Incoming traffic |haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35865 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35866 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin.rate[{#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 |35867 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |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 |35868 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35869 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35870 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35871 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35872 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35873 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35874 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35875 |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 |35876 |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 |35877 |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 |35878 |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 |35879 |18 | |10309 |HAProxy Frontend {#PXNAME}: Status |haproxy.frontend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values: OPEN, STOP.&eol;When Status is OPEN, the frontend is operating normally and ready to receive traffic. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35880 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server is active |haproxy.server.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is active (marked with a Y) or a backup (marked with a -). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35881 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35882 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35883 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Weight |haproxy.server.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Effective weight. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35884 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Sessions per second |haproxy.server.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35885 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35886 |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 |35887 |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 |35888 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue |haproxy.server.qlimit[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35889 |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 |35890 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server was selected per second |haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times that server was selected. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35891 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35892 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server is backup |haproxy.server.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is a backup (marked with a Y) or active (marked with a -). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35893 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second |haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35894 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second |haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35895 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second |haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35896 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35897 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35898 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35899 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status of last health check |haproxy.server.check_status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of last health check, one of:&eol;UNK -> unknown&eol;INI -> initializing&eol;SOCKERR -> socket error&eol;L4OK -> check passed on layer 4, no upper layers testing enabled&eol;L4TOUT -> layer 1-4 timeout&eol;L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)&eol;L6OK -> check passed on layer 6&eol;L6TOUT -> layer 6 (SSL) timeout&eol;L6RSP -> layer 6 invalid response - protocol error&eol;L7OK -> check passed on layer 7&eol;L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404&eol;L7TOUT -> layer 7 (HTTP/SMTP) timeout&eol;L7RSP -> layer 7 invalid response - protocol error&eol;L7STS -> layer 7 response error, for example HTTP 5xx&eol;Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".|0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35900 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic |haproxy.server.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35901 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Incoming traffic |haproxy.server.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |35902 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |36581 |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 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36595 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36596 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36597 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36603 |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 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36617 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36618 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36619 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36623 |18 | |10355 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36624 |18 | |10356 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36625 |18 | |10318 |Container {#NAME}: CPU percent usage |docker.container_stats.cpu_pct_usage["{#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 |36724 |18 | |10433 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36725 |18 | |10433 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36726 |18 | |10433 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36727 |18 | |10433 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36728 |18 | |10433 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36729 |18 | |10433 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36730 |18 | |10433 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36731 |18 | |10433 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36732 |18 | |10433 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36733 |18 | |10433 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36734 |18 | |10433 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36735 |18 | |10433 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36736 |18 | |10433 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36737 |18 | |10433 |WAL: Bytes received |pgsql.wal.receive |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL receive in bytes |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36738 |18 | |10433 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36739 |18 | |10433 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36740 |18 | |10433 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36741 |18 | |10433 |Bgwriter: Number of bgwriter stopped |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36742 |18 | |10433 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36743 |18 | |10433 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36744 |18 | |10433 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36745 |18 | |10433 |Bgwriter: Times a backend execute its own fsync |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36746 |18 | |10433 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36747 |18 | |10433 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36748 |18 | |10433 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36749 |18 | |10433 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time.rate |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36750 |18 | |10433 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36751 |18 | |10433 |Checkpoint: Requested |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36752 |18 | |10433 |Checkpoint: By timeout |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36753 |18 | |10433 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36754 |18 | |10433 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36755 |18 | |10433 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36756 |18 | |10433 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36757 |18 | |10433 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36758 |18 | |10433 |Connections sum: Idle in transaction |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36759 |18 | |10433 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36760 |18 | |10433 |Connections sum: Prepared |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36761 |18 | |10433 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36762 |18 | |10433 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36763 |18 | |10433 |Connections sum: Waiting |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36764 |18 | |10433 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36765 |18 | |10433 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36766 |18 | |10433 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36767 |18 | |10433 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36773 |18 | |10433 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36774 |18 | |10433 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36775 |18 | |10433 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36776 |18 | |10433 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36777 |18 | |10433 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36778 |18 | |10433 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36779 |18 | |10433 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36780 |18 | |10433 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36781 |18 | |10433 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36782 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36783 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36784 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36785 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36786 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36787 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36788 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36789 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36790 |18 | |10433 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36791 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36792 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36793 |18 | |10433 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36794 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36795 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36796 |18 | |10433 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36797 |18 | |10433 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36798 |18 | |10433 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36799 |18 | |10433 |Application {#APPLICATION_NAME}: Replication flush lag |pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36800 |18 | |10433 |Application {#APPLICATION_NAME}: Replication replay lag |pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36801 |18 | |10433 |Application {#APPLICATION_NAME}: Replication write lag |pgsql.replication.process.write_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36844 |18 | |10434 |CPU discovery |cpu.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |36805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36887 |18 | |10434 |PFSense: CPU utilization |system.cpu.util[{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |36848 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36896 |18 | |10262 |Remote Zabbix proxy: History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36897 |18 | |10262 |Remote Zabbix proxy: Required performance |requiredperformance |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Required performance of Zabbix proxy, in new values per second expected. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36898 |18 | |10262 |Remote Zabbix proxy: Uptime |uptime |0 |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zabbix proxy process in seconds. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36899 |18 | |10262 |Remote Zabbix proxy: Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36900 |18 | |10262 |Remote Zabbix proxy: VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36901 |18 | |10262 |Remote Zabbix proxy: History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36902 |18 | |10262 |Remote Zabbix proxy: Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36903 |18 | |10262 |Remote Zabbix proxy: Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36904 |18 | |10262 |Remote Zabbix proxy: Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36905 |18 | |10262 |Remote Zabbix proxy: Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36906 |18 | |10262 |Remote Zabbix proxy: Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36907 |18 | |10262 |Remote Zabbix proxy: Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36908 |18 | |10262 |Remote Zabbix proxy: Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36909 |18 | |10262 |Remote Zabbix proxy: Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36910 |18 | |10262 |Remote Zabbix proxy: Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36911 |18 | |10262 |Remote Zabbix proxy: 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 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36912 |18 | |10262 |Remote Zabbix proxy: Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36913 |18 | |10262 |Remote Zabbix proxy: Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36914 |18 | |10262 |Remote Zabbix proxy: Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time data sender processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36915 |18 | |10262 |Remote Zabbix proxy: Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36916 |18 | |10262 |Remote Zabbix proxy: Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time heartbeat sender processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36917 |18 | |10262 |Remote Zabbix proxy: Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36918 |18 | |10262 |Remote Zabbix proxy: Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36919 |18 | |10262 |Remote Zabbix proxy: Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36920 |18 | |10262 |Remote Zabbix proxy: Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36921 |18 | |10262 |Remote Zabbix proxy: Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36922 |18 | |10262 |Remote Zabbix proxy: Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36923 |18 | |10262 |Remote Zabbix proxy: Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36924 |18 | |10262 |Remote Zabbix proxy: Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36925 |18 | |10262 |Remote Zabbix proxy: Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36926 |18 | |10262 |Remote Zabbix proxy: Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36927 |18 | |10262 |Remote Zabbix proxy: Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36928 |18 | |10262 |Remote Zabbix proxy: Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36929 |18 | |10262 |Remote Zabbix proxy: Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36930 |18 | |10262 |Remote Zabbix proxy: Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36931 |18 | |10323 |ClickHouse: ZooKeeper exceptions per second |clickhouse.zookeper.exceptions.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 |36932 |18 | |10323 |ClickHouse: ZooKeeper hardware exceptions per second |clickhouse.zookeper.hw_exceptions.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 |36933 |18 | |10323 |ClickHouse: ZooKeeper user exceptions per second |clickhouse.zookeper.user_exceptions.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 |36951 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36952 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36953 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36954 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36955 |18 | |10432 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |36949 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36956 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36957 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36958 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36959 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36960 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36961 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36962 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36963 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36964 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36965 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36966 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36967 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36968 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36969 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36970 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36971 |18 | |10432 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36972 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36973 |18 | |10432 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |36949 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36978 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36979 |18 | |10432 |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 | |36935 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36980 |18 | |10432 |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 | |36977 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36981 |18 | |10432 |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 | |36977 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36982 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36983 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36984 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36985 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36986 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36987 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36988 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36989 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36990 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36991 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36992 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36993 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36994 |18 | |10432 |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 | |36976 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36995 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36996 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36997 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36998 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |36999 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |37000 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |37001 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |37002 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |37003 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |37004 |18 | |10432 |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 | |36976 |3s | | | |200 |1 |0 | |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 |28306 |18 | |10254 |Temperature discovery |temp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with celsius filter |0 |30d |1 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28307 |18 | |10254 |Fan discovery |fan.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with rpm filter |0 |30d |2 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28542 |18 | |10261 |Remote Zabbix server: History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28543 |18 | |10261 |Remote Zabbix server: Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28544 |18 | |10261 |Remote Zabbix server: Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix value cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28545 |18 | |10261 |Remote Zabbix server: Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache hits (history values taken from the cache) |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28546 |18 | |10261 |Remote Zabbix server: Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL |Effectiveness statistics of Zabbix value cache. Number of cache misses (history values taken from the database) |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28547 |18 | |10261 |Remote Zabbix server: Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL |Value cache operating mode |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28548 |18 | |10261 |Remote Zabbix server: VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28549 |18 | |10261 |Remote Zabbix server: History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28550 |18 | |10261 |Remote Zabbix server: Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28551 |18 | |10261 |Remote Zabbix server: Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used trend buffer.&eol;Trend cache stores aggregate for the current hour for all items that receive data. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28552 |18 | |10261 |Remote Zabbix server: Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28553 |18 | |10261 |Remote Zabbix server: Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28554 |18 | |10261 |Remote Zabbix server: Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28555 |18 | |10261 |Remote Zabbix server: Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28556 |18 | |10261 |Remote Zabbix server: Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28557 |18 | |10261 |Remote Zabbix server: Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28558 |18 | |10261 |Remote Zabbix server: Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28559 |18 | |10261 |Remote Zabbix server: Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28560 |18 | |10261 |Remote Zabbix server: 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 |Remote Zabbix server: Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alerter processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28562 |18 | |10261 |Remote Zabbix server: Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28563 |18 | |10261 |Remote Zabbix server: Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28564 |18 | |10261 |Remote Zabbix server: Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28565 |18 | |10261 |Remote Zabbix server: Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28566 |18 | |10261 |Remote Zabbix server: Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time escalator processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28567 |18 | |10261 |Remote Zabbix server: Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28568 |18 | |10261 |Remote Zabbix server: Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28569 |18 | |10261 |Remote Zabbix server: Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28570 |18 | |10261 |Remote Zabbix server: Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28571 |18 | |10261 |Remote Zabbix server: Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28572 |18 | |10261 |Remote Zabbix server: Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time timer processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28573 |18 | |10261 |Remote Zabbix server: Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28574 |18 | |10261 |Remote Zabbix server: Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28575 |18 | |10261 |Remote Zabbix server: Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28576 |18 | |10261 |Remote Zabbix server: Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28577 |18 | |10261 |Remote Zabbix server: Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time proxy poller processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28578 |18 | |10261 |Remote Zabbix server: Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28579 |18 | |10261 |Remote Zabbix server: Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28580 |18 | |10261 |Remote Zabbix server: Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28581 |18 | |10261 |Remote Zabbix server: Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28582 |18 | |10261 |Remote Zabbix server: Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld manager processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28583 |18 | |10261 |Remote Zabbix server: Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time lld worker processes have been busy in the last minute |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28584 |18 | |10261 |Remote Zabbix server: LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the low-level discovery processing queue. |0 |30d |0 | |28539 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 Appendixes in Zabbix Documentation about parameters of the vm.memory.size item. |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 |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 |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 |255 | | |0 | | | | |2 |NULL |Reference: https://www.kernel.org/doc/Documentation/networking/operstates.txt |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 |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 |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 |Remote Zabbix server: Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time alert syncer processes have been busy in the last minute |0 |30d |0 | |28539 |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 |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 |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 |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 |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 |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 |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 |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |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 |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 start. |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 |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 |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 amount 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 |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 |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 |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 has 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 |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 |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |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 |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 |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |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 |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 |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 |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |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 |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 start. |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 |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 |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 |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 |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 |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 |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 has 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 |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 amount of seconds that the server has been up. |0 |30d |0 | |30479 |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 amount of seconds the slave SQL thread has been 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 a 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 |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 |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 |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 |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |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 |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |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 |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 start. |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 |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 |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 |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 |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 |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 |Number of currently open 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 |Number of threads which 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 amount 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 |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 |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 |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 has 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 |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 |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |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 |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 |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 a 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 |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 |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 |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 |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 |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 |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 |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 |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 background 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 background 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 background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&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 |30897 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30898 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30899 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30900 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30901 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30902 |18 | |10264 |Apache: Total bytes |apache.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes served |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30903 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30904 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30905 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30906 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30907 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30908 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30909 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30910 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30911 |18 | |10264 |Apache: Version |apache.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30912 |18 | |10264 |Apache: Uptime |apache.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Service uptime in seconds |0 |30d |0 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30913 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30914 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30915 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30916 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30917 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30918 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30919 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30920 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30921 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30922 |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 | |30896 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30927 |18 | |10324 |Etcd: Open file descriptors |etcd.open.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30928 |18 | |10324 |Etcd: Proposals applied per second |etcd.proposals.applied.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals applied. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30929 |18 | |10324 |Etcd: Proposals committed per second |etcd.proposals.committed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of consensus proposals committed. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30930 |18 | |10324 |Etcd: Proposals failed per second |etcd.proposals.failed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed proposals seen. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30931 |18 | |10324 |Etcd: Proposals pending |etcd.proposals.pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of pending proposals to commit. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30932 |18 | |10324 |Etcd: PUT per second |etcd.put.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of puts seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30933 |18 | |10324 |Etcd: Range per second |etcd.range.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of ranges seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30934 |18 | |10324 |Etcd: Reads per second |etcd.reads.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of reads action by (get/getRecursive), local to this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30935 |18 | |10324 |Etcd: Client gRPC received bytes per second |etcd.network.grpc.received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30936 |18 | |10324 |Etcd: Resident memory |etcd.res.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30937 |18 | |10324 |Etcd: Server version |etcd.server.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd server. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30938 |18 | |10324 |Etcd: Transaction per second |etcd.txn.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of transactions seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30939 |18 | |10324 |Etcd: Uptime |etcd.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Etcd server uptime. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30940 |18 | |10324 |Etcd: Virtual memory |etcd.virtual.bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Virtual memory size in bytes. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30941 |18 | |10324 |Etcd: Writes per second |etcd.writes.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of writes (e.g. set/compareAndDelete) seen by this member. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30942 |18 | |10324 |Etcd: Client gRPC sent bytes per second |etcd.network.grpc.sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent from grpc clients per second |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30943 |18 | |10324 |Etcd: Cluster version |etcd.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Etcd cluster. |0 |30d |0 | |30926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30944 |18 | |10324 |Etcd: Maximum open file descriptors |etcd.max.fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Maximum number of open file descriptors. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30945 |18 | |10324 |Etcd: Server has a leader |etcd.has.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not a leader exists. 1 is existence, 0 is not. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30946 |18 | |10324 |Etcd: DB size |etcd.db.size |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of the underlying database. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30947 |18 | |10324 |Etcd: Deletes per second |etcd.delete.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of deletes seen by this member per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30948 |18 | |10324 |Etcd: Pending events |etcd.events.sent.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pending events to be sent. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30949 |18 | |10324 |Etcd: RPCs received per second |etcd.grpc.received.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPC stream messages received on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30950 |18 | |10324 |Etcd: RPCs sent per second |etcd.grpc.sent.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of gRPC stream messages sent by the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30951 |18 | |10324 |Etcd: RPCs started per second |etcd.grpc.started.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of RPCs started on the server. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30952 |18 | |10324 |Etcd: HTTP 4XX |etcd.http.requests.4xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 4XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30953 |18 | |10324 |Etcd: CPU |etcd.cpu.util |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Total user and system CPU time spent in seconds. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30954 |18 | |10324 |Etcd: HTTP 5XX |etcd.http.requests.5xx.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of handle failures of requests (non-watches), by method (GET/PUT etc.), and code 5XX. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30955 |18 | |10324 |Etcd: HTTP requests received |etcd.http.requests.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests received into the system (successfully parsed and authd). |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30956 |18 | |10324 |Etcd: Server is a leader |etcd.is.leader |0 |7d |365d |0 |3 | | | | |NULL |97 | | |0 | | | | |0 |NULL |Whether or not this member is a leader. 1 if is, 0 otherwise. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30957 |18 | |10324 |Etcd: Keys compacted per second |etcd.keys.compacted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of DB keys compacted per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30958 |18 | |10324 |Etcd: Keys expired per second |etcd.keys.expired.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of expired keys per second. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30959 |18 | |10324 |Etcd: Keys total |etcd.keys.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of keys. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30960 |18 | |10324 |Etcd: Leader changes |etcd.leader.changes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The the number of leader changes the member has seen since its start. |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30961 |18 | |10324 |gRPC codes discovery |etcd.grpc_code.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30962 |18 | |10324 |Peers discovery |etcd.peer.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30963 |18 | |10324 |Etcd: RPCs completed with code {#GRPC.CODE} |etcd.grpc.handled.rate[{#GRPC.CODE}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of RPCs completed on the server with grpc_code {#GRPC.CODE} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30964 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes received |etcd.bytes.received.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes received from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30965 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Bytes sent |etcd.bytes.sent.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of bytes sent to peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30966 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Receive failures failures |etcd.received.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of receive failures from the peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30967 |18 | |10324 |Etcd: Etcd peer {#ETCD.PEER}: Send failures |etcd.sent.fail.rate[{#ETCD.PEER}] |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of send failures from peer with ID {#ETCD.PEER} |0 |30d |0 | |30925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31053 |18 | |10261 |Remote Zabbix server: Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix server. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31059 |18 | |10327 |MSSQL: Average latch wait time base |mssql.average_latch_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31060 |18 | |10327 |MSSQL: Table lock escalations per second |mssql.table_lock_escalations.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times locks on a table were escalated to the TABLE or HoBT granularity. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31061 |18 | |10327 |MSSQL: Memory grants pending |mssql.memory_grants_pending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes waiting for a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31062 |18 | |10327 |MSSQL: Total lock requests per second that have deadlocks |mssql.number_deadlocks_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that resulted in a deadlock. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31063 |18 | |10327 |MSSQL: Errors per second (DB offline errors) |mssql.offline_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31064 |18 | |10327 |MSSQL: Page life expectancy |mssql.page_life_expectancy |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of seconds a page will stay in the buffer pool without references. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31065 |18 | |10327 |MSSQL: Page lookups per second |mssql.page_lookups_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second to find a page in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31066 |18 | |10327 |MSSQL: Page reads per second |mssql.page_reads_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page reads that are issued per second. This statistic displays the total number of physical page reads across all databases. Because physical I/O is expensive, you may be able to minimize the cost, either by using a larger data cache, intelligent indexes, and more efficient queries, or by changing the database design. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31067 |18 | |10327 |MSSQL: Page splits per second |mssql.page_splits_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of page splits per second that occur as the result of overflowing index pages. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31068 |18 | |10327 |MSSQL: Page writes per second |mssql.page_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of physical database page writes that are issued per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31069 |18 | |10327 |MSSQL: Number of blocked processes |mssql.processes_blocked |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently blocked processes. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31070 |18 | |10327 |MSSQL: Read-ahead pages per second |mssql.readahead_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages read per second in anticipation of use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimal number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31078 |18 | |10327 |MSSQL: Total server memory |mssql.total_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the amount of memory the server has committed using the memory manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31079 |18 | |10327 |MSSQL: Total transactions number |mssql.transactions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently active transactions of all types. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31080 |18 | |10327 |MSSQL: Total transactions per second |mssql.transactions_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions started for all databases per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31081 |18 | |10327 |MSSQL: Unsafe auto-params per second |mssql.unsafe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unsafe auto-parameterization attempts per second. For example, the query has some characteristics that prevent the cached plan from being shared. These are designated as unsafe. This does not count the number of forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31082 |18 | |10327 |MSSQL: Uptime |mssql.uptime |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31083 |18 | |10327 |MSSQL: Number users connected |mssql.user_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users connected to MS SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31084 |18 | |10327 |MSSQL: Errors per second (User errors) |mssql.user_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31085 |18 | |10327 |MSSQL: Version |mssql.version |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MS SQL Server version. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufficient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31091 |18 | |10327 |MSSQL: Average latch wait time raw |mssql.average_latch_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second |mssql.forwarded_records_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of records per second fetched through forwarded record pointers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31093 |18 | |10327 |MSSQL: Total average wait time base |mssql.average_wait_time_base |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |For internal use only. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31094 |18 | |10327 |MSSQL: Total average wait time raw |mssql.average_wait_time_raw |0 |7d |365d |0 |3 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of wait time (in milliseconds) for each lock request that resulted in a wait. Information for all locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31095 |18 | |10327 |MSSQL: Batch requests per second |mssql.batch_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Transact-SQL command batches received per second. This statistic is affected by all constraints (such as I/O, number of users, cache size, complexity of requests, and so on). High batch requests mean good throughput. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to SQL Server or using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation which required all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate insufficient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / Index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection errors) |mssql.kill_connection_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31113 |18 | |10327 |MSSQL: Latch waits per second |mssql.latch_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of latch requests that could not be granted immediately. Latches are lightweight means of holding a very transient server resource, such as an address in memory. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31114 |18 | |10327 |MSSQL: Lazy writes per second |mssql.lazy_writes_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of buffers written per second by the buffer manager's lazy writer. The lazy writer is a system process that flushes out batches of dirty, aged buffers (buffers that contain changes that must be written back to disk before the buffer can be reused for a different page) and makes them available to user processes. The lazy writer eliminates the need to perform frequent checkpoints in order to create available buffers. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31115 |18 | |10327 |MSSQL: Total lock requests per second |mssql.lock_requests_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of new locks and lock conversions per second requested from the lock manager. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of timed out lock requests per second, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters to me reuse of the resulting cached execution plan across multiple similar-looking requests possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of the primary replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31134 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica name |mssql.primary_replica["{#GROUP_NAME}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Name of the server instance that is hosting the current primary replica. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31135 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health |mssql.secondary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Indicates the recovery health of a secondary replica replica:&eol;0 = In progress&eol;1 = Online&eol;2 = Unavailable |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy synchronization.&eol;1: Partially healthy. The synchronization of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = ONLINE&eol;1 = RESTORING&eol;2 = RECOVERING &pipe; SQL Server 2008 and later&eol;3 = RECOVERY_PENDING &pipe; SQL Server 2008 and later&eol;4 = SUSPECT&eol;5 = EMERGENCY &pipe; SQL Server 2008 and later&eol;6 = OFFLINE &pipe; SQL Server 2008 and later&eol;7 = COPYING &pipe; Azure SQL Database Active Geo-Replication&eol;10 = OFFLINE_SECONDARY &pipe; Azure SQL Database Active Geo-Replication |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31150 |18 | |10327 |MSSQL DB '{#DBNAME}': Transactions per second |mssql.db.transactions_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of transactions started for the database per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31151 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Suspended |mssql.local_db.is_suspended["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Database state:&eol;0 = Resumed&eol;1 = Suspended |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31152 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': State |mssql.local_db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |99 | | |0 | | | | |2 |NULL |0 = Online&eol;1 = Restoring&eol;2 = Recovering&eol;3 = Recovery pending&eol;4 = Suspect&eol;5 = Emergency&eol;6 = Offline |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': Synchronization health |mssql.local_db.synchronization_health["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects the intersection of the synchronization state of a database that is joined to the availability group on the availability replica and the availability mode of the availability replica (synchronous-commit or asynchronous-commit mode):&eol;0 = Not healthy. The synchronization_state of the database is 0 (NOT SYNCHRONIZING).&eol;1 = Partially healthy. A database on a synchronous-commit availability replica is considered &eol;partially healthy if synchronization_state is 1 (SYNCHRONIZING).&eol;2 = Healthy. A database on an synchronous-commit availability replica is considered healthy if synchronization_state is 2 (SYNCHRONIZED), and a database on an asynchronous-commit availability replica is considered healthy if synchronization_state is 1 (SYNCHRONIZING). |0 |30d |0 | |31129 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31154 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role sequence |mssql.mirroring.role_sequence["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times that mirroring partners have switched the principal and mirror roles due to a failover or forced service. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31155 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Role |mssql.mirroring.role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |109 | | |0 | | | | |2 |NULL |Current role of the local database plays in the database mirroring session.&eol;1 = Principal&eol;2 = Mirror |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31156 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Safety level |mssql.mirroring.safety_level["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |110 | | |0 | | | | |2 |NULL |Safety setting for updates on the mirror database:&eol;0 = Unknown state&eol;1 = Off [asynchronous]&eol;2 = Full [synchronous] |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |108 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |111 | | |0 | | | | |2 |NULL |State of the witness in the database mirroring session of the database:&eol;0 = Unknown&eol;1 = Connected&eol;2 = Disconnected |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31161 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Connected state |mssql.replica.connected_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |100 | | |0 | | | | |2 |NULL |Whether a secondary replica is currently connected to the primary replica:&eol;0 : Disconnected. The response of an availability replica to the DISCONNECTED state depends on its role:&eol;On the primary replica, if a secondary replica is disconnected, its secondary databases are marked as NOT SYNCHRONIZED on the primary replica, which waits for the secondary to reconnect;&eol;On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica.&eol;1 : Connected. Each primary replica tracks the connection state for every secondary replica in the same availability group. Secondary replicas track the connection state of only the primary replica. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31162 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Is local |mssql.replica.is_local["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |107 | | |0 | | | | |2 |NULL |Whether the replica is local:&eol;0 = Indicates a remote secondary replica in an availability group whose primary replica is hosted by the local server instance. This value occurs only on the primary replica location.&eol;1 = Indicates a local replica. On secondary replicas, this is the only available value for the availability group to which the replica belongs. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Join state |mssql.replica.join_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |101 | | |0 | | | | |2 |NULL |0 = Not joined&eol;1 = Joined, standalone instance&eol;2 = Joined, failover cluster instance |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31164 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Operational state |mssql.replica.operational_state["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |102 | | |0 | | | | |2 |NULL |Current operational state of the replica:&eol;0 = Pending failover&eol;1 = Pending&eol;2 = Online&eol;3 = Offline&eol;4 = Failed&eol;5 = Failed, no quorum&eol;6 = Not local |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31165 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Recovery health |mssql.replica.recovery_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |103 | | |0 | | | | |2 |NULL |Rollup of the database_state column of the sys.dm_hadr_database_replica_states dynamic management view:&eol;0 : In progress. At least one joined database has a database state other than ONLINE &eol;(database_state is not 0).&eol;1 : Online. All the joined databases have a database state of ONLINE (database_state is 0). |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31166 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Role |mssql.replica.role["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |104 | | |0 | | | | |2 |NULL |Current Always On availability groups role of a local replica or a connected remote replica:&eol;0 = Resolving&eol;1 = Primary&eol;2 = Secondary |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31167 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': Sync health |mssql.replica.synchronization_health["{#GROUP_NAME}_{#REPLICA_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |106 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |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 |31197 |18 | |10328 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31198 |18 | |10328 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31199 |18 | |10328 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31200 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31201 |18 | |10328 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31202 |18 | |10328 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31203 |18 | |10328 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31204 |18 | |10328 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31205 |18 | |10328 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31206 |18 | |10328 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31207 |18 | |10328 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31208 |18 | |10328 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31209 |18 | |10328 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31210 |18 | |10328 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31211 |18 | |10328 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31212 |18 | |10328 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31213 |18 | |10328 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31215 |18 | |10328 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31216 |18 | |10328 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31217 |18 | |10328 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31218 |18 | |10328 |Bgwriter: Times a backend execute its own fsync |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31219 |18 | |10328 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31220 |18 | |10328 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31221 |18 | |10328 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31222 |18 | |10328 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31223 |18 | |10328 |Checkpoint: Requested |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31224 |18 | |10328 |Checkpoint: By timeout |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31225 |18 | |10328 |Bgwriter: Number of bgwriter stopped |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31226 |18 | |10328 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31227 |18 | |10328 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31228 |18 | |10328 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31229 |18 | |10328 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31230 |18 | |10328 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31231 |18 | |10328 |Connections sum: Idle in transaction |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31232 |18 | |10328 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31233 |18 | |10328 |Connections sum: Prepared |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31234 |18 | |10328 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31235 |18 | |10328 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31236 |18 | |10328 |Connections sum: Waiting |pgsql.connections.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 | |31182 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31237 |18 | |10328 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31183 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31238 |18 | |10328 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31195 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31239 |18 | |10328 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |31196 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31244 |18 | |10328 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31245 |18 | |10328 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31246 |18 | |10328 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31247 |18 | |10328 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31248 |18 | |10328 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31249 |18 | |10328 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31250 |18 | |10328 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31251 |18 | |10328 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31252 |18 | |10328 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31253 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31254 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31255 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31256 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31257 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31258 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31259 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31260 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31261 |18 | |10328 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31262 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31263 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31264 |18 | |10328 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31265 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31266 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31267 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31268 |18 | |10328 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31269 |18 | |10328 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |31186 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31270 |18 | |10274 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29103 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31285 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31286 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31287 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31288 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31289 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31290 |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 | |31278 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31303 |18 | |10280 |Memory utilization |vm.memory.utilization |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory used percentage is calculated as (100-pavailable) |0 |30d |0 | |29289 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31313 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31314 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31315 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31316 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31317 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31318 |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 | |31309 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31331 |18 | |10287 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31326 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31349 |18 | |10294 |Free swap space in % |system.swap.pfree |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |31344 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31646 |18 | |10333 |Oracle: Active user sessions |oracle.session_active_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31647 |18 | |10333 |Oracle: Rows per sort |oracle.rows_per_sort |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average number of rows per sort for all types of sorts performed. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31648 |18 | |10333 |Oracle: Active background sessions |oracle.session_active_background |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active background sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31649 |18 | |10333 |Oracle: Sessions concurrency |oracle.session_concurrency_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of concurrency. Concurrency is a DB behavior when different transactions request to change the same resource - in case of modifying data transactions sequentially block temporarily the right to change data, the rest of the transactions are waiting for access. In the case when access for resource is locked for a long time, then the concurrency grows (like the transaction queue) and this often has an extremely negative impact on performance. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31650 |18 | |10333 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31651 |18 | |10333 |Oracle: Inactive user sessions |oracle.session_inactive_user |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of inactive user sessions. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31652 |18 | |10333 |Oracle: SQL service response time |oracle.service_response_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |SQL service response time in seconds. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31653 |18 | |10333 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31654 |18 | |10333 |Oracle: Sessions lock rate |oracle.session_lock_rate |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of locked sessions. Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource—either user objects such as tables and rows or system objects not visible to users, such as shared data structures in memory and data dictionary rows. |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31655 |18 | |10333 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31656 |18 | |10333 |Oracle: Active parallel sessions |oracle.active_parallel_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active parallel sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31657 |18 | |10333 |Oracle: Sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s |oracle.session_long_time_locked |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of the prolongedly locked sessions. (You can change maximum session lock duration in seconds for query by {$ORACLE.SESSION.LOCK.MAX.TIME} macro. Default 600 sec) |0 |30d |0 | |31643 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31658 |18 | |10333 |Oracle: SGA, buffer cache |oracle.sga_buffer_cache |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The size of the cache of standard blocks. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31659 |18 | |10333 |Oracle: SGA, fixed |oracle.sga_fixed |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The fixed SGA is an internal housekeeping area. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31660 |18 | |10333 |Oracle: SGA, java pool |oracle.sga_java_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the java pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31661 |18 | |10333 |Oracle: SGA, log buffer |oracle.sga_log_buffer |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes allocated for the redo log buffer. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31662 |18 | |10333 |Oracle: SGA, shared pool |oracle.sga_shared_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the shared pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31663 |18 | |10333 |Oracle: Shared pool free % |oracle.shared_pool_free |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Shared pool free memory percent. Free/Total |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31664 |18 | |10333 |Oracle: Total sorts per user call |oracle.sorts_per_user_call |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total sorts per user call. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31665 |18 | |10333 |Oracle: Temp space used |oracle.temp_space_used |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Temp space used. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31666 |18 | |10333 |Oracle: PGA, Total allocated |oracle.total_pga_allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current amount of PGA memory allocated by the instance. The Oracle Database attempts to keep this number below the value of the PGA_AGGREGATE_TARGET initialization parameter. However, it is possible for the PGA allocated to exceed that value by a small percentage and for a short period of time when the work area workload is increasing very rapidly or when PGA_AGGREGATE_TARGET is set to a small value. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31667 |18 | |10333 |Oracle: PGA, Total freeable |oracle.total_pga_freeable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes of PGA memory in all processes that could be freed back to the operating system. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31668 |18 | |10333 |Oracle: PGA, Total inuse |oracle.total_pga_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates how much PGA memory is currently consumed by work areas. This number can be used to determine how much memory is consumed by other consumers of the PGA memory (for example, PL/SQL or Java). |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31669 |18 | |10333 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31670 |18 | |10333 |Oracle: User rollbacks per second |oracle.user_rollbacks_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that users manually issue the ROLLBACK statement or an error occurred during a user's transactions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31671 |18 | |10333 |Oracle: SGA, large pool |oracle.sga_large_pool |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Memory is allocated from the large pool. |0 |30d |0 | |31633 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31672 |18 | |10333 |Oracle: Physical reads bytes per second |oracle.physical_read_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Read bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31673 |18 | |10333 |Oracle: Physical writes per second |oracle.physical_writes_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Writes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31674 |18 | |10333 |Oracle: FRA, Space reclaimable |oracle.fra_space_reclaimable |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of disk space (in bytes) that can be created by deleting obsolete, redundant, and other low priority files from the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31675 |18 | |10333 |Oracle: Average active sessions |oracle.active_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The average active sessions at a point in time. It is the number of sessions that are either working or waiting. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31676 |18 | |10333 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31677 |18 | |10333 |Oracle: Buffer cache hit ratio |oracle.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of buffer cache hits. (LogRead - PhyRead)/LogRead |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31678 |18 | |10333 |Oracle: Global cache blocks corrupted |oracle.cache_blocks_corrupt |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks that encountered a corruption or checksum failure during interconnect. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31679 |18 | |10333 |Oracle: Global cache blocks lost |oracle.cache_blocks_lost |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of global cache blocks lost |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31680 |18 | |10333 |Oracle: Cursor cache hit ratio |oracle.cursor_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of cursor cache hits. CursorCacheHit/SoftParse |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31681 |18 | |10333 |Oracle: Database CPU time ratio |oracle.database_cpu_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Calculated by dividing the total CPU used by the database by the Oracle time model statistic DB time. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31682 |18 | |10333 |Oracle: Database wait time ratio |oracle.database_wait_time_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Wait time: the time that the server process spends waiting for available shared resources (to be released by other server processes) such as latches, locks, data buffers, and so on |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31683 |18 | |10333 |Oracle: Datafiles limit |oracle.db_files_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max allowable number of datafile. |0 |30d |0 | |31638 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31684 |18 | |10333 |Oracle: Disk sort per second |oracle.disk_sorts |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of sorts going to disk per second |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31685 |18 | |10333 |Oracle: Enqueue timeouts per second |oracle.enqueue_timeouts_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Enqueue timeouts per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31686 |18 | |10333 |Oracle: FRA, Number of files |oracle.fra_number_of_files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of files in the fast recovery area |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31687 |18 | |10333 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31688 |18 | |10333 |Oracle: FRA, Space limit |oracle.fra_space_limit |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of disk space (in bytes) that the database can use for the fast recovery area. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31689 |18 | |10333 |Oracle: FRA, Used space |oracle.fra_space_used |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of disk space (in bytes) used by fast recovery area files created in current and all previous fast recovery areas. |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31690 |18 | |10333 |Oracle: Physical writes bytes per second |oracle.physical_write_bytes_rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Write bytes per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31691 |18 | |10333 |Oracle: FRA, Usable space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31631 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31692 |18 | |10333 |Oracle: GC CR block received per second |oracle.gc_cr_block_received_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |GC CR block received per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31693 |18 | |10333 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31694 |18 | |10333 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31695 |18 | |10333 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31696 |18 | |10333 |Oracle: Instance role |oracle.instance.role |0 |7d |365d |0 |3 | | | | |NULL |115 | | |0 | | | | |0 |NULL |Indicates whether the instance is an active instance or an inactive secondary instance. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31697 |18 | |10333 |Oracle: Library cache hit ratio |oracle.library_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio of library cache hits. Hits/Pins |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31698 |18 | |10333 |Oracle: Logons per second |oracle.logons_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logon attempts. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31699 |18 | |10333 |Oracle: Long table scans per second |oracle.long_table_scans_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of long table scans per second. A table is considered 'long' if the table is not cached and if its high-water mark is greater than 5 blocks. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31700 |18 | |10333 |Oracle: Memory sorts ratio |oracle.memory_sorts_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The percentage of sorts (from ORDER BY clauses or index building) that are done to disk vs in-memory. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31701 |18 | |10333 |Oracle: PGA, Global memory bound |oracle.pga_global_bound |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum size of a work area executed in automatic mode. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31702 |18 | |10333 |Oracle: PGA, Aggregate target parameter |oracle.pga_target |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Current value of the PGA_AGGREGATE_TARGET initialization parameter. If this parameter is not set, then its value is 0 and automatic management of PGA memory is disabled. |0 |30d |0 | |31639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31703 |18 | |10333 |Oracle: Active serial sessions |oracle.active_serial_sessions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active serial sessions. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31704 |18 | |10333 |Oracle: Physical reads per second |oracle.physical_reads_rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Reads per second. |0 |30d |0 | |31636 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31705 |18 | |10333 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31711 |18 | |10333 |Archivelog '{#DEST_NAME}': Error |oracle.archivelog_error["{#DEST_NAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Displays the error text |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31712 |18 | |10333 |Archivelog '{#DEST_NAME}': Last sequence |oracle.archivelog_log_sequence["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Identifies the sequence number of the last archived redo log to be archived |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31713 |18 | |10333 |Archivelog '{#DEST_NAME}': Status |oracle.archivelog_log_status["{#DEST_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |118 | | |0 | | | | |2 |NULL |Identifies the current status of the destination: 1 - 'Valid', 2 - 'Deferred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31642 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31714 |18 | |10333 |Oracle Database '{#DBNAME}': Force logging |oracle.db_force_logging["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |119 | | |0 | | | | |2 |NULL |Indicates whether the database is under force logging mode (YES) or not (NO) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31715 |18 | |10333 |Oracle Database '{#DBNAME}': Log mode |oracle.db_log_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |120 | | |0 | | | | |2 |NULL |Archive log mode, 0 - 'NOARCHIVELOG', 1 - 'ARCHIVELOG', 2 - 'MANUAL' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31716 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.db_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31717 |18 | |10333 |Oracle Database '{#DBNAME}': Role |oracle.db_role["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |113 | | |0 | | | | |2 |NULL |Current role of the database, 1 - 'SNAPSHOT STANDBY', 2 - 'LOGICAL STANDBY', 3 - 'PHYSICAL STANDBY', 4 - 'PRIMARY ', 5 -'FAR SYNC' |0 |30d |0 | |31644 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31718 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_free_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31719 |18 | |10333 |ASM '{#DG_NAME}': Total size |oracle.asm_total_size["{#DG_NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31720 |18 | |10333 |ASM '{#DG_NAME}': Free size |oracle.asm_used_pct["{#DG_NAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Usage percent of ASM disk group. |0 |30d |0 | |31635 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31721 |18 | |10333 |Oracle Database '{#DBNAME}': Open status |oracle.pdb_open_mode["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |112 | | |0 | | | | |2 |NULL |1 - 'MOUNTED', 2 - 'READ WRITE', 3 - 'READ ONLY', 4 - 'READ ONLY WITH APPLY' (A physical standby database is open in real-time query mode) |0 |30d |0 | |31634 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31722 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, bytes |oracle.tbs_alloc_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently allocated bytes for tablespace (sum of the current size of datafiles). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31723 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace free, bytes |oracle.tbs_free_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Free bytes of allocated space. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31724 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace MAX size, bytes |oracle.tbs_max_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of tablespace. |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31725 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Open status |oracle.tbs_status["{#TABLESPACE}"] |0 |7d |365d |0 |3 | | | | |NULL |117 | | |0 | | | | |2 |NULL |Tablespace status. 1 - 'ONLINE' 2 - 'OFFLINE' 3- 'READ ONLY' |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31726 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace allocated, percent |oracle.tbs_used_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Allocated bytes/Max bytes*100 |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31805 |18 | |10334 |Ceph: Number of OSDs in state: UP |ceph.num_osd_up |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of online storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31806 |18 | |10334 |Ceph: Number of Placement Groups in Undersized state |ceph.pg_states.undersized |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in undersized state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31807 |18 | |10334 |Ceph: Number of Placement Groups in Clean state |ceph.pg_states.clean |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in clean state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31808 |18 | |10334 |Ceph: Number of Placement Groups in degraded state |ceph.pg_states.degraded |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in degraded state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31809 |18 | |10334 |Ceph: Number of Placement Groups in inconsistent state |ceph.pg_states.inconsistent |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in inconsistent state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31810 |18 | |10334 |Ceph: Number of Placement Groups in Peering state |ceph.pg_states.peering |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in peering state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31811 |18 | |10334 |Ceph: Number of Placement Groups in recovering state |ceph.pg_states.recovering |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in recovering state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31812 |18 | |10334 |Ceph: Number of Placement Groups in recovery_wait state |ceph.pg_states.recovery_wait |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in recovery_wait state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31813 |18 | |10334 |Ceph: Number of Placement Groups in remapped state |ceph.pg_states.remapped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in remapped state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31814 |18 | |10334 |Ceph: Number of Placement Groups in Scrubbing state |ceph.pg_states.scrubbing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in scrubbing state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31815 |18 | |10334 |Ceph: Number of Placement Groups in Unknown state |ceph.pg_states.unknown |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in unknown state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31816 |18 | |10334 |Ceph: Number of Placement Groups in backfill_wait state |ceph.pg_states.backfill_wait |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfill_wait state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31817 |18 | |10334 |Ceph: Number of OSDs |ceph.num_osd |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of known storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31818 |18 | |10334 |Ceph: Ceph Read bandwidth |ceph.rd_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Global read Bytes per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31819 |18 | |10334 |Ceph: Ceph Read operations per sec |ceph.rd_ops.rate |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Global read operations per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31820 |18 | |10334 |Ceph: Number of Monitors |ceph.num_mon |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Monitors configured in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31821 |18 | |10334 |Ceph: Total bytes available |ceph.total_avail_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes available in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31822 |18 | |10334 |Ceph: Total bytes |ceph.total_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total (RAW) capacity of Ceph cluster in bytes |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31823 |18 | |10334 |Ceph: Total number of objects |ceph.total_objects |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of objects in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31824 |18 | |10334 |Ceph: Total bytes used |ceph.total_used_bytes |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total bytes used in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31825 |18 | |10334 |Ceph: Ceph Write bandwidth |ceph.wr_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Global write Bytes per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31826 |18 | |10334 |Ceph: Number of Placement Groups in Backfilling state |ceph.pg_states.backfilling |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfilling state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31827 |18 | |10334 |Ceph: Number of Placement Groups in backfill_toofull state |ceph.pg_states.backfill_toofull |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in backfill_toofull state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31828 |18 | |10334 |Ceph: Number of Placement Groups |ceph.num_pg |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31829 |18 | |10334 |Ceph: Ceph OSD Apply latency Min |ceph.osd_latency_apply.min |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31830 |18 | |10334 |Ceph: Number of Placement Groups in Temporary state |ceph.num_pg_temp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in pg_temp state |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31831 |18 | |10334 |Ceph: Number of Pools |ceph.num_pools |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of pools in Ceph cluster |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31832 |18 | |10334 |Ceph: Ceph backfill full ratio |ceph.osd_backfillfull_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Backfill full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31833 |18 | |10334 |Ceph: Ceph OSD avg fill |ceph.osd_fill.avg |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average fill of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31834 |18 | |10334 |Ceph: Ceph OSD max fill |ceph.osd_fill.max |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage fill of maximum filled OSD |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31835 |18 | |10334 |Ceph: Ceph OSD min fill |ceph.osd_fill.min |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage fill of minimum filled OSD |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31836 |18 | |10334 |Ceph: Ceph full ratio |ceph.osd_full_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31837 |18 | |10334 |Ceph: Ceph OSD Apply latency Avg |ceph.osd_latency_apply.avg |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31838 |18 | |10334 |Ceph: Ceph OSD Apply latency Max |ceph.osd_latency_apply.max |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum apply latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31839 |18 | |10334 |Ceph: Ceph OSD Commit latency Avg |ceph.osd_latency_commit.avg |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31840 |18 | |10334 |Ceph: Number of Placement Groups in Active state |ceph.pg_states.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of Placement Groups in active state |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31841 |18 | |10334 |Ceph: Ceph OSD Commit latency Max |ceph.osd_latency_commit.max |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31842 |18 | |10334 |Ceph: Ceph OSD Commit latency Min |ceph.osd_latency_commit.min |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum commit latency of OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31843 |18 | |10334 |Ceph: Ceph nearfull ratio |ceph.osd_nearfull_ratio |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Near full ratio setting of Ceph cluster as configured on OSDMap |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31844 |18 | |10334 |Ceph: Ceph OSD avg PGs |ceph.osd_pgs.avg |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Average amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31845 |18 | |10334 |Ceph: Ceph OSD max PGs |ceph.osd_pgs.max |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31846 |18 | |10334 |Ceph: Ceph OSD min PGs |ceph.osd_pgs.min |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Minimum amount of PGs on OSDs |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31847 |18 | |10334 |Ceph: Number of OSDs in state: IN |ceph.num_osd_in |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of participating storage daemons in Ceph cluster |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31848 |18 | |10334 |Ceph: Minimum Mon release version |ceph.min_mon_release_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |min_mon_release_name |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31849 |18 | |10334 |Ceph: Overall cluster status |ceph.overall_status |0 |7d |365d |0 |3 | | | | |NULL |121 | | |0 | | | | |0 |NULL |Overall Ceph cluster status, eg 0 - HEALTH_OK, 1 - HEALTH_WARN or 2 - HEALTH_ERR |0 |30d |0 | |31802 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31850 |18 | |10334 |Ceph: Ceph Write operations per sec |ceph.wr_ops.rate |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Global write operations per second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31853 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD fill |ceph.osd[{#OSDNAME},fill] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31854 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD in |ceph.osd[{#OSDNAME},in] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31855 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD latency apply |ceph.osd[{#OSDNAME},latency_apply] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time taken to flush an update to disks. |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31856 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD latency commit |ceph.osd[{#OSDNAME},latency_commit] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Time taken to commit an operation to the journal. |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31857 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD PGs |ceph.osd[{#OSDNAME},num_pgs] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31804 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31858 |18 | |10334 |Ceph: [osd.{#OSDNAME}] OSD up |ceph.osd[{#OSDNAME},up] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |31801 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31875 |18 | |10335 |PHP-FPM: Slow requests |php-fpm.slow_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests that exceeded your request_slowlog_timeout value. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31876 |18 | |10335 |PHP-FPM: Version |php-fpm.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers. |0 |30d |0 | |31869 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31877 |18 | |10335 |PHP-FPM: Uptime |php-fpm.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |How long has this pool been running. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31878 |18 | |10335 |PHP-FPM: Start time |php-fpm.start_time |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The time when this pool was started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31879 |18 | |10335 |PHP-FPM: Accepted connections per second |php-fpm.conn_accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted requests per second. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31880 |18 | |10335 |PHP-FPM: Processes, total |php-fpm.processes_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of server processes currently running. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31881 |18 | |10335 |PHP-FPM: Listen queue |php-fpm.listen_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections that have been initiated, but not yet accepted. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31882 |18 | |10335 |PHP-FPM: Processes, idle |php-fpm.processes_idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of idle processes. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31883 |18 | |10335 |PHP-FPM: Processes, active |php-fpm.processes_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of active processes. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31884 |18 | |10335 |PHP-FPM: Process manager |php-fpm.process_manager |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The method used by the process manager to control the number of child processes for this pool. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31885 |18 | |10335 |PHP-FPM: Ping |php-fpm.ping |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |31869 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31886 |18 | |10335 |PHP-FPM: Pool name |php-fpm.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of current pool. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31887 |18 | |10335 |PHP-FPM: Max children reached |php-fpm.max_children |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that pm.max_children has been reached since the php-fpm pool started |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31888 |18 | |10335 |PHP-FPM: Listen queue, max |php-fpm.listen_queue_max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of requests in the queue of pending connections since this FPM pool has started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31889 |18 | |10335 |PHP-FPM: Listen queue, len |php-fpm.listen_queue_len |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of the socket queue of pending connections. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31890 |18 | |10335 |PHP-FPM: Processes, max active |php-fpm.processes_max_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The highest value that 'active processes' has reached since the php-fpm server started. |0 |30d |0 | |31868 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31894 |18 | |10336 |PHP-FPM: Accepted connections per second |php-fpm.conn_accepted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of accepted requests per second. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31895 |18 | |10336 |PHP-FPM: Processes, idle |php-fpm.processes_idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of idle processes. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31896 |18 | |10336 |PHP-FPM: Uptime |php-fpm.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |How long has this pool been running. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31897 |18 | |10336 |PHP-FPM: Start time |php-fpm.start_time |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The time when this pool was started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31898 |18 | |10336 |PHP-FPM: Slow requests |php-fpm.slow_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of requests that exceeded your request_slowlog_timeout value. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31899 |18 | |10336 |PHP-FPM: Processes, total |php-fpm.processes_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of server processes currently running. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31900 |18 | |10336 |PHP-FPM: Processes, max active |php-fpm.processes_max_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The highest value that 'active processes' has reached since the php-fpm server started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31901 |18 | |10336 |PHP-FPM: Ping |php-fpm.ping |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |31893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31902 |18 | |10336 |PHP-FPM: Processes, active |php-fpm.processes_active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of active processes. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31903 |18 | |10336 |PHP-FPM: Process manager |php-fpm.process_manager |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The method used by the process manager to control the number of child processes for this pool. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31904 |18 | |10336 |PHP-FPM: Pool name |php-fpm.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of current pool. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31905 |18 | |10336 |PHP-FPM: Max children reached |php-fpm.max_children |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that pm.max_children has been reached since the php-fpm pool started |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31906 |18 | |10336 |PHP-FPM: Listen queue, max |php-fpm.listen_queue_max |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of requests in the queue of pending connections since this FPM pool has started. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31907 |18 | |10336 |PHP-FPM: Listen queue, len |php-fpm.listen_queue_len |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of the socket queue of pending connections. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31908 |18 | |10336 |PHP-FPM: Listen queue |php-fpm.listen_queue |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of connections that have been initiated, but not yet accepted. |0 |30d |0 | |31892 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31909 |18 | |10336 |PHP-FPM: Version |php-fpm.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current version PHP. Get from HTTP-Header "X-Powered-By" and may not work if you change default HTTP-headers. |0 |30d |0 | |31893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32003 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Used |ceph.pool["{#POOLNAME}",bytes_used] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total bytes used in pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32004 |18 | |10334 |Ceph: [{#POOLNAME}] Max available |ceph.pool["{#POOLNAME}",max_avail] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum available space in the given pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32005 |18 | |10334 |Ceph: [{#POOLNAME}] Pool objects |ceph.pool["{#POOLNAME}",objects] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects in the pool. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32006 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Percent Used |ceph.pool["{#POOLNAME}",percent_used] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of storage used per pool |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32007 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Read bandwidth |ceph.pool["{#POOLNAME}",rd_bytes.rate] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool read Bytes/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32008 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Read operations |ceph.pool["{#POOLNAME}",rd_ops.rate] |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool read operations/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32009 |18 | |10334 |Ceph: [{#POOLNAME}] Pool RAW Used |ceph.pool["{#POOLNAME}",stored_raw] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Bytes used in pool including copies made. |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32010 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Write bandwidth |ceph.pool["{#POOLNAME}",wr_bytes.rate] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool write Bytes/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32011 |18 | |10334 |Ceph: [{#POOLNAME}] Pool Write operations |ceph.pool["{#POOLNAME}",wr_ops.rate] |0 |7d |365d |0 |0 | |ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Per-pool write operations/second |0 |30d |0 | |31800 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32020 |18 | |10339 |NameNode: Missing blocks |hadoop.namenode.missing_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of missing blocks. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32021 |18 | |10339 |ResourceManager: Decommissioned NMs |hadoop.resourcemanager.num_decommissioned_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Decommissioned NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32022 |18 | |10339 |NameNode: Total blocks |hadoop.namenode.blocks_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of blocks tracked by NameNode. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32023 |18 | |10339 |NameNode: Capacity remaining |hadoop.namenode.capacity_remaining |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available capacity. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32024 |18 | |10339 |NameNode: Corrupt blocks |hadoop.namenode.corrupt_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of corrupt blocks. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32025 |18 | |10339 |ResourceManager: Uptime |hadoop.resourcemanager.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32026 |18 | |10339 |ResourceManager: RPC queue & processing time |hadoop.resourcemanager.rpc_processing_time_avg |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32027 |18 | |10339 |ResourceManager: Unhealthy NMs |hadoop.resourcemanager.num_unhealthy_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Unhealthy NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32028 |18 | |10339 |ResourceManager: Shutdown NMs |hadoop.resourcemanager.num_shutdown_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Shutdown NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32029 |18 | |10339 |ResourceManager: Rebooted NMs |hadoop.resourcemanager.num_rebooted_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Rebooted NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32030 |18 | |10339 |ResourceManager: Lost NMs |hadoop.resourcemanager.num_lost_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Lost NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32031 |18 | |10339 |ResourceManager: Decommissioning NMs |hadoop.resourcemanager.num_decommissioning_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Decommissioning NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32032 |18 | |10339 |NameNode: Total files |hadoop.namenode.files_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total count of files tracked by the NameNode. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32033 |18 | |10339 |ResourceManager: Active NMs |hadoop.resourcemanager.num_active_nm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of Active NodeManagers. |0 |30d |0 | |32017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32034 |18 | |10339 |NameNode: Dead DataNodes |hadoop.namenode.num_dead_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of dead DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32035 |18 | |10339 |NameNode: Failed volumes |hadoop.namenode.volume_failures_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed volumes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32036 |18 | |10339 |NameNode: Blocks allocable |hadoop.namenode.block_capacity |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of blocks allocable. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32037 |18 | |10339 |NameNode: Under-replicated blocks |hadoop.namenode.under_replicated_blocks |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of blocks with insufficient replication. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32038 |18 | |10339 |NameNode: Transactions since last checkpoint |hadoop.namenode.transactions_since_last_checkpoint |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of transactions since last checkpoint. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32039 |18 | |10339 |NameNode: Total load |hadoop.namenode.total_load |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of concurrent file accesses (read/write) across all DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32040 |18 | |10339 |NameNode: RPC queue & processing time |hadoop.namenode.rpc_processing_time_avg |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32041 |18 | |10339 |NameNode: Percent capacity remaining |hadoop.namenode.percent_remaining |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Available capacity in percent. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32042 |18 | |10339 |NameNode: Block Pool Renaming |hadoop.namenode.percent_block_pool_used |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32043 |18 | |10339 |NameNode: Stale DataNodes |hadoop.namenode.num_stale_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |DataNodes that do not send a heartbeat within 30 seconds are marked as "stale". |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32044 |18 | |10339 |NameNode: Alive DataNodes |hadoop.namenode.num_live_data_nodes |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of alive DataNodes. |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32045 |18 | |10339 |NameNode: Uptime |hadoop.namenode.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |32019 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32050 |18 | |10339 |{#HOSTNAME}: Admin state |hadoop.datanode.admin_state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Administrative state. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32051 |18 | |10339 |{#HOSTNAME}: Used |hadoop.datanode.dfs_used[{#HOSTNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Used disk space. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32052 |18 | |10339 |{#HOSTNAME}: JVM Garbage collection time |hadoop.datanode.jvm.gc_time[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM garbage collection time in milliseconds. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32053 |18 | |10339 |{#HOSTNAME}: JVM Heap usage |hadoop.datanode.jvm.mem_heap_used[{#HOSTNAME}] |0 |7d |365d |0 |0 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM heap usage in MBytes. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32054 |18 | |10339 |{#HOSTNAME}: JVM Threads |hadoop.datanode.jvm.threads[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of JVM threads. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32055 |18 | |10339 |{#HOSTNAME}: Number of failed volumes |hadoop.datanode.numfailedvolumes[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of failed storage volumes. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32056 |18 | |10339 |{#HOSTNAME}: Oper state |hadoop.datanode.oper_state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Operational state. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32057 |18 | |10339 |{#HOSTNAME}: Remaining |hadoop.datanode.remaining[{#HOSTNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Remaining disk space. |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32058 |18 | |10339 |{#HOSTNAME}: Uptime |hadoop.datanode.uptime[{#HOSTNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32048 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32059 |18 | |10339 |{#HOSTNAME}: Version |hadoop.datanode.version[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |DataNode software version. |0 |30d |0 | |32012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32060 |18 | |10339 |{#HOSTNAME}: Available memory |hadoop.nodemanager.availablememory[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32061 |18 | |10339 |{#HOSTNAME}: Container launch avg duration |hadoop.nodemanager.container_launch_duration_avg[{#HOSTNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32062 |18 | |10339 |{#HOSTNAME}: JVM Garbage collection time |hadoop.nodemanager.jvm.gc_time[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM garbage collection time in milliseconds. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32063 |18 | |10339 |{#HOSTNAME}: JVM Heap usage |hadoop.nodemanager.jvm.mem_heap_used[{#HOSTNAME}] |0 |7d |365d |0 |0 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL |The JVM heap usage in MBytes. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32064 |18 | |10339 |{#HOSTNAME}: JVM Threads |hadoop.nodemanager.jvm.threads[{#HOSTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of JVM threads. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32065 |18 | |10339 |{#HOSTNAME}: Number of containers |hadoop.nodemanager.numcontainers[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32066 |18 | |10339 |{#HOSTNAME}: RPC queue & processing time |hadoop.nodemanager.rpc_processing_time_avg[{#HOSTNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent on processing RPC requests. |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32067 |18 | |10339 |{#HOSTNAME}: State |hadoop.nodemanager.state[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |State of the node - valid values are: NEW, RUNNING, UNHEALTHY, DECOMMISSIONING, DECOMMISSIONED, LOST, REBOOTED, SHUTDOWN. |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32068 |18 | |10339 |{#HOSTNAME}: Uptime |hadoop.nodemanager.uptime[{#HOSTNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32049 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32069 |18 | |10339 |{#HOSTNAME}: Used memory |hadoop.nodemanager.usedmemory[{#HOSTNAME}] |0 |7d |365d |0 |3 | |!MB | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32070 |18 | |10339 |{#HOSTNAME}: Version |hadoop.nodemanager.version[{#HOSTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32013 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32160 |18 | |10341 |Zookeeper: Approximate data size |zookeeper.approximate_data_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Data tree size in bytes.The size includes the znode path and its value. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32161 |18 | |10341 |Zookeeper: Outstanding requests |zookeeper.outstanding_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queued requests when the server is under load and is receiving more sustained requests than it can process. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32162 |18 | |10341 |Zookeeper: Latency, max |zookeeper.max_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32163 |18 | |10341 |Zookeeper: Latency, min |zookeeper.min_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The minimum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32164 |18 | |10341 |Zookeeper: Alive connections |zookeeper.num_alive_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of active clients connected to a zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32165 |18 | |10341 |Zookeeper: File descriptors, open |zookeeper.open_file_descriptor_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of file descriptors that a zookeeper server has open. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32166 |18 | |10341 |Zookeeper: Packets received per sec |zookeeper.packets_received.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of zookeeper packets received by a server per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32167 |18 | |10341 |Zookeeper: Looking per sec |zookeeper.looking_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of transitions into looking state. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32168 |18 | |10341 |Zookeeper: Packets sent per sec |zookeeper.packets_sent |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of zookeeper packets sent from a server per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32169 |18 | |10341 |Zookeeper: Revalidate per sec |zookeeper.revalidate_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of revalidations. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32170 |18 | |10341 |Zookeeper: Server mode |zookeeper.server_state |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Mode of the server. In an ensemble, this may either be leader or follower. Otherwise, it is standalone |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32171 |18 | |10341 |Zookeeper: Snap syncs per sec |zookeeper.snap_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of snap syncs performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32172 |18 | |10341 |Zookeeper: Uptime |zookeeper.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32173 |18 | |10341 |Zookeeper: Version |zookeeper.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zookeeper server. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32174 |18 | |10341 |Zookeeper: Watch count |zookeeper.watch_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches currently set on the local ZooKeeper process. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32175 |18 | |10341 |Zookeeper: File descriptors, max |zookeeper.max_file_descriptor_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of file descriptors that a zookeeper server can open. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32176 |18 | |10341 |Zookeeper: Global sessions |zookeeper.global_sessions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of global sessions. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32177 |18 | |10341 |Zookeeper: Local sessions |zookeeper.local_sessions |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of local sessions. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32178 |18 | |10341 |Zookeeper: Election time, avg |zookeeper.avg_election_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Time between entering and leaving election. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32179 |18 | |10341 |Zookeeper: Ephemeral nodes count |zookeeper.ephemerals_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of ephemeral nodes that a zookeeper server has in its data tree. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32180 |18 | |10341 |Zookeeper: Diff syncs per sec |zookeeper.diff_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of diff syncs performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32181 |18 | |10341 |Zookeeper: Revalidate connections per sec |zookeeper.connection_revalidate_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate ofconnection revalidations. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32182 |18 | |10341 |Zookeeper: Rejected connections per sec |zookeeper.connection_rejected.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of connection rejected. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32183 |18 | |10341 |Zookeeper: Drop connections per sec |zookeeper.connection_drop_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of connection drops. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32184 |18 | |10341 |Zookeeper: Commit per sec |zookeeper.commit_count.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of commits performed per second |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32185 |18 | |10341 |Zookeeper: Snapshot writes |zookeeper.cnt_snapshottime |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of performed snapshot writes. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32186 |18 | |10341 |Zookeeper: Fsync |zookeeper.cnt_fsynctime |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of performed fsyncs. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32187 |18 | |10341 |Zookeeper: Elections |zookeeper.cnt_election_time |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of elections happened. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32188 |18 | |10341 |Zookeeper: Bytes received per sec |zookeeper.bytes_received_count.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received per second. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32189 |18 | |10341 |Zookeeper: Snapshot write time, avg |zookeeper.avg_snapshottime |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average time to write a snapshot. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32190 |18 | |10341 |Zookeeper: Latency, avg |zookeeper.avg_latency |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |The average amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32191 |18 | |10341 |Zookeeper: Fsync time, avg |zookeeper.avg_fsynctime |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Time to fsync transaction log. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32192 |18 | |10341 |Zookeeper: Znode count |zookeeper.znode_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of znodes in the ZooKeeper namespace (the data) |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32194 |18 | |10341 |Leader metrics discovery |zookeeper.metrics.leader |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics for leader node |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32195 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, avg |zookeeper.avg_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32196 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, max |zookeeper.max_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The maximum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32197 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Latency, min |zookeeper.min_latency[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The minimum amount of time it takes for the server to respond to a client request. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32198 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Outstanding requests |zookeeper.outstanding_requests[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queued requests when the server is under load and is receiving more sustained requests than it can process. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32199 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Packets received per sec |zookeeper.packets_received[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of packets received. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32200 |18 | |10341 |Zookeeper client {#TYPE} [{#CLIENT}]: Packets sent per sec |zookeeper.packets_sent[{#TYPE},{#CLIENT}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of packets sent. |0 |30d |0 | |32159 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32201 |18 | |10341 |Zookeeper: Learners{#SINGLETON} |zookeeper.learners[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of learners. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32202 |18 | |10341 |Zookeeper: Pending syncs{#SINGLETON} |zookeeper.pending_syncs[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pending syncs to carry out to ZooKeeper ensemble followers. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32203 |18 | |10341 |Zookeeper: Quorum size{#SINGLETON} |zookeeper.quorum_size[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32204 |18 | |10341 |Zookeeper: Synced followers{#SINGLETON} |zookeeper.synced_followers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced followers reported when a node server_state is leader. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32205 |18 | |10341 |Zookeeper: Synced non-voting follower{#SINGLETON} |zookeeper.synced_non_voting_followers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced voting followers reported when a node server_state is leader. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32206 |18 | |10341 |Zookeeper: Synced observers{#SINGLETON} |zookeeper.synced_observers[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of synced observers. |0 |30d |0 | |32158 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32306 |18 | |10254 |Voltage discovery |voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |ENTITY-SENSORS-MIB::EntitySensorDataType discovery with volts filter |0 |30d |2 | |28305 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32329 |18 | |10343 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32325 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32349 |18 | |10344 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32340 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32372 |18 | |10345 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32381 |18 | |10346 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32374 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32400 |18 | |10347 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32419 |18 | |10348 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32414 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32430 |18 | |10349 |Battery voltage discovery |battery.voltage.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for battery voltage triggers |0 |30d |0 | |32421 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32431 |18 | |10349 |Charge + Diversion mode discovery |controlmode.charge_diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in charge and diversion modes |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32432 |18 | |10349 |Charge mode discovery |controlmode.charge.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in charge mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32433 |18 | |10349 |Diversion mode discovery |controlmode.diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in diversion mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32434 |18 | |10349 |Load + Diversion mode discovery |controlmode.load_diversion.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in load and diversion modes |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32435 |18 | |10349 |Load mode discovery |controlmode.load.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery for device in load mode |0 |1h |0 | |32422 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32547 |18 | |10316 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32548 |18 | |10316 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32549 |18 | |10316 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32550 |18 | |10316 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32551 |18 | |10316 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32552 |18 | |10316 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32553 |18 | |10316 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30431 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32554 |18 | |10316 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32555 |18 | |10316 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32556 |18 | |10316 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32557 |18 | |10316 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32558 |18 | |10316 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32559 |18 | |10316 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32561 |18 | |10320 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32562 |18 | |10320 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32563 |18 | |10320 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32564 |18 | |10320 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32565 |18 | |10320 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32566 |18 | |10320 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32567 |18 | |10320 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30637 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32568 |18 | |10320 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32569 |18 | |10320 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32570 |18 | |10320 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32571 |18 | |10320 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32572 |18 | |10320 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32573 |18 | |10320 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.replication.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32575 |18 | |10317 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32576 |18 | |10317 |MySQL: Innodb number open files |mysql.innodb_num_open_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open files held by InnoDB. InnoDB only. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32577 |18 | |10317 |MySQL: Innodb log written |mysql.innodb_os_log_written |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes written to the InnoDB log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32578 |18 | |10317 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32579 |18 | |10317 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32580 |18 | |10317 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32581 |18 | |10317 |MariaDB discovery |mysql.extra_metric.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Additional metrics if MariaDB is used. |0 |30d |0 | |30480 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32582 |18 | |10317 |MySQL: Replication Slave SQL Running State {#MASTER_HOST} |mysql.slave_sql_running_state["{#MASTER_HOST}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This shows the state of the SQL driver threads. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32583 |18 | |10317 |MySQL: Binlog commits |mysql.binlog_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of transactions committed to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32584 |18 | |10317 |MySQL: Binlog group commits |mysql.binlog_group_commits[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of group commits done to the binary log. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32585 |18 | |10317 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32586 |18 | |10317 |MySQL: Master GTID wait time |mysql.master_gtid_wait_time[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of time spent in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32587 |18 | |10317 |MySQL: Master GTID wait timeouts |mysql.master_gtid_wait_timeouts[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of timeouts occurring in MASTER_GTID_WAIT. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32588 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace used, bytes |oracle.tbs_used_bytes["{#TABLESPACE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Currently used bytes for tablespace (current size of datafiles-free space). |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32589 |18 | |10333 |Oracle TBS '{#TABLESPACE}': Tablespace usage, percent |oracle.tbs_used_file_pct["{#TABLESPACE}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Used bytes/Allocated bytes*100 |0 |30d |0 | |31645 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32596 |18 | |10328 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time.rate |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 | |31180 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32598 |18 | |10328 |Application {#APPLICATION}: Replication flush lag |pgsql.replication.process.flush_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32599 |18 | |10328 |Application {#APPLICATION}: Replication replay lag |pgsql.replication.process.replay_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32600 |18 | |10328 |Application {#APPLICATION}: Replication write lag |pgsql.replication.process.write_lag["{#APPLICATION}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32595 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32744 |18 | |10355 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} |smart.disk.error[{#NAME},{#ID}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32745 |18 | |10355 |SMART [{#NAME}]: Critical warning |smart.disk.critical_warning[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This field indicates critical warnings for the state of the controller. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32746 |18 | |10355 |SMART [{#NAME}]: Power on hours |smart.disk.hours[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32747 |18 | |10355 |SMART [{#NAME}]: Media errors |smart.disk.media_errors[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32748 |18 | |10355 |SMART [{#NAME}]: Device model |smart.disk.model[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32749 |18 | |10355 |SMART [{#NAME}]: Percentage used |smart.disk.percentage_used[{#NAME}] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer's prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state). |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32750 |18 | |10355 |SMART [{#NAME}]: Serial number |smart.disk.sn[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32751 |18 | |10355 |SMART [{#NAME}]: Temperature |smart.disk.temperature[{#NAME}] |0 |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Current drive temperature. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32752 |18 | |10355 |SMART [{#NAME}]: Self-test passed |smart.disk.test[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The disk is passed the SMART self-test or not. |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32756 |18 | |10356 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} |smart.disk.error[{#NAME},{#ID}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32757 |18 | |10356 |SMART [{#NAME}]: Critical warning |smart.disk.critical_warning[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This field indicates critical warnings for the state of the controller. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32758 |18 | |10356 |SMART [{#NAME}]: Power on hours |smart.disk.hours[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Count of hours in power-on state. The raw value of this attribute shows total count of hours (or minutes, or seconds, depending on manufacturer) in power-on state. "By default, the total expected lifetime of a hard disk in perfect condition is defined as 5 years (running every day and night on all days). This is equal to 1825 days in 24/7 mode or 43800 hours." On some pre-2005 drives, this raw value may advance erratically and/or "wrap around" (reset to zero periodically). https://en.wikipedia.org/wiki/S.M.A.R.T.#Known_ATA_S.M.A.R.T._attributes |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32759 |18 | |10356 |SMART [{#NAME}]: Media errors |smart.disk.media_errors[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains the number of occurrences where the controller detected an unrecovered data integrity error. Errors such as uncorrectable ECC, CRC checksum failure, or LBA tag mismatch are included in this field. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32760 |18 | |10356 |SMART [{#NAME}]: Device model |smart.disk.model[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32761 |18 | |10356 |SMART [{#NAME}]: Percentage used |smart.disk.percentage_used[{#NAME}] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a vendor specific estimate of the percentage of NVM subsystem life used based on the actual usage and the manufacturer's prediction of NVM life. A value of 100 indicates that the estimated endurance of the NVM in the NVM subsystem has been consumed, but may not indicate an NVM subsystem failure. The value is allowed to exceed 100. Percentages greater than 254 shall be represented as 255. This value shall be updated once per power-on hour (when the controller is not in a sleep state). |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32762 |18 | |10356 |SMART [{#NAME}]: Serial number |smart.disk.sn[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32763 |18 | |10356 |SMART [{#NAME}]: Temperature |smart.disk.temperature[{#NAME}] |0 |7d |365d |0 |3 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |Current drive temperature. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32764 |18 | |10356 |SMART [{#NAME}]: Self-test passed |smart.disk.test[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The disk is passed the SMART self-test or not. |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32932 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32933 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32934 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32935 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32936 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32937 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32938 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32939 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32940 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32941 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32942 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32943 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32944 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32945 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32946 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32947 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32948 |18 | |10360 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32949 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32950 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32951 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32952 |18 | |10360 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32953 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32954 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32955 |18 | |10360 |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 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32956 |18 | |10361 |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 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32957 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32958 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32959 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32960 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32961 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32962 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32963 |18 | |10361 |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 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32964 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32965 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32966 |18 | |10361 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32967 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32968 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32969 |18 | |10361 |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 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32970 |18 | |10361 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |32928 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32971 |18 | |10360 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32972 |18 | |10360 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32926 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32973 |18 | |10361 |Health Check 3.8.9- discovery |rabbitmq.healthcheck.v389.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Specific metrics up to and including version 3.8.4 |0 |30d |0 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32974 |18 | |10361 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |32929 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32975 |18 | |10361 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32983 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32984 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32985 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32986 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32987 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32988 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32989 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32990 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32991 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32992 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32993 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32994 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32995 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32996 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32997 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32998 |18 | |10360 |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 | |32925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32999 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33000 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33001 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33002 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33003 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33004 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33005 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33006 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33007 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33008 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33009 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33010 |18 | |10361 |RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of 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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33011 |18 | |10361 |RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of 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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33012 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33013 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33014 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33015 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33016 |18 | |10361 |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 | |32930 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33022 |18 | |10362 |MongoDB: Document: deleted, rate |mongod.document.deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents deleted per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33023 |18 | |10362 |MongoDB: Requests, rate |mongodb.network.numRequests.rate |0 |7d |365d |0 |0 | |!Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of distinct requests that the server has received per second |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33024 |18 | |10362 |MongoDB: Memory: mapped with journal |mongodb.mem.mapped_with_journal |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of mapped memory, including the memory used for journaling. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33025 |18 | |10362 |MongoDB: Memory: resident |mongodb.mem.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory currently used by the database process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33026 |18 | |10362 |MongoDB: Memory: virtual |mongodb.mem.virtual |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of virtual memory used by the mongod process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33027 |18 | |10362 |MongoDB: Cursor: open no timeout |mongodb.metrics.cursor.open.no_timeout |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33028 |18 | |10362 |MongoDB: Bytes in, rate |mongodb.network.bytes_in.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33029 |18 | |10362 |MongoDB: Bytes out, rate |mongodb.network.bytes_out.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33030 |18 | |10362 |MongoDB: Operations: delete, rate |mongodb.opcounters.delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of delete operations the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33031 |18 | |10362 |MongoDB: Operations: command, rate |mongodb.opcounters.command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of commands issued to the database the mongod instance per second.&eol;Counts all commands except the write commands: insert, update, and delete. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33032 |18 | |10362 |MongoDB: Architecture |mongodb.mem.bits |0 |7d |365d |0 |3 | |bit | | |NULL |NULL | | |0 | | | | |0 |NULL |A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33033 |18 | |10362 |MongoDB: Operations: getmore, rate |mongodb.opcounters.getmore.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of “getmore” operations since the mongod instance per second. This counter can be high even if the query count is low. &eol;Secondary nodes send getMore operations as part of the replication process. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33034 |18 | |10362 |MongoDB: Operations: insert, rate |mongodb.opcounters.insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of insert operations received since the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33035 |18 | |10362 |MongoDB: Operations: query, rate |mongodb.opcounters.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries received the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33036 |18 | |10362 |MongoDB: Operations: update, rate |mongodb.opcounters.update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of update operations the mongod instance per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33037 |18 | |10362 |MongoDB: Uptime |mongodb.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds that the mongod process has been active. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33038 |18 | |10362 |MongoDB: Memory: mapped |mongodb.mem.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of mapped memory by the database. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33039 |18 | |10362 |MongoDB: Cursor: timed out, rate |mongodb.cursor.timed_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that time out, per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33040 |18 | |10362 |MongoDB: Document: inserted, rate |mongod.document.inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents inserted per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33041 |18 | |10362 |MongoDB: Asserts: user, rate |mongodb.asserts.user.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of “user asserts” that have occurred per second.&eol;These are errors that user may generate, such as out of disk space or duplicate key. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33042 |18 | |10362 |MongoDB: Document: returned, rate |mongod.document.returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents returned by queries per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33043 |18 | |10362 |MongoDB: Document: updated, rate |mongod.document.updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of documents updated per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33044 |18 | |10362 |MongoDB: Active clients: readers |mongodb.active_clients.readers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of the active client connections performing read operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33045 |18 | |10362 |MongoDB: Active clients: total |mongodb.active_clients.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of internal client connections to the database including system threads as well as queued readers and writers. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33046 |18 | |10362 |MongoDB: Active clients: writers |mongodb.active_clients.writers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active client connections performing write operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33047 |18 | |10362 |MongoDB: Asserts: message, rate |mongodb.asserts.msg.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of message assertions raised per second.&eol;Check the log file for more information about these messages. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33048 |18 | |10362 |MongoDB: Asserts: regular, rate |mongodb.asserts.regular.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of regular assertions raised per second.&eol;Check the log file for more information about these messages. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33049 |18 | |10362 |MongoDB: Asserts: rollovers, rate |mongodb.asserts.rollovers.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times that the rollover counters roll over per second.&eol;The counters rollover to zero every 2^30 assertions. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33050 |18 | |10362 |MongoDB: Asserts: warning, rate |mongodb.asserts.warning.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of warnings raised per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33051 |18 | |10362 |MongoDB: Cursor: open total |mongodb.cursor.open.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that MongoDB is maintaining for clients. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33052 |18 | |10362 |MongoDB: Connections, active |mongodb.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active client connections to the server.&eol;Active client connections refers to client connections that currently have operations in progress.&eol;Available starting in 4.0.7, 0 for older versions. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33053 |18 | |10362 |MongoDB: Connections, available |mongodb.connections.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unused incoming connections available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33054 |18 | |10362 |MongoDB: Connections, current |mongodb.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of incoming connections from clients to the database server.&eol;This number includes the current shell session |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33055 |18 | |10362 |MongoDB: New connections, rate |mongodb.connections.rate |0 |7d |365d |0 |0 | |Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Rate of all incoming connections created to the server. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33056 |18 | |10362 |MongoDB: Current queue: readers |mongodb.current_queue.readers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of operations that are currently queued and waiting for the read lock.&eol;A consistently small read-queue, particularly of shorter operations, should cause no concern. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33057 |18 | |10362 |MongoDB: Current queue: total |mongodb.current_queue.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of operations queued waiting for the lock. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33058 |18 | |10362 |MongoDB: Current queue: writers |mongodb.current_queue.writers |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of operations that are currently queued and waiting for the write lock. &eol; A consistently small write-queue, particularly of shorter operations, is no cause for concern. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33059 |18 | |10362 |MongoDB: Cursor: open pinned |mongodb.cursor.open.pinned |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pinned open cursors. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33060 |18 | |10362 |MongoDB: MongoDB version |mongodb.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the MongoDB server. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33063 |18 | |10362 |Replication discovery |mongodb.rs.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics by Zabbix agent if it exists |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33064 |18 | |10362 |WiredTiger metrics |mongodb.wired_tiger.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Collect metrics of WiredTiger Storage Engine if it exists |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33067 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size |mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size of the average object in the collection in bytes. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33068 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, ms/s |mongodb.collection.ops.remove.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33069 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Write lock, ms/s |mongodb.collection.write_lock.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33070 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Storage size |mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total storage space allocated to this collection for document storage. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33071 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Size |mongodb.collection.size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33072 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Read lock, rate |mongodb.collection.read_lock.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33073 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Read lock, ms/s |mongodb.collection.read_lock.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33074 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, rate |mongodb.collection.ops.update.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33075 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: update, ms/s |mongodb.collection.ops.update.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33076 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, rate |mongodb.collection.ops.total.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33077 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: total, ms/s |mongodb.collection.ops.total.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33078 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: remove, rate |mongodb.collection.ops.remove.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33079 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, rate |mongodb.collection.ops.queries.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33080 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped |mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |153 | | |0 | | | | |2 |NULL |Whether or not the collection is capped. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33081 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: queries, ms/s |mongodb.collection.ops.queries.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33082 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, rate |mongodb.collection.ops.insert.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33083 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: insert, ms/s |mongodb.collection.ops.insert.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33084 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, rate |mongodb.collection.ops.getmore.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33085 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: getmore, ms/s |mongodb.collection.ops.getmore.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33086 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, rate |mongodb.collection.ops.commands.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33087 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Operations: commands, ms/s |mongodb.collection.ops.commands.ms["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent to operations. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33088 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Indexes |mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of indices on the collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33089 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped: max size |mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of a capped collection in bytes. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33090 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Capped: max number |mongodb.collection.max_number["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum number of documents that may be present in a capped collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33091 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, count |mongodb.collection.count["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of objects in the collection. |0 |30d |0 | |33065 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33092 |18 | |10362 |MongoDB {#DBNAME}.{#COLLECTION}: Write lock, rate |mongodb.collection.write_lock.rate["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of operations per second. |0 |30d |0 | |33021 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33093 |18 | |10362 |MongoDB {#DBNAME}: Collections |mongodb.db.collections["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of collections in that database. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33094 |18 | |10362 |MongoDB {#DBNAME}: Size, data |mongodb.db.data_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33095 |18 | |10362 |MongoDB {#DBNAME}: Extents |mongodb.db.extents["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of extents in the database across all collections. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33096 |18 | |10362 |MongoDB {#DBNAME}: Size, file |mongodb.db.file_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine). |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33097 |18 | |10362 |MongoDB {#DBNAME}: Size, index |mongodb.db.index_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of all indexes created on this database. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33098 |18 | |10362 |MongoDB {#DBNAME}: Objects, count |mongodb.db.objects["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects (documents) in the database across all collections. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33099 |18 | |10362 |MongoDB {#DBNAME}: Objects, avg size |mongodb.db.size["{#DBNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The average size of each document in bytes. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33100 |18 | |10362 |MongoDB {#DBNAME}: Size, storage |mongodb.db.storage_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of space allocated to collections in this database for document storage. |0 |30d |0 | |33066 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33101 |18 | |10362 |MongoDB: Apply batches, ms/s |mongodb.rs.apply.batches.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) the mongod has spent applying operations from the oplog. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33102 |18 | |10362 |MongoDB: Network readers created, rate |mongodb.rs.network.readers.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of oplog query processes created per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33103 |18 | |10362 |MongoDB: Number of unhealthy replicas |mongodb.rs.unhealthy_count[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of replicated nodes with member health value = 0. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
+ROW |33104 |18 | |10362 |MongoDB: Number of replicas |mongodb.rs.total_nodes[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of replicated nodes in current ReplicaSet. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
+ROW |33105 |18 | |10362 |MongoDB: Node state |mongodb.rs.state[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |154 | | |0 | | | | |2 |NULL |An integer between 0 and 10 that represents the replica state of the current member. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33106 |18 | |10362 |MongoDB: Preload indexes, rate |mongodb.rs.preload.indexes.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of index entries loaded by members before updating documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33107 |18 | |10362 |MongoDB: Preload indexes, ms/s |mongodb.rs.preload.indexes.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33108 |18 | |10362 |MongoDB: Preload docs, rate |mongodb.rs.preload.docs.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of documents loaded per second during the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33109 |18 | |10362 |MongoDB: Preload docs, ms/s |mongodb.rs.preload.docs.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) spent loading documents as part of the pre-fetch stage of replication. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33110 |18 | |10362 |MongoDB {#RS_NAME}: Oplog time diff |mongodb.rs.oplog.timediff[{#RS_NAME}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Oplog window: difference between the first and last operation in the oplog. Only present if there are entries in the oplog. |0 |30d |0 | |33020 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33111 |18 | |10362 |MongoDB: Network ops, rate |mongodb.rs.network.ops.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of operations read from the replication source per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33112 |18 | |10362 |MongoDB: Apply batches, rate |mongodb.rs.apply.batches.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of batches applied across all databases per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33113 |18 | |10362 |MongoDB: Network getmores, rate |mongodb.rs.network.getmores.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of getmore operations per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33114 |18 | |10362 |MongoDB: Network getmores, ms/s |mongodb.rs.network.getmores.ms.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |ms/s | | |NULL |NULL | | |0 | | | | |2 |NULL |Fraction of time (ms/s) required to collect data from getmore operations. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33115 |18 | |10362 |MongoDB: Network bytes, rate |mongodb.rs.network.bytes.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of data read from the replication sync source per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33116 |18 | |10362 |MongoDB: Replication lag |mongodb.rs.lag[{#RS_NAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Delay between a write operation on the primary and its copy to a secondary. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33117 |18 | |10362 |MongoDB: Buffer, size |mongodb.rs.buffer.size[{#RS_NAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Current size of the contents of the oplog buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33118 |18 | |10362 |MongoDB: Buffer, max size |mongodb.rs.buffer.max_size[{#RS_NAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of the buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33119 |18 | |10362 |MongoDB: Buffer |mongodb.rs.buffer.count[{#RS_NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of operations in the oplog buffer. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33120 |18 | |10362 |MongoDB: Apply ops, rate |mongodb.rs.apply.rate[{#RS_NAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of oplog operations applied per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33121 |18 | |10362 |MongoDB: Unhealthy replicas |mongodb.rs.unhealthy[{#RS_NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The replicated nodes in current ReplicaSet with member health value = 0. |0 |30d |0 | |33018 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |1 |
+ROW |33122 |18 | |10362 |MongoDB: WiredTiger cache: bytes |mongodb.wired_tiger.cache.bytes_in_cache[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the data currently in cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33123 |18 | |10362 |MongoDB: WiredTiger cache: tracked dirty bytes in the cache |mongodb.wired_tiger.cache.tracked_dirty_bytes[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the dirty data in the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33124 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, out |mongodb.wired_tiger.concurrent_transactions.write.out[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of write tickets (concurrent transactions) in use. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33125 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, available |mongodb.wired_tiger.concurrent_transactions.write.available[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of available write tickets (concurrent transactions) remaining. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33126 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, total tickets |mongodb.wired_tiger.concurrent_transactions.read.totalTickets[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of read tickets (concurrent transactions) available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33127 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, out |mongodb.wired_tiger.concurrent_transactions.read.out[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of read tickets (concurrent transactions) in use. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33128 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: read, available |mongodb.wired_tiger.concurrent_transactions.read.available[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of available read tickets (concurrent transactions) remaining. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33129 |18 | |10362 |MongoDB: WiredTiger cache: unmodified pages evicted |mongodb.wired_tiger.cache.unmodified_pages_evicted[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages, that were not modified, evicted from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33130 |18 | |10362 |MongoDB: WiredTiger cache: in-memory page splits |mongodb.wired_tiger.cache.splits[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |In-memory page splits. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33131 |18 | |10362 |MongoDB: WiredTiger cache: max page size at eviction |mongodb.wired_tiger.cache.max_page_size_eviction[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum page size at eviction. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33132 |18 | |10362 |MongoDB: WiredTiger cache: pages written from cache |mongodb.wired_tiger.cache.pages_written[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages written from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33133 |18 | |10362 |MongoDB: WiredTiger cache: pages read into cache |mongodb.wired_tiger.cache.pages_read[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages read into the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33134 |18 | |10362 |MongoDB: WiredTiger cache: pages held in cache |mongodb.wired_tiger.cache.pages_in_cache[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages currently held in the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33135 |18 | |10362 |MongoDB: WiredTiger cache: pages evicted by application threads, rate |mongodb.wired_tiger.cache.pages_evicted_threads.rate[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of page evicted by application threads per second. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33136 |18 | |10362 |MongoDB: WiredTiger cache: modified pages evicted |mongodb.wired_tiger.cache.modified_pages_evicted[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of pages, that have been modified, evicted from the cache. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33137 |18 | |10362 |MongoDB: WiredTiger cache: bytes, max |mongodb.wired_tiger.cache.maximum_bytes_configured[{#SINGLETON}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum cache size. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33138 |18 | |10362 |MongoDB: WiredTiger concurrent transactions: write, total tickets |mongodb.wired_tiger.concurrent_transactions.write.totalTickets[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of write tickets (concurrent transactions) available. |0 |30d |0 | |33017 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33144 |18 | |10363 |MongoDB cluster: Operations: command |mongodb.opcounters.command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of commands issued to the database per second.&eol;Counts all commands except the write commands: insert, update, and delete." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33145 |18 | |10363 |MongoDB cluster: Bytes in, rate |mongodb.network.bytes_in.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has received over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33146 |18 | |10363 |MongoDB cluster: Bytes out, rate |mongodb.network.bytes_out.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of bytes that the server has sent over network connections initiated by clients or other mongod/mongos instances per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33147 |18 | |10363 |MongoDB cluster: Requests, rate |mongodb.network.numRequests.rate |0 |7d |365d |0 |0 | |!Rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of distinct requests that the server has received per second |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33148 |18 | |10363 |MongoDB cluster: Operations: getmore, rate |mongodb.opcounters.getmore.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of “getmore” operations the mongos per second. This counter can be high even if the query count is low.&eol;Secondary nodes send getMore operations as part of the replication process." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33149 |18 | |10363 |MongoDB cluster: Operations: delete |mongodb.opcounters.delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of delete operations the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33150 |18 | |10363 |MongoDB cluster: Memory: virtual |mongodb.mem.virtual |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of virtual memory used by the mongos process. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33151 |18 | |10363 |MongoDB cluster: Operations: insert, rate |mongodb.opcounters.insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of insert operations received the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33152 |18 | |10363 |MongoDB cluster: Operations: query, rate |mongodb.opcounters.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of queries received the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33153 |18 | |10363 |MongoDB cluster: Operations: update, rate |mongodb.opcounters.update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of update operations the mongos instance per second." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33154 |18 | |10363 |MongoDB cluster: Uptime |mongodb.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since Mongos server start |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33155 |18 | |10363 |MongoDB cluster: Cursor: open no timeout |mongodb.metrics.cursor.open.no_timeout |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open cursors with the option DBQuery.Option.noTimeout set to prevent timeout after a period of inactivity. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33156 |18 | |10363 |MongoDB cluster: Architecture |mongodb.mem.bits |0 |7d |365d |0 |3 | |bit | | |NULL |NULL | | |0 | | | | |0 |NULL |A number, either 64 or 32, that indicates whether the MongoDB instance is compiled for 64-bit or 32-bit architecture. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33157 |18 | |10363 |MongoDB cluster: Memory: resident |mongodb.mem.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of memory currently used by the database process. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33158 |18 | |10363 |MongoDB cluster: Connection pool: available |mongodb.connection_pool.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of available outgoing connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33159 |18 | |10363 |MongoDB cluster: Last seen configserver |mongodb.last_seen_config_server |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The latest optime of the CSRS primary that the mongos has seen. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33160 |18 | |10363 |MongoDB cluster: Cursor: timed out, rate |mongodb.cursor.timed_out.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that time out, per second. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33161 |18 | |10363 |MongoDB cluster: Cursor: open total |mongodb.cursor.open.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cursors that MongoDB is maintaining for clients. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33162 |18 | |10363 |MongoDB cluster: Cursor: open pinned |mongodb.cursor.open.pinned |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pinned open cursors. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33163 |18 | |10363 |MongoDB cluster: New connections, rate |mongodb.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Rate of all incoming connections created to the server." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33164 |18 | |10363 |MongoDB cluster: Connections, current |mongodb.connections.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of incoming connections from clients to the database server. &eol;This number includes the current shell session" |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33165 |18 | |10363 |MongoDB cluster: Connections, available |mongodb.connections.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of unused incoming connections available." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33166 |18 | |10363 |MongoDB cluster: Connections, active |mongodb.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"The number of active client connections to the server. &eol;Active client connections refers to client connections that currently have operations in progress.&eol;Available starting in 4.0.7, 0 for older versions." |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33167 |18 | |10363 |MongoDB cluster: Connection pool: scoped |mongodb.connection_pool.scoped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of active and stored outgoing scoped synchronous connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33168 |18 | |10363 |MongoDB cluster: Connection pool: refreshing |mongodb.connection_pool.refreshing |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster that are currently being refreshed. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33169 |18 | |10363 |MongoDB cluster: Connection pool: in use |mongodb.connection_pool.in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Reports the total number of outgoing connections from the current mongos instance to other members of the sharded cluster set that are currently in use. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33170 |18 | |10363 |MongoDB cluster: Connection pool: created, rate |mongodb.connection_pool.created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of outgoing connections created per second by the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33171 |18 | |10363 |MongoDB cluster: Connection pool: client connections |mongodb.connection_pool.client |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active and stored outgoing synchronous connections from the current mongos instance to other members of the sharded cluster. |0 |30d |0 | |33142 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33172 |18 | |10363 |MongoDB cluster: Mongos version |mongodb.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the Mongos server |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33179 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, avg size |mongodb.collection.avg_obj_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The size of the average object in the collection in bytes. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33180 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped |mongodb.collection.capped["{#DBNAME}","{#COLLECTION}"] |0 |7d |0 |0 |1 | | | | |NULL |153 | | |0 | | | | |2 |NULL |Whether or not the collection is capped. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33181 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Objects, count |mongodb.collection.count["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of objects in the collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33182 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped, max size |mongodb.collection.max_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum size of a capped collection in bytes. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33183 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Capped, max number |mongodb.collection.max["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum number of documents in a capped collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33184 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Indexes |mongodb.collection.nindexes["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of indices on the collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33185 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Size |mongodb.collection.size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total size in bytes of the data in the collection plus the size of every indexes on the mongodb.collection. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33186 |18 | |10363 |MongoDB {#DBNAME}.{#COLLECTION}: Storage size |mongodb.collection.storage_size["{#DBNAME}","{#COLLECTION}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total storage space allocated to this collection for document storage. |0 |30d |0 | |33177 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33187 |18 | |10363 |MongoDB {#DBNAME}: Size, data |mongodb.db.data_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33188 |18 | |10363 |MongoDB {#DBNAME}: Extents |mongodb.db.extents["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Contains a count of the number of extents in the database across all collections. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33189 |18 | |10363 |MongoDB {#DBNAME}: Size, file |mongodb.db.file_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of the data held in this database including the padding factor (only available with the mmapv1 storage engine). |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33190 |18 | |10363 |MongoDB {#DBNAME}: Size, index |mongodb.db.index_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total size of all indexes created on this database. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33191 |18 | |10363 |MongoDB {#DBNAME}: Objects, count |mongodb.db.objects["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of objects (documents) in the database across all collections. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33192 |18 | |10363 |MongoDB {#DBNAME}: Objects, avg size |mongodb.db.size["{#DBNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The average size of each document in bytes. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33193 |18 | |10363 |MongoDB {#DBNAME}: Size, storage |mongodb.db.storage_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total amount of space allocated to collections in this database for document storage. |0 |30d |0 | |33178 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33195 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]|0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of the log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33196 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records in the log files of the secondary replica that has not yet been redone. |0 |30d |0 | |33194 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33493 |18 | |10372 |Cluster status |netapp.cluster.status |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The status of the cluster: ok, error, partial_no_data, partial_no_response, partial_other_error, negative_delta, backfilled_data, inconsistent_delta_time, inconsistent_old_data. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33494 |18 | |10372 |Cluster location |netapp.cluster.location |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The location of the cluster. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33495 |18 | |10372 |Cluster name |netapp.cluster.name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The name of the cluster. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33496 |18 | |10372 |Cluster IOPS raw, other |netapp.cluster.statistics.iops_raw.other |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33497 |18 | |10372 |Cluster IOPS raw, read |netapp.cluster.statistics.iops_raw.read |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33498 |18 | |10372 |Cluster IOPS raw, total |netapp.cluster.statistics.iops_raw.total |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33499 |18 | |10372 |Cluster IOPS raw, write |netapp.cluster.statistics.iops_raw.write |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33500 |18 | |10372 |Cluster IOPS, other rate |netapp.cluster.statistics.iops.other.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33501 |18 | |10372 |Cluster software version |netapp.cluster.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33502 |18 | |10372 |Cluster latency raw, read |netapp.cluster.statistics.latency_raw.read |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33503 |18 | |10372 |Cluster latency raw, total |netapp.cluster.statistics.latency_raw.total |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33504 |18 | |10372 |Cluster throughput, total rate |netapp.cluster.statistics.throughput.total.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33505 |18 | |10372 |Cluster throughput, read rate |netapp.cluster.statistics.throughput.read.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33506 |18 | |10372 |Cluster throughput, other rate |netapp.cluster.statistics.throughput.other.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33507 |18 | |10372 |Cluster IOPS, read rate |netapp.cluster.statistics.iops.read.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33508 |18 | |10372 |Cluster IOPS, total rate |netapp.cluster.statistics.iops.total.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33509 |18 | |10372 |Cluster IOPS, write rate |netapp.cluster.statistics.iops.write.rate |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33510 |18 | |10372 |Cluster latency raw, other |netapp.cluster.statistics.latency_raw.other |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33511 |18 | |10372 |Cluster latency raw, write |netapp.cluster.statistics.latency_raw.write |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |0 |NULL |The raw latency in microseconds observed at the storage object. This can be divided by the raw IOPS value to calculate the average latency per I/O operation. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33512 |18 | |10372 |Cluster throughput, write rate |netapp.cluster.statistics.throughput.write.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Throughput bytes observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33490 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33515 |18 | |10372 |FRUs discovery |netapp.frus.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |33486 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33526 |18 | |10372 |{#ID}: State |netapp.chassis.state[{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The chassis state: ok, error. |0 |30d |0 | |33479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33527 |18 | |10372 |{#DISKNAME}: State |netapp.disk.state[{#NODENAME},{#DISKNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the disk. Possible values: broken, copy, maintenance, partner, pending, present, reconstructing, removed, spare, unfail, zeroing |0 |30d |0 | |33487 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33528 |18 | |10372 |{#FRUID}: State |netapp.chassis.fru.state[{#CHASSISID},{#FRUID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The FRU state: ok, error. |0 |30d |0 | |33486 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33529 |18 | |10372 |{#LUNNAME}: Space size |netapp.lun.space.size[{#SVMNAME},{#LUNNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total provisioned size of the LUN. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33530 |18 | |10372 |{#LUNNAME}: Space used |netapp.lun.space.used[{#SVMNAME},{#LUNNAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of space consumed by the main data stream of the LUN. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33531 |18 | |10372 |{#LUNNAME}: Container state |netapp.lun.status.container_state[{#SVMNAME},{#LUNNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the volume and aggregate that contain the LUN: online, aggregate_offline, volume_offline. LUNs are only available when their containers are available. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33532 |18 | |10372 |{#LUNNAME}: State |netapp.lun.status.state[{#SVMNAME},{#LUNNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The state of the LUN. Normal states for a LUN are online and offline. Other states indicate errors. Possible values: foreign_lun_error, nvfail, offline, online, space_error. |0 |30d |0 | |33485 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33533 |18 | |10372 |{#NODENAME}: Software version |netapp.node.version[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |This returns the cluster version information. When the cluster has more than one node, the cluster version is equivalent to the lowest of generation, major, and minor versions on all nodes. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33534 |18 | |10372 |{#NODENAME}: Controller over temperature |netapp.nodes.controller.over_temperature[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Specifies whether the hardware is currently operating outside of its recommended temperature range. The hardware shuts down if the temperature exceeds critical thresholds. Possible values: over, normal |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33535 |18 | |10372 |{#NODENAME}: Location |netapp.nodes.location[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The location of the node. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33536 |18 | |10372 |{#NODENAME}: Membership |netapp.nodes.membership[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol; available - If a node is available, this means it is detected on the internal cluster network and can be added to the cluster. Nodes that have a membership of “available” are not returned when a GET request is called when the cluster exists. A query on the “membership” property for available must be provided to scan for nodes on the cluster network. Nodes that have a membership of “available” are returned automatically before a cluster is created.&eol; joining - Joining nodes are in the process of being added to the cluster. The node may be progressing through the steps to become a member or might have failed. The job to add the node or create the cluster provides details on the current progress of the node.&eol; member - Nodes that are members have successfully joined the cluster. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33537 |18 | |10372 |{#NODENAME}: State |netapp.nodes.state[{#NODENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |State of the node:&eol;up - Node is up and operational.&eol;booting - Node is booting up.&eol;down - Node has stopped or is dumping core.&eol;taken_over - Node has been taken over by its HA partner and is not yet waiting for giveback.&eol;waiting_for_giveback - Node has been taken over by its HA partner and is waiting for the HA partner to giveback disks.&eol;degraded - Node has one or more critical services offline.&eol;unknown - Node or its HA partner cannot be contacted and there is no information on the node's state. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33538 |18 | |10372 |{#NODENAME}: Uptime |netapp.nodes.uptime[{#NODENAME}] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The total time, in seconds, that the node has been up. |0 |30d |0 | |33484 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33539 |18 | |10372 |{#ETHPORTNAME}: State |netapp.port.eth.state[{#NODENAME},{#ETHPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The operational state of the port. Possible values: up, down. |0 |30d |0 | |33483 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33540 |18 | |10372 |{#FCPORTNAME}: Description |netapp.port.fc.description[{#NODENAME},{#FCPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |A description of the FC port. |0 |30d |0 | |33482 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33541 |18 | |10372 |{#FCPORTNAME}: State |netapp.port.fc.state[{#NODENAME},{#FCPORTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The operational state of the FC port. Possible values:&eol;startup - The port is booting up.&eol;link_not_connected - The port has finished initialization, but a link with the fabric is not established.&eol;online - The port is initialized and a link with the fabric has been established.&eol;link_disconnected - The link was present at one point on this port but is currently not established.&eol;offlined_by_user - The port is administratively disabled.&eol;offlined_by_system - The port is set to offline by the system. This happens when the port encounters too many errors.&eol;node_offline - The state information for the port cannot be retrieved. The node is offline or inaccessible. |0 |30d |0 | |33482 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33542 |18 | |10372 |{#SVMNAME}: Comment |netapp.svm.comment[{#SVMNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The comment for the SVM. |0 |30d |0 | |33481 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33543 |18 | |10372 |{#SVMNAME}: State |netapp.svm.state[{#SVMNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |SVM state: starting, running, stopping, stopped, deleting. |0 |30d |0 | |33481 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33544 |18 | |10372 |{#VOLUMENAME}: Comment |netapp.volume.comment[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |A comment for the volume. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33545 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, read |netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33546 |18 | |10372 |{#VOLUMENAME}: SVM name |netapp.volume.svm_name[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The volume belongs this SVM. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33547 |18 | |10372 |{#VOLUMENAME}: Volume throughput, write rate |netapp.volume.statistics.throughput.write.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33548 |18 | |10372 |{#VOLUMENAME}: Volume throughput, total rate |netapp.volume.statistics.throughput.total.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33549 |18 | |10372 |{#VOLUMENAME}: Volume throughput, read rate |netapp.volume.statistics.throughput.read.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33550 |18 | |10372 |{#VOLUMENAME}: Volume throughput, other rate |netapp.volume.statistics.throughput.other.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Throughput bytes observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33551 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, write |netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33552 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, total |netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33553 |18 | |10372 |{#VOLUMENAME}: Volume latency raw, other |netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!mcs | | |NULL |NULL | | |0 | | | | |2 |NULL |The raw latency in microseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33554 |18 | |10372 |{#VOLUMENAME}: Available size |netapp.volume.space_available[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The available space, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33555 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, write rate |netapp.volume.statistics.iops.write.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33556 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, total rate |netapp.volume.statistics.iops.total.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33557 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, read rate |netapp.volume.statistics.iops.read.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33558 |18 | |10372 |{#VOLUMENAME}: Volume IOPS, other rate |netapp.volume.statistics.iops.other.rate[{#VOLUMENAME}] |0 |7d |365d |0 |0 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33559 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, write |netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33560 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, total |netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33561 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, read |netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33562 |18 | |10372 |{#VOLUMENAME}: Volume IOPS raw, other |netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |!iops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of I/O operations observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33563 |18 | |10372 |{#VOLUMENAME}: State |netapp.volume.state[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Volume state. A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The 'mixed' state applies to FlexGroup volumes only and cannot be specified as a target state. An 'error' state implies that the volume is not in a state to serve data. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33564 |18 | |10372 |{#VOLUMENAME}: Used size |netapp.volume.space_used[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The virtual space used (includes volume reserves) before storage efficiency, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33565 |18 | |10372 |{#VOLUMENAME}: Space size |netapp.volume.space_size[{#VOLUMENAME}] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total provisioned size. The default size is equal to the minimum size of 20MB, in bytes. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33566 |18 | |10372 |{#VOLUMENAME}: Type |netapp.volume.type[{#VOLUMENAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Type of the volume.&eol;rw - read-write volume.&eol;dp - data-protection volume.&eol;ls - load-sharing dp volume. |0 |30d |0 | |33492 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33567 |18 | |10363 |MongoDB cluster: Configserver heartbeat |mongodb.config_server_heartbeat |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time. |0 |30d |0 | |33140 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34176 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup duration |mssql.backup.diff.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34177 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup (time ago) |mssql.backup.diff["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last differential backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34178 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup |mssql.backup.log["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34179 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup duration |mssql.backup.log.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last log backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34180 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup (time ago) |mssql.backup.full["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34181 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup duration |mssql.backup.full.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last full backup. |0 |30d |0 | |34174 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34182 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run date-time |mssql.job.lastrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The last date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34183 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run status message |mssql.job.lastrunstatusmessage["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The informational message about the last run of the job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34184 |18 | |10327 |MSSQL Job '{#JOBNAME}': Next run date-time |mssql.job.nextrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The next date-time of the job run. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34185 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run duration |mssql.job.run_duration["{#JOBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last run job. |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34186 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run status |mssql.job.runstatus["{#JOBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |161 | | |0 | | | | |2 |NULL |The job status possible values:&eol;0 ⇒ Failed&eol;1 ⇒ Succeeded&eol;2 ⇒ Retry&eol;3 ⇒ Canceled&eol;4 ⇒ Running |0 |30d |0 | |34173 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34845 |18 | |10399 |Nginx: Connections idle |nginx.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of idle client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34846 |18 | |10399 |Nginx: Connections active |nginx.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of active client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34847 |18 | |10399 |Nginx: SSL session reuses, rate |nginx.ssl.session_reuses.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of session reuses during SSL handshake per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34848 |18 | |10399 |Nginx: SSL handshakes, rate |nginx.ssl.handshakes.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of successful SSL handshakes per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34849 |18 | |10399 |Nginx: SSL handshakes failed, rate |nginx.ssl.handshakes_failed.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of failed SSL handshakes per second. |0 |30d |0 | |34838 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34850 |18 | |10399 |Nginx: Connections dropped |nginx.connections.dropped |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of dropped client connections. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34851 |18 | |10399 |Nginx: Requests current |nginx.requests.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The current number of client requests. |0 |30d |0 | |34840 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34852 |18 | |10399 |Nginx: Requests total, rate |nginx.requests.total.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of client requests per second. |0 |30d |0 | |34840 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34853 |18 | |10399 |Nginx: Version |nginx.info.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of nginx. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34854 |18 | |10399 |Nginx: Connections accepted, rate |nginx.connections.accepted.rate |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of accepted client connections per second. |0 |30d |0 | |34835 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34855 |18 | |10399 |Nginx: Generation |nginx.info.generation |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of configuration reloads. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34856 |18 | |10399 |Nginx: Get info error |nginx.info.error |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Nginx error description. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34857 |18 | |10399 |Nginx: Address |nginx.info.address |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The address of the server that accepted status request. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34858 |18 | |10399 |Nginx: Uptime |nginx.info.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Server uptime. |0 |30d |0 | |34836 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34859 |18 | |10399 |HTTP location zones discovery |nginx.http.location_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34860 |18 | |10399 |HTTP server zones discovery |nginx.http.server_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34861 |18 | |10399 |HTTP upstream peers discovery |nginx.http.upstream.peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34862 |18 | |10399 |HTTP upstreams discovery |nginx.http.upstreams.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34863 |18 | |10399 |Resolvers discovery |nginx.resolvers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34864 |18 | |10399 |Stream server zones discovery |nginx.stream.server_zones.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34865 |18 | |10399 |Stream upstream peers discovery |nginx.stream.upstream.peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34866 |18 | |10399 |Stream upstreams discovery |nginx.stream.upstreams.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34867 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Discarded, rate |nginx.http.location_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed without sending a response per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34868 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Received, rate |nginx.http.location_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34869 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Requests, rate |nginx.http.location_zones.requests.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests received from clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34870 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 1xx, rate |nginx.http.location_zones.responses.1xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34871 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 2xx, rate |nginx.http.location_zones.responses.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34872 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 3xx, rate |nginx.http.location_zones.responses.3xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34873 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 4xx, rate |nginx.http.location_zones.responses.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34874 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses 5xx, rate |nginx.http.location_zones.responses.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34875 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Responses total, rate |nginx.http.location_zones.responses.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses sent to clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34876 |18 | |10399 |Nginx: HTTP location zone [{#NAME}]: Sent, rate |nginx.http.location_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34843 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34877 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Discarded, rate |nginx.http.server_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed without sending a response per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34878 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Processing |nginx.http.server_zones.processing[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of client requests that are currently being processed. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34879 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Received, rate |nginx.http.server_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34880 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Requests, rate |nginx.http.server_zones.requests.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests received from clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34881 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 1xx, rate |nginx.http.server_zones.responses.1xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34882 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 2xx, rate |nginx.http.server_zones.responses.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34883 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 3xx, rate |nginx.http.server_zones.responses.3xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34884 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 4xx, rate |nginx.http.server_zones.responses.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34885 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses 5xx, rate |nginx.http.server_zones.responses.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34886 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Responses total, rate |nginx.http.server_zones.responses.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses sent to clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34887 |18 | |10399 |Nginx: HTTP server zone [{#NAME}]: Sent, rate |nginx.http.server_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34844 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34888 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Active |nginx.http.upstream.peer.active[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of active connections. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34889 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 2xx, rate |nginx.http.upstream.peer.responses.2xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “2xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34890 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: State |nginx.http.upstream.peer.state[{#UPSTREAM},{#PEER}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34891 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate |nginx.http.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34892 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses total, rate |nginx.http.upstream.peer.responses.total.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of responses obtained from this server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34893 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 5xx, rate |nginx.http.upstream.peer.responses.5xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “5xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34894 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 4xx, rate |nginx.http.upstream.peer.responses.4xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “4xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34895 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 3xx, rate |nginx.http.upstream.peer.responses.3xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “3xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34896 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Responses 1xx, rate |nginx.http.upstream.peer.responses.1xx.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of responses with “1xx” status codes per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34897 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate |nginx.http.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of unsuccessful attempts to communicate with the server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34898 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Response time |nginx.http.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to get the full response from the server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34899 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Requests, rate |nginx.http.upstream.peer.requests.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client requests forwarded to this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34900 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate |nginx.http.upstream.peer.received.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from this server per second. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34901 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy |nginx.http.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unhealthy (state “unhealthy”). |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34902 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails |nginx.http.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of failed health checks. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34903 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check |nginx.http.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of health check requests made. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34904 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Header time |nginx.http.upstream.peer.header_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to get the response header from the server. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34905 |18 | |10399 |Nginx: HTTP upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail |nginx.http.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34906 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Keepalive |nginx.http.upstreams.keepalive[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of idle keepalive connections. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34907 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Zombies |nginx.http.upstreams.zombies[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of servers removed from the group but still processing active client requests. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34908 |18 | |10399 |Nginx: HTTP upstream [{#NAME}]: Zone |nginx.http.upstreams.zone[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The name of the shared memory zone that keeps the group's configuration and run-time state. |0 |30d |0 | |34842 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34909 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests addr, rate |nginx.resolvers.requests.addr.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve addresses to names per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34910 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests name, rate |nginx.resolvers.requests.name.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve names to addresses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34911 |18 | |10399 |Nginx: Resolver [{#NAME}]: Requests srv, rate |nginx.resolvers.requests.srv.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests to resolve SRV records per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34912 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses formerr, rate |nginx.resolvers.responses.formerr.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of FORMERR (Format error) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34913 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses noerror, rate |nginx.resolvers.responses.noerror.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of successful responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34914 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses notimp, rate |nginx.resolvers.responses.notimp.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of NOTIMP (Unimplemented) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34915 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses nxdomain, rate |nginx.resolvers.responses.nxdomain.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of NXDOMAIN (Host not found) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34916 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses refused, rate |nginx.resolvers.responses.refused.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of REFUSED (Operation refused) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34917 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses servfail, rate |nginx.resolvers.responses.servfail.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of SERVFAIL (Server failure) responses per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34918 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses timedout, rate |nginx.resolvers.responses.timedout.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of timed out requests per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34919 |18 | |10399 |Nginx: Resolver [{#NAME}]: Responses unknown, rate |nginx.resolvers.responses.unknown.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of requests completed with an unknown error per second. |0 |30d |0 | |34839 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34920 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Connections, rate |nginx.stream.server_zones.connections.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of connections accepted from clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34921 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Discarded, rate |nginx.stream.server_zones.discarded.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of connections completed without creating a session per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34922 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Processing |nginx.stream.server_zones.processing[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of client connections that are currently being processed. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34923 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Received, rate |nginx.stream.server_zones.received.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34924 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sent, rate |nginx.stream.server_zones.sent.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to clients per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34925 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 2xx, rate |nginx.stream.server_zones.sessions.2xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “2xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34926 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 4xx, rate |nginx.stream.server_zones.sessions.4xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “4xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34927 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions 5xx, rate |nginx.stream.server_zones.sessions.5xx.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of sessions completed with status codes “5xx” per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34928 |18 | |10399 |Nginx: Stream server zone [{#NAME}]: Sessions total, rate |nginx.stream.server_zones.sessions.total.rate[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of completed client sessions per second. |0 |30d |0 | |34837 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34929 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Active |nginx.stream.upstream.peer.active[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of connections. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34930 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connect time |nginx.stream.upstream.peer.connect_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to connect to the upstream server. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34931 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Connections |nginx.stream.upstream.peer.connections.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of client connections forwarded to this server. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34932 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Fails, rate |nginx.stream.upstream.peer.fails.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of unsuccessful attempts to communicate with the server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34933 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: First byte time |nginx.stream.upstream.peer.first_byte_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to receive the first byte of data. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34934 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, check |nginx.stream.upstream.peer.health_checks.checks[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of health check requests made. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34935 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, fails |nginx.stream.upstream.peer.health_checks.fails[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of failed health checks. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34936 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Health checks, unhealthy |nginx.stream.upstream.peer.health_checks.unhealthy[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unhealthy (state “unhealthy”). |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34937 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Received, rate |nginx.stream.upstream.peer.received.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes received from this server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34938 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Response time |nginx.stream.upstream.peer.response_time.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | |!ms | | |NULL |NULL | | |0 | | | | |2 |NULL |The average time to receive the last byte of data. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34939 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Sent, rate |nginx.stream.upstream.peer.sent.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of bytes sent to this server per second. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34940 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: State |nginx.stream.upstream.peer.state[{#UPSTREAM},{#PEER}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current state, which may be one of “up”, “draining”, “down”, “unavail”, “checking”, and “unhealthy”. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34941 |18 | |10399 |Nginx: Stream upstream [{#UPSTREAM}] peer [{#PEER}]: Unavail |nginx.stream.upstream.peer.unavail.rate[{#UPSTREAM},{#PEER}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |How many times the server became unavailable for client requests (state “unavail”) due to the number of unsuccessful attempts reaching the max_fails threshold. |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34942 |18 | |10399 |Nginx: Stream upstream [{#NAME}]: Zombies |nginx.stream.upstreams.zombies[{#NAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34943 |18 | |10399 |Nginx: Stream upstream [{#NAME}]: Zone |nginx.stream.upstreams.zone[{#NAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34841 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35562 |18 | |10413 |{#UNIT.NAME}: Active state |systemd.service.active_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |238 | | |0 | | | | |2 |NULL |State value that reflects whether the unit is currently active or not. The following states are currently defined: "active", "reloading", "inactive", "failed", "activating", and "deactivating". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35563 |18 | |10413 |{#UNIT.NAME}: Load state |systemd.service.load_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |237 | | |0 | | | | |2 |NULL |State value that reflects whether the configuration file of this unit has been loaded. The following states are currently defined: "loaded", "error", and "masked". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35564 |18 | |10413 |{#UNIT.NAME}: Unit file state |systemd.service.unitfile_state["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |239 | | |0 | | | | |2 |NULL |Encodes the install state of the unit file of FragmentPath. It currently knows the following states: "enabled", "enabled-runtime", "linked", "linked-runtime", "masked", "masked-runtime", "static", "disabled", and "invalid". |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35565 |18 | |10413 |{#UNIT.NAME}: Active time |systemd.service.uptime["{#UNIT.NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds since unit entered the active state. |0 |30d |0 | |35560 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35566 |18 | |10413 |{#UNIT.NAME}: Connections accepted per sec |systemd.socket.conn_accepted.rate["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of accepted socket connections (NAccepted) per second. |0 |30d |0 | |35561 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35567 |18 | |10413 |{#UNIT.NAME}: Connections connected |systemd.socket.conn_count["{#UNIT.NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of socket connections (NConnections). |0 |30d |0 | |35561 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35773 |18 | |10416 |Cert: Subject alternative name |cert.alternative_names |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The subject alternative name extension allows identities to be bound to the subject of the certificate. These identities may be included in addition to or in place of the identity in the subject field of the certificate. Defined options include an Internet electronic mail address, a DNS name, an IP address, and a Uniform Resource Identifier (URI). |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35774 |18 | |10416 |Cert: Issuer |cert.issuer |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The field identifies the entity that has signed and issued the certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35775 |18 | |10416 |Cert: Last validation status |cert.message |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Last check result message. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35776 |18 | |10416 |Cert: Expires on |cert.not_after |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The date on which the certificate validity period ends. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35777 |18 | |10416 |Cert: Valid from |cert.not_before |0 |7d |365d |0 |3 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL |The date on which the certificate validity period begins. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35778 |18 | |10416 |Cert: Public key algorithm |cert.public_key_algorithm |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The digital signature algorithm is used to verify the signature of a certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35779 |18 | |10416 |Cert: Serial number |cert.serial_number |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The serial number is a positive integer assigned by the CA to each certificate. It is unique for each certificate issued by a given CA. Non-conforming CAs may issue certificates with serial numbers that are negative or zero. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35780 |18 | |10416 |Cert: Fingerprint |cert.sha1_fingerprint |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Certificate Signature (SHA1 Fingerprint or Thumbprint) is the hash of the entire certificate in DER form. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35781 |18 | |10416 |Cert: Signature algorithm |cert.signature_algorithm |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The algorithm identifier for the algorithm used by the CA to sign the certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35782 |18 | |10416 |Cert: Subject |cert.subject |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The field identifies the entity associated with the public key stored in the subject public key field. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35783 |18 | |10416 |Cert: Validation result |cert.validation |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The certificate validation result. Possible values: valid/invalid/valid-but-self-signed |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35784 |18 | |10416 |Cert: Version |cert.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The version of the encoded certificate. |0 |30d |0 | |35772 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35785 |18 | |10308 |HAProxy: Get nodes |haproxy.get.nodes |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Array for LLD rules. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35787 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of active servers |haproxy.backend.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active servers. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35788 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35789 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35790 |18 | |10308 |HAProxy Backend {#PXNAME}: Weight |haproxy.backend.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total effective weight. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35791 |18 | |10308 |HAProxy Backend {#PXNAME}: Sessions per second |haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35792 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol;UP - The server is reporting as healthy.&eol;DOWN - The server is reporting as unhealthy and unable to receive requests.&eol;NOLB - You've added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.&eol;MAINT - The server has been disabled or put into maintenance mode.&eol;DRAIN - The server has been put into drain mode.&eol;no check - Health checks are not enabled for this server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35793 |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 |35794 |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 |35795 |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 |35796 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35797 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of backup servers |haproxy.backend.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backup servers. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35798 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35799 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35800 |18 | |10308 |HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35801 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35802 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35803 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35804 |18 | |10308 |HAProxy Backend {#PXNAME}: Outgoing traffic |haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35805 |18 | |10308 |HAProxy Backend {#PXNAME}: Incoming traffic |haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35806 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35807 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin.rate[{#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 |35808 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |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 |35809 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35810 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35811 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35812 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35813 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35814 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35815 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35816 |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 |35817 |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 |35818 |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 |35819 |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 |35820 |18 | |10308 |HAProxy Frontend {#PXNAME}: Status |haproxy.frontend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values: OPEN, STOP.&eol;When Status is OPEN, the frontend is operating normally and ready to receive traffic. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35821 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server is active |haproxy.server.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is active (marked with a Y) or a backup (marked with a -). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35822 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35823 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35824 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Weight |haproxy.server.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Effective weight. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35825 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Sessions per second |haproxy.server.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35826 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35827 |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 |35828 |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 |35829 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue |haproxy.server.qlimit[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35830 |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 |35831 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server was selected per second |haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times that server was selected. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35832 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35833 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Server is backup |haproxy.server.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is a backup (marked with a Y) or active (marked with a -). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35834 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second |haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35835 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second |haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35836 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second |haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35837 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35838 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35839 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35840 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status of last health check |haproxy.server.check_status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of last health check, one of:&eol;UNK -> unknown&eol;INI -> initializing&eol;SOCKERR -> socket error&eol;L4OK -> check passed on layer 4, no upper layers testing enabled&eol;L4TOUT -> layer 1-4 timeout&eol;L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)&eol;L6OK -> check passed on layer 6&eol;L6TOUT -> layer 6 (SSL) timeout&eol;L6RSP -> layer 6 invalid response - protocol error&eol;L7OK -> check passed on layer 7&eol;L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404&eol;L7TOUT -> layer 7 (HTTP/SMTP) timeout&eol;L7RSP -> layer 7 invalid response - protocol error&eol;L7STS -> layer 7 response error, for example HTTP 5xx&eol;Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".|0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35841 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic |haproxy.server.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35842 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Incoming traffic |haproxy.server.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35843 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35844 |18 | |10309 |HAProxy: Get nodes |haproxy.get.nodes |0 |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Array for LLD rules. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35846 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of active servers |haproxy.backend.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active servers. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35847 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.backend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35848 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35849 |18 | |10309 |HAProxy Backend {#PXNAME}: Weight |haproxy.backend.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total effective weight. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35850 |18 | |10309 |HAProxy Backend {#PXNAME}: Sessions per second |haproxy.backend.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35851 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values:&eol;UP - The server is reporting as healthy.&eol;DOWN - The server is reporting as unhealthy and unable to receive requests.&eol;NOLB - You've added http-check disable-on-404 to the backend and the health checked URL has returned an HTTP 404 response.&eol;MAINT - The server has been disabled or put into maintenance mode.&eol;DRAIN - The server has been put into drain mode.&eol;no check - Health checks are not enabled for this server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35852 |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 |35853 |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 |35854 |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 |35855 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.backend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35856 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of backup servers |haproxy.backend.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backup servers. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35857 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.backend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35858 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.backend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35859 |18 | |10309 |HAProxy Backend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.backend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35860 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35861 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35862 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35863 |18 | |10309 |HAProxy Backend {#PXNAME}: Outgoing traffic |haproxy.backend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35864 |18 | |10309 |HAProxy Backend {#PXNAME}: Incoming traffic |haproxy.backend.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35865 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35866 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin.rate[{#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 |35867 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |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 |35868 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35869 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35870 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35871 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35872 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35873 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35874 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35875 |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 |35876 |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 |35877 |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 |35878 |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 |35879 |18 | |10309 |HAProxy Frontend {#PXNAME}: Status |haproxy.frontend.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Possible values: OPEN, STOP.&eol;When Status is OPEN, the frontend is operating normally and ready to receive traffic. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35880 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server is active |haproxy.server.act[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is active (marked with a Y) or a backup (marked with a -). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35881 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35882 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35883 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Weight |haproxy.server.weight[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Effective weight. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35884 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Sessions per second |haproxy.server.stot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative number of sessions (end-to-end connections) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35885 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35886 |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 |35887 |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 |35888 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Configured maxqueue |haproxy.server.qlimit[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Configured maxqueue for the server, or nothing in the value is 0 (default, meaning no limit). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35889 |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 |35890 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server was selected per second |haproxy.server.lbtot.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times that server was selected. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35891 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35892 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Server is backup |haproxy.server.bck[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |243 | | |0 | | | | |2 |NULL |Shows whether the server is a backup (marked with a Y) or active (marked with a -). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35893 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 3xx per second |haproxy.server.hrsp_3xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35894 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 2xx per second |haproxy.server.hrsp_2xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35895 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 1xx per second |haproxy.server.hrsp_1xx.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35896 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35897 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35898 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |35899 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status of last health check |haproxy.server.check_status[{#PXNAME},{#SVNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Status of last health check, one of:&eol;UNK -> unknown&eol;INI -> initializing&eol;SOCKERR -> socket error&eol;L4OK -> check passed on layer 4, no upper layers testing enabled&eol;L4TOUT -> layer 1-4 timeout&eol;L4CON -> layer 1-4 connection problem, for example "Connection refused" (tcp rst) or "No route to host" (icmp)&eol;L6OK -> check passed on layer 6&eol;L6TOUT -> layer 6 (SSL) timeout&eol;L6RSP -> layer 6 invalid response - protocol error&eol;L7OK -> check passed on layer 7&eol;L7OKC -> check conditionally passed on layer 7, for example 404 with disable-on-404&eol;L7TOUT -> layer 7 (HTTP/SMTP) timeout&eol;L7RSP -> layer 7 invalid response - protocol error&eol;L7STS -> layer 7 response error, for example HTTP 5xx&eol;Notice: If a check is currently running, the last known status will be reported, prefixed with "* ". e. g. "* L7OK".|0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35900 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Outgoing traffic |haproxy.server.bout.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35901 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Incoming traffic |haproxy.server.bin.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the backend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |35902 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME},{#SVNAME}] |0 |7d |365d |0 |0 | | | | |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 |36581 |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 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36595 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36596 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36597 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |36579 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36603 |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 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36617 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFGUID}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36618 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFGUID}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36619 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFGUID}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |36601 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36623 |18 | |10355 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32741 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36624 |18 | |10356 |SMART [{#NAME}]: ID {#ID} {#ATTRNAME} raw value |smart.disk.attr.raw[{#NAME},{#ID}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |32753 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36625 |18 | |10318 |Container {#NAME}: CPU percent usage |docker.container_stats.cpu_pct_usage["{#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 |36724 |18 | |10433 |Dbstat: Rows fetched |pgsql.dbstat.sum.tup_fetched.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows fetched by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36725 |18 | |10433 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of temporary files created by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36726 |18 | |10433 |Dbstat: Number temp bytes |pgsql.dbstat.sum.temp_bytes.rate |0 |7d |365d |0 |0 | |b | | |NULL |NULL | | |0 | | | | |0 |NULL |Total amount of data written to temporary files by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36727 |18 | |10433 |Dbstat: Backends connected |pgsql.dbstat.sum.numbackends |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connected backends |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36728 |18 | |10433 |Dbstat: Rows deleted |pgsql.dbstat.sum.tup_deleted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows deleted by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36729 |18 | |10433 |Archive: Count of archive files |pgsql.archive.count_archived_files |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36730 |18 | |10433 |Dbstat: Rows inserted |pgsql.dbstat.sum.tup_inserted.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows inserted by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36731 |18 | |10433 |Dbstat: Rows returned |pgsql.dbstat.sum.tup_returned.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows returned by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36732 |18 | |10433 |Dbstat: Rows updated |pgsql.dbstat.sum.tup_updated.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of rows updated by queries |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36733 |18 | |10433 |Dbstat: Committed transactions |pgsql.dbstat.sum.xact_commit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been committed |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36734 |18 | |10433 |Dbstat: Roll backed transactions |pgsql.dbstat.sum.xact_rollback.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that have been rolled back |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36735 |18 | |10433 |Dbstat: Conflicts |pgsql.dbstat.sum.conflicts.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries canceled due to conflicts with recovery. (Conflicts occur only on standby servers; see pg_stat_database_conflicts for details.) |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36736 |18 | |10433 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36737 |18 | |10433 |WAL: Bytes received |pgsql.wal.receive |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL receive in bytes |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36738 |18 | |10433 |Dbstat: Deadlocks |pgsql.dbstat.sum.deadlocks.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of deadlocks detected |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36739 |18 | |10433 |Dbstat: Blocks write time |pgsql.dbstat.sum.blk_write_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36740 |18 | |10433 |Dbstat: Checksum failures |pgsql.dbstat.sum.checksum_failures.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of data page checksum failures detected (or on a shared object), or NULL if data checksums are not enabled. This metric included in PostgreSQL 12 |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36741 |18 | |10433 |Bgwriter: Number of bgwriter stopped |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36742 |18 | |10433 |Archive: Count of attempts to archive files |pgsql.archive.failed_trying_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ARCHIVER-VIEW |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36743 |18 | |10433 |Archive: Count of files need to archive |pgsql.archive.size_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Size of files to archive |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36744 |18 | |10433 |Bgwriter: Buffers allocated |pgsql.bgwriter.buffers_alloc.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers allocated |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36745 |18 | |10433 |Bgwriter: Times a backend execute its own fsync |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36746 |18 | |10433 |Bgwriter: Buffers written directly by a backend |pgsql.bgwriter.buffers_backend.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written directly by a backend |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36747 |18 | |10433 |Checkpoint: Buffers checkpoints written |pgsql.bgwriter.buffers_checkpoint.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written during checkpoints |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36748 |18 | |10433 |Checkpoint: Buffers background written |pgsql.bgwriter.buffers_clean.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of buffers written by the background writer |0 |30d |0 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36749 |18 | |10433 |Checkpoint: Checkpoint sync time |pgsql.bgwriter.checkpoint_sync_time.rate |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36750 |18 | |10433 |Checkpoint: Checkpoint write time |pgsql.bgwriter.checkpoint_write_time.rate |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36751 |18 | |10433 |Checkpoint: Requested |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36752 |18 | |10433 |Checkpoint: By timeout |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 | |36712 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36753 |18 | |10433 |Connections sum: Active |pgsql.connections.active |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a query |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36754 |18 | |10433 |Dbstat: Disk blocks read |pgsql.dbstat.sum.blks_read.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of disk blocks read |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36755 |18 | |10433 |Connections sum: Disabled |pgsql.connections.disabled |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of disabled connections |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36756 |18 | |10433 |Connections sum: Fastpath function call |pgsql.connections.fastpath_function_call |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections executing a fast-path function |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36757 |18 | |10433 |Connections sum: Idle |pgsql.connections.idle |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections waiting for a new client command |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36758 |18 | |10433 |Connections sum: Idle in transaction |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36759 |18 | |10433 |Connections sum: Idle in transaction (aborted) |pgsql.connections.idle_in_transaction_aborted |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in a transaction state, but not executing a query and one of the statements in the transaction caused an error. |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36760 |18 | |10433 |Connections sum: Prepared |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36761 |18 | |10433 |Connections sum: Total |pgsql.connections.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36762 |18 | |10433 |Connections sum: Total % |pgsql.connections.total_pct |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections in percentage |0 |30d |0 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36763 |18 | |10433 |Connections sum: Waiting |pgsql.connections.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 | |36707 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36764 |18 | |10433 |Dbstat: Blocks read time |pgsql.dbstat.sum.blk_read_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36765 |18 | |10433 |Archive: Count of files in archive_status need to archive |pgsql.archive.count_files_to_archive |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |36722 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36766 |18 | |10433 |Dbstat: Hit blocks read |pgsql.dbstat.sum.blks_hit.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times disk blocks were found already in the buffer cache |0 |30d |0 | |36709 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36767 |18 | |10433 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |36723 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36773 |18 | |10433 |DB {#DBNAME}: Tuples returned per second |pgsql.dbstat.tup_returned.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows returned by queries in this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36774 |18 | |10433 |DB {#DBNAME}: Num of shareupdateexclusive locks |pgsql.locks.shareupdateexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of shareupdateexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36775 |18 | |10433 |DB {#DBNAME}: Num of sharerowexclusive locks |pgsql.locks.sharerowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total sharerowexclusive for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36776 |18 | |10433 |DB {#DBNAME}: Num of share locks |pgsql.locks.share["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of share locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36777 |18 | |10433 |DB {#DBNAME}: Num of rowshare locks |pgsql.locks.rowshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowshare locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36778 |18 | |10433 |DB {#DBNAME}: Num of rowexclusive locks |pgsql.locks.rowexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rowexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36779 |18 | |10433 |DB {#DBNAME}: Num of exclusive locks |pgsql.locks.exclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of exclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36780 |18 | |10433 |DB {#DBNAME}: Num of accessshare locks |pgsql.locks.accessshare["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessshare locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36781 |18 | |10433 |DB {#DBNAME}: Num of accessexclusive locks |pgsql.locks.accessexclusive["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of accessexclusive locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36782 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36783 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36784 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36785 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36786 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36787 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36788 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36789 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36790 |18 | |10433 |DB {#DBNAME}: Backends connected |pgsql.dbstat.numbackends["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of backends currently connected to this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36791 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36792 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36793 |18 | |10433 |DB {#DBNAME}: Checksum failures |pgsql.dbstat.checksum_failures.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data page checksum failures detected in this database |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36794 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36795 |18 | |10433 |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 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36796 |18 | |10433 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_write_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent writing data file blocks by backends, in milliseconds |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36797 |18 | |10433 |DB {#DBNAME}: Disk blocks read per second |pgsql.dbstat.blk_read_time.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Time spent reading data file blocks by backends, in milliseconds |0 |30d |0 | |36710 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36798 |18 | |10433 |DB {#DBNAME}: Num of total locks |pgsql.locks.total["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of total locks for each database |0 |30d |0 | |36711 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36799 |18 | |10433 |Application {#APPLICATION_NAME}: Replication flush lag |pgsql.replication.process.flush_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36800 |18 | |10433 |Application {#APPLICATION_NAME}: Replication replay lag |pgsql.replication.process.replay_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36801 |18 | |10433 |Application {#APPLICATION_NAME}: Replication write lag |pgsql.replication.process.write_lag["{#APPLICATION_NAME}"] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |36717 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36844 |18 | |10434 |CPU discovery |cpu.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |This discovery will create set of per core CPU metrics from UCD-SNMP-MIB, using {#CPU.COUNT} in preprocessing. That's the only reason why LLD is used. |0 |30d |0 | |36805 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36887 |18 | |10434 |PFSense: CPU utilization |system.cpu.util[{#SNMPINDEX}] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |CPU utilization in % |0 |30d |0 | |36848 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36896 |18 | |10262 |Remote Zabbix proxy: History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history index buffer.&eol;History index cache is used to index values stored in history cache. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36897 |18 | |10262 |Remote Zabbix proxy: Required performance |requiredperformance |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Required performance of Zabbix proxy, in new values per second expected. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36898 |18 | |10262 |Remote Zabbix proxy: Uptime |uptime |0 |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime of Zabbix proxy process in seconds. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36899 |18 | |10262 |Remote Zabbix proxy: Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36900 |18 | |10262 |Remote Zabbix proxy: VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix vmware cache. Percentage of used buffer. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36901 |18 | |10262 |Remote Zabbix proxy: History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache. Percentage of used history buffer.&eol;History cache is used to store item values. A high number indicates performance problems on the database side. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36902 |18 | |10262 |Remote Zabbix proxy: Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed float values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36903 |18 | |10262 |Remote Zabbix proxy: Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Total number of values processed by Zabbix server or Zabbix proxy, except unsupported items. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36904 |18 | |10262 |Remote Zabbix proxy: Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time vmware collector processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36905 |18 | |10262 |Remote Zabbix proxy: Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed log values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36906 |18 | |10262 |Remote Zabbix proxy: Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of times item processing resulted in item becoming unsupported or keeping that state. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36907 |18 | |10262 |Remote Zabbix proxy: Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed character/string values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36908 |18 | |10262 |Remote Zabbix proxy: Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed text values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36909 |18 | |10262 |Remote Zabbix proxy: Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics and availability of Zabbix write cache.&eol;Number of processed numeric (unsigned) values. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36910 |18 | |10262 |Remote Zabbix proxy: Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Availability statistics of Zabbix configuration cache. Percentage of used buffer. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36911 |18 | |10262 |Remote Zabbix proxy: 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 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36912 |18 | |10262 |Remote Zabbix proxy: Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time configuration syncer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36913 |18 | |10262 |Remote Zabbix proxy: Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36914 |18 | |10262 |Remote Zabbix proxy: Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time data sender processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36915 |18 | |10262 |Remote Zabbix proxy: Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time discoverer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36916 |18 | |10262 |Remote Zabbix proxy: Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time heartbeat sender processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36917 |18 | |10262 |Remote Zabbix proxy: Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time history syncer processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36918 |18 | |10262 |Remote Zabbix proxy: Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time housekeeper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36919 |18 | |10262 |Remote Zabbix proxy: Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time http poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36920 |18 | |10262 |Remote Zabbix proxy: Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time icmp pinger processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36921 |18 | |10262 |Remote Zabbix proxy: Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time ipmi poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36922 |18 | |10262 |Remote Zabbix proxy: Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time trapper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36923 |18 | |10262 |Remote Zabbix proxy: Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time java poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36924 |18 | |10262 |Remote Zabbix proxy: Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36925 |18 | |10262 |Remote Zabbix proxy: Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36926 |18 | |10262 |Remote Zabbix proxy: Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time preprocessing worker processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36927 |18 | |10262 |Remote Zabbix proxy: Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time self-monitoring processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36928 |18 | |10262 |Remote Zabbix proxy: Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time snmp trapper processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36929 |18 | |10262 |Remote Zabbix proxy: Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time task manager processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36930 |18 | |10262 |Remote Zabbix proxy: Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Average percentage of time unreachable poller processes have been busy in the last minute. |0 |30d |0 | |36893 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36931 |18 | |10323 |ClickHouse: ZooKeeper exceptions per second |clickhouse.zookeper.exceptions.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 |36932 |18 | |10323 |ClickHouse: ZooKeeper hardware exceptions per second |clickhouse.zookeper.hw_exceptions.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 |36933 |18 | |10323 |ClickHouse: ZooKeeper user exceptions per second |clickhouse.zookeper.user_exceptions.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 |36951 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36952 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36953 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36954 |18 | |10432 |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 | |36946 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36955 |18 | |10432 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |36949 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36956 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36957 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36958 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36959 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36960 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36961 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36962 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36963 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36964 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36965 |18 | |10432 |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 | |36945 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36966 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36967 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36968 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36969 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36970 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36971 |18 | |10432 |Connections sum: Total |pgsql.connections.sum.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of connections |0 |30d |0 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36972 |18 | |10432 |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 | |36934 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36973 |18 | |10432 |WAL: Bytes written |pgsql.wal.write |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |WAL write in bytes |0 |30d |0 | |36949 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36978 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36979 |18 | |10432 |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 | |36935 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36980 |18 | |10432 |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 | |36977 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36981 |18 | |10432 |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 | |36977 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36982 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36983 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36984 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36985 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36986 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36987 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36988 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36989 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36990 |18 | |10432 |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 | |36938 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36991 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36992 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36993 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36994 |18 | |10432 |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 | |36976 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36995 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36996 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36997 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36998 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |36999 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37000 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37001 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37002 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37003 |18 | |10432 |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 | |36950 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37004 |18 | |10432 |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 | |36976 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37005 |18 | |10322 |ES: Cluster uptime |es.nodes.jvm.max_uptime |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 |37013 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37014 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37015 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37016 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37017 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37018 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37019 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37020 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37021 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37022 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37023 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37024 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37025 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37026 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37027 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37028 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37029 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37030 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37031 |18 | |10358 |RabbitMQ: Messages published |rabbitmq.overview.messages.publish |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages published |0 |30d |0 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37032 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37033 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37034 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37035 |18 | |10358 |RabbitMQ: Messages confirmed |rabbitmq.overview.messages.confirm |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of messages confirmed |0 |30d |0 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37036 |18 | |10358 |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 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37037 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37038 |18 | |10359 |RabbitMQ: Uptime |rabbitmq.node.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Uptime in milliseconds |0 |30d |0 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37039 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37040 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37041 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37042 |18 | |10359 |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 | |37010 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37043 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37044 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37045 |18 | |10359 |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 | |37010 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37046 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37047 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37048 |18 | |10359 |RabbitMQ: Used file descriptors |rabbitmq.node.fd_used |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Used file descriptors |0 |30d |0 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37049 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37050 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37051 |18 | |10359 |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 | |37011 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37052 |18 | |10358 |Exchanges discovery |rabbitmq.exchanges.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual exchange metrics |0 |30d |1 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37053 |18 | |10358 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |37006 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37054 |18 | |10359 |Health Check 3.8.10+ discovery |rabbitmq.healthcheck.v3810.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Version 3.8.10+ specific metrics |0 |30d |0 | |37010 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37055 |18 | |10359 |Health Check 3.8.9- discovery |rabbitmq.healthcheck.v389.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Specific metrics up to and including version 3.8.4 |0 |30d |0 | |37010 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37056 |18 | |10359 |Queues discovery |rabbitmq.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Individual queue metrics |0 |30d |1 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37064 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37065 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37066 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37067 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37068 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37069 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37070 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37071 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37072 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37073 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37074 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37075 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37076 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37077 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37078 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37079 |18 | |10358 |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 | |37007 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37080 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37081 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37082 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37083 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37084 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37085 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37086 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37087 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37088 |18 | |10359 |RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of 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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37089 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37090 |18 | |10359 |RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Sum of 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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37091 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37092 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37093 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37094 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37095 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37096 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37097 |18 | |10359 |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 | |37012 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37101 |18 | |10175 |Healthcheck discovery |vmware.hv.healthcheck.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |VMware Rollup Health State sensor discovery |0 |30d |0 | |37100 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37102 |18 | |10175 |VMware: Health state rollup |vmware.hv.sensor.health.state[{#SINGLETON}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The host health state rollup sensor value: gray - unknown, green - ok, red - it has a problem, yellow - it might have a problem. |0 |30d |0 | |37100 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
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|discover|
@@ -10337,6 +10343,8 @@ ROW |36615 |7 |
ROW |36616 |7 | |10299 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFGUID}"] |3m |7d |365d |0 |3 | |bps | | |36610 |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 |36631 |0 | |10081 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |36630 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |36633 |7 | |10299 |{#DEVNAME}: Disk utilization by idle time |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Idle Time",60] |1m |7d |365d |0 |0 | |% | | |36632 |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests based on idle time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |37104 |0 | |10001 |Interface {#IFNAME}: Speed |vfs.file.contents["/sys/class/net/{#IFNAME}/speed"] |5m |7d |0d |0 |3 | |bps | | |37103 |NULL | | |0 | | | | |2 |NULL |Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.&eol;This attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).&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 |37107 |7 | |10284 |Interface {#IFNAME}: Speed |vfs.file.contents["/sys/class/net/{#IFNAME}/speed"] |5m |7d |0d |0 |3 | |bps | | |37106 |NULL | | |0 | | | | |2 |NULL |Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.&eol;This attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).&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 |
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|discover|
@@ -10543,6 +10551,7 @@ ROW |32603 |3 |
ROW |32765 |3 | |10357 |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 |32766 |3 | |10357 |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 |32767 |3 | |10357 |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 |37105 |0 | |10084 |Interface {#IFNAME}: Speed |vfs.file.contents["/sys/class/net/{#IFNAME}/speed"] |5m |7d |0d |0 |3 | |bps | | |37104 |NULL | | |0 | | | | |2 |1 |Indicates the interface latest or current speed value. Value is an integer representing the link speed in bits/sec.&eol;This attribute is only valid for interfaces that implement the ethtool get_link_ksettings method (mostly Ethernet).&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 |
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|discover|
@@ -10850,7 +10859,6 @@ ROW |16069 |{18355}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18356}-
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 |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 |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 |
@@ -10863,7 +10871,6 @@ ROW |16122 |{18459}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18460}-
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 |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 |
@@ -11097,7 +11104,6 @@ ROW |16779 |{19629}=2
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 |
@@ -11244,8 +11250,6 @@ ROW |17077 |{20081}>{$JMX.CPU.LOAD.MAX}
ROW |17078 |{20082}=1 |Runtime: JVM is not reachable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17079 |{20083}<>1 |Runtime: {HOST.NAME} runs suboptimal VM type | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17080 |{20084}<10m |VMware: {HOST.HOST} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17081 |{20085}=3 |VMware: The {HOST.HOST} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17082 |{20086}=2 |VMware: The {HOST.HOST} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17083 |{20087}=3 |VMware: The {HOST.HOST} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17084 |{20088}=2 |VMware: The {HOST.HOST} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |17089 |{20096}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -11949,28 +11953,8 @@ ROW |17960 |{21291}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}
ROW |17961 |{21292}>{#THRESHOLD} |Pool {#NAME}: Used capacity is too high (over {#THRESHOLD}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |17962 |{21293}<>1 |Pool {#NAME}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
ROW |17963 |{21294}<>27 |Pool {#NAME}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17965 |{21299}=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 |17966 |{21300}>{$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 |17967 |{21301}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17968 |{21302}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17969 |{21303}=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 |17970 |{21304}=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 |17971 |{21305}=1 and {21306}>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 |17972 |{21307}>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 |17973 |{21308}=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 |17974 |{21309}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17975 |{21310}=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 |17976 |{21311}=0 |RabbitMQ: There are active alarms in the cluster | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17977 |{21312}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17978 |{21313}=0 |RabbitMQ: There are valid TLS certificates expiring in the next month | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17979 |{21314}=0 |RabbitMQ: There are active alarms in the node | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17980 |{21315}=0 |RabbitMQ: There are queues that could potentially lose data if the this node goes offline. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17981 |{21316}=0 |RabbitMQ: There are queues that would lose their quorum and availability if the this node is shut down. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17982 |{21317}=0 |RabbitMQ: There are not running virtual hosts | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17983 |{21318}>{$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 |17984 |{21319}=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 |17985 |{21320}>{$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 |17986 |{21321}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
ROW |17987 |{21322}=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 |17988 |{21323}=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 |17989 |{21324}=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 |
@@ -11985,7 +11969,6 @@ ROW |17997 |{21333}=0
ROW |17998 |{21334}=0 |RabbitMQ: There are queues that could potentially lose data if the this node goes offline. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |17999 |{21335}=0 |RabbitMQ: There are queues that would lose their quorum and availability if the this node is shut down. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |18000 |{21336}=0 |RabbitMQ: There are not running virtual hosts | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |18001 |{21337}>{$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 |18002 |{21338}/({21339}+{21340})*100>{$MONGODB.CONNS.PCT.USED.MAX.WARN} |MongoDB: Total number of open connections is too high (over {$MONGODB.CONNS.PCT.USED.MAX.WARN%} in 5m) | |0 |2 |Too few available connections. If MongoDB runs low on connections, in may not be able to handle incoming requests in a timely manner. |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18003 |{21341}>{$MONGODB.CURSOR.OPEN.MAX.WARN} |MongoDB: Too many cursors opened by MongoDB for clients (over {$MONGODB.CURSOR.OPEN.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
ROW |18004 |{21342}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN} |MongoDB: Too many cursors are timing out (over {$MONGODB.CURSOR.TIMEOUT.MAX.WARN} per second in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
@@ -13608,6 +13591,34 @@ ROW |19922 |{23932}<0 and {23933}>0&eol;and (&eol;{23934}=6 or&eol;{23934}=
ROW |19923 |({23937}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23938}) and&eol;{23938}>0 |Interface {#IFNAME}({#IFALIAS}): High inbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23937}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23938} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
ROW |19924 |({23939}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23940}) and&eol;{23940}>0 |Interface {#IFNAME}({#IFALIAS}): High outbound bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23939}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23940} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
ROW |19925 |{23941}=3 or {23941}=4 |{#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 |19926 |{23942}<10m |ES: Cluster has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |19927 |{23943}=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 |19928 |{23944}>{$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 |19929 |{23945}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |19930 |{23946}=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 |19931 |{23947}=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 |19932 |{23948}=1 and {23949}>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 |19933 |{23950}>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 |19934 |{23951}=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 |19935 |{23952}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |19936 |{23953}=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 |19937 |{23954}=0 |RabbitMQ: There are active alarms in the cluster | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19938 |{23955}=0 |RabbitMQ: There are valid TLS certificates expiring in the next month | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19939 |{23956}=0 |RabbitMQ: There are active alarms in the node | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19940 |{23957}=0 |RabbitMQ: There are queues that could potentially lose data if the this node goes offline. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19941 |{23958}=0 |RabbitMQ: There are queues that would lose their quorum and availability if the this node is shut down. | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19942 |{23959}=0 |RabbitMQ: There are not running virtual hosts | |0 |3 |http://{HOST.CONN}:{$RABBITMQ.API.PORT}/api/index.html |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19943 |{23960}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |19944 |{23961}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |19945 |{23962}>{$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 |19946 |{23963}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |19947 |{23964}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue [{#VHOST}][{#QUEUE}] (over {$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |19948 |{23965}=1 |VMware: The {HOST.HOST} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19949 |{23966}=1 |VMware: The {HOST.HOST} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |19950 |{23967}<0 and {23968}>0&eol;and&eol;({23969}=6&eol;or {23969}=1)&eol;and&eol;({23970}<>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 |({23967}>0 and {23971}>0) or&eol;({23970}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |19951 |({23972}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23973} or&eol;{23974}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23973}) and&eol;{23973}>0 |Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23972}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23973} and&eol;{23974}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23973}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |19956 |{23991}<0 and {23992}>0&eol;and&eol;({23993}=6&eol;or {23993}=1)&eol;and&eol;({23994}<>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 |({23991}>0 and {23995}>0) or&eol;({23994}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |19957 |({23996}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23997} or&eol;{23998}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23997}) and&eol;{23997}>0 |Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{23996}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23997} and&eol;{23998}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23997}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
TABLE |triggers
FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
@@ -13686,7 +13697,6 @@ ROW |16077 |{18376}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18377}-
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 |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 |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 |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 |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 |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 |
@@ -13699,7 +13709,6 @@ ROW |16130 |{18480}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18481}-
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 |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 |
@@ -14001,135 +14010,140 @@ ROW |19900 |{23870}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23871}>{$IF.ERROR
ROW |19901 |{23874}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23875}>{$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 |19861 |0 |2 |1 |{23876}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23877}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |19904 |({23885}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23886} or&eol;{23887}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23886}) and&eol;{23886}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |19902 |0 |2 |1 |{23885}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23886} and&eol;{23887}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23886}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |19905 |{23888}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23889}>{$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 |19903 |0 |2 |1 |{23890}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23891}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19952 |{23975}<0 and {23976}>0&eol;and&eol;({23977}=6&eol;or {23977}=1)&eol;and&eol;({23978}<>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. |19950 |0 |2 |1 |({23975}>0 and {23979}>0) or&eol;({23978}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |19953 |({23980}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23981} or&eol;{23982}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23981}) and&eol;{23981}>0 |Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |19951 |0 |2 |1 |{23980}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23981} and&eol;{23982}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23981}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |19958 |{23999}<0 and {24000}>0&eol;and&eol;({24001}=6&eol;or {24001}=1)&eol;and&eol;({24002}<>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. |19956 |0 |2 |1 |({23999}>0 and {24003}>0) or&eol;({24002}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |19959 |({24004}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{24005} or&eol;{24006}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{24005}) and&eol;{24005}>0 |Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |19957 |0 |2 |1 |{24004}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{24005} and&eol;{24006}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{24005}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
TABLE |triggers
-FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
-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 |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 |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. |14293 |0 |0 |0 | |0 | |0 | |0 |
-ROW |14718 |{15210}>{$ICMP_LOSS_WARN} and {15210}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |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 |0 | |0 | |1 | |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |16996 |{19923} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19924} > {$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. |16995 |0 |2 |0 | |0 | |1 | |0 |
-ROW |16998 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19927}=2 and {19928}=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.|16997 |0 |2 |1 |{19927}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17720 |{20821}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17721 |{20822}>{$ICMP_LOSS_WARN} and {20822}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |17722 |{20823}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
-ROW |17796 |{20923}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
-ROW |17797 |{20924}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
-ROW |17894 |{21167}<{$SWAP.PFREE.MIN.WARN} and {21168}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17891 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17896 |{21171}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17893 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17935 |{21264}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
-ROW |17936 |{21265}>{$ICMP_LOSS_WARN} and {21265}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |17937 |{21266}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
-ROW |19701 |{23492}<{$MEMORY.AVAILABLE.MIN} and {23493}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |19700 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |19704 |{23502}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23503}>{$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 |19703 |0 |2 |1 |{23504}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23505}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8|0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |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 |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 |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 |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. |14293 |0 |0 |0 | |0 | |0 | |0 |
+ROW |14718 |{15210}>{$ICMP_LOSS_WARN} and {15210}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |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 |0 | |0 | |1 | |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |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 |16996 |{19923} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19924} > {$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. |16995 |0 |2 |0 | |0 | |1 | |0 |
+ROW |16998 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19927}=2 and {19928}=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.|16997 |0 |2 |1 |{19927}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17720 |{20821}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
+ROW |17721 |{20822}>{$ICMP_LOSS_WARN} and {20822}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |17722 |{20823}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |17796 |{20923}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
+ROW |17797 |{20924}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17794 |0 |2 |0 | |0 | |0 | |0 |
+ROW |17894 |{21167}<{$SWAP.PFREE.MIN.WARN} and {21168}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |17891 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17896 |{21171}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |17893 |0 |0 |0 | |0 | |0 | |0 |
+ROW |17935 |{21264}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
+ROW |17936 |{21265}>{$ICMP_LOSS_WARN} and {21265}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |17937 |{21266}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |19701 |{23492}<{$MEMORY.AVAILABLE.MIN} and {23493}>0 |Lack of available memory (<{$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |19700 |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |19704 |{23502}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {23503}>{$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 |19703 |0 |2 |1 |{23504}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {23505}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |19954 |{23983}<0 and {23984}>0&eol;and&eol;({23985}=6&eol;or {23985}=1)&eol;and&eol;({23986}<>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. |19952 |0 |2 |1 |({23983}>0 and {23987}>0) or&eol;({23986}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |19955 |({23988}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23989} or&eol;{23990}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{23989}) and&eol;{23989}>0|Interface {#IFNAME}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}%) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |19953 |0 |2 |1 |{23988}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23989} and&eol;{23990}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{23989}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
@@ -14149,911 +14163,913 @@ ROW |21345 |16448 |16269 |
ROW |21346 |16265 |16269 |
ROW |30559 |15928 |15933 |
ROW |30560 |15931 |15933 |
-ROW |33113 |17682 |17683 |
-ROW |33114 |17684 |17685 |
-ROW |33115 |17686 |17687 |
-ROW |33116 |15944 |15947 |
-ROW |33117 |15944 |15943 |
-ROW |33118 |15943 |15947 |
-ROW |33119 |16888 |15947 |
-ROW |33120 |16888 |15943 |
-ROW |33121 |15948 |15949 |
-ROW |33122 |15950 |15949 |
-ROW |33123 |17219 |17218 |
-ROW |33124 |17222 |17221 |
-ROW |33125 |19426 |19428 |
-ROW |33126 |16743 |16744 |
-ROW |33127 |16784 |16785 |
-ROW |33128 |16790 |16791 |
-ROW |33129 |16892 |16900 |
-ROW |33130 |16894 |16900 |
-ROW |33131 |17267 |17275 |
-ROW |33132 |17272 |17276 |
-ROW |33133 |17273 |17275 |
-ROW |33134 |17274 |17276 |
-ROW |33135 |17279 |17277 |
-ROW |33136 |17282 |17280 |
-ROW |33137 |16646 |16647 |
-ROW |33138 |19437 |19442 |
-ROW |33139 |16809 |16810 |
-ROW |33140 |19451 |19456 |
-ROW |33141 |16902 |16904 |
-ROW |33142 |16904 |16905 |
-ROW |33143 |16909 |16906 |
-ROW |33144 |16910 |16912 |
-ROW |33145 |16912 |16913 |
-ROW |33146 |16917 |16914 |
-ROW |33147 |16752 |16753 |
-ROW |33148 |15955 |15957 |
-ROW |33149 |15955 |15954 |
-ROW |33150 |15954 |15957 |
-ROW |33151 |15956 |15957 |
-ROW |33152 |15956 |15954 |
-ROW |33153 |16678 |15957 |
-ROW |33154 |16678 |15954 |
-ROW |33155 |15961 |15960 |
-ROW |33156 |15962 |15960 |
-ROW |33157 |16679 |15960 |
-ROW |33158 |19744 |19758 |
-ROW |33159 |19744 |19745 |
-ROW |33160 |19748 |19747 |
-ROW |33161 |19749 |19747 |
-ROW |33162 |19750 |19759 |
-ROW |33163 |19750 |19747 |
-ROW |33164 |19751 |19759 |
-ROW |33165 |19751 |19747 |
-ROW |33166 |19752 |19759 |
-ROW |33167 |19752 |19747 |
-ROW |33168 |19758 |19745 |
-ROW |33169 |19759 |19747 |
-ROW |33170 |19761 |19766 |
-ROW |33171 |19762 |19766 |
-ROW |33172 |19763 |19766 |
-ROW |33173 |19764 |19766 |
-ROW |33174 |19765 |19766 |
-ROW |33175 |19768 |19767 |
-ROW |33176 |19770 |19769 |
-ROW |33177 |17225 |17231 |
-ROW |33178 |17228 |17231 |
-ROW |33179 |17236 |17233 |
-ROW |33180 |17966 |17968 |
-ROW |33181 |17966 |17967 |
-ROW |33182 |17967 |17968 |
-ROW |33183 |17973 |17968 |
-ROW |33184 |17973 |17967 |
-ROW |33185 |17975 |17968 |
-ROW |33186 |17975 |17967 |
-ROW |33187 |17985 |17986 |
-ROW |33188 |17987 |17986 |
-ROW |33189 |17992 |17986 |
-ROW |33190 |17081 |17083 |
-ROW |33191 |17082 |17081 |
-ROW |33192 |17082 |17083 |
-ROW |33193 |17082 |17084 |
-ROW |33194 |17084 |17083 |
-ROW |33195 |18615 |18614 |
-ROW |33196 |17117 |17127 |
-ROW |33197 |17118 |17117 |
-ROW |33198 |17118 |17127 |
-ROW |33199 |17119 |17127 |
-ROW |33200 |17120 |17119 |
-ROW |33201 |17120 |17127 |
-ROW |33202 |17122 |17121 |
-ROW |33203 |17123 |17127 |
-ROW |33204 |17124 |17123 |
-ROW |33205 |17124 |17127 |
-ROW |33206 |17126 |17125 |
-ROW |33207 |17128 |17144 |
-ROW |33208 |17129 |17128 |
-ROW |33209 |17129 |17144 |
-ROW |33210 |17130 |17144 |
-ROW |33211 |17131 |17130 |
-ROW |33212 |17131 |17144 |
-ROW |33213 |17132 |17144 |
-ROW |33214 |17133 |17132 |
-ROW |33215 |17133 |17144 |
-ROW |33216 |17134 |17144 |
-ROW |33217 |17135 |17134 |
-ROW |33218 |17135 |17144 |
-ROW |33219 |17136 |17144 |
-ROW |33220 |17137 |17136 |
-ROW |33221 |17137 |17144 |
-ROW |33222 |17139 |17138 |
-ROW |33223 |17140 |17144 |
-ROW |33224 |17141 |17140 |
-ROW |33225 |17141 |17144 |
-ROW |33226 |17142 |17144 |
-ROW |33227 |17143 |17142 |
-ROW |33228 |17143 |17144 |
-ROW |33229 |17145 |17144 |
-ROW |33230 |17146 |17144 |
-ROW |33231 |17146 |17145 |
-ROW |33232 |17147 |17144 |
-ROW |33233 |17148 |17144 |
-ROW |33234 |17148 |17147 |
-ROW |33235 |17306 |17307 |
-ROW |33236 |16920 |19827 |
-ROW |33237 |16833 |16920 |
-ROW |33238 |19395 |19394 |
-ROW |33239 |19829 |19828 |
-ROW |33240 |19400 |19401 |
-ROW |33241 |19402 |19401 |
-ROW |33242 |19412 |19413 |
-ROW |33243 |17748 |17747 |
-ROW |33244 |19831 |19830 |
-ROW |33245 |17753 |17754 |
-ROW |33246 |17755 |17754 |
-ROW |33247 |17765 |17766 |
-ROW |33248 |18007 |18005 |
-ROW |33249 |18019 |18017 |
-ROW |33250 |16929 |16928 |
-ROW |33251 |16940 |17153 |
-ROW |33252 |18627 |18626 |
-ROW |33253 |18629 |18628 |
-ROW |33254 |18631 |18630 |
-ROW |33255 |16719 |16721 |
-ROW |33256 |16975 |16723 |
-ROW |33257 |16729 |16728 |
-ROW |33258 |16730 |16728 |
-ROW |33259 |16756 |16758 |
-ROW |33260 |16979 |16759 |
-ROW |33261 |16765 |16764 |
-ROW |33262 |16766 |16764 |
-ROW |33263 |16734 |16736 |
-ROW |33264 |16983 |16732 |
-ROW |33265 |16741 |16740 |
-ROW |33266 |16742 |16740 |
-ROW |33267 |17173 |17172 |
-ROW |33268 |17175 |17176 |
-ROW |33269 |17180 |19835 |
-ROW |33270 |17711 |17712 |
-ROW |33271 |17713 |17714 |
-ROW |33272 |19837 |19842 |
-ROW |33273 |19841 |19842 |
-ROW |33274 |16683 |16687 |
-ROW |33275 |14252 |14251 |
-ROW |33276 |14294 |14293 |
-ROW |33277 |14312 |14311 |
-ROW |33278 |14328 |14327 |
-ROW |33279 |14348 |14347 |
-ROW |33280 |14357 |14356 |
-ROW |33281 |14390 |14389 |
-ROW |33282 |14404 |14403 |
-ROW |33283 |14452 |14451 |
-ROW |33284 |14469 |14468 |
-ROW |33285 |14487 |14486 |
-ROW |33286 |14506 |14505 |
-ROW |33287 |14535 |14534 |
-ROW |33288 |14545 |14544 |
-ROW |33289 |14583 |14582 |
-ROW |33290 |14599 |14598 |
-ROW |33291 |14616 |14615 |
-ROW |33292 |14653 |14652 |
-ROW |33293 |14674 |14673 |
-ROW |33294 |14692 |14691 |
-ROW |33295 |14705 |14704 |
-ROW |33296 |14718 |14717 |
-ROW |33297 |14907 |14906 |
-ROW |33298 |15221 |15220 |
-ROW |33299 |15702 |15701 |
-ROW |33300 |15724 |15723 |
-ROW |33301 |15756 |15755 |
-ROW |33302 |15820 |15819 |
-ROW |33303 |15841 |15840 |
-ROW |33304 |15991 |15990 |
-ROW |33305 |16018 |16017 |
-ROW |33306 |16454 |16453 |
-ROW |33307 |17721 |17720 |
-ROW |33308 |17936 |17935 |
-ROW |33309 |14253 |14252 |
-ROW |33310 |14295 |14294 |
-ROW |33311 |14313 |14312 |
-ROW |33312 |14329 |14328 |
-ROW |33313 |14349 |14348 |
-ROW |33314 |14358 |14357 |
-ROW |33315 |14391 |14390 |
-ROW |33316 |14405 |14404 |
-ROW |33317 |14453 |14452 |
-ROW |33318 |14470 |14469 |
-ROW |33319 |14488 |14487 |
-ROW |33320 |14507 |14506 |
-ROW |33321 |14536 |14535 |
-ROW |33322 |14546 |14545 |
-ROW |33323 |14584 |14583 |
-ROW |33324 |14600 |14599 |
-ROW |33325 |14617 |14616 |
-ROW |33326 |14654 |14653 |
-ROW |33327 |14675 |14674 |
-ROW |33328 |14693 |14692 |
-ROW |33329 |14706 |14705 |
-ROW |33330 |14719 |14718 |
-ROW |33331 |14908 |14907 |
-ROW |33332 |15222 |15221 |
-ROW |33333 |15703 |15702 |
-ROW |33334 |15725 |15724 |
-ROW |33335 |15757 |15756 |
-ROW |33336 |15821 |15820 |
-ROW |33337 |15842 |15841 |
-ROW |33338 |15992 |15991 |
-ROW |33339 |16019 |16018 |
-ROW |33340 |16455 |16454 |
-ROW |33341 |17722 |17721 |
-ROW |33342 |17937 |17936 |
-ROW |33343 |14253 |14251 |
-ROW |33344 |14295 |14293 |
-ROW |33345 |14313 |14311 |
-ROW |33346 |14329 |14327 |
-ROW |33347 |14349 |14347 |
-ROW |33348 |14358 |14356 |
-ROW |33349 |14391 |14389 |
-ROW |33350 |14405 |14403 |
-ROW |33351 |14453 |14451 |
-ROW |33352 |14470 |14468 |
-ROW |33353 |14488 |14486 |
-ROW |33354 |14507 |14505 |
-ROW |33355 |14536 |14534 |
-ROW |33356 |14546 |14544 |
-ROW |33357 |14584 |14582 |
-ROW |33358 |14600 |14598 |
-ROW |33359 |14617 |14615 |
-ROW |33360 |14654 |14652 |
-ROW |33361 |14675 |14673 |
-ROW |33362 |14693 |14691 |
-ROW |33363 |14706 |14704 |
-ROW |33364 |14719 |14717 |
-ROW |33365 |14908 |14906 |
-ROW |33366 |15222 |15220 |
-ROW |33367 |15703 |15701 |
-ROW |33368 |15725 |15723 |
-ROW |33369 |15757 |15755 |
-ROW |33370 |15821 |15819 |
-ROW |33371 |15842 |15840 |
-ROW |33372 |15992 |15990 |
-ROW |33373 |16019 |16017 |
-ROW |33374 |16455 |16453 |
-ROW |33375 |17722 |17720 |
-ROW |33376 |17937 |17935 |
-ROW |33377 |16287 |16289 |
-ROW |33378 |16279 |16285 |
-ROW |33379 |16290 |16348 |
-ROW |33380 |16291 |16349 |
-ROW |33381 |16292 |16350 |
-ROW |33382 |16293 |16351 |
-ROW |33383 |16294 |16352 |
-ROW |33384 |16295 |16353 |
-ROW |33385 |16296 |16354 |
-ROW |33386 |16297 |16355 |
-ROW |33387 |16298 |16356 |
-ROW |33388 |16299 |16357 |
-ROW |33389 |16300 |16358 |
-ROW |33390 |16301 |16359 |
-ROW |33391 |16302 |16360 |
-ROW |33392 |16303 |16361 |
-ROW |33393 |16304 |16362 |
-ROW |33394 |16305 |16363 |
-ROW |33395 |16306 |16364 |
-ROW |33396 |16307 |16365 |
-ROW |33397 |16308 |16366 |
-ROW |33398 |16309 |16367 |
-ROW |33399 |16311 |16369 |
-ROW |33400 |16312 |16370 |
-ROW |33401 |16313 |16371 |
-ROW |33402 |16314 |16372 |
-ROW |33403 |16315 |16373 |
-ROW |33404 |16316 |16374 |
-ROW |33405 |16317 |16375 |
-ROW |33406 |16318 |16376 |
-ROW |33407 |16457 |16458 |
-ROW |33408 |17724 |17725 |
-ROW |33409 |17939 |17940 |
-ROW |33410 |16289 |14293 |
-ROW |33411 |16285 |14717 |
-ROW |33412 |16348 |14311 |
-ROW |33413 |16349 |14327 |
-ROW |33414 |16350 |14347 |
-ROW |33415 |16351 |14356 |
-ROW |33416 |16352 |14389 |
-ROW |33417 |16353 |14403 |
-ROW |33418 |16354 |14451 |
-ROW |33419 |16355 |14468 |
-ROW |33420 |16356 |14486 |
-ROW |33421 |16357 |14505 |
-ROW |33422 |16358 |14534 |
-ROW |33423 |16359 |14544 |
-ROW |33424 |16360 |14582 |
-ROW |33425 |16361 |14598 |
-ROW |33426 |16362 |14615 |
-ROW |33427 |16363 |14652 |
-ROW |33428 |16364 |14673 |
-ROW |33429 |16365 |14691 |
-ROW |33430 |16366 |14704 |
-ROW |33431 |16367 |14906 |
-ROW |33432 |16369 |15220 |
-ROW |33433 |16370 |15701 |
-ROW |33434 |16371 |15723 |
-ROW |33435 |16372 |15755 |
-ROW |33436 |16373 |15819 |
-ROW |33437 |16374 |15840 |
-ROW |33438 |16375 |15990 |
-ROW |33439 |16376 |16017 |
-ROW |33440 |16458 |16453 |
-ROW |33441 |17725 |17720 |
-ROW |33442 |17940 |17935 |
-ROW |33443 |16631 |16630 |
-ROW |33444 |16640 |16636 |
-ROW |33445 |16642 |16638 |
-ROW |33446 |16643 |16639 |
-ROW |33447 |15695 |16863 |
-ROW |33448 |19852 |16863 |
-ROW |33449 |19853 |16863 |
-ROW |33450 |15694 |16868 |
-ROW |33451 |15696 |16864 |
-ROW |33452 |15697 |16865 |
-ROW |33453 |19854 |16864 |
-ROW |33454 |19855 |16865 |
-ROW |33455 |19856 |16868 |
-ROW |33456 |19857 |16864 |
-ROW |33457 |19858 |16865 |
-ROW |33458 |19859 |16868 |
-ROW |33459 |15671 |16841 |
-ROW |33460 |19860 |16841 |
-ROW |33461 |19861 |16841 |
-ROW |33462 |15672 |16842 |
-ROW |33463 |15673 |16843 |
-ROW |33464 |15674 |16844 |
-ROW |33465 |15675 |16845 |
-ROW |33466 |15676 |16846 |
-ROW |33467 |15677 |16847 |
-ROW |33468 |15678 |16848 |
-ROW |33469 |15679 |16849 |
-ROW |33470 |15680 |16850 |
-ROW |33471 |15681 |16851 |
-ROW |33472 |15682 |16852 |
-ROW |33473 |15683 |16853 |
-ROW |33474 |15684 |16854 |
-ROW |33475 |15685 |16855 |
-ROW |33476 |15686 |16856 |
-ROW |33477 |15687 |16857 |
-ROW |33478 |15689 |16858 |
-ROW |33479 |15691 |16860 |
-ROW |33480 |15708 |16861 |
-ROW |33481 |15997 |16862 |
-ROW |33482 |19862 |16842 |
-ROW |33483 |19863 |16843 |
-ROW |33484 |19864 |16844 |
-ROW |33485 |19865 |16845 |
-ROW |33486 |19866 |16846 |
-ROW |33487 |19867 |16847 |
-ROW |33488 |19868 |16848 |
-ROW |33489 |19869 |16849 |
-ROW |33490 |19870 |16850 |
-ROW |33491 |19871 |16851 |
-ROW |33492 |19872 |16852 |
-ROW |33493 |19873 |16853 |
-ROW |33494 |19874 |16854 |
-ROW |33495 |19875 |16855 |
-ROW |33496 |19876 |16856 |
-ROW |33497 |19877 |16857 |
-ROW |33498 |19878 |16858 |
-ROW |33499 |19879 |16860 |
-ROW |33500 |19880 |16861 |
-ROW |33501 |19881 |16862 |
-ROW |33502 |19882 |16842 |
-ROW |33503 |19883 |16843 |
-ROW |33504 |19884 |16844 |
-ROW |33505 |19885 |16845 |
-ROW |33506 |19886 |16846 |
-ROW |33507 |19887 |16847 |
-ROW |33508 |19888 |16848 |
-ROW |33509 |19889 |16849 |
-ROW |33510 |19890 |16850 |
-ROW |33511 |19891 |16851 |
-ROW |33512 |19892 |16852 |
-ROW |33513 |19893 |16853 |
-ROW |33514 |19894 |16854 |
-ROW |33515 |19895 |16855 |
-ROW |33516 |19896 |16856 |
-ROW |33517 |19897 |16857 |
-ROW |33518 |19898 |16858 |
-ROW |33519 |19899 |16860 |
-ROW |33520 |19900 |16861 |
-ROW |33521 |19901 |16862 |
-ROW |33522 |15698 |16866 |
-ROW |33523 |19902 |16866 |
-ROW |33524 |19903 |16866 |
-ROW |33525 |16028 |16867 |
-ROW |33526 |19904 |16867 |
-ROW |33527 |19905 |16867 |
-ROW |33528 |17857 |17858 |
-ROW |33529 |17863 |17864 |
-ROW |33530 |14318 |14319 |
-ROW |33531 |17314 |15717 |
-ROW |33532 |17313 |15717 |
-ROW |33533 |17313 |17314 |
-ROW |33534 |17312 |15717 |
-ROW |33535 |17311 |15717 |
-ROW |33536 |17311 |17312 |
-ROW |33537 |17317 |17318 |
-ROW |33538 |17315 |17316 |
-ROW |33539 |17321 |17322 |
-ROW |33540 |17319 |17320 |
-ROW |33541 |15721 |15720 |
-ROW |33542 |15394 |15393 |
-ROW |33543 |15392 |15391 |
-ROW |33544 |17194 |14339 |
-ROW |33545 |15382 |15381 |
-ROW |33546 |15380 |15379 |
-ROW |33547 |16504 |16505 |
-ROW |33548 |14372 |14373 |
-ROW |33549 |15386 |15385 |
-ROW |33550 |15384 |15383 |
-ROW |33551 |14380 |14381 |
-ROW |33552 |18024 |18023 |
-ROW |33553 |18025 |18024 |
-ROW |33554 |18025 |18023 |
-ROW |33555 |18028 |18027 |
-ROW |33556 |18034 |18033 |
-ROW |33557 |19906 |18041 |
-ROW |33558 |19907 |18041 |
-ROW |33559 |19908 |18041 |
-ROW |33560 |18039 |18041 |
-ROW |33561 |18040 |18041 |
-ROW |33562 |18044 |19909 |
-ROW |33563 |18046 |18045 |
-ROW |33564 |18048 |18047 |
-ROW |33565 |18051 |18050 |
-ROW |33566 |18052 |18051 |
-ROW |33567 |18052 |18050 |
-ROW |33568 |18055 |18054 |
-ROW |33569 |18061 |18060 |
-ROW |33570 |19910 |18068 |
-ROW |33571 |19911 |18068 |
-ROW |33572 |19912 |18068 |
-ROW |33573 |18066 |18068 |
-ROW |33574 |18067 |18068 |
-ROW |33575 |18071 |19913 |
-ROW |33576 |18073 |18072 |
-ROW |33577 |18075 |18074 |
-ROW |33578 |18078 |18077 |
-ROW |33579 |18079 |18078 |
-ROW |33580 |18079 |18077 |
-ROW |33581 |18082 |18081 |
-ROW |33582 |18088 |18087 |
-ROW |33583 |19914 |18095 |
-ROW |33584 |19915 |18095 |
-ROW |33585 |19916 |18095 |
-ROW |33586 |18093 |18095 |
-ROW |33587 |18094 |18095 |
-ROW |33588 |18098 |19917 |
-ROW |33589 |18100 |18099 |
-ROW |33590 |18102 |18101 |
-ROW |33591 |18105 |18104 |
-ROW |33592 |18106 |18105 |
-ROW |33593 |18106 |18104 |
-ROW |33594 |18109 |18108 |
-ROW |33595 |18115 |18114 |
-ROW |33596 |19918 |18122 |
-ROW |33597 |19919 |18122 |
-ROW |33598 |19920 |18122 |
-ROW |33599 |18120 |18122 |
-ROW |33600 |18121 |18122 |
-ROW |33601 |18125 |19921 |
-ROW |33602 |18127 |18126 |
-ROW |33603 |18129 |18128 |
-ROW |33604 |18132 |18131 |
-ROW |33605 |18133 |18132 |
-ROW |33606 |18133 |18131 |
-ROW |33607 |18136 |18135 |
-ROW |33608 |18142 |18141 |
-ROW |33609 |19922 |18149 |
-ROW |33610 |19923 |18149 |
-ROW |33611 |19924 |18149 |
-ROW |33612 |18147 |18149 |
-ROW |33613 |18148 |18149 |
-ROW |33614 |18152 |19925 |
-ROW |33615 |18154 |18153 |
-ROW |33616 |18156 |18155 |
-ROW |33617 |15347 |15346 |
-ROW |33618 |15345 |15344 |
-ROW |33619 |17196 |17195 |
-ROW |33620 |15363 |15360 |
-ROW |33621 |15364 |15361 |
-ROW |33622 |15365 |15362 |
-ROW |33623 |15357 |15354 |
-ROW |33624 |15358 |15355 |
-ROW |33625 |15359 |15356 |
-ROW |33626 |17200 |17197 |
-ROW |33627 |17201 |17198 |
-ROW |33628 |17202 |17199 |
-ROW |33629 |15334 |15333 |
-ROW |33630 |15332 |15331 |
-ROW |33631 |14460 |14461 |
-ROW |33632 |14476 |14477 |
-ROW |33633 |14495 |14496 |
-ROW |33634 |14511 |17203 |
-ROW |33635 |19692 |19691 |
-ROW |33636 |19694 |19695 |
-ROW |33637 |14551 |14552 |
-ROW |33638 |15374 |15373 |
-ROW |33639 |15376 |15375 |
-ROW |33640 |14914 |14915 |
-ROW |33641 |14589 |14590 |
-ROW |33642 |15338 |15337 |
-ROW |33643 |17205 |17204 |
-ROW |33644 |14624 |14625 |
-ROW |33645 |18159 |18158 |
-ROW |33646 |18160 |18159 |
-ROW |33647 |18160 |18158 |
-ROW |33648 |18163 |18164 |
-ROW |33649 |18164 |18158 |
-ROW |33650 |18166 |18169 |
-ROW |33651 |19696 |18169 |
-ROW |33652 |19697 |18169 |
-ROW |33653 |18171 |18172 |
-ROW |33654 |18175 |18174 |
-ROW |33655 |14664 |14665 |
-ROW |33656 |17207 |17208 |
-ROW |33657 |16547 |16546 |
-ROW |33658 |17323 |17324 |
-ROW |33659 |17325 |17326 |
-ROW |33660 |17376 |17377 |
-ROW |33661 |17374 |17375 |
-ROW |33662 |17380 |17381 |
-ROW |33663 |17378 |17379 |
-ROW |33664 |17382 |17383 |
-ROW |33665 |17384 |17385 |
-ROW |33666 |17434 |17435 |
-ROW |33667 |17432 |17433 |
-ROW |33668 |17438 |17439 |
-ROW |33669 |17436 |17437 |
-ROW |33670 |17440 |17441 |
-ROW |33671 |17442 |17443 |
-ROW |33672 |17478 |17479 |
-ROW |33673 |17476 |17477 |
-ROW |33674 |17482 |17483 |
-ROW |33675 |17480 |17481 |
-ROW |33676 |17484 |17485 |
-ROW |33677 |17502 |17503 |
-ROW |33678 |17500 |17501 |
-ROW |33679 |17504 |17505 |
-ROW |33680 |17567 |17568 |
-ROW |33681 |17565 |17566 |
-ROW |33682 |17571 |17572 |
-ROW |33683 |17569 |17570 |
-ROW |33684 |17573 |17574 |
-ROW |33685 |17608 |17609 |
-ROW |33686 |17606 |17607 |
-ROW |33687 |17612 |17613 |
-ROW |33688 |17610 |17611 |
-ROW |33689 |17647 |17648 |
-ROW |33690 |17645 |17646 |
-ROW |33691 |17651 |17652 |
-ROW |33692 |17649 |17650 |
-ROW |33693 |17653 |17654 |
-ROW |33694 |17655 |17656 |
-ROW |33695 |17212 |17211 |
-ROW |33696 |16551 |16552 |
-ROW |33697 |17888 |17890 |
-ROW |33698 |17891 |17893 |
-ROW |33699 |17894 |17896 |
-ROW |33700 |17888 |19699 |
-ROW |33701 |17891 |19700 |
-ROW |33702 |17894 |19701 |
-ROW |33703 |16031 |16563 |
-ROW |33704 |16045 |16564 |
-ROW |33705 |16046 |16565 |
-ROW |33706 |16039 |16040 |
-ROW |33707 |16061 |16063 |
-ROW |33708 |16062 |16064 |
-ROW |33709 |16042 |16579 |
-ROW |33710 |16067 |16580 |
-ROW |33711 |16068 |16581 |
-ROW |33712 |16041 |16042 |
-ROW |33713 |16065 |16067 |
-ROW |33714 |16066 |16068 |
-ROW |33715 |16041 |16579 |
-ROW |33716 |16065 |16580 |
-ROW |33717 |16066 |16581 |
-ROW |33718 |17890 |19699 |
-ROW |33719 |17893 |19700 |
-ROW |33720 |17896 |19701 |
-ROW |33721 |16070 |16069 |
-ROW |33722 |16072 |16071 |
-ROW |33723 |16076 |16994 |
-ROW |33724 |19702 |16994 |
-ROW |33725 |16079 |16077 |
-ROW |33726 |16080 |16078 |
-ROW |33727 |16083 |16081 |
-ROW |33728 |16084 |16082 |
-ROW |33729 |16091 |16997 |
-ROW |33730 |16092 |16998 |
-ROW |33731 |19703 |16997 |
-ROW |33732 |19704 |16998 |
-ROW |33733 |17900 |17902 |
-ROW |33734 |17903 |17905 |
-ROW |33735 |17900 |19705 |
-ROW |33736 |17903 |19706 |
-ROW |33737 |16097 |16569 |
-ROW |33738 |16110 |16570 |
-ROW |33739 |16105 |16106 |
-ROW |33740 |16118 |16119 |
-ROW |33741 |16108 |16582 |
-ROW |33742 |16121 |16583 |
-ROW |33743 |16107 |16108 |
-ROW |33744 |16120 |16121 |
-ROW |33745 |16107 |16582 |
-ROW |33746 |16120 |16583 |
-ROW |33747 |17902 |19705 |
-ROW |33748 |17905 |19706 |
-ROW |33749 |16123 |16122 |
-ROW |33750 |16125 |16124 |
-ROW |33751 |16129 |17002 |
-ROW |33752 |19707 |17002 |
-ROW |33753 |16131 |16130 |
-ROW |33754 |16133 |16132 |
-ROW |33755 |16137 |17004 |
-ROW |33756 |19708 |17004 |
-ROW |33757 |17908 |17910 |
-ROW |33758 |17908 |19709 |
-ROW |33759 |16141 |16142 |
-ROW |33760 |16146 |16573 |
-ROW |33761 |16143 |16584 |
-ROW |33762 |17910 |19709 |
-ROW |33763 |16152 |16883 |
-ROW |33764 |16153 |16883 |
-ROW |33765 |19710 |16883 |
-ROW |33766 |19711 |16883 |
-ROW |33767 |16156 |16155 |
-ROW |33768 |16158 |16157 |
-ROW |33769 |17913 |17915 |
-ROW |33770 |17916 |17918 |
-ROW |33771 |17913 |19741 |
-ROW |33772 |17916 |19742 |
-ROW |33773 |17915 |19741 |
-ROW |33774 |17918 |19742 |
-ROW |33775 |16009 |16008 |
-ROW |33776 |16011 |16010 |
-ROW |33777 |16014 |16013 |
-ROW |33778 |16016 |16015 |
-ROW |33779 |17005 |16160 |
-ROW |33780 |17007 |16171 |
-ROW |33781 |17919 |17920 |
-ROW |33782 |17921 |17922 |
-ROW |33783 |16161 |16160 |
-ROW |33784 |16172 |16171 |
-ROW |33785 |16162 |16161 |
-ROW |33786 |16173 |16172 |
-ROW |33787 |16162 |16160 |
-ROW |33788 |16173 |16171 |
-ROW |33789 |16166 |17920 |
-ROW |33790 |16177 |17922 |
-ROW |33791 |16167 |17920 |
-ROW |33792 |16178 |17922 |
-ROW |33793 |16183 |16182 |
-ROW |33794 |19663 |19666 |
-ROW |33795 |19664 |19666 |
-ROW |33796 |19665 |19666 |
-ROW |33797 |19712 |17662 |
-ROW |33798 |19712 |17661 |
-ROW |33799 |16190 |16189 |
-ROW |33800 |19667 |19670 |
-ROW |33801 |19668 |19670 |
-ROW |33802 |19669 |19670 |
-ROW |33803 |19713 |17664 |
-ROW |33804 |19713 |17663 |
-ROW |33805 |17011 |16209 |
-ROW |33806 |17013 |16220 |
-ROW |33807 |17927 |17928 |
-ROW |33808 |17929 |17930 |
-ROW |33809 |16210 |16209 |
-ROW |33810 |16221 |16220 |
-ROW |33811 |16211 |16210 |
-ROW |33812 |16222 |16221 |
-ROW |33813 |16211 |16209 |
-ROW |33814 |16222 |16220 |
-ROW |33815 |16215 |17928 |
-ROW |33816 |16226 |17930 |
-ROW |33817 |16216 |17928 |
-ROW |33818 |16227 |17930 |
-ROW |33819 |16232 |16231 |
-ROW |33820 |19671 |19674 |
-ROW |33821 |19672 |19674 |
-ROW |33822 |19673 |19674 |
-ROW |33823 |19714 |17666 |
-ROW |33824 |19714 |17665 |
-ROW |33825 |16239 |16238 |
-ROW |33826 |19675 |19678 |
-ROW |33827 |19676 |19678 |
-ROW |33828 |19677 |19678 |
-ROW |33829 |19715 |17668 |
-ROW |33830 |19715 |17667 |
-ROW |33831 |18256 |18257 |
-ROW |33832 |18292 |18293 |
-ROW |33833 |18328 |18329 |
-ROW |33834 |18364 |18365 |
-ROW |33835 |18400 |18401 |
-ROW |33836 |18436 |18437 |
-ROW |33837 |18472 |18473 |
-ROW |33838 |18199 |18200 |
-ROW |33839 |18511 |18512 |
-ROW |33840 |18547 |18548 |
-ROW |33841 |18583 |18584 |
-ROW |33842 |16772 |16773 |
-ROW |33843 |16771 |16772 |
-ROW |33844 |16771 |16773 |
-ROW |33845 |16769 |16770 |
-ROW |33846 |16768 |16769 |
-ROW |33847 |16768 |16770 |
-ROW |33848 |18966 |18967 |
-ROW |33849 |18969 |18968 |
-ROW |33850 |18971 |18970 |
-ROW |33851 |18972 |18970 |
-ROW |33852 |18972 |18971 |
-ROW |33853 |18974 |18973 |
-ROW |33854 |18975 |18976 |
-ROW |33855 |18979 |18978 |
-ROW |33856 |18981 |18980 |
-ROW |33857 |18982 |18983 |
-ROW |33858 |18984 |18985 |
-ROW |33859 |18986 |18987 |
-ROW |33860 |18988 |18989 |
-ROW |33861 |18990 |18991 |
-ROW |33862 |18994 |18993 |
-ROW |33863 |16488 |16487 |
-ROW |33864 |16485 |16484 |
-ROW |33865 |16486 |16484 |
-ROW |33866 |16486 |16485 |
-ROW |33867 |16480 |16479 |
-ROW |33868 |16482 |16481 |
-ROW |33869 |16475 |16474 |
-ROW |33870 |16471 |16472 |
-ROW |33871 |16468 |16469 |
-ROW |33872 |16459 |16460 |
-ROW |33873 |16462 |16463 |
-ROW |33874 |16465 |16466 |
-ROW |33875 |16477 |16476 |
-ROW |33876 |19024 |19023 |
-ROW |33877 |19029 |19028 |
-ROW |33878 |19030 |19028 |
-ROW |33879 |19030 |19029 |
-ROW |33880 |19032 |19031 |
-ROW |33881 |19033 |19032 |
-ROW |33882 |19033 |19031 |
-ROW |33883 |19035 |19034 |
-ROW |33884 |19037 |19038 |
-ROW |33885 |19039 |19038 |
-ROW |33886 |19041 |19040 |
-ROW |33887 |19043 |19042 |
-ROW |33888 |19044 |19042 |
-ROW |33889 |19044 |19043 |
-ROW |33890 |19046 |19045 |
-ROW |33891 |19075 |19074 |
-ROW |33892 |19080 |19079 |
-ROW |33893 |19081 |19079 |
-ROW |33894 |19081 |19080 |
-ROW |33895 |19083 |19082 |
-ROW |33896 |19084 |19083 |
-ROW |33897 |19084 |19082 |
-ROW |33898 |19086 |19085 |
-ROW |33899 |19088 |19089 |
-ROW |33900 |19090 |19089 |
-ROW |33901 |19092 |19091 |
-ROW |33902 |19094 |19093 |
-ROW |33903 |19095 |19093 |
-ROW |33904 |19095 |19094 |
-ROW |33905 |19097 |19096 |
-ROW |33906 |19126 |19125 |
-ROW |33907 |19131 |19130 |
-ROW |33908 |19132 |19130 |
-ROW |33909 |19132 |19131 |
-ROW |33910 |19134 |19133 |
-ROW |33911 |19135 |19134 |
-ROW |33912 |19135 |19133 |
-ROW |33913 |19137 |19136 |
-ROW |33914 |19139 |19140 |
-ROW |33915 |19141 |19140 |
-ROW |33916 |19143 |19142 |
-ROW |33917 |19145 |19144 |
-ROW |33918 |19146 |19144 |
-ROW |33919 |19146 |19145 |
-ROW |33920 |19148 |19147 |
-ROW |33921 |19177 |19176 |
-ROW |33922 |19182 |19181 |
-ROW |33923 |19183 |19181 |
-ROW |33924 |19183 |19182 |
-ROW |33925 |19185 |19184 |
-ROW |33926 |19186 |19185 |
-ROW |33927 |19186 |19184 |
-ROW |33928 |19188 |19187 |
-ROW |33929 |19190 |19191 |
-ROW |33930 |19192 |19191 |
-ROW |33931 |19194 |19193 |
-ROW |33932 |19196 |19195 |
-ROW |33933 |19197 |19195 |
-ROW |33934 |19197 |19196 |
-ROW |33935 |19199 |19198 |
-ROW |33936 |15729 |15728 |
-ROW |33937 |15730 |15728 |
-ROW |33938 |15730 |15729 |
-ROW |33939 |15752 |15754 |
-ROW |33940 |15753 |15754 |
-ROW |33941 |15753 |15752 |
-ROW |33942 |15742 |15741 |
-ROW |33943 |15750 |15749 |
-ROW |33944 |15751 |15750 |
-ROW |33945 |15751 |15749 |
-ROW |33946 |15746 |15743 |
-ROW |33947 |15744 |15743 |
-ROW |33948 |15740 |15739 |
-ROW |33949 |17214 |17213 |
-ROW |33950 |17216 |17215 |
-ROW |33951 |15748 |15747 |
-ROW |33952 |19203 |19202 |
-ROW |33953 |19207 |19206 |
-ROW |33954 |19209 |19208 |
-ROW |33955 |19210 |19208 |
-ROW |33956 |19210 |19209 |
-ROW |33957 |19212 |19211 |
-ROW |33958 |19214 |19213 |
-ROW |33959 |19216 |19215 |
-ROW |33960 |19218 |19219 |
-ROW |33961 |19220 |19219 |
-ROW |33962 |19222 |19221 |
-ROW |33963 |19245 |19244 |
-ROW |33964 |19249 |19248 |
-ROW |33965 |19253 |19252 |
-ROW |33966 |19255 |19254 |
-ROW |33967 |19256 |19254 |
-ROW |33968 |19256 |19255 |
-ROW |33969 |19258 |19257 |
-ROW |33970 |19260 |19259 |
-ROW |33971 |19262 |19261 |
-ROW |33972 |19264 |19265 |
-ROW |33973 |19266 |19265 |
-ROW |33974 |19268 |19267 |
-ROW |33975 |19291 |19290 |
-ROW |33976 |19295 |19294 |
-ROW |33977 |19299 |19298 |
-ROW |33978 |19301 |19300 |
-ROW |33979 |19302 |19300 |
-ROW |33980 |19302 |19301 |
-ROW |33981 |19304 |19303 |
-ROW |33982 |19306 |19305 |
-ROW |33983 |19308 |19307 |
-ROW |33984 |19310 |19311 |
-ROW |33985 |19312 |19311 |
-ROW |33986 |19314 |19313 |
-ROW |33987 |19337 |19336 |
-ROW |33988 |19341 |19340 |
-ROW |33989 |19345 |19344 |
-ROW |33990 |19347 |19346 |
-ROW |33991 |19348 |19346 |
-ROW |33992 |19348 |19347 |
-ROW |33993 |19350 |19349 |
-ROW |33994 |19352 |19351 |
-ROW |33995 |19354 |19353 |
-ROW |33996 |19356 |19357 |
-ROW |33997 |19358 |19357 |
-ROW |33998 |19360 |19359 |
-ROW |33999 |19383 |19382 |
-ROW |34000 |16440 |16439 |
-ROW |34001 |17768 |15790 |
-ROW |34002 |17769 |15787 |
-ROW |34003 |17770 |15787 |
-ROW |34004 |17770 |17769 |
-ROW |34005 |15786 |15785 |
-ROW |34006 |15784 |15783 |
-ROW |34007 |15794 |15792 |
-ROW |34008 |15793 |15792 |
-ROW |34009 |15782 |15781 |
-ROW |34010 |15797 |15796 |
-ROW |34011 |15825 |15824 |
-ROW |34012 |15826 |15824 |
-ROW |34013 |15826 |15825 |
-ROW |34014 |15828 |15829 |
-ROW |34015 |15831 |15832 |
-ROW |34016 |15834 |15835 |
-ROW |34017 |15845 |15846 |
+ROW |34018 |17682 |17683 |
+ROW |34019 |17684 |17685 |
+ROW |34020 |17686 |17687 |
+ROW |34021 |15944 |15947 |
+ROW |34022 |15944 |15943 |
+ROW |34023 |15943 |15947 |
+ROW |34024 |16888 |15947 |
+ROW |34025 |16888 |15943 |
+ROW |34026 |15948 |15949 |
+ROW |34027 |15950 |15949 |
+ROW |34028 |17219 |17218 |
+ROW |34029 |17222 |17221 |
+ROW |34030 |19426 |19428 |
+ROW |34031 |16743 |16744 |
+ROW |34032 |16784 |16785 |
+ROW |34033 |16790 |16791 |
+ROW |34034 |16892 |16900 |
+ROW |34035 |16894 |16900 |
+ROW |34036 |17267 |17275 |
+ROW |34037 |17272 |17276 |
+ROW |34038 |17273 |17275 |
+ROW |34039 |17274 |17276 |
+ROW |34040 |17279 |17277 |
+ROW |34041 |17282 |17280 |
+ROW |34042 |16646 |16647 |
+ROW |34043 |19437 |19442 |
+ROW |34044 |16809 |16810 |
+ROW |34045 |19451 |19456 |
+ROW |34046 |16902 |16904 |
+ROW |34047 |16904 |16905 |
+ROW |34048 |16909 |16906 |
+ROW |34049 |16910 |16912 |
+ROW |34050 |16912 |16913 |
+ROW |34051 |16917 |16914 |
+ROW |34052 |16752 |16753 |
+ROW |34053 |15955 |15957 |
+ROW |34054 |15955 |15954 |
+ROW |34055 |15954 |15957 |
+ROW |34056 |15956 |15957 |
+ROW |34057 |15956 |15954 |
+ROW |34058 |16678 |15957 |
+ROW |34059 |16678 |15954 |
+ROW |34060 |15961 |15960 |
+ROW |34061 |15962 |15960 |
+ROW |34062 |16679 |15960 |
+ROW |34063 |19744 |19758 |
+ROW |34064 |19744 |19745 |
+ROW |34065 |19748 |19747 |
+ROW |34066 |19749 |19747 |
+ROW |34067 |19750 |19759 |
+ROW |34068 |19750 |19747 |
+ROW |34069 |19751 |19759 |
+ROW |34070 |19751 |19747 |
+ROW |34071 |19752 |19759 |
+ROW |34072 |19752 |19747 |
+ROW |34073 |19758 |19745 |
+ROW |34074 |19759 |19747 |
+ROW |34075 |19761 |19766 |
+ROW |34076 |19762 |19766 |
+ROW |34077 |19763 |19766 |
+ROW |34078 |19764 |19766 |
+ROW |34079 |19765 |19766 |
+ROW |34080 |19768 |19767 |
+ROW |34081 |19770 |19769 |
+ROW |34082 |17225 |17231 |
+ROW |34083 |17228 |17231 |
+ROW |34084 |17236 |17233 |
+ROW |34085 |19928 |17968 |
+ROW |34086 |19928 |19929 |
+ROW |34087 |19929 |17968 |
+ROW |34088 |19934 |17968 |
+ROW |34089 |19934 |19929 |
+ROW |34090 |19936 |17968 |
+ROW |34091 |19936 |19929 |
+ROW |34092 |19945 |19946 |
+ROW |34093 |17987 |19946 |
+ROW |34094 |17992 |19946 |
+ROW |34095 |17084 |17083 |
+ROW |34096 |19949 |19948 |
+ROW |34097 |18615 |18614 |
+ROW |34098 |17117 |17127 |
+ROW |34099 |17118 |17117 |
+ROW |34100 |17118 |17127 |
+ROW |34101 |17119 |17127 |
+ROW |34102 |17120 |17119 |
+ROW |34103 |17120 |17127 |
+ROW |34104 |17122 |17121 |
+ROW |34105 |17123 |17127 |
+ROW |34106 |17124 |17123 |
+ROW |34107 |17124 |17127 |
+ROW |34108 |17126 |17125 |
+ROW |34109 |17128 |17144 |
+ROW |34110 |17129 |17128 |
+ROW |34111 |17129 |17144 |
+ROW |34112 |17130 |17144 |
+ROW |34113 |17131 |17130 |
+ROW |34114 |17131 |17144 |
+ROW |34115 |17132 |17144 |
+ROW |34116 |17133 |17132 |
+ROW |34117 |17133 |17144 |
+ROW |34118 |17134 |17144 |
+ROW |34119 |17135 |17134 |
+ROW |34120 |17135 |17144 |
+ROW |34121 |17136 |17144 |
+ROW |34122 |17137 |17136 |
+ROW |34123 |17137 |17144 |
+ROW |34124 |17139 |17138 |
+ROW |34125 |17140 |17144 |
+ROW |34126 |17141 |17140 |
+ROW |34127 |17141 |17144 |
+ROW |34128 |17142 |17144 |
+ROW |34129 |17143 |17142 |
+ROW |34130 |17143 |17144 |
+ROW |34131 |17145 |17144 |
+ROW |34132 |17146 |17144 |
+ROW |34133 |17146 |17145 |
+ROW |34134 |17147 |17144 |
+ROW |34135 |17148 |17144 |
+ROW |34136 |17148 |17147 |
+ROW |34137 |17306 |17307 |
+ROW |34138 |16920 |19827 |
+ROW |34139 |16833 |16920 |
+ROW |34140 |19395 |19394 |
+ROW |34141 |19829 |19828 |
+ROW |34142 |19400 |19401 |
+ROW |34143 |19402 |19401 |
+ROW |34144 |19412 |19413 |
+ROW |34145 |17748 |17747 |
+ROW |34146 |19831 |19830 |
+ROW |34147 |17753 |17754 |
+ROW |34148 |17755 |17754 |
+ROW |34149 |17765 |17766 |
+ROW |34150 |18007 |18005 |
+ROW |34151 |18019 |18017 |
+ROW |34152 |16929 |16928 |
+ROW |34153 |16940 |17153 |
+ROW |34154 |18627 |18626 |
+ROW |34155 |18629 |18628 |
+ROW |34156 |18631 |18630 |
+ROW |34157 |16719 |16721 |
+ROW |34158 |16975 |16723 |
+ROW |34159 |16729 |16728 |
+ROW |34160 |16730 |16728 |
+ROW |34161 |16756 |16758 |
+ROW |34162 |16979 |16759 |
+ROW |34163 |16765 |16764 |
+ROW |34164 |16766 |16764 |
+ROW |34165 |16734 |16736 |
+ROW |34166 |16983 |16732 |
+ROW |34167 |16741 |16740 |
+ROW |34168 |16742 |16740 |
+ROW |34169 |17173 |17172 |
+ROW |34170 |17175 |17176 |
+ROW |34171 |17180 |19835 |
+ROW |34172 |17711 |17712 |
+ROW |34173 |17713 |17714 |
+ROW |34174 |19837 |19842 |
+ROW |34175 |19841 |19842 |
+ROW |34176 |16683 |16687 |
+ROW |34177 |14252 |14251 |
+ROW |34178 |14294 |14293 |
+ROW |34179 |14312 |14311 |
+ROW |34180 |14328 |14327 |
+ROW |34181 |14348 |14347 |
+ROW |34182 |14357 |14356 |
+ROW |34183 |14390 |14389 |
+ROW |34184 |14404 |14403 |
+ROW |34185 |14452 |14451 |
+ROW |34186 |14469 |14468 |
+ROW |34187 |14487 |14486 |
+ROW |34188 |14506 |14505 |
+ROW |34189 |14535 |14534 |
+ROW |34190 |14545 |14544 |
+ROW |34191 |14583 |14582 |
+ROW |34192 |14599 |14598 |
+ROW |34193 |14616 |14615 |
+ROW |34194 |14653 |14652 |
+ROW |34195 |14674 |14673 |
+ROW |34196 |14692 |14691 |
+ROW |34197 |14705 |14704 |
+ROW |34198 |14718 |14717 |
+ROW |34199 |14907 |14906 |
+ROW |34200 |15221 |15220 |
+ROW |34201 |15702 |15701 |
+ROW |34202 |15724 |15723 |
+ROW |34203 |15756 |15755 |
+ROW |34204 |15820 |15819 |
+ROW |34205 |15841 |15840 |
+ROW |34206 |15991 |15990 |
+ROW |34207 |16018 |16017 |
+ROW |34208 |16454 |16453 |
+ROW |34209 |17721 |17720 |
+ROW |34210 |17936 |17935 |
+ROW |34211 |14253 |14252 |
+ROW |34212 |14295 |14294 |
+ROW |34213 |14313 |14312 |
+ROW |34214 |14329 |14328 |
+ROW |34215 |14349 |14348 |
+ROW |34216 |14358 |14357 |
+ROW |34217 |14391 |14390 |
+ROW |34218 |14405 |14404 |
+ROW |34219 |14453 |14452 |
+ROW |34220 |14470 |14469 |
+ROW |34221 |14488 |14487 |
+ROW |34222 |14507 |14506 |
+ROW |34223 |14536 |14535 |
+ROW |34224 |14546 |14545 |
+ROW |34225 |14584 |14583 |
+ROW |34226 |14600 |14599 |
+ROW |34227 |14617 |14616 |
+ROW |34228 |14654 |14653 |
+ROW |34229 |14675 |14674 |
+ROW |34230 |14693 |14692 |
+ROW |34231 |14706 |14705 |
+ROW |34232 |14719 |14718 |
+ROW |34233 |14908 |14907 |
+ROW |34234 |15222 |15221 |
+ROW |34235 |15703 |15702 |
+ROW |34236 |15725 |15724 |
+ROW |34237 |15757 |15756 |
+ROW |34238 |15821 |15820 |
+ROW |34239 |15842 |15841 |
+ROW |34240 |15992 |15991 |
+ROW |34241 |16019 |16018 |
+ROW |34242 |16455 |16454 |
+ROW |34243 |17722 |17721 |
+ROW |34244 |17937 |17936 |
+ROW |34245 |14253 |14251 |
+ROW |34246 |14295 |14293 |
+ROW |34247 |14313 |14311 |
+ROW |34248 |14329 |14327 |
+ROW |34249 |14349 |14347 |
+ROW |34250 |14358 |14356 |
+ROW |34251 |14391 |14389 |
+ROW |34252 |14405 |14403 |
+ROW |34253 |14453 |14451 |
+ROW |34254 |14470 |14468 |
+ROW |34255 |14488 |14486 |
+ROW |34256 |14507 |14505 |
+ROW |34257 |14536 |14534 |
+ROW |34258 |14546 |14544 |
+ROW |34259 |14584 |14582 |
+ROW |34260 |14600 |14598 |
+ROW |34261 |14617 |14615 |
+ROW |34262 |14654 |14652 |
+ROW |34263 |14675 |14673 |
+ROW |34264 |14693 |14691 |
+ROW |34265 |14706 |14704 |
+ROW |34266 |14719 |14717 |
+ROW |34267 |14908 |14906 |
+ROW |34268 |15222 |15220 |
+ROW |34269 |15703 |15701 |
+ROW |34270 |15725 |15723 |
+ROW |34271 |15757 |15755 |
+ROW |34272 |15821 |15819 |
+ROW |34273 |15842 |15840 |
+ROW |34274 |15992 |15990 |
+ROW |34275 |16019 |16017 |
+ROW |34276 |16455 |16453 |
+ROW |34277 |17722 |17720 |
+ROW |34278 |17937 |17935 |
+ROW |34279 |16287 |16289 |
+ROW |34280 |16279 |16285 |
+ROW |34281 |16290 |16348 |
+ROW |34282 |16291 |16349 |
+ROW |34283 |16292 |16350 |
+ROW |34284 |16293 |16351 |
+ROW |34285 |16294 |16352 |
+ROW |34286 |16295 |16353 |
+ROW |34287 |16296 |16354 |
+ROW |34288 |16297 |16355 |
+ROW |34289 |16298 |16356 |
+ROW |34290 |16299 |16357 |
+ROW |34291 |16300 |16358 |
+ROW |34292 |16301 |16359 |
+ROW |34293 |16302 |16360 |
+ROW |34294 |16303 |16361 |
+ROW |34295 |16304 |16362 |
+ROW |34296 |16305 |16363 |
+ROW |34297 |16306 |16364 |
+ROW |34298 |16307 |16365 |
+ROW |34299 |16308 |16366 |
+ROW |34300 |16309 |16367 |
+ROW |34301 |16311 |16369 |
+ROW |34302 |16312 |16370 |
+ROW |34303 |16313 |16371 |
+ROW |34304 |16314 |16372 |
+ROW |34305 |16315 |16373 |
+ROW |34306 |16316 |16374 |
+ROW |34307 |16317 |16375 |
+ROW |34308 |16318 |16376 |
+ROW |34309 |16457 |16458 |
+ROW |34310 |17724 |17725 |
+ROW |34311 |17939 |17940 |
+ROW |34312 |16289 |14293 |
+ROW |34313 |16285 |14717 |
+ROW |34314 |16348 |14311 |
+ROW |34315 |16349 |14327 |
+ROW |34316 |16350 |14347 |
+ROW |34317 |16351 |14356 |
+ROW |34318 |16352 |14389 |
+ROW |34319 |16353 |14403 |
+ROW |34320 |16354 |14451 |
+ROW |34321 |16355 |14468 |
+ROW |34322 |16356 |14486 |
+ROW |34323 |16357 |14505 |
+ROW |34324 |16358 |14534 |
+ROW |34325 |16359 |14544 |
+ROW |34326 |16360 |14582 |
+ROW |34327 |16361 |14598 |
+ROW |34328 |16362 |14615 |
+ROW |34329 |16363 |14652 |
+ROW |34330 |16364 |14673 |
+ROW |34331 |16365 |14691 |
+ROW |34332 |16366 |14704 |
+ROW |34333 |16367 |14906 |
+ROW |34334 |16369 |15220 |
+ROW |34335 |16370 |15701 |
+ROW |34336 |16371 |15723 |
+ROW |34337 |16372 |15755 |
+ROW |34338 |16373 |15819 |
+ROW |34339 |16374 |15840 |
+ROW |34340 |16375 |15990 |
+ROW |34341 |16376 |16017 |
+ROW |34342 |16458 |16453 |
+ROW |34343 |17725 |17720 |
+ROW |34344 |17940 |17935 |
+ROW |34345 |16631 |16630 |
+ROW |34346 |16640 |16636 |
+ROW |34347 |16642 |16638 |
+ROW |34348 |16643 |16639 |
+ROW |34349 |15695 |16863 |
+ROW |34350 |19852 |16863 |
+ROW |34351 |19853 |16863 |
+ROW |34352 |15694 |16868 |
+ROW |34353 |15696 |16864 |
+ROW |34354 |15697 |16865 |
+ROW |34355 |19854 |16864 |
+ROW |34356 |19855 |16865 |
+ROW |34357 |19856 |16868 |
+ROW |34358 |19857 |16864 |
+ROW |34359 |19858 |16865 |
+ROW |34360 |19859 |16868 |
+ROW |34361 |15671 |16841 |
+ROW |34362 |19860 |16841 |
+ROW |34363 |19861 |16841 |
+ROW |34364 |15672 |16842 |
+ROW |34365 |15673 |16843 |
+ROW |34366 |15674 |16844 |
+ROW |34367 |15675 |16845 |
+ROW |34368 |15676 |16846 |
+ROW |34369 |15677 |16847 |
+ROW |34370 |15678 |16848 |
+ROW |34371 |15679 |16849 |
+ROW |34372 |15680 |16850 |
+ROW |34373 |15681 |16851 |
+ROW |34374 |15682 |16852 |
+ROW |34375 |15683 |16853 |
+ROW |34376 |15684 |16854 |
+ROW |34377 |15685 |16855 |
+ROW |34378 |15686 |16856 |
+ROW |34379 |15687 |16857 |
+ROW |34380 |15689 |16858 |
+ROW |34381 |15691 |16860 |
+ROW |34382 |15708 |16861 |
+ROW |34383 |15997 |16862 |
+ROW |34384 |19862 |16842 |
+ROW |34385 |19863 |16843 |
+ROW |34386 |19864 |16844 |
+ROW |34387 |19865 |16845 |
+ROW |34388 |19866 |16846 |
+ROW |34389 |19867 |16847 |
+ROW |34390 |19868 |16848 |
+ROW |34391 |19869 |16849 |
+ROW |34392 |19870 |16850 |
+ROW |34393 |19871 |16851 |
+ROW |34394 |19872 |16852 |
+ROW |34395 |19873 |16853 |
+ROW |34396 |19874 |16854 |
+ROW |34397 |19875 |16855 |
+ROW |34398 |19876 |16856 |
+ROW |34399 |19877 |16857 |
+ROW |34400 |19878 |16858 |
+ROW |34401 |19879 |16860 |
+ROW |34402 |19880 |16861 |
+ROW |34403 |19881 |16862 |
+ROW |34404 |19882 |16842 |
+ROW |34405 |19883 |16843 |
+ROW |34406 |19884 |16844 |
+ROW |34407 |19885 |16845 |
+ROW |34408 |19886 |16846 |
+ROW |34409 |19887 |16847 |
+ROW |34410 |19888 |16848 |
+ROW |34411 |19889 |16849 |
+ROW |34412 |19890 |16850 |
+ROW |34413 |19891 |16851 |
+ROW |34414 |19892 |16852 |
+ROW |34415 |19893 |16853 |
+ROW |34416 |19894 |16854 |
+ROW |34417 |19895 |16855 |
+ROW |34418 |19896 |16856 |
+ROW |34419 |19897 |16857 |
+ROW |34420 |19898 |16858 |
+ROW |34421 |19899 |16860 |
+ROW |34422 |19900 |16861 |
+ROW |34423 |19901 |16862 |
+ROW |34424 |15698 |16866 |
+ROW |34425 |19902 |16866 |
+ROW |34426 |19903 |16866 |
+ROW |34427 |16028 |16867 |
+ROW |34428 |19904 |16867 |
+ROW |34429 |19905 |16867 |
+ROW |34430 |17857 |17858 |
+ROW |34431 |17863 |17864 |
+ROW |34432 |14318 |14319 |
+ROW |34433 |17314 |15717 |
+ROW |34434 |17313 |15717 |
+ROW |34435 |17313 |17314 |
+ROW |34436 |17312 |15717 |
+ROW |34437 |17311 |15717 |
+ROW |34438 |17311 |17312 |
+ROW |34439 |17317 |17318 |
+ROW |34440 |17315 |17316 |
+ROW |34441 |17321 |17322 |
+ROW |34442 |17319 |17320 |
+ROW |34443 |15721 |15720 |
+ROW |34444 |15394 |15393 |
+ROW |34445 |15392 |15391 |
+ROW |34446 |17194 |14339 |
+ROW |34447 |15382 |15381 |
+ROW |34448 |15380 |15379 |
+ROW |34449 |16504 |16505 |
+ROW |34450 |14372 |14373 |
+ROW |34451 |15386 |15385 |
+ROW |34452 |15384 |15383 |
+ROW |34453 |14380 |14381 |
+ROW |34454 |18024 |18023 |
+ROW |34455 |18025 |18024 |
+ROW |34456 |18025 |18023 |
+ROW |34457 |18028 |18027 |
+ROW |34458 |18034 |18033 |
+ROW |34459 |19906 |18041 |
+ROW |34460 |19907 |18041 |
+ROW |34461 |19908 |18041 |
+ROW |34462 |18039 |18041 |
+ROW |34463 |18040 |18041 |
+ROW |34464 |18044 |19909 |
+ROW |34465 |18046 |18045 |
+ROW |34466 |18048 |18047 |
+ROW |34467 |18051 |18050 |
+ROW |34468 |18052 |18051 |
+ROW |34469 |18052 |18050 |
+ROW |34470 |18055 |18054 |
+ROW |34471 |18061 |18060 |
+ROW |34472 |19910 |18068 |
+ROW |34473 |19911 |18068 |
+ROW |34474 |19912 |18068 |
+ROW |34475 |18066 |18068 |
+ROW |34476 |18067 |18068 |
+ROW |34477 |18071 |19913 |
+ROW |34478 |18073 |18072 |
+ROW |34479 |18075 |18074 |
+ROW |34480 |18078 |18077 |
+ROW |34481 |18079 |18078 |
+ROW |34482 |18079 |18077 |
+ROW |34483 |18082 |18081 |
+ROW |34484 |18088 |18087 |
+ROW |34485 |19914 |18095 |
+ROW |34486 |19915 |18095 |
+ROW |34487 |19916 |18095 |
+ROW |34488 |18093 |18095 |
+ROW |34489 |18094 |18095 |
+ROW |34490 |18098 |19917 |
+ROW |34491 |18100 |18099 |
+ROW |34492 |18102 |18101 |
+ROW |34493 |18105 |18104 |
+ROW |34494 |18106 |18105 |
+ROW |34495 |18106 |18104 |
+ROW |34496 |18109 |18108 |
+ROW |34497 |18115 |18114 |
+ROW |34498 |19918 |18122 |
+ROW |34499 |19919 |18122 |
+ROW |34500 |19920 |18122 |
+ROW |34501 |18120 |18122 |
+ROW |34502 |18121 |18122 |
+ROW |34503 |18125 |19921 |
+ROW |34504 |18127 |18126 |
+ROW |34505 |18129 |18128 |
+ROW |34506 |18132 |18131 |
+ROW |34507 |18133 |18132 |
+ROW |34508 |18133 |18131 |
+ROW |34509 |18136 |18135 |
+ROW |34510 |18142 |18141 |
+ROW |34511 |19922 |18149 |
+ROW |34512 |19923 |18149 |
+ROW |34513 |19924 |18149 |
+ROW |34514 |18147 |18149 |
+ROW |34515 |18148 |18149 |
+ROW |34516 |18152 |19925 |
+ROW |34517 |18154 |18153 |
+ROW |34518 |18156 |18155 |
+ROW |34519 |15347 |15346 |
+ROW |34520 |15345 |15344 |
+ROW |34521 |17196 |17195 |
+ROW |34522 |15363 |15360 |
+ROW |34523 |15364 |15361 |
+ROW |34524 |15365 |15362 |
+ROW |34525 |15357 |15354 |
+ROW |34526 |15358 |15355 |
+ROW |34527 |15359 |15356 |
+ROW |34528 |17200 |17197 |
+ROW |34529 |17201 |17198 |
+ROW |34530 |17202 |17199 |
+ROW |34531 |15334 |15333 |
+ROW |34532 |15332 |15331 |
+ROW |34533 |14460 |14461 |
+ROW |34534 |14476 |14477 |
+ROW |34535 |14495 |14496 |
+ROW |34536 |14511 |17203 |
+ROW |34537 |19692 |19691 |
+ROW |34538 |19694 |19695 |
+ROW |34539 |14551 |14552 |
+ROW |34540 |15374 |15373 |
+ROW |34541 |15376 |15375 |
+ROW |34542 |14914 |14915 |
+ROW |34543 |14589 |14590 |
+ROW |34544 |15338 |15337 |
+ROW |34545 |17205 |17204 |
+ROW |34546 |14624 |14625 |
+ROW |34547 |18159 |18158 |
+ROW |34548 |18160 |18159 |
+ROW |34549 |18160 |18158 |
+ROW |34550 |18163 |18164 |
+ROW |34551 |18164 |18158 |
+ROW |34552 |18166 |18169 |
+ROW |34553 |19696 |18169 |
+ROW |34554 |19697 |18169 |
+ROW |34555 |18171 |18172 |
+ROW |34556 |18175 |18174 |
+ROW |34557 |14664 |14665 |
+ROW |34558 |17207 |17208 |
+ROW |34559 |16547 |16546 |
+ROW |34560 |17323 |17324 |
+ROW |34561 |17325 |17326 |
+ROW |34562 |17376 |17377 |
+ROW |34563 |17374 |17375 |
+ROW |34564 |17380 |17381 |
+ROW |34565 |17378 |17379 |
+ROW |34566 |17382 |17383 |
+ROW |34567 |17384 |17385 |
+ROW |34568 |17434 |17435 |
+ROW |34569 |17432 |17433 |
+ROW |34570 |17438 |17439 |
+ROW |34571 |17436 |17437 |
+ROW |34572 |17440 |17441 |
+ROW |34573 |17442 |17443 |
+ROW |34574 |17478 |17479 |
+ROW |34575 |17476 |17477 |
+ROW |34576 |17482 |17483 |
+ROW |34577 |17480 |17481 |
+ROW |34578 |17484 |17485 |
+ROW |34579 |17502 |17503 |
+ROW |34580 |17500 |17501 |
+ROW |34581 |17504 |17505 |
+ROW |34582 |17567 |17568 |
+ROW |34583 |17565 |17566 |
+ROW |34584 |17571 |17572 |
+ROW |34585 |17569 |17570 |
+ROW |34586 |17573 |17574 |
+ROW |34587 |17608 |17609 |
+ROW |34588 |17606 |17607 |
+ROW |34589 |17612 |17613 |
+ROW |34590 |17610 |17611 |
+ROW |34591 |17647 |17648 |
+ROW |34592 |17645 |17646 |
+ROW |34593 |17651 |17652 |
+ROW |34594 |17649 |17650 |
+ROW |34595 |17653 |17654 |
+ROW |34596 |17655 |17656 |
+ROW |34597 |17212 |17211 |
+ROW |34598 |16551 |16552 |
+ROW |34599 |17888 |17890 |
+ROW |34600 |17891 |17893 |
+ROW |34601 |17894 |17896 |
+ROW |34602 |17888 |19699 |
+ROW |34603 |17891 |19700 |
+ROW |34604 |17894 |19701 |
+ROW |34605 |16031 |16563 |
+ROW |34606 |16045 |16564 |
+ROW |34607 |16046 |16565 |
+ROW |34608 |16039 |16040 |
+ROW |34609 |16061 |16063 |
+ROW |34610 |16062 |16064 |
+ROW |34611 |16042 |16579 |
+ROW |34612 |16067 |16580 |
+ROW |34613 |16068 |16581 |
+ROW |34614 |16041 |16042 |
+ROW |34615 |16065 |16067 |
+ROW |34616 |16066 |16068 |
+ROW |34617 |16041 |16579 |
+ROW |34618 |16065 |16580 |
+ROW |34619 |16066 |16581 |
+ROW |34620 |17890 |19699 |
+ROW |34621 |17893 |19700 |
+ROW |34622 |17896 |19701 |
+ROW |34623 |16070 |16069 |
+ROW |34624 |16072 |16071 |
+ROW |34625 |19950 |16994 |
+ROW |34626 |19951 |16994 |
+ROW |34627 |19702 |16994 |
+ROW |34628 |16079 |16077 |
+ROW |34629 |16080 |16078 |
+ROW |34630 |16083 |16081 |
+ROW |34631 |16084 |16082 |
+ROW |34632 |19952 |16997 |
+ROW |34633 |19954 |16998 |
+ROW |34634 |19953 |16997 |
+ROW |34635 |19955 |16998 |
+ROW |34636 |19703 |16997 |
+ROW |34637 |19704 |16998 |
+ROW |34638 |17900 |17902 |
+ROW |34639 |17903 |17905 |
+ROW |34640 |17900 |19705 |
+ROW |34641 |17903 |19706 |
+ROW |34642 |16097 |16569 |
+ROW |34643 |16110 |16570 |
+ROW |34644 |16105 |16106 |
+ROW |34645 |16118 |16119 |
+ROW |34646 |16108 |16582 |
+ROW |34647 |16121 |16583 |
+ROW |34648 |16107 |16108 |
+ROW |34649 |16120 |16121 |
+ROW |34650 |16107 |16582 |
+ROW |34651 |16120 |16583 |
+ROW |34652 |17902 |19705 |
+ROW |34653 |17905 |19706 |
+ROW |34654 |16123 |16122 |
+ROW |34655 |16125 |16124 |
+ROW |34656 |19956 |17002 |
+ROW |34657 |19957 |17002 |
+ROW |34658 |19707 |17002 |
+ROW |34659 |16131 |16130 |
+ROW |34660 |16133 |16132 |
+ROW |34661 |19958 |17004 |
+ROW |34662 |19959 |17004 |
+ROW |34663 |19708 |17004 |
+ROW |34664 |17908 |17910 |
+ROW |34665 |17908 |19709 |
+ROW |34666 |16141 |16142 |
+ROW |34667 |16146 |16573 |
+ROW |34668 |16143 |16584 |
+ROW |34669 |17910 |19709 |
+ROW |34670 |16152 |16883 |
+ROW |34671 |16153 |16883 |
+ROW |34672 |19710 |16883 |
+ROW |34673 |19711 |16883 |
+ROW |34674 |16156 |16155 |
+ROW |34675 |16158 |16157 |
+ROW |34676 |17913 |17915 |
+ROW |34677 |17916 |17918 |
+ROW |34678 |17913 |19741 |
+ROW |34679 |17916 |19742 |
+ROW |34680 |17915 |19741 |
+ROW |34681 |17918 |19742 |
+ROW |34682 |16009 |16008 |
+ROW |34683 |16011 |16010 |
+ROW |34684 |16014 |16013 |
+ROW |34685 |16016 |16015 |
+ROW |34686 |17005 |16160 |
+ROW |34687 |17007 |16171 |
+ROW |34688 |17919 |17920 |
+ROW |34689 |17921 |17922 |
+ROW |34690 |16161 |16160 |
+ROW |34691 |16172 |16171 |
+ROW |34692 |16162 |16161 |
+ROW |34693 |16173 |16172 |
+ROW |34694 |16162 |16160 |
+ROW |34695 |16173 |16171 |
+ROW |34696 |16166 |17920 |
+ROW |34697 |16177 |17922 |
+ROW |34698 |16167 |17920 |
+ROW |34699 |16178 |17922 |
+ROW |34700 |16183 |16182 |
+ROW |34701 |19663 |19666 |
+ROW |34702 |19664 |19666 |
+ROW |34703 |19665 |19666 |
+ROW |34704 |19712 |17662 |
+ROW |34705 |19712 |17661 |
+ROW |34706 |16190 |16189 |
+ROW |34707 |19667 |19670 |
+ROW |34708 |19668 |19670 |
+ROW |34709 |19669 |19670 |
+ROW |34710 |19713 |17664 |
+ROW |34711 |19713 |17663 |
+ROW |34712 |17011 |16209 |
+ROW |34713 |17013 |16220 |
+ROW |34714 |17927 |17928 |
+ROW |34715 |17929 |17930 |
+ROW |34716 |16210 |16209 |
+ROW |34717 |16221 |16220 |
+ROW |34718 |16211 |16210 |
+ROW |34719 |16222 |16221 |
+ROW |34720 |16211 |16209 |
+ROW |34721 |16222 |16220 |
+ROW |34722 |16215 |17928 |
+ROW |34723 |16226 |17930 |
+ROW |34724 |16216 |17928 |
+ROW |34725 |16227 |17930 |
+ROW |34726 |16232 |16231 |
+ROW |34727 |19671 |19674 |
+ROW |34728 |19672 |19674 |
+ROW |34729 |19673 |19674 |
+ROW |34730 |19714 |17666 |
+ROW |34731 |19714 |17665 |
+ROW |34732 |16239 |16238 |
+ROW |34733 |19675 |19678 |
+ROW |34734 |19676 |19678 |
+ROW |34735 |19677 |19678 |
+ROW |34736 |19715 |17668 |
+ROW |34737 |19715 |17667 |
+ROW |34738 |18256 |18257 |
+ROW |34739 |18292 |18293 |
+ROW |34740 |18328 |18329 |
+ROW |34741 |18364 |18365 |
+ROW |34742 |18400 |18401 |
+ROW |34743 |18436 |18437 |
+ROW |34744 |18472 |18473 |
+ROW |34745 |18199 |18200 |
+ROW |34746 |18511 |18512 |
+ROW |34747 |18547 |18548 |
+ROW |34748 |18583 |18584 |
+ROW |34749 |16772 |16773 |
+ROW |34750 |16771 |16772 |
+ROW |34751 |16771 |16773 |
+ROW |34752 |16769 |16770 |
+ROW |34753 |16768 |16769 |
+ROW |34754 |16768 |16770 |
+ROW |34755 |18966 |18967 |
+ROW |34756 |18969 |18968 |
+ROW |34757 |18971 |18970 |
+ROW |34758 |18972 |18970 |
+ROW |34759 |18972 |18971 |
+ROW |34760 |18974 |18973 |
+ROW |34761 |18975 |18976 |
+ROW |34762 |18979 |18978 |
+ROW |34763 |18981 |18980 |
+ROW |34764 |18982 |18983 |
+ROW |34765 |18984 |18985 |
+ROW |34766 |18986 |18987 |
+ROW |34767 |18988 |18989 |
+ROW |34768 |18990 |18991 |
+ROW |34769 |18994 |18993 |
+ROW |34770 |16488 |16487 |
+ROW |34771 |16485 |16484 |
+ROW |34772 |16486 |16484 |
+ROW |34773 |16486 |16485 |
+ROW |34774 |16480 |16479 |
+ROW |34775 |16482 |16481 |
+ROW |34776 |16475 |16474 |
+ROW |34777 |16471 |16472 |
+ROW |34778 |16468 |16469 |
+ROW |34779 |16459 |16460 |
+ROW |34780 |16462 |16463 |
+ROW |34781 |16465 |16466 |
+ROW |34782 |16477 |16476 |
+ROW |34783 |19024 |19023 |
+ROW |34784 |19029 |19028 |
+ROW |34785 |19030 |19028 |
+ROW |34786 |19030 |19029 |
+ROW |34787 |19032 |19031 |
+ROW |34788 |19033 |19032 |
+ROW |34789 |19033 |19031 |
+ROW |34790 |19035 |19034 |
+ROW |34791 |19037 |19038 |
+ROW |34792 |19039 |19038 |
+ROW |34793 |19041 |19040 |
+ROW |34794 |19043 |19042 |
+ROW |34795 |19044 |19042 |
+ROW |34796 |19044 |19043 |
+ROW |34797 |19046 |19045 |
+ROW |34798 |19075 |19074 |
+ROW |34799 |19080 |19079 |
+ROW |34800 |19081 |19079 |
+ROW |34801 |19081 |19080 |
+ROW |34802 |19083 |19082 |
+ROW |34803 |19084 |19083 |
+ROW |34804 |19084 |19082 |
+ROW |34805 |19086 |19085 |
+ROW |34806 |19088 |19089 |
+ROW |34807 |19090 |19089 |
+ROW |34808 |19092 |19091 |
+ROW |34809 |19094 |19093 |
+ROW |34810 |19095 |19093 |
+ROW |34811 |19095 |19094 |
+ROW |34812 |19097 |19096 |
+ROW |34813 |19126 |19125 |
+ROW |34814 |19131 |19130 |
+ROW |34815 |19132 |19130 |
+ROW |34816 |19132 |19131 |
+ROW |34817 |19134 |19133 |
+ROW |34818 |19135 |19134 |
+ROW |34819 |19135 |19133 |
+ROW |34820 |19137 |19136 |
+ROW |34821 |19139 |19140 |
+ROW |34822 |19141 |19140 |
+ROW |34823 |19143 |19142 |
+ROW |34824 |19145 |19144 |
+ROW |34825 |19146 |19144 |
+ROW |34826 |19146 |19145 |
+ROW |34827 |19148 |19147 |
+ROW |34828 |19177 |19176 |
+ROW |34829 |19182 |19181 |
+ROW |34830 |19183 |19181 |
+ROW |34831 |19183 |19182 |
+ROW |34832 |19185 |19184 |
+ROW |34833 |19186 |19185 |
+ROW |34834 |19186 |19184 |
+ROW |34835 |19188 |19187 |
+ROW |34836 |19190 |19191 |
+ROW |34837 |19192 |19191 |
+ROW |34838 |19194 |19193 |
+ROW |34839 |19196 |19195 |
+ROW |34840 |19197 |19195 |
+ROW |34841 |19197 |19196 |
+ROW |34842 |19199 |19198 |
+ROW |34843 |15729 |15728 |
+ROW |34844 |15730 |15728 |
+ROW |34845 |15730 |15729 |
+ROW |34846 |15752 |15754 |
+ROW |34847 |15753 |15754 |
+ROW |34848 |15753 |15752 |
+ROW |34849 |15742 |15741 |
+ROW |34850 |15750 |15749 |
+ROW |34851 |15751 |15750 |
+ROW |34852 |15751 |15749 |
+ROW |34853 |15746 |15743 |
+ROW |34854 |15744 |15743 |
+ROW |34855 |15740 |15739 |
+ROW |34856 |17214 |17213 |
+ROW |34857 |17216 |17215 |
+ROW |34858 |15748 |15747 |
+ROW |34859 |19203 |19202 |
+ROW |34860 |19207 |19206 |
+ROW |34861 |19209 |19208 |
+ROW |34862 |19210 |19208 |
+ROW |34863 |19210 |19209 |
+ROW |34864 |19212 |19211 |
+ROW |34865 |19214 |19213 |
+ROW |34866 |19216 |19215 |
+ROW |34867 |19218 |19219 |
+ROW |34868 |19220 |19219 |
+ROW |34869 |19222 |19221 |
+ROW |34870 |19245 |19244 |
+ROW |34871 |19249 |19248 |
+ROW |34872 |19253 |19252 |
+ROW |34873 |19255 |19254 |
+ROW |34874 |19256 |19254 |
+ROW |34875 |19256 |19255 |
+ROW |34876 |19258 |19257 |
+ROW |34877 |19260 |19259 |
+ROW |34878 |19262 |19261 |
+ROW |34879 |19264 |19265 |
+ROW |34880 |19266 |19265 |
+ROW |34881 |19268 |19267 |
+ROW |34882 |19291 |19290 |
+ROW |34883 |19295 |19294 |
+ROW |34884 |19299 |19298 |
+ROW |34885 |19301 |19300 |
+ROW |34886 |19302 |19300 |
+ROW |34887 |19302 |19301 |
+ROW |34888 |19304 |19303 |
+ROW |34889 |19306 |19305 |
+ROW |34890 |19308 |19307 |
+ROW |34891 |19310 |19311 |
+ROW |34892 |19312 |19311 |
+ROW |34893 |19314 |19313 |
+ROW |34894 |19337 |19336 |
+ROW |34895 |19341 |19340 |
+ROW |34896 |19345 |19344 |
+ROW |34897 |19347 |19346 |
+ROW |34898 |19348 |19346 |
+ROW |34899 |19348 |19347 |
+ROW |34900 |19350 |19349 |
+ROW |34901 |19352 |19351 |
+ROW |34902 |19354 |19353 |
+ROW |34903 |19356 |19357 |
+ROW |34904 |19358 |19357 |
+ROW |34905 |19360 |19359 |
+ROW |34906 |19383 |19382 |
+ROW |34907 |16440 |16439 |
+ROW |34908 |17768 |15790 |
+ROW |34909 |17769 |15787 |
+ROW |34910 |17770 |15787 |
+ROW |34911 |17770 |17769 |
+ROW |34912 |15786 |15785 |
+ROW |34913 |15784 |15783 |
+ROW |34914 |15794 |15792 |
+ROW |34915 |15793 |15792 |
+ROW |34916 |15782 |15781 |
+ROW |34917 |15797 |15796 |
+ROW |34918 |15825 |15824 |
+ROW |34919 |15826 |15824 |
+ROW |34920 |15826 |15825 |
+ROW |34921 |15828 |15829 |
+ROW |34922 |15831 |15832 |
+ROW |34923 |15834 |15835 |
+ROW |34924 |15845 |15846 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -15778,10 +15794,6 @@ ROW |18361 |29210 |16070 |last |
ROW |18362 |29212 |16070 |timeleft |1h,,100 |
ROW |18363 |29213 |16071 |min |5m |
ROW |18364 |29213 |16072 |min |5m |
-ROW |18372 |29223 |16076 |change | |
-ROW |18373 |29223 |16076 |last | |
-ROW |18374 |29222 |16076 |last | |
-ROW |18375 |29223 |16076 |prev | |
ROW |18376 |29226 |16077 |last | |
ROW |18377 |29225 |16077 |last | |
ROW |18378 |29224 |16077 |last | |
@@ -15802,14 +15814,6 @@ ROW |18392 |29227 |16081 |min |5m
ROW |18393 |29241 |16082 |min |5m |
ROW |18394 |29227 |16083 |min |5m |
ROW |18395 |29241 |16084 |min |5m |
-ROW |18410 |29237 |16091 |change | |
-ROW |18411 |29237 |16091 |last | |
-ROW |18412 |29236 |16091 |last | |
-ROW |18413 |29237 |16091 |prev | |
-ROW |18414 |29251 |16092 |change | |
-ROW |18415 |29251 |16092 |last | |
-ROW |18416 |29250 |16092 |last | |
-ROW |18417 |29251 |16092 |prev | |
ROW |18423 |29347 |16097 |min |5m |
ROW |18429 |29296 |16101 |last | |
ROW |18430 |29298 |16102 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
@@ -15840,10 +15844,6 @@ ROW |18465 |29355 |16123 |last |
ROW |18466 |29357 |16123 |timeleft |1h,,100 |
ROW |18467 |29358 |16124 |min |5m |
ROW |18468 |29358 |16125 |min |5m |
-ROW |18476 |29368 |16129 |change | |
-ROW |18477 |29368 |16129 |last | |
-ROW |18478 |29367 |16129 |last | |
-ROW |18479 |29368 |16129 |prev | |
ROW |18480 |29371 |16130 |last | |
ROW |18481 |29370 |16130 |last | |
ROW |18482 |29369 |16130 |last | |
@@ -15854,10 +15854,6 @@ ROW |18486 |29369 |16131 |last |
ROW |18487 |29371 |16131 |timeleft |1h,,100 |
ROW |18488 |29372 |16132 |min |5m |
ROW |18489 |29372 |16133 |min |5m |
-ROW |18497 |29382 |16137 |change | |
-ROW |18498 |29382 |16137 |last | |
-ROW |18499 |29381 |16137 |last | |
-ROW |18500 |29382 |16137 |prev | |
ROW |18501 |29395 |16138 |nodata |30m |
ROW |18502 |29398 |16139 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
ROW |18505 |29424 |16141 |last | |
@@ -16442,7 +16438,6 @@ ROW |19629 |30705 |16779 |last |
ROW |19630 |30705 |16780 |last | |
ROW |19631 |30712 |16781 |min |10m |
ROW |19632 |30699 |16782 |last | |
-ROW |19633 |30696 |16783 |last | |
ROW |19634 |30692 |16784 |min |5m |
ROW |19635 |30690 |16785 |last | |
ROW |19636 |30715 |16786 |min |5m |
@@ -16693,8 +16688,6 @@ ROW |20081 |31518 |17077 |min |{$JMX.CPU.LOAD.TIME}
ROW |20082 |31519 |17078 |nodata |5m |
ROW |20083 |31520 |17079 |str |Server |
ROW |20084 |31575 |17080 |last | |
-ROW |20085 |31581 |17081 |last | |
-ROW |20086 |31581 |17082 |last | |
ROW |20087 |31580 |17083 |last | |
ROW |20088 |31580 |17084 |last | |
ROW |20096 |22942 |17089 |last | |
@@ -17551,29 +17544,8 @@ ROW |21291 |32816 |17960 |min |{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIM
ROW |21292 |32824 |17961 |min |{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME} |
ROW |21293 |32825 |17962 |last | |
ROW |21294 |32826 |17963 |last | |
-ROW |21299 |32829 |17965 |nodata |30m |
-ROW |21300 |32831 |17966 |min |5m |
-ROW |21301 |32832 |17967 |last | |
ROW |21302 |32836 |17968 |last | |
-ROW |21303 |32877 |17969 |last | |
-ROW |21304 |32874 |17970 |last | |
-ROW |21305 |32869 |17971 |diff | |
-ROW |21306 |32869 |17971 |strlen | |
-ROW |21307 |32870 |17972 |min |5m |
-ROW |21308 |32864 |17973 |max |5m |
-ROW |21309 |32865 |17974 |last | |
-ROW |21310 |32834 |17975 |nodata |30m |
-ROW |21311 |32884 |17976 |last | |
-ROW |21312 |32885 |17977 |last | |
-ROW |21313 |32886 |17978 |last | |
-ROW |21314 |32887 |17979 |last | |
-ROW |21315 |32888 |17980 |last | |
-ROW |21316 |32889 |17981 |last | |
-ROW |21317 |32890 |17982 |last | |
-ROW |21318 |32912 |17983 |min |5m |
ROW |21319 |32926 |17984 |nodata |30m |
-ROW |21320 |32927 |17985 |min |5m |
-ROW |21321 |32931 |17986 |last | |
ROW |21322 |32928 |17987 |nodata |30m |
ROW |21323 |32968 |17988 |last | |
ROW |21324 |32965 |17989 |last | |
@@ -17589,7 +17561,6 @@ ROW |21333 |32979 |17997 |last |
ROW |21334 |32980 |17998 |last | |
ROW |21335 |32981 |17999 |last | |
ROW |21336 |32982 |18000 |last | |
-ROW |21337 |33004 |18001 |min |5m |
ROW |21338 |33054 |18002 |min |5m |
ROW |21339 |33053 |18002 |last | |
ROW |21340 |33054 |18002 |last | |
@@ -19917,6 +19888,71 @@ ROW |23938 |33395 |19923 |last |
ROW |23939 |33394 |19924 |avg |15m |
ROW |23940 |33395 |19924 |last | |
ROW |23941 |33399 |19925 |last | |
+ROW |23942 |37005 |19926 |last | |
+ROW |23943 |37006 |19927 |nodata |30m |
+ROW |23944 |37008 |19928 |min |5m |
+ROW |23945 |37009 |19929 |last | |
+ROW |23946 |37050 |19930 |last | |
+ROW |23947 |37047 |19931 |last | |
+ROW |23948 |37042 |19932 |diff | |
+ROW |23949 |37042 |19932 |strlen | |
+ROW |23950 |37043 |19933 |min |5m |
+ROW |23951 |37041 |19934 |max |5m |
+ROW |23952 |37038 |19935 |last | |
+ROW |23953 |37011 |19936 |nodata |30m |
+ROW |23954 |37057 |19937 |last | |
+ROW |23955 |37058 |19938 |last | |
+ROW |23956 |37059 |19939 |last | |
+ROW |23957 |37060 |19940 |last | |
+ROW |23958 |37061 |19941 |last | |
+ROW |23959 |37062 |19942 |last | |
+ROW |23960 |37063 |19943 |last | |
+ROW |23961 |37097 |19944 |min |5m |
+ROW |23962 |37098 |19945 |min |5m |
+ROW |23963 |37099 |19946 |last | |
+ROW |23964 |33004 |19947 |min |5m |
+ROW |23965 |37102 |19948 |str |"Red" |
+ROW |23966 |37102 |19949 |str |"Yellow" |
+ROW |23967 |37103 |19950 |change | |
+ROW |23968 |37103 |19950 |last | |
+ROW |23969 |29223 |19950 |last | |
+ROW |23970 |29222 |19950 |last | |
+ROW |23971 |37103 |19950 |prev | |
+ROW |23972 |29216 |19951 |avg |15m |
+ROW |23973 |37103 |19951 |last | |
+ROW |23974 |29217 |19951 |avg |15m |
+ROW |23975 |37104 |19952 |change | |
+ROW |23976 |37104 |19952 |last | |
+ROW |23977 |29237 |19952 |last | |
+ROW |23978 |29236 |19952 |last | |
+ROW |23979 |37104 |19952 |prev | |
+ROW |23980 |29230 |19953 |avg |15m |
+ROW |23981 |37104 |19953 |last | |
+ROW |23982 |29231 |19953 |avg |15m |
+ROW |23983 |37105 |19954 |change | |
+ROW |23984 |37105 |19954 |last | |
+ROW |23985 |29251 |19954 |last | |
+ROW |23986 |29250 |19954 |last | |
+ROW |23987 |37105 |19954 |prev | |
+ROW |23988 |29244 |19955 |avg |15m |
+ROW |23989 |37105 |19955 |last | |
+ROW |23990 |29245 |19955 |avg |15m |
+ROW |23991 |37106 |19956 |change | |
+ROW |23992 |37106 |19956 |last | |
+ROW |23993 |29368 |19956 |last | |
+ROW |23994 |29367 |19956 |last | |
+ROW |23995 |37106 |19956 |prev | |
+ROW |23996 |29361 |19957 |avg |15m |
+ROW |23997 |37106 |19957 |last | |
+ROW |23998 |29362 |19957 |avg |15m |
+ROW |23999 |37107 |19958 |change | |
+ROW |24000 |37107 |19958 |last | |
+ROW |24001 |29382 |19958 |last | |
+ROW |24002 |29381 |19958 |last | |
+ROW |24003 |37107 |19958 |prev | |
+ROW |24004 |29375 |19959 |avg |15m |
+ROW |24005 |37107 |19959 |last | |
+ROW |24006 |29376 |19959 |avg |15m |
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|discover|
@@ -20383,22 +20419,7 @@ ROW |1408 |Node {#NODE}: Node I/O
ROW |1409 |Node {#NODE}: Node traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1410 |Pool {#NAME}: Capacity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1411 |OceanStor 5300 V5: Capacity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1412 |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 |1413 |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 |1414 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1415 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1416 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1417 |RabbitMQ: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1418 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1419 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1420 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1421 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1422 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1423 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1424 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1425 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1426 |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 |1427 |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 |1428 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1429 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1430 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
@@ -20845,6 +20866,21 @@ ROW |1905 |PostgreSQL replication lag
ROW |1906 |PostgreSQL transactions |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
ROW |1907 |PostgreSQL uptime |900 |200 |0 |100 |NULL |1 |0 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
ROW |1908 |PostgreSQL WAL |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
+ROW |1909 |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 |1910 |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 |1911 |RabbitMQ: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1912 |RabbitMQ: Disk free |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1913 |RabbitMQ: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1914 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1915 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1916 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1917 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1918 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1919 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1920 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1921 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1922 |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 |1923 |RabbitMQ: Queue [{#VHOST}][{#QUEUE}]: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
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|discover|
@@ -21382,2570 +21418,2570 @@ ROW |71198 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
ROW |71199 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
ROW |71200 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
ROW |71201 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
-ROW |77359 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77360 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77361 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
-ROW |77362 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77363 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
-ROW |77364 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77365 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
-ROW |77366 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77367 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
-ROW |77368 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77369 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
-ROW |77370 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
-ROW |77371 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77372 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |77373 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |77374 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |77375 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77376 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77377 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |77378 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77379 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77380 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |77381 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |77382 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |77383 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77384 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77385 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77386 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |77387 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |77388 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |77389 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |77390 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77391 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |77392 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77393 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |77394 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |77395 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |77396 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77397 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77398 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77399 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |77400 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |77401 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |77402 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77403 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77404 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77405 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |77406 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |77407 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |77408 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |77409 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77410 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |77411 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77412 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |77413 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77414 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
-ROW |77415 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77416 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
-ROW |77417 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77418 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
-ROW |77419 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
-ROW |77420 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77421 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
-ROW |77422 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77423 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
-ROW |77424 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
-ROW |77425 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
-ROW |77426 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77427 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
-ROW |77428 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
-ROW |77429 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
-ROW |77430 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77431 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77432 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77433 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
-ROW |77434 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
-ROW |77435 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77436 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |77437 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |77438 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77439 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |77440 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77441 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |77442 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |77443 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |77444 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |77445 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |77446 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77447 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |77448 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77449 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |77450 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |77451 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |77452 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77453 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77454 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |77455 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77456 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77457 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |77458 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |77459 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |77460 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77461 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |77462 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |77463 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |77464 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77465 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |77466 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77467 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |77468 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |77469 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |77470 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77471 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |77472 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |77473 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |77474 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77475 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |77476 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |77477 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |77478 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77479 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |77480 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |77481 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |77482 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77483 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77484 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77485 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77486 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |77487 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77488 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |77489 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77490 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |77491 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |77492 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77493 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |77494 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |77495 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77496 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |77497 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77498 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |77499 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |77500 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |77501 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77502 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |77503 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77504 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
-ROW |77505 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
-ROW |77506 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
-ROW |77507 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
-ROW |77508 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
-ROW |77509 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77510 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77511 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77512 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
-ROW |77513 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
-ROW |77514 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
-ROW |77515 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77516 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
-ROW |77517 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
-ROW |77518 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
-ROW |77519 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
-ROW |77520 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
-ROW |77521 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77522 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77523 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77524 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |77525 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |77526 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |77527 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77528 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |77529 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |77530 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77531 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |77532 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |77533 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |77534 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77535 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77536 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77537 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |77538 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |77539 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77540 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |77541 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |77542 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77543 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |77544 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |77545 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77546 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |77547 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |77548 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77549 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |77550 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |77551 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77552 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |77553 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |77554 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77555 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |77556 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |77557 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77558 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |77559 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77560 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |77561 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |77562 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
-ROW |77563 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
-ROW |77564 |1709 |35805 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77565 |1709 |35804 |5 |1 |2774A4|0 |2 |0 |
-ROW |77566 |1710 |35789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77567 |1710 |35806 |0 |1 |2774A4|0 |2 |0 |
-ROW |77568 |1711 |35800 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77569 |1711 |35799 |0 |1 |2774A4|0 |2 |0 |
-ROW |77570 |1711 |35798 |0 |2 |F63100|0 |2 |0 |
-ROW |77571 |1711 |35796 |0 |3 |A54F10|0 |2 |0 |
-ROW |77572 |1711 |35788 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77573 |1712 |35810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77574 |1712 |35809 |0 |1 |2774A4|0 |2 |0 |
-ROW |77575 |1713 |35807 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77576 |1713 |35808 |5 |1 |2774A4|0 |2 |0 |
-ROW |77577 |1714 |35817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77578 |1714 |35816 |0 |1 |2774A4|0 |2 |0 |
-ROW |77579 |1715 |35811 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77580 |1715 |35812 |0 |1 |2774A4|0 |2 |0 |
-ROW |77581 |1715 |35813 |0 |2 |F63100|0 |2 |0 |
-ROW |77582 |1715 |35814 |0 |3 |A54F10|0 |2 |0 |
-ROW |77583 |1715 |35815 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77584 |1716 |35842 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77585 |1716 |35841 |5 |1 |2774A4|0 |2 |0 |
-ROW |77586 |1717 |35836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77587 |1717 |35835 |0 |1 |2774A4|0 |2 |0 |
-ROW |77588 |1717 |35834 |0 |2 |F63100|0 |2 |0 |
-ROW |77589 |1717 |35832 |0 |3 |A54F10|0 |2 |0 |
-ROW |77590 |1717 |35822 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77591 |1718 |35827 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77592 |1718 |35828 |0 |1 |2774A4|0 |2 |0 |
-ROW |77593 |1719 |35864 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77594 |1719 |35863 |5 |1 |2774A4|0 |2 |0 |
-ROW |77595 |1720 |35848 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77596 |1720 |35865 |0 |1 |2774A4|0 |2 |0 |
-ROW |77597 |1721 |35859 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77598 |1721 |35858 |0 |1 |2774A4|0 |2 |0 |
-ROW |77599 |1721 |35857 |0 |2 |F63100|0 |2 |0 |
-ROW |77600 |1721 |35855 |0 |3 |A54F10|0 |2 |0 |
-ROW |77601 |1721 |35847 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77602 |1722 |35869 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77603 |1722 |35868 |0 |1 |2774A4|0 |2 |0 |
-ROW |77604 |1723 |35866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77605 |1723 |35867 |5 |1 |2774A4|0 |2 |0 |
-ROW |77606 |1724 |35876 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77607 |1724 |35875 |0 |1 |2774A4|0 |2 |0 |
-ROW |77608 |1725 |35870 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77609 |1725 |35871 |0 |1 |2774A4|0 |2 |0 |
-ROW |77610 |1725 |35872 |0 |2 |F63100|0 |2 |0 |
-ROW |77611 |1725 |35873 |0 |3 |A54F10|0 |2 |0 |
-ROW |77612 |1725 |35874 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77613 |1726 |35901 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77614 |1726 |35900 |5 |1 |2774A4|0 |2 |0 |
-ROW |77615 |1727 |35895 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77616 |1727 |35894 |0 |1 |2774A4|0 |2 |0 |
-ROW |77617 |1727 |35893 |0 |2 |F63100|0 |2 |0 |
-ROW |77618 |1727 |35891 |0 |3 |A54F10|0 |2 |0 |
-ROW |77619 |1727 |35881 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77620 |1728 |35886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77621 |1728 |35887 |0 |1 |2774A4|0 |2 |0 |
-ROW |77622 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77623 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |77624 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77625 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |77626 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77627 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |77628 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |77629 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |77630 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77631 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77632 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77633 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |77634 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77635 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |77636 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77637 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |77638 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77639 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |77640 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |77641 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |77642 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77643 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77644 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77645 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |77646 |1866 |32071 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77647 |1866 |32102 |0 |1 |2774A4|0 |2 |0 |
-ROW |77648 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77649 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
-ROW |77650 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77651 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
-ROW |77652 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77653 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
-ROW |77654 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
-ROW |77655 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
-ROW |77656 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77657 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
-ROW |77658 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77659 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
-ROW |77660 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77661 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
-ROW |77662 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
-ROW |77663 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
-ROW |77664 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |77665 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77666 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77667 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
-ROW |77668 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
-ROW |77669 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
-ROW |77670 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
-ROW |77671 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
-ROW |77672 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77673 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
-ROW |77674 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
-ROW |77675 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
-ROW |77676 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |77677 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77678 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77679 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
-ROW |77680 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
-ROW |77681 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
-ROW |77682 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77683 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |77684 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |77685 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77686 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |77687 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |77688 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77689 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |77690 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |77691 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77692 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |77693 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77694 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |77695 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77696 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77697 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |77698 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |77699 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |77700 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77701 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |77702 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |77703 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77704 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |77705 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77706 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77707 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |77708 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |77709 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |77710 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77711 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |77712 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |77713 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77714 |1662 |34869 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77715 |1663 |34871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77716 |1663 |34870 |5 |1 |2774A4|0 |2 |0 |
-ROW |77717 |1663 |34872 |5 |2 |F63100|0 |2 |0 |
-ROW |77718 |1663 |34873 |5 |3 |A54F10|0 |2 |0 |
-ROW |77719 |1663 |34874 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |77720 |1664 |34880 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77721 |1665 |34882 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77722 |1665 |34881 |5 |1 |2774A4|0 |2 |0 |
-ROW |77723 |1665 |34883 |5 |2 |F63100|0 |2 |0 |
-ROW |77724 |1665 |34884 |5 |3 |A54F10|0 |2 |0 |
-ROW |77725 |1665 |34885 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |77726 |1666 |34903 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77727 |1666 |34902 |5 |1 |2774A4|0 |2 |0 |
-ROW |77728 |1666 |34901 |5 |2 |F63100|0 |2 |0 |
-ROW |77729 |1667 |34889 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77730 |1667 |34896 |5 |1 |2774A4|0 |2 |0 |
-ROW |77731 |1667 |34895 |5 |2 |F63100|0 |2 |0 |
-ROW |77732 |1667 |34894 |5 |3 |A54F10|0 |2 |0 |
-ROW |77733 |1667 |34893 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |77734 |1668 |34910 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77735 |1668 |34911 |5 |1 |2774A4|0 |2 |0 |
-ROW |77736 |1668 |34909 |5 |2 |F63100|0 |2 |0 |
-ROW |77737 |1669 |34913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77738 |1669 |34912 |5 |1 |2774A4|0 |2 |0 |
-ROW |77739 |1669 |34917 |5 |2 |F63100|0 |2 |0 |
-ROW |77740 |1669 |34915 |5 |3 |A54F10|0 |2 |0 |
-ROW |77741 |1669 |34914 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |77742 |1669 |34916 |5 |5 |6C59DC|0 |2 |0 |
-ROW |77743 |1669 |34918 |5 |6 |AC8C14|0 |2 |0 |
-ROW |77744 |1669 |34919 |5 |7 |611F27|0 |2 |0 |
-ROW |77745 |1670 |34925 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77746 |1670 |34926 |5 |1 |2774A4|0 |2 |0 |
-ROW |77747 |1670 |34927 |5 |2 |F63100|0 |2 |0 |
-ROW |77748 |1671 |34934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77749 |1671 |34935 |5 |1 |2774A4|0 |2 |0 |
-ROW |77750 |1671 |34936 |5 |2 |F63100|0 |2 |0 |
-ROW |77751 |1672 |34854 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77752 |1672 |34850 |5 |1 |2774A4|0 |2 |0 |
-ROW |77753 |1672 |34846 |5 |2 |F63100|0 |2 |0 |
-ROW |77754 |1672 |34845 |5 |3 |A54F10|0 |2 |0 |
-ROW |77755 |1673 |34852 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77756 |1674 |34848 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77757 |1674 |34849 |5 |1 |2774A4|0 |2 |0 |
-ROW |77758 |1674 |34847 |5 |2 |F63100|0 |2 |0 |
-ROW |77759 |1675 |34858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77760 |1867 |36852 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77761 |1867 |36853 |0 |1 |2774A4|0 |2 |0 |
-ROW |77762 |1867 |36851 |0 |2 |F63100|0 |2 |0 |
-ROW |77763 |1867 |36850 |0 |3 |A54F10|0 |2 |0 |
-ROW |77764 |1867 |36849 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77765 |1868 |36887 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77766 |1869 |36874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77767 |1869 |36854 |0 |1 |F63100|0 |2 |0 |
-ROW |77768 |1869 |36872 |0 |2 |2774A4|0 |2 |0 |
-ROW |77769 |1869 |36878 |0 |3 |A54F10|0 |2 |0 |
-ROW |77770 |1869 |36873 |0 |4 |6C59DC|1 |2 |0 |
-ROW |77771 |1869 |36867 |0 |5 |FC6EA3|1 |2 |0 |
-ROW |77772 |1869 |36871 |0 |6 |AC8C14|1 |2 |0 |
-ROW |77773 |1869 |36877 |0 |7 |611F27|1 |2 |0 |
-ROW |77774 |1870 |36870 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77775 |1870 |36859 |2 |1 |2774A4|0 |2 |0 |
-ROW |77776 |1870 |36864 |0 |2 |F63100|1 |2 |0 |
-ROW |77777 |1870 |36875 |0 |3 |A54F10|1 |2 |0 |
-ROW |77778 |1870 |36865 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |77779 |1870 |36876 |0 |5 |6C59DC|1 |2 |0 |
-ROW |77780 |1871 |36863 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77781 |1871 |36869 |0 |1 |F63100|0 |2 |0 |
-ROW |77782 |1871 |36861 |0 |2 |2774A4|0 |2 |0 |
-ROW |77783 |1871 |36866 |0 |3 |A54F10|0 |2 |0 |
-ROW |77784 |1871 |36862 |0 |4 |6C59DC|1 |2 |0 |
-ROW |77785 |1871 |36868 |0 |5 |FC6EA3|1 |2 |0 |
-ROW |77786 |1871 |36860 |0 |6 |AC8C14|1 |2 |0 |
-ROW |77787 |1871 |36855 |0 |7 |611F27|1 |2 |0 |
-ROW |77788 |1872 |36880 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77789 |1872 |36882 |5 |1 |2774A4|0 |2 |0 |
-ROW |77790 |1873 |36885 |0 |0 |969696|0 |9 |2 |
-ROW |77791 |1873 |36886 |0 |1 |C80000|0 |9 |0 |
-ROW |77792 |1874 |36806 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77793 |1874 |36822 |0 |1 |2774A4|0 |2 |0 |
-ROW |77794 |1875 |36819 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77795 |1875 |36815 |5 |1 |2774A4|0 |2 |0 |
-ROW |77796 |1876 |36820 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77797 |1877 |36831 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77798 |1877 |36829 |0 |1 |2774A4|0 |2 |0 |
-ROW |77799 |1877 |36830 |0 |2 |F63100|0 |2 |0 |
-ROW |77800 |1877 |36833 |0 |3 |A54F10|0 |2 |0 |
-ROW |77801 |1877 |36824 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77802 |1877 |36832 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77803 |1878 |36803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77804 |1878 |36813 |0 |1 |2774A4|0 |2 |0 |
-ROW |77805 |1879 |36812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77806 |1879 |36804 |0 |1 |2774A4|0 |2 |0 |
-ROW |77807 |1879 |36821 |0 |2 |F63100|0 |2 |0 |
-ROW |77808 |1879 |36805 |0 |3 |A54F10|1 |2 |0 |
-ROW |77809 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77810 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
-ROW |77811 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
-ROW |77812 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
-ROW |77813 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77814 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
-ROW |77815 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
-ROW |77816 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77817 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
-ROW |77818 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
-ROW |77819 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
-ROW |77820 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77821 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
-ROW |77822 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
-ROW |77823 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77824 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
-ROW |77825 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
-ROW |77826 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
-ROW |77827 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77828 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77829 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77830 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
-ROW |77831 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77832 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
-ROW |77833 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
-ROW |77834 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
-ROW |77835 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77836 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77837 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77838 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
-ROW |77839 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77840 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
-ROW |77841 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
-ROW |77842 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77843 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
-ROW |77844 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77845 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77846 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
-ROW |77847 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77848 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
-ROW |77849 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77850 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
-ROW |77851 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
-ROW |77852 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77853 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
-ROW |77854 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
-ROW |77855 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
-ROW |77856 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77857 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77858 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77859 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
-ROW |77860 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77861 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
-ROW |77862 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
-ROW |77863 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
-ROW |77864 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77865 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77866 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77867 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
-ROW |77868 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77869 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77870 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77871 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
-ROW |77872 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77873 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77874 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
-ROW |77875 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
-ROW |77876 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
-ROW |77877 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77878 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77879 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77880 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
-ROW |77881 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77882 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
-ROW |77883 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
-ROW |77884 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
-ROW |77885 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77886 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77887 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77888 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
-ROW |77889 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77890 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
-ROW |77891 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
-ROW |77892 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77893 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
-ROW |77894 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77895 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77896 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
-ROW |77897 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77898 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
-ROW |77899 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
-ROW |77900 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77901 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
-ROW |77902 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
-ROW |77903 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
-ROW |77904 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77905 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77906 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77907 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
-ROW |77908 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77909 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
-ROW |77910 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
-ROW |77911 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
-ROW |77912 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77913 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77914 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77915 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
-ROW |77916 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
-ROW |77917 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77918 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77919 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
-ROW |77920 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77921 |1880 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77922 |1880 |31938 |0 |1 |2774A4|0 |2 |0 |
-ROW |77923 |1880 |31950 |0 |2 |F63100|0 |2 |0 |
-ROW |77924 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77925 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
-ROW |77926 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77927 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
-ROW |77928 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
-ROW |77929 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77930 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
-ROW |77931 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77932 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
-ROW |77933 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
-ROW |77934 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77935 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
-ROW |77936 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
-ROW |77937 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77938 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
-ROW |77939 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77940 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
-ROW |77941 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
-ROW |77942 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
-ROW |77943 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77944 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77945 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77946 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
-ROW |77947 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
-ROW |77948 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
-ROW |77949 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
-ROW |77950 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
-ROW |77951 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77952 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
-ROW |77953 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77954 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
-ROW |77955 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
-ROW |77956 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
-ROW |77957 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |77958 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
-ROW |77959 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
-ROW |77960 |1520 |34128 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77961 |1520 |34127 |0 |1 |2774A4|0 |2 |0 |
-ROW |77962 |1520 |34130 |0 |2 |F63100|0 |2 |0 |
-ROW |77963 |1520 |34131 |0 |3 |A54F10|0 |2 |0 |
-ROW |77964 |1520 |34132 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77965 |1521 |34134 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77966 |1521 |34149 |0 |1 |2774A4|0 |2 |0 |
-ROW |77967 |1521 |34153 |0 |2 |F63100|0 |2 |0 |
-ROW |77968 |1521 |34152 |0 |3 |A54F10|0 |2 |0 |
-ROW |77969 |1521 |34150 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77970 |1521 |34148 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77971 |1522 |34167 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77972 |1522 |34166 |0 |1 |2774A4|0 |2 |0 |
-ROW |77973 |1523 |34164 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77974 |1523 |34165 |0 |1 |2774A4|0 |2 |0 |
-ROW |77975 |1524 |34108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |77976 |1524 |34109 |0 |1 |2774A4|0 |2 |0 |
-ROW |77977 |1524 |34110 |0 |2 |F63100|0 |2 |0 |
-ROW |77978 |1524 |34111 |0 |3 |A54F10|0 |2 |0 |
-ROW |77979 |1524 |34113 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |77980 |1524 |34107 |0 |5 |6C59DC|0 |2 |0 |
-ROW |77981 |1524 |34114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |77982 |1524 |34116 |0 |7 |611F27|0 |2 |0 |
-ROW |77983 |1524 |34122 |0 |8 |F230E0|0 |2 |0 |
-ROW |77984 |1881 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |77985 |1881 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |77986 |1881 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |77987 |1881 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |77988 |1882 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |77989 |1882 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |77990 |1882 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |77991 |1882 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |77992 |1882 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |77993 |1882 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |77994 |1882 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |77995 |1882 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |77996 |1882 |23344 |0 |8 |000099|0 |2 |0 |
-ROW |77997 |1882 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |77998 |1883 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |77999 |1883 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |78000 |1883 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |78001 |1883 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |78002 |1883 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |78003 |1883 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |78004 |1883 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |78005 |1883 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |78006 |1883 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |78007 |1883 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |78008 |1884 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |78009 |1885 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |78010 |1885 |23358 |0 |1 |C80000|0 |2 |0 |
-ROW |78011 |1886 |36910 |0 |0 |DD0000|0 |2 |0 |
-ROW |78012 |1886 |36896 |0 |1 |00DDDD|0 |2 |0 |
-ROW |78013 |1886 |36901 |0 |2 |3333FF|0 |2 |0 |
-ROW |78014 |1886 |36900 |0 |3 |00FF00|0 |2 |0 |
-ROW |78015 |1887 |36922 |0 |0 |990099|0 |2 |0 |
-ROW |78016 |1887 |36924 |0 |1 |990000|0 |2 |0 |
-ROW |78017 |1887 |36921 |0 |2 |0000EE|0 |2 |0 |
-ROW |78018 |1887 |36915 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78019 |1887 |36920 |0 |4 |007700|0 |2 |0 |
-ROW |78020 |1887 |36919 |0 |5 |003300|0 |2 |0 |
-ROW |78021 |1887 |36930 |0 |6 |33FFFF|0 |2 |0 |
-ROW |78022 |1887 |36923 |0 |7 |DD0000|0 |2 |0 |
-ROW |78023 |1887 |36928 |0 |8 |000099|0 |2 |0 |
-ROW |78024 |1887 |36904 |0 |9 |00FF00|0 |2 |0 |
-ROW |78025 |1888 |36918 |0 |0 |FFAA00|0 |2 |0 |
-ROW |78026 |1888 |36912 |0 |1 |990099|0 |2 |0 |
-ROW |78027 |1888 |36917 |0 |2 |EE0000|0 |2 |0 |
-ROW |78028 |1888 |36927 |0 |3 |FF66FF|0 |2 |0 |
-ROW |78029 |1888 |36916 |0 |4 |0000EE|0 |2 |0 |
-ROW |78030 |1888 |36914 |0 |5 |00EE00|0 |2 |0 |
-ROW |78031 |1888 |36929 |0 |6 |009999|0 |2 |0 |
-ROW |78032 |1888 |36913 |0 |7 |BBBB00|0 |2 |0 |
-ROW |78033 |1888 |36925 |0 |8 |990000|0 |2 |0 |
-ROW |78034 |1888 |36926 |0 |9 |008800|0 |2 |0 |
-ROW |78035 |1889 |36911 |0 |0 |008800|0 |2 |0 |
-ROW |78036 |1890 |36903 |5 |0 |00C800|0 |2 |0 |
-ROW |78037 |1890 |36894 |0 |1 |C80000|0 |2 |0 |
-ROW |78038 |1525 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |78039 |1525 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |78040 |1525 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |78041 |1525 |25366 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78042 |1525 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |78043 |1525 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |78044 |1525 |22400 |0 |6 |33FFFF|0 |2 |0 |
-ROW |78045 |1525 |22689 |0 |7 |DD0000|0 |2 |0 |
-ROW |78046 |1525 |23171 |0 |8 |000099|0 |2 |0 |
-ROW |78047 |1525 |22401 |0 |9 |00FF00|0 |2 |0 |
-ROW |78048 |1526 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |78049 |1526 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |78050 |1526 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |78051 |1526 |25367 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78052 |1526 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |78053 |1526 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |78054 |1526 |23270 |0 |6 |33FFFF|0 |2 |0 |
-ROW |78055 |1526 |23262 |0 |7 |DD0000|0 |2 |0 |
-ROW |78056 |1526 |23267 |0 |8 |000099|0 |2 |0 |
-ROW |78057 |1526 |23328 |0 |9 |00FF00|0 |2 |0 |
-ROW |78058 |1527 |22406 |0 |0 |00EE00|0 |2 |0 |
-ROW |78059 |1527 |25665 |0 |1 |0000EE|0 |2 |0 |
-ROW |78060 |1527 |25666 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78061 |1527 |28537 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78062 |1527 |28535 |0 |4 |990099|0 |2 |0 |
-ROW |78063 |1528 |23257 |0 |0 |00EE00|0 |2 |0 |
-ROW |78064 |1528 |25667 |0 |1 |0000EE|0 |2 |0 |
-ROW |78065 |1528 |25668 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78066 |1528 |28538 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78067 |1528 |28536 |0 |4 |990099|0 |2 |0 |
-ROW |78068 |1529 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |78069 |1529 |22408 |0 |1 |FFAA00|0 |2 |0 |
-ROW |78070 |1529 |22412 |0 |2 |990099|0 |2 |0 |
-ROW |78071 |1529 |22414 |0 |3 |FF66FF|0 |2 |0 |
-ROW |78072 |1529 |23663 |0 |4 |009999|0 |2 |0 |
-ROW |78073 |1529 |22430 |0 |5 |8048B4|0 |2 |0 |
-ROW |78074 |1529 |22420 |0 |6 |FD5434|0 |2 |0 |
-ROW |78075 |1530 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |78076 |1530 |23258 |0 |1 |FFAA00|0 |2 |0 |
-ROW |78077 |1530 |23253 |0 |2 |990099|0 |2 |0 |
-ROW |78078 |1530 |23266 |0 |3 |FF66FF|0 |2 |0 |
-ROW |78079 |1530 |23664 |0 |4 |009999|0 |2 |0 |
-ROW |78080 |1530 |23255 |0 |5 |8048B4|0 |2 |0 |
-ROW |78081 |1530 |23265 |0 |6 |FD5434|0 |2 |0 |
-ROW |78082 |1531 |22422 |0 |0 |00EE00|0 |2 |0 |
-ROW |78083 |1531 |22424 |0 |1 |0000EE|0 |2 |0 |
-ROW |78084 |1531 |25370 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78085 |1531 |29822 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78086 |1532 |23256 |0 |0 |00EE00|0 |2 |0 |
-ROW |78087 |1532 |23252 |0 |1 |0000EE|0 |2 |0 |
-ROW |78088 |1532 |25371 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78089 |1532 |29823 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78090 |1535 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |78091 |1535 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |78092 |1536 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |78093 |1536 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |78094 |1537 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |78095 |1537 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |78096 |1537 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |78097 |1537 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |78098 |1537 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |78099 |1537 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |78100 |1538 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |78101 |1538 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |78102 |1538 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |78103 |1538 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |78104 |1538 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |78105 |1538 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |78106 |1539 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |78107 |1539 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |78108 |1539 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |78109 |1539 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78110 |1539 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |78111 |1539 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |78112 |1539 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |78113 |1539 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |78114 |1539 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |78115 |1539 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |78116 |1539 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |78117 |1540 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |78118 |1540 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |78119 |1540 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |78120 |1540 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78121 |1540 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |78122 |1540 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |78123 |1540 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |78124 |1540 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |78125 |1540 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |78126 |1540 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |78127 |1540 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |78128 |1541 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |78129 |1541 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |78130 |1541 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78131 |1541 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78132 |1541 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |78133 |1541 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |78134 |1541 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |78135 |1541 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |78136 |1541 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |78137 |1541 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |78138 |1541 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |78139 |1541 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |78140 |1541 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |78141 |1541 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |78142 |1541 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |78143 |1542 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |78144 |1542 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |78145 |1542 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78146 |1542 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78147 |1542 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |78148 |1542 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |78149 |1542 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |78150 |1542 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |78151 |1542 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |78152 |1542 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |78153 |1542 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |78154 |1542 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |78155 |1542 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |78156 |1542 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |78157 |1542 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |78158 |1543 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |78159 |1543 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |78160 |1544 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |78161 |1544 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |78162 |1545 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |78163 |1545 |23251 |0 |1 |F63100|0 |2 |0 |
-ROW |78164 |1546 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |78165 |1546 |23272 |0 |1 |F63100|0 |2 |0 |
-ROW |78166 |1547 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |78167 |1547 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |78168 |1547 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |78169 |1547 |28562 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78170 |1547 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |78171 |1547 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |78172 |1547 |28552 |0 |6 |33FFFF|0 |2 |0 |
-ROW |78173 |1547 |28573 |0 |7 |DD0000|0 |2 |0 |
-ROW |78174 |1547 |28579 |0 |8 |000099|0 |2 |0 |
-ROW |78175 |1547 |28559 |0 |9 |00FF00|0 |2 |0 |
-ROW |78176 |1548 |28567 |0 |0 |00EE00|0 |2 |0 |
-ROW |78177 |1548 |28575 |0 |1 |0000EE|0 |2 |0 |
-ROW |78178 |1548 |28576 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78179 |1548 |28583 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78180 |1548 |28582 |0 |4 |990099|0 |2 |0 |
-ROW |78181 |1549 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |78182 |1549 |28568 |0 |1 |FFAA00|0 |2 |0 |
-ROW |78183 |1549 |28564 |0 |2 |990099|0 |2 |0 |
-ROW |78184 |1549 |28578 |0 |3 |FF66FF|0 |2 |0 |
-ROW |78185 |1549 |28580 |0 |4 |009999|0 |2 |0 |
-ROW |78186 |1549 |28565 |0 |5 |8048B4|0 |2 |0 |
-ROW |78187 |1549 |28577 |0 |6 |FD5434|0 |2 |0 |
-ROW |78188 |1550 |28566 |0 |0 |00EE00|0 |2 |0 |
-ROW |78189 |1550 |28561 |0 |1 |0000EE|0 |2 |0 |
-ROW |78190 |1550 |28563 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78191 |1550 |29821 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78192 |1552 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |78193 |1552 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |78194 |1553 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |78195 |1553 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |78196 |1553 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |78197 |1553 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |78198 |1553 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |78199 |1553 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |78200 |1554 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |78201 |1554 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |78202 |1554 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |78203 |1554 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |78204 |1554 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |78205 |1554 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |78206 |1554 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |78207 |1554 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |78208 |1554 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |78209 |1554 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |78210 |1554 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |78211 |1555 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |78212 |1555 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |78213 |1555 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |78214 |1555 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |78215 |1555 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |78216 |1555 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |78217 |1555 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |78218 |1555 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |78219 |1555 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |78220 |1555 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |78221 |1555 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |78222 |1555 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |78223 |1555 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |78224 |1555 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |78225 |1555 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |78226 |1556 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |78227 |1556 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |78228 |1557 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |78229 |1557 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |78230 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78231 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
-ROW |78232 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
-ROW |78233 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78234 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
-ROW |78235 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78236 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
-ROW |78237 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78238 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
-ROW |78239 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
-ROW |78240 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78241 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
-ROW |78242 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78243 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
-ROW |78244 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |78245 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |78246 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |78247 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |78248 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |78249 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |78250 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |78251 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |78252 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |78253 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |78254 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |78255 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |78256 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |78257 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |78258 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |78259 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |78260 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |78261 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |78262 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |78263 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |78264 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |78265 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |78266 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |78267 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |78268 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |78269 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |78270 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |78271 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |78272 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |78273 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |78274 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |78275 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |78276 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |78277 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |78278 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |78279 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |78280 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |78281 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |78282 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |78283 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |78284 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |78285 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |78286 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |78287 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |78288 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |78289 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |78290 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |78291 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |78292 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |78293 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |78294 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |78295 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |78296 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |78297 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |78298 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |78299 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |78300 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |78301 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |78302 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |78303 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |78304 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |78305 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |78306 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |78307 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |78308 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |78309 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |78310 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |78311 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |78312 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |78313 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |78314 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |78315 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |78316 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |78317 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |78318 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |78319 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |78320 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |78321 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |78322 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |78323 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |78324 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |78325 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |78326 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |78327 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |78328 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |78329 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |78330 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |78331 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |78332 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |78333 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |78334 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |78335 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |78336 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |78337 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |78338 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |78339 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |78340 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |78341 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |78342 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |78343 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |78344 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |78345 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |78346 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |78347 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78348 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |78349 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
-ROW |78350 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
-ROW |78351 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78352 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
-ROW |78353 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78354 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
-ROW |78355 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78356 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
-ROW |78357 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78358 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
-ROW |78359 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
-ROW |78360 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
-ROW |78361 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78362 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78363 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78364 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
-ROW |78365 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78366 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
-ROW |78367 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78368 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
-ROW |78369 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78370 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
-ROW |78371 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |78372 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
-ROW |78373 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78374 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78375 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78376 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |78377 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78378 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |78379 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |78380 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |78381 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78382 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78383 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |78384 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78385 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |78386 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |78387 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |78388 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |78389 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78390 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |78391 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |78392 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78393 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |78394 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78395 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |78396 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78397 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |78398 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |78399 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |78400 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78401 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78402 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |78403 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |78404 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78405 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |78406 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |78407 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78408 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |78409 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78410 |1488 |36931 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78411 |1488 |36932 |0 |1 |2774A4|0 |2 |0 |
-ROW |78412 |1488 |36933 |0 |2 |F63100|0 |2 |0 |
-ROW |78413 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |78414 |1891 |35596 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78415 |1891 |35597 |0 |1 |2774A4|0 |2 |0 |
-ROW |78416 |1677 |35580 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78417 |1677 |35583 |0 |1 |2774A4|0 |2 |0 |
-ROW |78418 |1677 |35581 |0 |2 |F63100|0 |2 |0 |
-ROW |78419 |1677 |35582 |0 |3 |A54F10|0 |2 |0 |
-ROW |78420 |1678 |35589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78421 |1678 |35588 |0 |1 |2774A4|0 |2 |0 |
-ROW |78422 |1678 |35587 |0 |2 |F63100|0 |2 |0 |
-ROW |78423 |1679 |35592 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78424 |1679 |35601 |0 |1 |2774A4|0 |2 |0 |
-ROW |78425 |1681 |35602 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78426 |1681 |35607 |0 |1 |2774A4|0 |2 |0 |
-ROW |78427 |1681 |35605 |0 |2 |F63100|0 |2 |0 |
-ROW |78428 |1681 |35603 |0 |3 |A54F10|0 |2 |0 |
-ROW |78429 |1682 |35609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78430 |1682 |35611 |0 |1 |2774A4|0 |2 |0 |
-ROW |78431 |1682 |35610 |0 |2 |F63100|0 |2 |0 |
-ROW |78432 |1683 |35623 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78433 |1683 |35621 |0 |1 |2774A4|0 |2 |0 |
-ROW |78434 |1684 |35630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78435 |1684 |35631 |0 |1 |2774A4|0 |2 |0 |
-ROW |78436 |1685 |35633 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78437 |1685 |35635 |0 |1 |2774A4|0 |2 |0 |
-ROW |78438 |1686 |35636 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78439 |1686 |35634 |0 |1 |2774A4|0 |2 |0 |
-ROW |78440 |1687 |35638 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78441 |1687 |35639 |0 |1 |2774A4|0 |2 |0 |
-ROW |78442 |1688 |35637 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78443 |1688 |35640 |0 |1 |2774A4|0 |2 |0 |
-ROW |78444 |1688 |35641 |0 |2 |F63100|0 |2 |0 |
-ROW |78445 |1689 |35643 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78446 |1689 |35644 |0 |1 |2774A4|0 |2 |0 |
-ROW |78447 |1892 |32681 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78448 |1892 |32682 |0 |1 |2774A4|0 |2 |0 |
-ROW |78449 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78450 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
-ROW |78451 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
-ROW |78452 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
-ROW |78453 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78454 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
-ROW |78455 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
-ROW |78456 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78457 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
-ROW |78458 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78459 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
-ROW |78460 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
-ROW |78461 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
-ROW |78462 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78463 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
-ROW |78464 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |78465 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78466 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |78467 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78468 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
-ROW |78469 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78470 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
-ROW |78471 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78472 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
-ROW |78473 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78474 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |78475 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78476 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
-ROW |78477 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
-ROW |78478 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78479 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
-ROW |78480 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78481 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
-ROW |78482 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78483 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
-ROW |78484 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78485 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
-ROW |78486 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
-ROW |78487 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
-ROW |78488 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78489 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78490 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
-ROW |78491 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78492 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
-ROW |78493 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |78494 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
-ROW |78495 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78496 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78497 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
-ROW |78498 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78499 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
-ROW |78500 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78501 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
-ROW |78502 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
-ROW |78503 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
-ROW |78504 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78505 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78506 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
-ROW |78507 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
-ROW |78508 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78509 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
-ROW |78510 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78511 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
-ROW |78512 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
-ROW |78513 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78514 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |78515 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
-ROW |78516 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78517 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
-ROW |78518 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
-ROW |78519 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
-ROW |78520 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78521 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
-ROW |78522 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
-ROW |78523 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
-ROW |78524 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78525 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
-ROW |78526 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78527 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
-ROW |78528 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
-ROW |78529 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
-ROW |78530 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78531 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78532 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78533 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
-ROW |78534 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
-ROW |78535 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78536 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
-ROW |78537 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
-ROW |78538 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
-ROW |78539 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78540 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
-ROW |78541 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
-ROW |78542 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
-ROW |78543 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78544 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78545 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
-ROW |78546 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
-ROW |78547 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
-ROW |78548 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78549 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
-ROW |78550 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
-ROW |78551 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78552 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
-ROW |78553 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78554 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
-ROW |78555 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
-ROW |78556 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
-ROW |78557 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |78558 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
-ROW |78559 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78560 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |78561 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78562 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |78563 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |78564 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78565 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78566 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |78567 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78568 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |78569 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |78570 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |78571 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78572 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78573 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78574 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |78575 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |78576 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |78577 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78578 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |78579 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78580 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |78581 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78582 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |78583 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78584 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |78585 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |78586 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |78587 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78588 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78589 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |78590 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |78591 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |78592 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78593 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78594 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |78595 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78596 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |78597 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78598 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |78599 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78600 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78601 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |78602 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |78603 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |78604 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78605 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78606 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |78607 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78608 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78609 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |78610 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |78611 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |78612 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78613 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |78614 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78615 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |78616 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78617 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |78618 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |78619 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |78620 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78621 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |78622 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78623 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |78624 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |78625 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |78626 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78627 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |78628 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |78629 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |78630 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78631 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |78632 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |78633 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |78634 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78635 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |78636 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |78637 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78638 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |78639 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |78640 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |78641 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78642 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |78643 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78644 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |78645 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |78646 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |78647 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78648 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |78649 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |78650 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |78651 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78652 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |78653 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |78654 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |78655 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78656 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |78657 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |78658 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78659 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |78660 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |78661 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |78662 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78663 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |78664 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78665 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |78666 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |78667 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |78668 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78669 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |78670 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |78671 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |78672 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78673 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |78674 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |78675 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |78676 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78677 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |78678 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |78679 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78680 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |78681 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |78682 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |78683 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78684 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
-ROW |78685 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78686 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
-ROW |78687 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
-ROW |78688 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78689 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
-ROW |78690 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78691 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
-ROW |78692 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
-ROW |78693 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78694 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
-ROW |78695 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78696 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
-ROW |78697 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78698 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
-ROW |78699 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78700 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
-ROW |78701 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
-ROW |78702 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
-ROW |78703 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78704 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78705 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
-ROW |78706 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
-ROW |78707 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
-ROW |78708 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78709 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78710 |1893 |36993 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78711 |1893 |36991 |0 |1 |2774A4|0 |2 |0 |
-ROW |78712 |1894 |36975 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78713 |1895 |36996 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78714 |1895 |36978 |0 |1 |2774A4|0 |2 |0 |
-ROW |78715 |1895 |36992 |0 |2 |F63100|0 |2 |0 |
-ROW |78716 |1895 |36995 |0 |3 |A54F10|0 |2 |0 |
-ROW |78717 |1896 |36979 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78718 |1897 |36989 |0 |0 |1A7C11|1 |2 |0 |
-ROW |78719 |1897 |36986 |0 |1 |2774A4|1 |2 |0 |
-ROW |78720 |1897 |36983 |0 |2 |F63100|1 |2 |0 |
-ROW |78721 |1897 |36988 |5 |3 |A54F10|0 |2 |0 |
-ROW |78722 |1897 |36985 |5 |4 |FC6EA3|0 |2 |0 |
-ROW |78723 |1897 |36982 |5 |5 |6C59DC|0 |2 |0 |
-ROW |78724 |1898 |36990 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78725 |1898 |36987 |0 |1 |2774A4|0 |2 |0 |
-ROW |78726 |1898 |36984 |0 |2 |F63100|0 |2 |0 |
-ROW |78727 |1899 |37003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78728 |1899 |37002 |0 |1 |2774A4|1 |2 |0 |
-ROW |78729 |1900 |37001 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78730 |1900 |37000 |0 |1 |2774A4|0 |2 |0 |
-ROW |78731 |1900 |36999 |0 |2 |F63100|0 |2 |0 |
-ROW |78732 |1900 |36998 |0 |3 |A54F10|0 |2 |0 |
-ROW |78733 |1900 |36997 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78734 |1901 |36956 |0 |0 |1A7C11|1 |2 |0 |
-ROW |78735 |1901 |36961 |0 |1 |2774A4|1 |2 |0 |
-ROW |78736 |1901 |36959 |0 |2 |F63100|1 |2 |0 |
-ROW |78737 |1901 |36960 |0 |3 |A54F10|1 |2 |0 |
-ROW |78738 |1901 |36965 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78739 |1901 |36957 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78740 |1902 |36958 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78741 |1902 |36964 |0 |1 |2774A4|0 |2 |0 |
-ROW |78742 |1902 |36962 |0 |2 |F63100|1 |2 |0 |
-ROW |78743 |1902 |36963 |0 |3 |A54F10|1 |2 |0 |
-ROW |78744 |1903 |36971 |5 |0 |1A7C11|1 |2 |0 |
-ROW |78745 |1903 |36972 |0 |1 |2774A4|0 |2 |0 |
-ROW |78746 |1903 |36967 |0 |2 |F63100|1 |2 |0 |
-ROW |78747 |1903 |36968 |0 |3 |A54F10|1 |2 |0 |
-ROW |78748 |1903 |36969 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78749 |1903 |36970 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78750 |1903 |36966 |0 |6 |AC8C14|1 |2 |0 |
-ROW |78751 |1904 |36937 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78752 |1904 |36936 |0 |1 |2774A4|1 |2 |0 |
-ROW |78753 |1905 |36940 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78754 |1906 |36952 |0 |0 |1A7C11|1 |2 |0 |
-ROW |78755 |1906 |36951 |0 |1 |2774A4|1 |2 |0 |
-ROW |78756 |1906 |36953 |0 |2 |F63100|1 |2 |0 |
-ROW |78757 |1906 |36954 |0 |3 |A54F10|1 |2 |0 |
-ROW |78758 |1907 |36947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78759 |1907 |36944 |0 |1 |2774A4|1 |2 |0 |
-ROW |78760 |1908 |36973 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78761 |1908 |36955 |0 |1 |2774A4|1 |2 |0 |
-ROW |78762 |1861 |36798 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78763 |1861 |36781 |0 |1 |2774A4|0 |2 |0 |
-ROW |78764 |1861 |36780 |0 |2 |F63100|0 |2 |0 |
-ROW |78765 |1861 |36779 |0 |3 |A54F10|0 |2 |0 |
-ROW |78766 |1861 |36778 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78767 |1861 |36777 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78768 |1861 |36775 |0 |6 |AC8C14|0 |2 |0 |
-ROW |78769 |1861 |36774 |0 |7 |611F27|0 |2 |0 |
-ROW |78770 |1861 |36776 |0 |8 |F230E0|0 |2 |0 |
-ROW |78771 |1861 |36776 |0 |9 |FFAD40|0 |2 |0 |
-ROW |78772 |1862 |36772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78773 |1863 |36795 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78774 |1863 |36794 |0 |1 |2774A4|0 |2 |0 |
-ROW |78775 |1863 |36792 |0 |2 |F63100|0 |2 |0 |
-ROW |78776 |1863 |36791 |0 |3 |A54F10|0 |2 |0 |
-ROW |78777 |1863 |36789 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |78778 |1863 |36788 |0 |5 |6C59DC|0 |2 |0 |
-ROW |78779 |1863 |36787 |0 |6 |AC8C14|0 |2 |0 |
-ROW |78780 |1863 |36785 |0 |7 |611F27|0 |2 |0 |
-ROW |78781 |1863 |36786 |0 |8 |F230E0|0 |2 |0 |
-ROW |78782 |1863 |36773 |0 |9 |FFAD40|0 |2 |0 |
-ROW |78783 |1863 |36784 |0 |10 |40CDFF|0 |2 |0 |
-ROW |78784 |1863 |36783 |0 |11 |40FFA0|0 |2 |0 |
-ROW |78785 |1863 |36782 |0 |12 |AE4500|0 |2 |0 |
-ROW |78786 |1864 |36771 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78787 |1865 |36799 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78788 |1865 |36800 |0 |1 |2774A4|0 |2 |0 |
-ROW |78789 |1865 |36801 |0 |2 |F63100|0 |2 |0 |
-ROW |78790 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78791 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |78792 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78793 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |78794 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78795 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78796 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78797 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |78798 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78799 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78800 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |78801 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |78802 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |78803 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78804 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |78805 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78806 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |78807 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78808 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |78809 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |78810 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78811 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78812 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |78813 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78814 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |78815 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78816 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78817 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |78818 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78819 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78820 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78821 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78822 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |78823 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |78824 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |78825 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |78826 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |78827 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |78828 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |78829 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |78830 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78831 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78832 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78833 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78834 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78835 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |78836 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |78837 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |78838 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78839 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78840 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78841 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |78842 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |78843 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |78844 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78845 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78846 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78847 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |78848 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |78849 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |78850 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78851 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78852 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78853 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |78854 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |78855 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |78856 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78857 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78858 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78859 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |78860 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |78861 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |78862 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78863 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78864 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78865 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |78866 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |78867 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |78868 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78869 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78870 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78871 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |78872 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |78873 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |78874 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78875 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78876 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78877 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |78878 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |78879 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |78880 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78881 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78882 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78883 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |78884 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |78885 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |78886 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78887 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78888 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78889 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |78890 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |78891 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |78892 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78893 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78894 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78895 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |78896 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |78897 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |78898 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78899 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78900 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78901 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |78902 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |78903 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |78904 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78905 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78906 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78907 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |78908 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |78909 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |78910 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78911 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78912 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78913 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |78914 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |78915 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |78916 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78917 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78918 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78919 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |78920 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |78921 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |78922 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78923 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78924 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78925 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |78926 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |78927 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |78928 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78929 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78930 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78931 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |78932 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |78933 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |78934 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78935 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78936 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78937 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |78938 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |78939 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |78940 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78941 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78942 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78943 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |78944 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |78945 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |78946 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78947 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78948 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78949 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |78950 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |78951 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |78952 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78953 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78954 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78955 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |78956 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |78957 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |78958 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78959 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78960 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78961 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |78962 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |78963 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |78964 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78965 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78966 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78967 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |78968 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |78969 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |78970 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78971 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78972 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78973 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |78974 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |78975 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |78976 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78977 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78978 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78979 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |78980 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |78981 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |78982 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78983 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78984 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78985 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |78986 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |78987 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |78988 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78989 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78990 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78991 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |78992 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |78993 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |78994 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |78995 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |78996 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |78997 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |78998 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |78999 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79000 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79001 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79002 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79003 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79004 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79005 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79006 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79007 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79008 |1729 |35914 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79009 |1730 |35917 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79010 |1731 |35924 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79011 |1731 |35931 |0 |1 |2774A4|0 |2 |0 |
-ROW |79012 |1731 |35922 |0 |2 |F63100|0 |2 |0 |
-ROW |79013 |1731 |35929 |0 |3 |A54F10|0 |2 |0 |
-ROW |79014 |1731 |35921 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79015 |1731 |35928 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79016 |1732 |35932 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79017 |1732 |35925 |0 |1 |2774A4|0 |2 |0 |
-ROW |79018 |1733 |35923 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79019 |1733 |35930 |0 |1 |2774A4|0 |2 |0 |
-ROW |79020 |1734 |35948 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79021 |1734 |35949 |0 |1 |2774A4|0 |2 |0 |
-ROW |79022 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79023 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79024 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79025 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
-ROW |79026 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
-ROW |79027 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
-ROW |79028 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79029 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79030 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79031 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79032 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79033 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
-ROW |79034 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
-ROW |79035 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
-ROW |79036 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79037 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79038 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79039 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79040 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79041 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
-ROW |79042 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
-ROW |79043 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
-ROW |79044 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79045 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79046 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79047 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79048 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79049 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
-ROW |79050 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
-ROW |79051 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
-ROW |79052 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79053 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79054 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79055 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79056 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79057 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
-ROW |79058 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
-ROW |79059 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
-ROW |79060 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79061 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79062 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79063 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79064 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79065 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79066 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79067 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79068 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79069 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79070 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79071 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79072 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79073 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79074 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79075 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79076 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79077 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79078 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79079 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |79080 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79081 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79082 |1690 |35679 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79083 |1691 |35681 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79084 |1692 |35683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79085 |1693 |35686 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79086 |1694 |35690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79087 |1694 |35705 |0 |1 |2774A4|0 |2 |0 |
-ROW |79088 |1694 |35696 |0 |2 |F63100|0 |2 |0 |
-ROW |79089 |1694 |35687 |0 |3 |A54F10|0 |2 |0 |
-ROW |79090 |1694 |35708 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79091 |1694 |35711 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79092 |1694 |35699 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79093 |1695 |35689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79094 |1695 |35704 |0 |1 |2774A4|0 |2 |0 |
-ROW |79095 |1695 |35695 |0 |2 |F63100|0 |2 |0 |
-ROW |79096 |1695 |35701 |0 |3 |A54F10|0 |2 |0 |
-ROW |79097 |1695 |35707 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79098 |1695 |35710 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79099 |1695 |35697 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79100 |1696 |35713 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79101 |1696 |35703 |0 |1 |2774A4|0 |2 |0 |
-ROW |79102 |1696 |35694 |0 |2 |F63100|0 |2 |0 |
-ROW |79103 |1696 |35712 |0 |3 |A54F10|0 |2 |0 |
-ROW |79104 |1696 |35706 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79105 |1696 |35709 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79106 |1696 |35698 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79107 |1697 |35714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79108 |1698 |35716 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79109 |1699 |35718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79110 |1699 |35720 |0 |1 |2774A4|0 |2 |0 |
-ROW |79111 |1700 |35727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79112 |1700 |35724 |0 |1 |2774A4|0 |2 |0 |
-ROW |79113 |1701 |35726 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79114 |1701 |35723 |0 |1 |2774A4|0 |2 |0 |
-ROW |79115 |1702 |35730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79116 |1702 |35728 |0 |1 |2774A4|0 |2 |0 |
-ROW |79117 |1702 |35729 |0 |2 |F63100|0 |2 |0 |
-ROW |79118 |1703 |35737 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79119 |1703 |35733 |0 |1 |2774A4|1 |2 |0 |
-ROW |79120 |1703 |35743 |0 |2 |F63100|0 |2 |0 |
-ROW |79121 |1703 |35739 |0 |3 |A54F10|1 |2 |0 |
-ROW |79122 |1703 |35736 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79123 |1703 |35742 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79124 |1704 |35748 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79125 |1704 |35747 |0 |1 |2774A4|1 |2 |0 |
-ROW |79126 |1704 |35750 |0 |2 |F63100|0 |2 |0 |
-ROW |79127 |1704 |35749 |0 |3 |A54F10|1 |2 |0 |
-ROW |79128 |1705 |35756 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79129 |1705 |35755 |0 |1 |2774A4|1 |2 |0 |
-ROW |79130 |1705 |35758 |0 |2 |F63100|0 |2 |0 |
-ROW |79131 |1705 |35757 |0 |3 |A54F10|1 |2 |0 |
-ROW |79132 |1843 |35764 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79133 |1843 |35763 |0 |1 |2774A4|1 |2 |0 |
-ROW |79134 |1843 |35766 |0 |2 |F63100|0 |2 |0 |
-ROW |79135 |1843 |35765 |0 |3 |A54F10|1 |2 |0 |
-ROW |79136 |1844 |35771 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79137 |1844 |35769 |0 |1 |2774A4|0 |2 |0 |
-ROW |79138 |1844 |35770 |0 |2 |F63100|0 |2 |0 |
-ROW |79139 |1708 |35651 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79140 |1708 |35649 |0 |1 |2774A4|0 |2 |0 |
-ROW |79141 |1708 |35647 |0 |2 |F63100|0 |2 |0 |
-ROW |79142 |1708 |35653 |0 |3 |A54F10|0 |2 |0 |
-ROW |79143 |1708 |35652 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79144 |1708 |35650 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79145 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79146 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79147 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79148 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |79149 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79150 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79151 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79152 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79153 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79154 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79155 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79156 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
-ROW |79157 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
-ROW |79158 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
-ROW |79159 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79160 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79161 |1477 |33427 |0 |0 |969696|0 |9 |2 |
-ROW |79162 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
-ROW |79163 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79164 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79165 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79166 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79167 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
-ROW |79168 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
-ROW |79169 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
-ROW |79170 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |79171 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |79172 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79173 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79174 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
-ROW |79175 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79176 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
-ROW |79177 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
-ROW |79178 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79179 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
-ROW |79180 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79181 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
-ROW |79182 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
-ROW |79183 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79184 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
-ROW |79185 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79186 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79187 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
-ROW |79188 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79189 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
-ROW |79190 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
-ROW |79191 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79192 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
-ROW |79193 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79194 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
-ROW |79195 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
-ROW |79196 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79197 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
-ROW |79198 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79199 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
-ROW |79200 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
-ROW |79201 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79202 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79203 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79204 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79205 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79206 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
-ROW |79207 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
-ROW |79208 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79209 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79210 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79211 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
-ROW |79212 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79213 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79214 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
-ROW |79215 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
-ROW |79216 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79217 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79218 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79219 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
-ROW |79220 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79221 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79222 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79223 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79224 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79225 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79226 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
-ROW |79227 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79228 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79229 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |79230 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79231 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79232 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79233 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79234 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79235 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79236 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79237 |1735 |35972 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79238 |1735 |35975 |0 |1 |2774A4|0 |2 |0 |
-ROW |79239 |1736 |35977 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79240 |1736 |35980 |0 |1 |2774A4|0 |2 |0 |
-ROW |79241 |1737 |35981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79242 |1738 |35982 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79243 |1739 |36011 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79244 |1739 |36003 |0 |1 |2774A4|0 |2 |0 |
-ROW |79245 |1739 |36013 |0 |2 |F63100|0 |2 |0 |
-ROW |79246 |1739 |36005 |0 |3 |A54F10|0 |2 |0 |
-ROW |79247 |1739 |36014 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79248 |1739 |36006 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79249 |1740 |36012 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79250 |1740 |36004 |0 |1 |2774A4|0 |2 |0 |
-ROW |79251 |1741 |36002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79252 |1741 |36010 |0 |1 |2774A4|0 |2 |0 |
-ROW |79253 |1742 |36017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79254 |1743 |36025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79255 |1744 |36026 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79256 |1745 |35985 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79257 |1746 |36041 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79258 |1747 |36053 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79259 |1747 |36045 |0 |1 |2774A4|0 |2 |0 |
-ROW |79260 |1747 |36055 |0 |2 |F63100|0 |2 |0 |
-ROW |79261 |1747 |36047 |0 |3 |A54F10|0 |2 |0 |
-ROW |79262 |1747 |36056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79263 |1747 |36048 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79264 |1748 |36054 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79265 |1748 |36046 |0 |1 |2774A4|0 |2 |0 |
-ROW |79266 |1749 |36044 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79267 |1749 |36052 |0 |1 |2774A4|0 |2 |0 |
-ROW |79268 |1750 |36059 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79269 |1751 |36060 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79270 |1752 |36029 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79271 |1753 |36077 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79272 |1754 |36078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79273 |1755 |36079 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79274 |1756 |36080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79275 |1757 |36088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79276 |1757 |36098 |0 |1 |2774A4|0 |2 |0 |
-ROW |79277 |1757 |36089 |0 |2 |F63100|0 |2 |0 |
-ROW |79278 |1757 |36084 |0 |3 |A54F10|0 |2 |0 |
-ROW |79279 |1757 |36091 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79280 |1757 |36085 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79281 |1758 |36082 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79282 |1758 |36083 |0 |1 |2774A4|0 |2 |0 |
-ROW |79283 |1759 |36105 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79284 |1759 |36112 |0 |1 |2774A4|0 |2 |0 |
-ROW |79285 |1759 |36103 |0 |2 |F63100|0 |2 |0 |
-ROW |79286 |1759 |36110 |0 |3 |A54F10|0 |2 |0 |
-ROW |79287 |1759 |36102 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79288 |1759 |36109 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79289 |1760 |36104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79290 |1760 |36111 |0 |1 |2774A4|0 |2 |0 |
-ROW |79291 |1761 |36113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79292 |1761 |36106 |0 |1 |2774A4|0 |2 |0 |
-ROW |79293 |1762 |36126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79294 |1763 |36127 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79295 |1764 |36144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79296 |1765 |36145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79297 |1766 |36146 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79298 |1767 |36147 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79299 |1768 |36155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79300 |1768 |36165 |0 |1 |2774A4|0 |2 |0 |
-ROW |79301 |1768 |36156 |0 |2 |F63100|0 |2 |0 |
-ROW |79302 |1768 |36151 |0 |3 |A54F10|0 |2 |0 |
-ROW |79303 |1768 |36158 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79304 |1768 |36152 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79305 |1769 |36149 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79306 |1769 |36150 |0 |1 |2774A4|0 |2 |0 |
-ROW |79307 |1770 |36172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79308 |1770 |36179 |0 |1 |2774A4|0 |2 |0 |
-ROW |79309 |1770 |36170 |0 |2 |F63100|0 |2 |0 |
-ROW |79310 |1770 |36177 |0 |3 |A54F10|0 |2 |0 |
-ROW |79311 |1770 |36169 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79312 |1770 |36176 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79313 |1771 |36171 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79314 |1771 |36178 |0 |1 |2774A4|0 |2 |0 |
-ROW |79315 |1772 |36180 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79316 |1772 |36173 |0 |1 |2774A4|0 |2 |0 |
-ROW |79317 |1773 |36193 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79318 |1774 |36194 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79319 |1775 |36210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79320 |1776 |36218 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79321 |1776 |36221 |0 |1 |2774A4|0 |2 |0 |
-ROW |79322 |1777 |36223 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79323 |1777 |36226 |0 |1 |2774A4|0 |2 |0 |
-ROW |79324 |1778 |36227 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79325 |1779 |36228 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79326 |1780 |36253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79327 |1780 |36245 |0 |1 |2774A4|0 |2 |0 |
-ROW |79328 |1780 |36255 |0 |2 |F63100|0 |2 |0 |
-ROW |79329 |1780 |36247 |0 |3 |A54F10|0 |2 |0 |
-ROW |79330 |1780 |36256 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79331 |1780 |36248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79332 |1781 |36254 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79333 |1781 |36246 |0 |1 |2774A4|0 |2 |0 |
-ROW |79334 |1782 |36244 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79335 |1782 |36252 |0 |1 |2774A4|0 |2 |0 |
-ROW |79336 |1783 |36259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79337 |1784 |36231 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79338 |1785 |36295 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79339 |1785 |36287 |0 |1 |2774A4|0 |2 |0 |
-ROW |79340 |1785 |36297 |0 |2 |F63100|0 |2 |0 |
-ROW |79341 |1785 |36289 |0 |3 |A54F10|0 |2 |0 |
-ROW |79342 |1785 |36298 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79343 |1785 |36290 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79344 |1786 |36296 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79345 |1786 |36288 |0 |1 |2774A4|0 |2 |0 |
-ROW |79346 |1787 |36286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79347 |1787 |36294 |0 |1 |2774A4|0 |2 |0 |
-ROW |79348 |1788 |36301 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79349 |1789 |36309 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79350 |1790 |36310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79351 |1791 |36269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79352 |1792 |36339 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79353 |1792 |36331 |0 |1 |2774A4|0 |2 |0 |
-ROW |79354 |1792 |36341 |0 |2 |F63100|0 |2 |0 |
-ROW |79355 |1792 |36333 |0 |3 |A54F10|0 |2 |0 |
-ROW |79356 |1792 |36342 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79357 |1792 |36334 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79358 |1793 |36340 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79359 |1793 |36332 |0 |1 |2774A4|0 |2 |0 |
-ROW |79360 |1794 |36330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79361 |1794 |36338 |0 |1 |2774A4|0 |2 |0 |
-ROW |79362 |1795 |36345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79363 |1796 |36353 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79364 |1797 |36354 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79365 |1798 |36313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79366 |1799 |36371 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79367 |1800 |36383 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79368 |1800 |36375 |0 |1 |2774A4|0 |2 |0 |
-ROW |79369 |1800 |36385 |0 |2 |F63100|0 |2 |0 |
-ROW |79370 |1800 |36377 |0 |3 |A54F10|0 |2 |0 |
-ROW |79371 |1800 |36386 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79372 |1800 |36378 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79373 |1801 |36384 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79374 |1801 |36376 |0 |1 |2774A4|0 |2 |0 |
-ROW |79375 |1802 |36374 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79376 |1802 |36382 |0 |1 |2774A4|0 |2 |0 |
-ROW |79377 |1803 |36389 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79378 |1804 |36397 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79379 |1805 |36398 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79380 |1806 |36357 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79381 |1807 |36415 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79382 |1808 |36427 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79383 |1808 |36419 |0 |1 |2774A4|0 |2 |0 |
-ROW |79384 |1808 |36429 |0 |2 |F63100|0 |2 |0 |
-ROW |79385 |1808 |36421 |0 |3 |A54F10|0 |2 |0 |
-ROW |79386 |1808 |36430 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79387 |1808 |36422 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79388 |1809 |36428 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79389 |1809 |36420 |0 |1 |2774A4|0 |2 |0 |
-ROW |79390 |1810 |36418 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79391 |1810 |36426 |0 |1 |2774A4|0 |2 |0 |
-ROW |79392 |1811 |36433 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79393 |1812 |36441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79394 |1813 |36442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79395 |1814 |36401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79396 |1815 |36460 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79397 |1816 |36472 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79398 |1816 |36464 |0 |1 |2774A4|0 |2 |0 |
-ROW |79399 |1816 |36474 |0 |2 |F63100|0 |2 |0 |
-ROW |79400 |1816 |36466 |0 |3 |A54F10|0 |2 |0 |
-ROW |79401 |1816 |36475 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79402 |1816 |36467 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79403 |1817 |36473 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79404 |1817 |36465 |0 |1 |2774A4|0 |2 |0 |
-ROW |79405 |1818 |36463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79406 |1818 |36471 |0 |1 |2774A4|0 |2 |0 |
-ROW |79407 |1819 |36478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79408 |1820 |36486 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79409 |1821 |36487 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79410 |1822 |36445 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79411 |1823 |36505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79412 |1824 |36517 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79413 |1824 |36509 |0 |1 |2774A4|0 |2 |0 |
-ROW |79414 |1824 |36519 |0 |2 |F63100|0 |2 |0 |
-ROW |79415 |1824 |36511 |0 |3 |A54F10|0 |2 |0 |
-ROW |79416 |1824 |36520 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79417 |1824 |36512 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79418 |1825 |36518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79419 |1825 |36510 |0 |1 |2774A4|0 |2 |0 |
-ROW |79420 |1826 |36508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79421 |1826 |36516 |0 |1 |2774A4|0 |2 |0 |
-ROW |79422 |1827 |36523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79423 |1828 |36531 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79424 |1829 |36532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79425 |1830 |36490 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79426 |1831 |36550 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79427 |1832 |36563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79428 |1832 |36555 |0 |1 |2774A4|0 |2 |0 |
-ROW |79429 |1832 |36565 |0 |2 |F63100|0 |2 |0 |
-ROW |79430 |1832 |36557 |0 |3 |A54F10|0 |2 |0 |
-ROW |79431 |1832 |36566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79432 |1832 |36558 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79433 |1833 |36564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79434 |1833 |36556 |0 |1 |2774A4|0 |2 |0 |
-ROW |79435 |1834 |36554 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79436 |1834 |36562 |0 |1 |2774A4|0 |2 |0 |
-ROW |79437 |1835 |36569 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79438 |1836 |36577 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79439 |1837 |36578 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79440 |1838 |36535 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79441 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79442 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |79443 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79444 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |79445 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79446 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |79447 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79448 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |79449 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79450 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |79451 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79452 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |79453 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79454 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |79455 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79456 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |79457 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79458 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |79459 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |79460 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |79461 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |79462 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |79463 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |79464 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |79465 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79466 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |79467 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |79468 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |79469 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79470 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79471 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79472 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |79473 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |79474 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |79475 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79476 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79477 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79478 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |79479 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |79480 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |79481 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79482 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79483 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79484 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |79485 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79486 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |79487 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79488 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |79489 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79490 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |79491 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |79492 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |79493 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79494 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79495 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79496 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |79497 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |79498 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79499 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |79500 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |79501 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |79502 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79503 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79504 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79505 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |79506 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |79507 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79508 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |79509 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |79510 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |79511 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79512 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79513 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79514 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |79515 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |79516 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79517 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79518 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79519 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79520 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |79521 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79522 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |79523 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79524 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |79525 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79526 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79527 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79528 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79529 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |79530 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |79531 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79532 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |79533 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |79534 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79535 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |79536 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |79537 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79538 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |79539 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79540 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |79541 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79542 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |79543 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79544 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |79545 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |79546 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |79547 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79548 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |79549 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |79550 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |79551 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79552 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |79553 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |79554 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |79555 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79556 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |79557 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79558 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |79559 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79560 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |79561 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79562 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |79563 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79564 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |79565 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79566 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |79567 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |79568 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |79569 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |79570 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |79571 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79572 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |79573 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |79574 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |79575 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79576 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79577 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79578 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |79579 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |79580 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |79581 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79582 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79583 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79584 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |79585 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79586 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |79587 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79588 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |79589 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |79590 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |79591 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79592 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79593 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79594 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |79595 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |79596 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79597 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |79598 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |79599 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |79600 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79601 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79602 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79603 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |79604 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |79605 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79606 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79607 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79608 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |79609 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79610 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |79611 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79612 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79613 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79614 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |79615 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |79616 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79617 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |79618 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |79619 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79620 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |79621 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79622 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |79623 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79624 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |79625 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |79626 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |79627 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79628 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |79629 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |79630 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |79631 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79632 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |79633 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |79634 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |79635 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79636 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79637 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79638 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |79639 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79640 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |79641 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79642 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |79643 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |79644 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |79645 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79646 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |79647 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79648 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |79649 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |79650 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |79651 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79652 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79653 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79654 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |79655 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |79656 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79657 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79658 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |79659 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79660 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79661 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |79662 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79663 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |79664 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |79665 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |79666 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79667 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |79668 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79669 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |79670 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79671 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |79672 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |79673 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |79674 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79675 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79676 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79677 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |79678 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |79679 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79680 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |79681 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |79682 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |79683 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |79684 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |79685 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |79686 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |79687 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |79688 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79689 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79690 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |79691 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |79692 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |79693 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |79694 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79695 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |79696 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79697 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |79698 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79699 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |79700 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |79701 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |79702 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79703 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79704 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79705 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |79706 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79707 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |79708 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79709 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |79710 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |79711 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |79712 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79713 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |79714 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |79715 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |79716 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |79717 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |79718 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |79719 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |79720 |1839 |36585 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79721 |1839 |36588 |2 |1 |2774A4|0 |2 |0 |
-ROW |79722 |1839 |36587 |0 |2 |F63100|1 |2 |0 |
-ROW |79723 |1839 |36584 |0 |3 |A54F10|1 |2 |0 |
-ROW |79724 |1839 |36586 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79725 |1839 |36583 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79726 |1840 |36591 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79727 |1840 |36594 |2 |1 |2774A4|0 |2 |0 |
-ROW |79728 |1840 |36593 |0 |2 |F63100|1 |2 |0 |
-ROW |79729 |1840 |36590 |0 |3 |A54F10|1 |2 |0 |
-ROW |79730 |1840 |36592 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79731 |1840 |36589 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79732 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79733 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
-ROW |79734 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79735 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
-ROW |79736 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79737 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
-ROW |79738 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79739 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
-ROW |79740 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79741 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |79742 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79743 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |79744 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79745 |1231 |36630 |5 |1 |2774A4|0 |2 |0 |
-ROW |79746 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79747 |1232 |36631 |5 |1 |2774A4|0 |2 |0 |
-ROW |79748 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79749 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |79750 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79751 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |79752 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79753 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |79754 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79755 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |79756 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79757 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79758 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79759 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79760 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79761 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |79762 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79763 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |79764 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |79765 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |79766 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |79767 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |79768 |1841 |36607 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79769 |1841 |36610 |2 |1 |2774A4|0 |2 |0 |
-ROW |79770 |1841 |36609 |0 |2 |F63100|1 |2 |0 |
-ROW |79771 |1841 |36606 |0 |3 |A54F10|1 |2 |0 |
-ROW |79772 |1841 |36608 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79773 |1841 |36605 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79774 |1842 |36613 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79775 |1842 |36616 |2 |1 |2774A4|0 |2 |0 |
-ROW |79776 |1842 |36615 |0 |2 |F63100|1 |2 |0 |
-ROW |79777 |1842 |36612 |0 |3 |A54F10|1 |2 |0 |
-ROW |79778 |1842 |36614 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79779 |1842 |36611 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79780 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79781 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
-ROW |79782 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79783 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
-ROW |79784 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79785 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
-ROW |79786 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79787 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
-ROW |79788 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79789 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |79790 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79791 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |79792 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79793 |1235 |36632 |5 |1 |2774A4|0 |2 |0 |
-ROW |79794 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |79795 |1236 |36633 |5 |1 |2774A4|0 |2 |0 |
-ROW |79796 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79797 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |79798 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79799 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |79800 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79801 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |79802 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79803 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |79804 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79805 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79806 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79807 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79808 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79809 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |79810 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79811 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |79812 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79813 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79814 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
-ROW |79815 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79816 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
-ROW |79817 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79818 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79819 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
-ROW |79820 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79821 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
-ROW |79822 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79823 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79824 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
-ROW |79825 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79826 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
-ROW |79827 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79828 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79829 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |79830 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79831 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |79832 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79833 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79834 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
-ROW |79835 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79836 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
-ROW |79837 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79838 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79839 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
-ROW |79840 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79841 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
-ROW |79842 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79843 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79844 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
-ROW |79845 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79846 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
-ROW |79847 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79848 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79849 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
-ROW |79850 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79851 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
-ROW |79852 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79853 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79854 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
-ROW |79855 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79856 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
-ROW |79857 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79858 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79859 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
-ROW |79860 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79861 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
-ROW |79862 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79863 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79864 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
-ROW |79865 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79866 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
-ROW |79867 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79868 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79869 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
-ROW |79870 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
-ROW |79871 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79872 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
-ROW |79873 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
-ROW |79874 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79875 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
-ROW |79876 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
-ROW |79877 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79878 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79879 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
-ROW |79880 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
-ROW |79881 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79882 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
-ROW |79883 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
-ROW |79884 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79885 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
-ROW |79886 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
-ROW |79887 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79888 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
-ROW |79889 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79890 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
-ROW |79891 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
-ROW |79892 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
-ROW |79893 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79894 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
-ROW |79895 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79896 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
-ROW |79897 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
-ROW |79898 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
-ROW |79899 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79900 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
-ROW |79901 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
-ROW |79902 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
-ROW |79903 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79904 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
-ROW |79905 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
-ROW |79906 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
-ROW |79907 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79908 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
-ROW |79909 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
-ROW |79910 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79911 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
-ROW |79912 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
-ROW |79913 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
-ROW |79914 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79915 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
-ROW |79916 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |79917 |1676 |34973 |5 |0 |1A7C11|0 |2 |0 |
-ROW |79918 |1676 |34978 |2 |1 |2774A4|0 |2 |0 |
-ROW |79919 |1676 |34976 |0 |2 |F63100|1 |2 |0 |
-ROW |79920 |1676 |34971 |0 |3 |A54F10|1 |2 |0 |
-ROW |79921 |1676 |34975 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |79922 |1676 |34970 |0 |5 |6C59DC|1 |2 |0 |
+ROW |79923 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79924 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79925 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
+ROW |79926 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79927 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
+ROW |79928 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79929 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
+ROW |79930 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79931 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
+ROW |79932 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79933 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
+ROW |79934 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
+ROW |79935 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79936 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |79937 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |79938 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |79939 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79940 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79941 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |79942 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79943 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79944 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |79945 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |79946 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |79947 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |79948 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |79949 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |79950 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |79951 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |79952 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |79953 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |79954 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79955 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |79956 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79957 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |79958 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |79959 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |79960 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79961 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |79962 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79963 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |79964 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |79965 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |79966 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |79967 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |79968 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |79969 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |79970 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |79971 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |79972 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |79973 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79974 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |79975 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79976 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |79977 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79978 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
+ROW |79979 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79980 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
+ROW |79981 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79982 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
+ROW |79983 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
+ROW |79984 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79985 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
+ROW |79986 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |79987 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
+ROW |79988 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
+ROW |79989 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
+ROW |79990 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
+ROW |79991 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
+ROW |79992 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
+ROW |79993 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
+ROW |79994 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |79995 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |79996 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |79997 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
+ROW |79998 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
+ROW |79999 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80000 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |80001 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |80002 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80003 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |80004 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80005 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |80006 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |80007 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |80008 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |80009 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |80010 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80011 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |80012 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80013 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |80014 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |80015 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |80016 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80017 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80018 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |80019 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80020 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80021 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |80022 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |80023 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |80024 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80025 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |80026 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |80027 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |80028 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80029 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |80030 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80031 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |80032 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |80033 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |80034 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80035 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |80036 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |80037 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |80038 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80039 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |80040 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |80041 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |80042 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80043 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |80044 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |80045 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |80046 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80047 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80048 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80049 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80050 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |80051 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80052 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |80053 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80054 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |80055 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |80056 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80057 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |80058 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |80059 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80060 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |80061 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80062 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |80063 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |80064 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |80065 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80066 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |80067 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80068 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
+ROW |80069 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
+ROW |80070 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
+ROW |80071 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
+ROW |80072 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
+ROW |80073 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80074 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80075 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80076 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
+ROW |80077 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
+ROW |80078 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
+ROW |80079 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80080 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
+ROW |80081 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
+ROW |80082 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
+ROW |80083 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
+ROW |80084 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
+ROW |80085 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80086 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80087 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80088 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |80089 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |80090 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |80091 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80092 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |80093 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |80094 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80095 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |80096 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |80097 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |80098 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80099 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80100 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80101 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |80102 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |80103 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80104 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |80105 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |80106 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80107 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |80108 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |80109 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80110 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |80111 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |80112 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80113 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |80114 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |80115 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80116 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |80117 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |80118 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80119 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |80120 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |80121 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80122 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |80123 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80124 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |80125 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |80126 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
+ROW |80127 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
+ROW |80128 |1709 |35805 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80129 |1709 |35804 |5 |1 |2774A4|0 |2 |0 |
+ROW |80130 |1710 |35789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80131 |1710 |35806 |0 |1 |2774A4|0 |2 |0 |
+ROW |80132 |1711 |35800 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80133 |1711 |35799 |0 |1 |2774A4|0 |2 |0 |
+ROW |80134 |1711 |35798 |0 |2 |F63100|0 |2 |0 |
+ROW |80135 |1711 |35796 |0 |3 |A54F10|0 |2 |0 |
+ROW |80136 |1711 |35788 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80137 |1712 |35810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80138 |1712 |35809 |0 |1 |2774A4|0 |2 |0 |
+ROW |80139 |1713 |35807 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80140 |1713 |35808 |5 |1 |2774A4|0 |2 |0 |
+ROW |80141 |1714 |35817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80142 |1714 |35816 |0 |1 |2774A4|0 |2 |0 |
+ROW |80143 |1715 |35811 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80144 |1715 |35812 |0 |1 |2774A4|0 |2 |0 |
+ROW |80145 |1715 |35813 |0 |2 |F63100|0 |2 |0 |
+ROW |80146 |1715 |35814 |0 |3 |A54F10|0 |2 |0 |
+ROW |80147 |1715 |35815 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80148 |1716 |35842 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80149 |1716 |35841 |5 |1 |2774A4|0 |2 |0 |
+ROW |80150 |1717 |35836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80151 |1717 |35835 |0 |1 |2774A4|0 |2 |0 |
+ROW |80152 |1717 |35834 |0 |2 |F63100|0 |2 |0 |
+ROW |80153 |1717 |35832 |0 |3 |A54F10|0 |2 |0 |
+ROW |80154 |1717 |35822 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80155 |1718 |35827 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80156 |1718 |35828 |0 |1 |2774A4|0 |2 |0 |
+ROW |80157 |1719 |35864 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80158 |1719 |35863 |5 |1 |2774A4|0 |2 |0 |
+ROW |80159 |1720 |35848 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80160 |1720 |35865 |0 |1 |2774A4|0 |2 |0 |
+ROW |80161 |1721 |35859 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80162 |1721 |35858 |0 |1 |2774A4|0 |2 |0 |
+ROW |80163 |1721 |35857 |0 |2 |F63100|0 |2 |0 |
+ROW |80164 |1721 |35855 |0 |3 |A54F10|0 |2 |0 |
+ROW |80165 |1721 |35847 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80166 |1722 |35869 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80167 |1722 |35868 |0 |1 |2774A4|0 |2 |0 |
+ROW |80168 |1723 |35866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80169 |1723 |35867 |5 |1 |2774A4|0 |2 |0 |
+ROW |80170 |1724 |35876 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80171 |1724 |35875 |0 |1 |2774A4|0 |2 |0 |
+ROW |80172 |1725 |35870 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80173 |1725 |35871 |0 |1 |2774A4|0 |2 |0 |
+ROW |80174 |1725 |35872 |0 |2 |F63100|0 |2 |0 |
+ROW |80175 |1725 |35873 |0 |3 |A54F10|0 |2 |0 |
+ROW |80176 |1725 |35874 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80177 |1726 |35901 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80178 |1726 |35900 |5 |1 |2774A4|0 |2 |0 |
+ROW |80179 |1727 |35895 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80180 |1727 |35894 |0 |1 |2774A4|0 |2 |0 |
+ROW |80181 |1727 |35893 |0 |2 |F63100|0 |2 |0 |
+ROW |80182 |1727 |35891 |0 |3 |A54F10|0 |2 |0 |
+ROW |80183 |1727 |35881 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80184 |1728 |35886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80185 |1728 |35887 |0 |1 |2774A4|0 |2 |0 |
+ROW |80186 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80187 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |80188 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80189 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |80190 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80191 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |80192 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |80193 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |80194 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80195 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80196 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80197 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |80198 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80199 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |80200 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80201 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |80202 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80203 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |80204 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |80205 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |80206 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80207 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80208 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80209 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |80210 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80211 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
+ROW |80212 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80213 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
+ROW |80214 |1866 |32071 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80215 |1866 |32102 |0 |1 |2774A4|0 |2 |0 |
+ROW |80216 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80217 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
+ROW |80218 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
+ROW |80219 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
+ROW |80220 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80221 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
+ROW |80222 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80223 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
+ROW |80224 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80225 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
+ROW |80226 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
+ROW |80227 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
+ROW |80228 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |80229 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80230 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80231 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
+ROW |80232 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
+ROW |80233 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
+ROW |80234 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
+ROW |80235 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
+ROW |80236 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80237 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
+ROW |80238 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
+ROW |80239 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
+ROW |80240 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |80241 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80242 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80243 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
+ROW |80244 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
+ROW |80245 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
+ROW |80246 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80247 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |80248 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |80249 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80250 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |80251 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |80252 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80253 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |80254 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |80255 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80256 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |80257 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80258 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |80259 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80260 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80261 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |80262 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |80263 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |80264 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80265 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |80266 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |80267 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80268 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |80269 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80270 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80271 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |80272 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |80273 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |80274 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80275 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |80276 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |80277 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80278 |1662 |34869 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80279 |1663 |34871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80280 |1663 |34870 |5 |1 |2774A4|0 |2 |0 |
+ROW |80281 |1663 |34872 |5 |2 |F63100|0 |2 |0 |
+ROW |80282 |1663 |34873 |5 |3 |A54F10|0 |2 |0 |
+ROW |80283 |1663 |34874 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |80284 |1664 |34880 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80285 |1665 |34882 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80286 |1665 |34881 |5 |1 |2774A4|0 |2 |0 |
+ROW |80287 |1665 |34883 |5 |2 |F63100|0 |2 |0 |
+ROW |80288 |1665 |34884 |5 |3 |A54F10|0 |2 |0 |
+ROW |80289 |1665 |34885 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |80290 |1666 |34903 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80291 |1666 |34902 |5 |1 |2774A4|0 |2 |0 |
+ROW |80292 |1666 |34901 |5 |2 |F63100|0 |2 |0 |
+ROW |80293 |1667 |34889 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80294 |1667 |34896 |5 |1 |2774A4|0 |2 |0 |
+ROW |80295 |1667 |34895 |5 |2 |F63100|0 |2 |0 |
+ROW |80296 |1667 |34894 |5 |3 |A54F10|0 |2 |0 |
+ROW |80297 |1667 |34893 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |80298 |1668 |34910 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80299 |1668 |34911 |5 |1 |2774A4|0 |2 |0 |
+ROW |80300 |1668 |34909 |5 |2 |F63100|0 |2 |0 |
+ROW |80301 |1669 |34913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80302 |1669 |34912 |5 |1 |2774A4|0 |2 |0 |
+ROW |80303 |1669 |34917 |5 |2 |F63100|0 |2 |0 |
+ROW |80304 |1669 |34915 |5 |3 |A54F10|0 |2 |0 |
+ROW |80305 |1669 |34914 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |80306 |1669 |34916 |5 |5 |6C59DC|0 |2 |0 |
+ROW |80307 |1669 |34918 |5 |6 |AC8C14|0 |2 |0 |
+ROW |80308 |1669 |34919 |5 |7 |611F27|0 |2 |0 |
+ROW |80309 |1670 |34925 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80310 |1670 |34926 |5 |1 |2774A4|0 |2 |0 |
+ROW |80311 |1670 |34927 |5 |2 |F63100|0 |2 |0 |
+ROW |80312 |1671 |34934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80313 |1671 |34935 |5 |1 |2774A4|0 |2 |0 |
+ROW |80314 |1671 |34936 |5 |2 |F63100|0 |2 |0 |
+ROW |80315 |1672 |34854 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80316 |1672 |34850 |5 |1 |2774A4|0 |2 |0 |
+ROW |80317 |1672 |34846 |5 |2 |F63100|0 |2 |0 |
+ROW |80318 |1672 |34845 |5 |3 |A54F10|0 |2 |0 |
+ROW |80319 |1673 |34852 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80320 |1674 |34848 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80321 |1674 |34849 |5 |1 |2774A4|0 |2 |0 |
+ROW |80322 |1674 |34847 |5 |2 |F63100|0 |2 |0 |
+ROW |80323 |1675 |34858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80324 |1867 |36852 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80325 |1867 |36853 |0 |1 |2774A4|0 |2 |0 |
+ROW |80326 |1867 |36851 |0 |2 |F63100|0 |2 |0 |
+ROW |80327 |1867 |36850 |0 |3 |A54F10|0 |2 |0 |
+ROW |80328 |1867 |36849 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80329 |1868 |36887 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80330 |1869 |36874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80331 |1869 |36854 |0 |1 |F63100|0 |2 |0 |
+ROW |80332 |1869 |36872 |0 |2 |2774A4|0 |2 |0 |
+ROW |80333 |1869 |36878 |0 |3 |A54F10|0 |2 |0 |
+ROW |80334 |1869 |36873 |0 |4 |6C59DC|1 |2 |0 |
+ROW |80335 |1869 |36867 |0 |5 |FC6EA3|1 |2 |0 |
+ROW |80336 |1869 |36871 |0 |6 |AC8C14|1 |2 |0 |
+ROW |80337 |1869 |36877 |0 |7 |611F27|1 |2 |0 |
+ROW |80338 |1870 |36870 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80339 |1870 |36859 |2 |1 |2774A4|0 |2 |0 |
+ROW |80340 |1870 |36864 |0 |2 |F63100|1 |2 |0 |
+ROW |80341 |1870 |36875 |0 |3 |A54F10|1 |2 |0 |
+ROW |80342 |1870 |36865 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |80343 |1870 |36876 |0 |5 |6C59DC|1 |2 |0 |
+ROW |80344 |1871 |36863 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80345 |1871 |36869 |0 |1 |F63100|0 |2 |0 |
+ROW |80346 |1871 |36861 |0 |2 |2774A4|0 |2 |0 |
+ROW |80347 |1871 |36866 |0 |3 |A54F10|0 |2 |0 |
+ROW |80348 |1871 |36862 |0 |4 |6C59DC|1 |2 |0 |
+ROW |80349 |1871 |36868 |0 |5 |FC6EA3|1 |2 |0 |
+ROW |80350 |1871 |36860 |0 |6 |AC8C14|1 |2 |0 |
+ROW |80351 |1871 |36855 |0 |7 |611F27|1 |2 |0 |
+ROW |80352 |1872 |36880 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80353 |1872 |36882 |5 |1 |2774A4|0 |2 |0 |
+ROW |80354 |1873 |36885 |0 |0 |969696|0 |9 |2 |
+ROW |80355 |1873 |36886 |0 |1 |C80000|0 |9 |0 |
+ROW |80356 |1874 |36806 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80357 |1874 |36822 |0 |1 |2774A4|0 |2 |0 |
+ROW |80358 |1875 |36819 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80359 |1875 |36815 |5 |1 |2774A4|0 |2 |0 |
+ROW |80360 |1876 |36820 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80361 |1877 |36831 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80362 |1877 |36829 |0 |1 |2774A4|0 |2 |0 |
+ROW |80363 |1877 |36830 |0 |2 |F63100|0 |2 |0 |
+ROW |80364 |1877 |36833 |0 |3 |A54F10|0 |2 |0 |
+ROW |80365 |1877 |36824 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80366 |1877 |36832 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80367 |1878 |36803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80368 |1878 |36813 |0 |1 |2774A4|0 |2 |0 |
+ROW |80369 |1879 |36812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80370 |1879 |36804 |0 |1 |2774A4|0 |2 |0 |
+ROW |80371 |1879 |36821 |0 |2 |F63100|0 |2 |0 |
+ROW |80372 |1879 |36805 |0 |3 |A54F10|1 |2 |0 |
+ROW |80373 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80374 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
+ROW |80375 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
+ROW |80376 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
+ROW |80377 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80378 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
+ROW |80379 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
+ROW |80380 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80381 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
+ROW |80382 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
+ROW |80383 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
+ROW |80384 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80385 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
+ROW |80386 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
+ROW |80387 |1909 |37084 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80388 |1909 |37092 |0 |1 |2774A4|0 |2 |0 |
+ROW |80389 |1909 |37081 |0 |2 |F63100|0 |2 |0 |
+ROW |80390 |1909 |37090 |0 |3 |A54F10|0 |2 |0 |
+ROW |80391 |1909 |37086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80392 |1909 |37096 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80393 |1909 |37083 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80394 |1909 |37094 |0 |7 |611F27|0 |2 |0 |
+ROW |80395 |1910 |37097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80396 |1910 |37091 |0 |1 |2774A4|0 |2 |0 |
+ROW |80397 |1910 |37087 |0 |2 |F63100|0 |2 |0 |
+ROW |80398 |1910 |37088 |0 |3 |A54F10|0 |2 |0 |
+ROW |80399 |1910 |37085 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80400 |1910 |37095 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80401 |1910 |37082 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80402 |1910 |37093 |0 |7 |611F27|0 |2 |0 |
+ROW |80403 |1911 |37020 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80404 |1911 |37021 |0 |1 |2774A4|0 |2 |0 |
+ROW |80405 |1911 |37019 |0 |2 |F63100|0 |2 |0 |
+ROW |80406 |1912 |37044 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80407 |1912 |37049 |2 |1 |FF0000|0 |2 |0 |
+ROW |80408 |1913 |37048 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80409 |1914 |37051 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80410 |1914 |37046 |2 |1 |FF0000|0 |2 |0 |
+ROW |80411 |1915 |37016 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80412 |1915 |37015 |0 |1 |2774A4|0 |2 |0 |
+ROW |80413 |1915 |37014 |0 |2 |F63100|0 |2 |0 |
+ROW |80414 |1916 |37026 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80415 |1916 |37024 |0 |1 |2774A4|0 |2 |0 |
+ROW |80416 |1916 |37034 |0 |2 |F63100|0 |2 |0 |
+ROW |80417 |1916 |37032 |0 |3 |A54F10|0 |2 |0 |
+ROW |80418 |1916 |37029 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80419 |1916 |37027 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80420 |1916 |37036 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80421 |1916 |37022 |0 |7 |611F27|0 |2 |0 |
+ROW |80422 |1917 |37031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80423 |1917 |37023 |0 |1 |2774A4|0 |2 |0 |
+ROW |80424 |1917 |37035 |0 |2 |F63100|0 |2 |0 |
+ROW |80425 |1917 |37033 |0 |3 |A54F10|0 |2 |0 |
+ROW |80426 |1917 |37030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80427 |1917 |37028 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80428 |1917 |37025 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80429 |1917 |37013 |0 |7 |611F27|0 |2 |0 |
+ROW |80430 |1918 |37041 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80431 |1919 |37017 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80432 |1920 |37039 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80433 |1920 |37040 |0 |1 |2774A4|0 |2 |0 |
+ROW |80434 |1921 |37038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80435 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80436 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
+ROW |80437 |1922 |33000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80438 |1922 |33015 |0 |1 |2774A4|0 |2 |0 |
+ROW |80439 |1922 |33013 |0 |2 |F63100|0 |2 |0 |
+ROW |80440 |1922 |33011 |0 |3 |A54F10|0 |2 |0 |
+ROW |80441 |1922 |33009 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80442 |1922 |33003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80443 |1922 |33006 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80444 |1922 |33001 |0 |7 |611F27|0 |2 |0 |
+ROW |80445 |1923 |33004 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80446 |1923 |33014 |0 |1 |2774A4|0 |2 |0 |
+ROW |80447 |1923 |33012 |0 |2 |F63100|0 |2 |0 |
+ROW |80448 |1923 |33010 |0 |3 |A54F10|0 |2 |0 |
+ROW |80449 |1923 |33007 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80450 |1923 |33002 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80451 |1923 |33005 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80452 |1923 |33016 |0 |7 |611F27|0 |2 |0 |
+ROW |80453 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80454 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
+ROW |80455 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
+ROW |80456 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80457 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
+ROW |80458 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80459 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80460 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
+ROW |80461 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80462 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
+ROW |80463 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
+ROW |80464 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80465 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
+ROW |80466 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
+ROW |80467 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
+ROW |80468 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80469 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80470 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80471 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
+ROW |80472 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80473 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
+ROW |80474 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
+ROW |80475 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
+ROW |80476 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80477 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80478 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80479 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
+ROW |80480 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80481 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80482 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80483 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
+ROW |80484 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80485 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80486 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
+ROW |80487 |1880 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80488 |1880 |31938 |0 |1 |2774A4|0 |2 |0 |
+ROW |80489 |1880 |31950 |0 |2 |F63100|0 |2 |0 |
+ROW |80490 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80491 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
+ROW |80492 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
+ROW |80493 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80494 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
+ROW |80495 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80496 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
+ROW |80497 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
+ROW |80498 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80499 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
+ROW |80500 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
+ROW |80501 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80502 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
+ROW |80503 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80504 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
+ROW |80505 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
+ROW |80506 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
+ROW |80507 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80508 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80509 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80510 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
+ROW |80511 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
+ROW |80512 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
+ROW |80513 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
+ROW |80514 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
+ROW |80515 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80516 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
+ROW |80517 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80518 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
+ROW |80519 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
+ROW |80520 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
+ROW |80521 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80522 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
+ROW |80523 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
+ROW |80524 |1520 |34128 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80525 |1520 |34127 |0 |1 |2774A4|0 |2 |0 |
+ROW |80526 |1520 |34130 |0 |2 |F63100|0 |2 |0 |
+ROW |80527 |1520 |34131 |0 |3 |A54F10|0 |2 |0 |
+ROW |80528 |1520 |34132 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80529 |1521 |34134 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80530 |1521 |34149 |0 |1 |2774A4|0 |2 |0 |
+ROW |80531 |1521 |34153 |0 |2 |F63100|0 |2 |0 |
+ROW |80532 |1521 |34152 |0 |3 |A54F10|0 |2 |0 |
+ROW |80533 |1521 |34150 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80534 |1521 |34148 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80535 |1522 |34167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80536 |1522 |34166 |0 |1 |2774A4|0 |2 |0 |
+ROW |80537 |1523 |34164 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80538 |1523 |34165 |0 |1 |2774A4|0 |2 |0 |
+ROW |80539 |1524 |34108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80540 |1524 |34109 |0 |1 |2774A4|0 |2 |0 |
+ROW |80541 |1524 |34110 |0 |2 |F63100|0 |2 |0 |
+ROW |80542 |1524 |34111 |0 |3 |A54F10|0 |2 |0 |
+ROW |80543 |1524 |34113 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80544 |1524 |34107 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80545 |1524 |34114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |80546 |1524 |34116 |0 |7 |611F27|0 |2 |0 |
+ROW |80547 |1524 |34122 |0 |8 |F230E0|0 |2 |0 |
+ROW |80548 |1881 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |80549 |1881 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |80550 |1881 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |80551 |1881 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |80552 |1882 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |80553 |1882 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |80554 |1882 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |80555 |1882 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80556 |1882 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |80557 |1882 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |80558 |1882 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |80559 |1882 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |80560 |1882 |23344 |0 |8 |000099|0 |2 |0 |
+ROW |80561 |1882 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |80562 |1883 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |80563 |1883 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |80564 |1883 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |80565 |1883 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |80566 |1883 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |80567 |1883 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |80568 |1883 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |80569 |1883 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |80570 |1883 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |80571 |1883 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |80572 |1884 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |80573 |1885 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |80574 |1885 |23358 |0 |1 |C80000|0 |2 |0 |
+ROW |80575 |1886 |36910 |0 |0 |DD0000|0 |2 |0 |
+ROW |80576 |1886 |36896 |0 |1 |00DDDD|0 |2 |0 |
+ROW |80577 |1886 |36901 |0 |2 |3333FF|0 |2 |0 |
+ROW |80578 |1886 |36900 |0 |3 |00FF00|0 |2 |0 |
+ROW |80579 |1887 |36922 |0 |0 |990099|0 |2 |0 |
+ROW |80580 |1887 |36924 |0 |1 |990000|0 |2 |0 |
+ROW |80581 |1887 |36921 |0 |2 |0000EE|0 |2 |0 |
+ROW |80582 |1887 |36915 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80583 |1887 |36920 |0 |4 |007700|0 |2 |0 |
+ROW |80584 |1887 |36919 |0 |5 |003300|0 |2 |0 |
+ROW |80585 |1887 |36930 |0 |6 |33FFFF|0 |2 |0 |
+ROW |80586 |1887 |36923 |0 |7 |DD0000|0 |2 |0 |
+ROW |80587 |1887 |36928 |0 |8 |000099|0 |2 |0 |
+ROW |80588 |1887 |36904 |0 |9 |00FF00|0 |2 |0 |
+ROW |80589 |1888 |36918 |0 |0 |FFAA00|0 |2 |0 |
+ROW |80590 |1888 |36912 |0 |1 |990099|0 |2 |0 |
+ROW |80591 |1888 |36917 |0 |2 |EE0000|0 |2 |0 |
+ROW |80592 |1888 |36927 |0 |3 |FF66FF|0 |2 |0 |
+ROW |80593 |1888 |36916 |0 |4 |0000EE|0 |2 |0 |
+ROW |80594 |1888 |36914 |0 |5 |00EE00|0 |2 |0 |
+ROW |80595 |1888 |36929 |0 |6 |009999|0 |2 |0 |
+ROW |80596 |1888 |36913 |0 |7 |BBBB00|0 |2 |0 |
+ROW |80597 |1888 |36925 |0 |8 |990000|0 |2 |0 |
+ROW |80598 |1888 |36926 |0 |9 |008800|0 |2 |0 |
+ROW |80599 |1889 |36911 |0 |0 |008800|0 |2 |0 |
+ROW |80600 |1890 |36903 |5 |0 |00C800|0 |2 |0 |
+ROW |80601 |1890 |36894 |0 |1 |C80000|0 |2 |0 |
+ROW |80602 |1525 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |80603 |1525 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |80604 |1525 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |80605 |1525 |25366 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80606 |1525 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |80607 |1525 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |80608 |1525 |22400 |0 |6 |33FFFF|0 |2 |0 |
+ROW |80609 |1525 |22689 |0 |7 |DD0000|0 |2 |0 |
+ROW |80610 |1525 |23171 |0 |8 |000099|0 |2 |0 |
+ROW |80611 |1525 |22401 |0 |9 |00FF00|0 |2 |0 |
+ROW |80612 |1526 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |80613 |1526 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |80614 |1526 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |80615 |1526 |25367 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80616 |1526 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |80617 |1526 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |80618 |1526 |23270 |0 |6 |33FFFF|0 |2 |0 |
+ROW |80619 |1526 |23262 |0 |7 |DD0000|0 |2 |0 |
+ROW |80620 |1526 |23267 |0 |8 |000099|0 |2 |0 |
+ROW |80621 |1526 |23328 |0 |9 |00FF00|0 |2 |0 |
+ROW |80622 |1527 |22406 |0 |0 |00EE00|0 |2 |0 |
+ROW |80623 |1527 |25665 |0 |1 |0000EE|0 |2 |0 |
+ROW |80624 |1527 |25666 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80625 |1527 |28537 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80626 |1527 |28535 |0 |4 |990099|0 |2 |0 |
+ROW |80627 |1528 |23257 |0 |0 |00EE00|0 |2 |0 |
+ROW |80628 |1528 |25667 |0 |1 |0000EE|0 |2 |0 |
+ROW |80629 |1528 |25668 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80630 |1528 |28538 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80631 |1528 |28536 |0 |4 |990099|0 |2 |0 |
+ROW |80632 |1529 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |80633 |1529 |22408 |0 |1 |FFAA00|0 |2 |0 |
+ROW |80634 |1529 |22412 |0 |2 |990099|0 |2 |0 |
+ROW |80635 |1529 |22414 |0 |3 |FF66FF|0 |2 |0 |
+ROW |80636 |1529 |23663 |0 |4 |009999|0 |2 |0 |
+ROW |80637 |1529 |22430 |0 |5 |8048B4|0 |2 |0 |
+ROW |80638 |1529 |22420 |0 |6 |FD5434|0 |2 |0 |
+ROW |80639 |1530 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |80640 |1530 |23258 |0 |1 |FFAA00|0 |2 |0 |
+ROW |80641 |1530 |23253 |0 |2 |990099|0 |2 |0 |
+ROW |80642 |1530 |23266 |0 |3 |FF66FF|0 |2 |0 |
+ROW |80643 |1530 |23664 |0 |4 |009999|0 |2 |0 |
+ROW |80644 |1530 |23255 |0 |5 |8048B4|0 |2 |0 |
+ROW |80645 |1530 |23265 |0 |6 |FD5434|0 |2 |0 |
+ROW |80646 |1531 |22422 |0 |0 |00EE00|0 |2 |0 |
+ROW |80647 |1531 |22424 |0 |1 |0000EE|0 |2 |0 |
+ROW |80648 |1531 |25370 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80649 |1531 |29822 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80650 |1532 |23256 |0 |0 |00EE00|0 |2 |0 |
+ROW |80651 |1532 |23252 |0 |1 |0000EE|0 |2 |0 |
+ROW |80652 |1532 |25371 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80653 |1532 |29823 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80654 |1535 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |80655 |1535 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |80656 |1536 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |80657 |1536 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |80658 |1537 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |80659 |1537 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |80660 |1537 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |80661 |1537 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |80662 |1537 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |80663 |1537 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |80664 |1538 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |80665 |1538 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |80666 |1538 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |80667 |1538 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |80668 |1538 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |80669 |1538 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |80670 |1539 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |80671 |1539 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |80672 |1539 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |80673 |1539 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80674 |1539 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |80675 |1539 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |80676 |1539 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |80677 |1539 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |80678 |1539 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |80679 |1539 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |80680 |1539 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |80681 |1540 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |80682 |1540 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |80683 |1540 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |80684 |1540 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80685 |1540 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |80686 |1540 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |80687 |1540 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |80688 |1540 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |80689 |1540 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |80690 |1540 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |80691 |1540 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |80692 |1541 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |80693 |1541 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |80694 |1541 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80695 |1541 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80696 |1541 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |80697 |1541 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |80698 |1541 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |80699 |1541 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |80700 |1541 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |80701 |1541 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |80702 |1541 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |80703 |1541 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |80704 |1541 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |80705 |1541 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |80706 |1541 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |80707 |1542 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |80708 |1542 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |80709 |1542 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80710 |1542 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80711 |1542 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |80712 |1542 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |80713 |1542 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |80714 |1542 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |80715 |1542 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |80716 |1542 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |80717 |1542 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |80718 |1542 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |80719 |1542 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |80720 |1542 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |80721 |1542 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |80722 |1543 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |80723 |1543 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |80724 |1544 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |80725 |1544 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |80726 |1545 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |80727 |1545 |23251 |0 |1 |F63100|0 |2 |0 |
+ROW |80728 |1546 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |80729 |1546 |23272 |0 |1 |F63100|0 |2 |0 |
+ROW |80730 |1547 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |80731 |1547 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |80732 |1547 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |80733 |1547 |28562 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80734 |1547 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |80735 |1547 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |80736 |1547 |28552 |0 |6 |33FFFF|0 |2 |0 |
+ROW |80737 |1547 |28573 |0 |7 |DD0000|0 |2 |0 |
+ROW |80738 |1547 |28579 |0 |8 |000099|0 |2 |0 |
+ROW |80739 |1547 |28559 |0 |9 |00FF00|0 |2 |0 |
+ROW |80740 |1548 |28567 |0 |0 |00EE00|0 |2 |0 |
+ROW |80741 |1548 |28575 |0 |1 |0000EE|0 |2 |0 |
+ROW |80742 |1548 |28576 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80743 |1548 |28583 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80744 |1548 |28582 |0 |4 |990099|0 |2 |0 |
+ROW |80745 |1549 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |80746 |1549 |28568 |0 |1 |FFAA00|0 |2 |0 |
+ROW |80747 |1549 |28564 |0 |2 |990099|0 |2 |0 |
+ROW |80748 |1549 |28578 |0 |3 |FF66FF|0 |2 |0 |
+ROW |80749 |1549 |28580 |0 |4 |009999|0 |2 |0 |
+ROW |80750 |1549 |28565 |0 |5 |8048B4|0 |2 |0 |
+ROW |80751 |1549 |28577 |0 |6 |FD5434|0 |2 |0 |
+ROW |80752 |1550 |28566 |0 |0 |00EE00|0 |2 |0 |
+ROW |80753 |1550 |28561 |0 |1 |0000EE|0 |2 |0 |
+ROW |80754 |1550 |28563 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80755 |1550 |29821 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80756 |1552 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |80757 |1552 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |80758 |1553 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |80759 |1553 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |80760 |1553 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |80761 |1553 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |80762 |1553 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |80763 |1553 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |80764 |1554 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |80765 |1554 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |80766 |1554 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |80767 |1554 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |80768 |1554 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |80769 |1554 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |80770 |1554 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |80771 |1554 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |80772 |1554 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |80773 |1554 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |80774 |1554 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |80775 |1555 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |80776 |1555 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |80777 |1555 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |80778 |1555 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |80779 |1555 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |80780 |1555 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |80781 |1555 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |80782 |1555 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |80783 |1555 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |80784 |1555 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |80785 |1555 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |80786 |1555 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |80787 |1555 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |80788 |1555 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |80789 |1555 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |80790 |1556 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |80791 |1556 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |80792 |1557 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |80793 |1557 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |80794 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80795 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
+ROW |80796 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
+ROW |80797 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80798 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
+ROW |80799 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80800 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
+ROW |80801 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80802 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
+ROW |80803 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
+ROW |80804 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80805 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
+ROW |80806 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80807 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
+ROW |80808 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |80809 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |80810 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |80811 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |80812 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |80813 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |80814 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |80815 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |80816 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |80817 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |80818 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |80819 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |80820 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |80821 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |80822 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |80823 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |80824 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |80825 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |80826 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |80827 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |80828 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |80829 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |80830 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |80831 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |80832 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |80833 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |80834 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |80835 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |80836 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |80837 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |80838 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |80839 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |80840 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |80841 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |80842 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |80843 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |80844 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |80845 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |80846 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |80847 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |80848 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |80849 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |80850 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |80851 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |80852 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |80853 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |80854 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |80855 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |80856 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |80857 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |80858 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |80859 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |80860 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |80861 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |80862 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |80863 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |80864 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |80865 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |80866 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |80867 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |80868 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |80869 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |80870 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |80871 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |80872 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |80873 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |80874 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |80875 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |80876 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |80877 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |80878 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |80879 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |80880 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |80881 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |80882 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |80883 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |80884 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |80885 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |80886 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |80887 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |80888 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |80889 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |80890 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |80891 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |80892 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |80893 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |80894 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |80895 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |80896 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |80897 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |80898 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |80899 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |80900 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |80901 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |80902 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |80903 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |80904 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |80905 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |80906 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |80907 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |80908 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |80909 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |80910 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |80911 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80912 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |80913 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
+ROW |80914 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
+ROW |80915 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80916 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
+ROW |80917 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80918 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
+ROW |80919 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80920 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
+ROW |80921 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80922 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
+ROW |80923 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
+ROW |80924 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
+ROW |80925 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80926 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80927 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80928 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
+ROW |80929 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80930 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
+ROW |80931 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80932 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
+ROW |80933 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80934 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
+ROW |80935 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |80936 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
+ROW |80937 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80938 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
+ROW |80939 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80940 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |80941 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80942 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |80943 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |80944 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |80945 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80946 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80947 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |80948 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80949 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |80950 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |80951 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |80952 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |80953 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80954 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |80955 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |80956 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80957 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |80958 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80959 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |80960 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80961 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |80962 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |80963 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |80964 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |80965 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |80966 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |80967 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |80968 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80969 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |80970 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |80971 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80972 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |80973 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80974 |1488 |36931 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80975 |1488 |36932 |0 |1 |2774A4|0 |2 |0 |
+ROW |80976 |1488 |36933 |0 |2 |F63100|0 |2 |0 |
+ROW |80977 |1488 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |80978 |1677 |35580 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80979 |1677 |35583 |0 |1 |2774A4|0 |2 |0 |
+ROW |80980 |1677 |35581 |0 |2 |F63100|0 |2 |0 |
+ROW |80981 |1677 |35582 |0 |3 |A54F10|0 |2 |0 |
+ROW |80982 |1678 |35589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80983 |1678 |35588 |0 |1 |2774A4|0 |2 |0 |
+ROW |80984 |1678 |35587 |0 |2 |F63100|0 |2 |0 |
+ROW |80985 |1679 |35592 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80986 |1679 |35601 |0 |1 |2774A4|0 |2 |0 |
+ROW |80987 |1891 |35596 |2 |0 |1A7C11|0 |2 |0 |
+ROW |80988 |1891 |35597 |0 |1 |2774A4|0 |2 |0 |
+ROW |80989 |1681 |35602 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80990 |1681 |35607 |0 |1 |2774A4|0 |2 |0 |
+ROW |80991 |1681 |35605 |0 |2 |F63100|0 |2 |0 |
+ROW |80992 |1681 |35603 |0 |3 |A54F10|0 |2 |0 |
+ROW |80993 |1682 |35609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80994 |1682 |35611 |0 |1 |2774A4|0 |2 |0 |
+ROW |80995 |1682 |35610 |0 |2 |F63100|0 |2 |0 |
+ROW |80996 |1683 |35623 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80997 |1683 |35621 |0 |1 |2774A4|0 |2 |0 |
+ROW |80998 |1684 |35630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |80999 |1684 |35631 |0 |1 |2774A4|0 |2 |0 |
+ROW |81000 |1685 |35633 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81001 |1685 |35635 |0 |1 |2774A4|0 |2 |0 |
+ROW |81002 |1686 |35636 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81003 |1686 |35634 |0 |1 |2774A4|0 |2 |0 |
+ROW |81004 |1687 |35638 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81005 |1687 |35639 |0 |1 |2774A4|0 |2 |0 |
+ROW |81006 |1688 |35637 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81007 |1688 |35640 |0 |1 |2774A4|0 |2 |0 |
+ROW |81008 |1688 |35641 |0 |2 |F63100|0 |2 |0 |
+ROW |81009 |1689 |35643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81010 |1689 |35644 |0 |1 |2774A4|0 |2 |0 |
+ROW |81011 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81012 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
+ROW |81013 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
+ROW |81014 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
+ROW |81015 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81016 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
+ROW |81017 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
+ROW |81018 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81019 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
+ROW |81020 |1892 |32681 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81021 |1892 |32682 |0 |1 |2774A4|0 |2 |0 |
+ROW |81022 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81023 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
+ROW |81024 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
+ROW |81025 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
+ROW |81026 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81027 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
+ROW |81028 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |81029 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81030 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |81031 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81032 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
+ROW |81033 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81034 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
+ROW |81035 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81036 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
+ROW |81037 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81038 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |81039 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81040 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
+ROW |81041 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
+ROW |81042 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81043 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
+ROW |81044 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81045 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
+ROW |81046 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81047 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
+ROW |81048 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81049 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
+ROW |81050 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
+ROW |81051 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
+ROW |81052 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81053 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81054 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
+ROW |81055 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81056 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
+ROW |81057 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |81058 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
+ROW |81059 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81060 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81061 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
+ROW |81062 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81063 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
+ROW |81064 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81065 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
+ROW |81066 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
+ROW |81067 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
+ROW |81068 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81069 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81070 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
+ROW |81071 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
+ROW |81072 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81073 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
+ROW |81074 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81075 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
+ROW |81076 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
+ROW |81077 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81078 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |81079 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
+ROW |81080 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81081 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
+ROW |81082 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
+ROW |81083 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
+ROW |81084 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81085 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
+ROW |81086 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
+ROW |81087 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
+ROW |81088 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81089 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
+ROW |81090 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81091 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
+ROW |81092 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
+ROW |81093 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
+ROW |81094 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81095 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81096 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81097 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
+ROW |81098 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
+ROW |81099 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81100 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
+ROW |81101 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
+ROW |81102 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
+ROW |81103 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81104 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
+ROW |81105 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
+ROW |81106 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
+ROW |81107 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81108 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81109 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
+ROW |81110 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
+ROW |81111 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
+ROW |81112 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81113 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
+ROW |81114 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
+ROW |81115 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81116 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
+ROW |81117 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81118 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
+ROW |81119 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
+ROW |81120 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
+ROW |81121 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |81122 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
+ROW |81123 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81124 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |81125 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81126 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |81127 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |81128 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81129 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81130 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |81131 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81132 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |81133 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |81134 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |81135 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81136 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81137 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81138 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |81139 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |81140 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |81141 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81142 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |81143 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81144 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |81145 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81146 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |81147 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81148 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |81149 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |81150 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |81151 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81152 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81153 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |81154 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |81155 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |81156 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81157 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81158 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |81159 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81160 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |81161 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81162 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |81163 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81164 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81165 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |81166 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |81167 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |81168 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81169 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81170 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81171 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81172 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81173 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |81174 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |81175 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |81176 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81177 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |81178 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81179 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |81180 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81181 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |81182 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |81183 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |81184 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81185 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |81186 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81187 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |81188 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |81189 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |81190 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81191 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |81192 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |81193 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |81194 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81195 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |81196 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |81197 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |81198 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81199 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |81200 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |81201 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81202 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |81203 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |81204 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |81205 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81206 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |81207 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81208 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |81209 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |81210 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |81211 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81212 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |81213 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |81214 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |81215 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81216 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |81217 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |81218 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |81219 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81220 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |81221 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |81222 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81223 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |81224 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |81225 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |81226 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81227 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |81228 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81229 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |81230 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |81231 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |81232 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81233 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |81234 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |81235 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |81236 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81237 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |81238 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |81239 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |81240 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81241 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |81242 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |81243 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81244 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |81245 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |81246 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |81247 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81248 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |81249 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81250 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |81251 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
+ROW |81252 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81253 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |81254 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81255 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |81256 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |81257 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81258 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |81259 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81260 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |81261 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81262 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |81263 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81264 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |81265 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |81266 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |81267 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81268 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81269 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |81270 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |81271 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |81272 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81273 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81274 |1893 |36993 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81275 |1893 |36991 |0 |1 |2774A4|0 |2 |0 |
+ROW |81276 |1894 |36975 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81277 |1895 |36996 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81278 |1895 |36978 |0 |1 |2774A4|0 |2 |0 |
+ROW |81279 |1895 |36992 |0 |2 |F63100|0 |2 |0 |
+ROW |81280 |1895 |36995 |0 |3 |A54F10|0 |2 |0 |
+ROW |81281 |1896 |36979 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81282 |1897 |36989 |0 |0 |1A7C11|1 |2 |0 |
+ROW |81283 |1897 |36986 |0 |1 |2774A4|1 |2 |0 |
+ROW |81284 |1897 |36983 |0 |2 |F63100|1 |2 |0 |
+ROW |81285 |1897 |36988 |5 |3 |A54F10|0 |2 |0 |
+ROW |81286 |1897 |36985 |5 |4 |FC6EA3|0 |2 |0 |
+ROW |81287 |1897 |36982 |5 |5 |6C59DC|0 |2 |0 |
+ROW |81288 |1898 |36990 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81289 |1898 |36987 |0 |1 |2774A4|0 |2 |0 |
+ROW |81290 |1898 |36984 |0 |2 |F63100|0 |2 |0 |
+ROW |81291 |1899 |37003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81292 |1899 |37002 |0 |1 |2774A4|1 |2 |0 |
+ROW |81293 |1900 |37001 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81294 |1900 |37000 |0 |1 |2774A4|0 |2 |0 |
+ROW |81295 |1900 |36999 |0 |2 |F63100|0 |2 |0 |
+ROW |81296 |1900 |36998 |0 |3 |A54F10|0 |2 |0 |
+ROW |81297 |1900 |36997 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81298 |1901 |36956 |0 |0 |1A7C11|1 |2 |0 |
+ROW |81299 |1901 |36961 |0 |1 |2774A4|1 |2 |0 |
+ROW |81300 |1901 |36959 |0 |2 |F63100|1 |2 |0 |
+ROW |81301 |1901 |36960 |0 |3 |A54F10|1 |2 |0 |
+ROW |81302 |1901 |36965 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81303 |1901 |36957 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81304 |1902 |36958 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81305 |1902 |36964 |0 |1 |2774A4|0 |2 |0 |
+ROW |81306 |1902 |36962 |0 |2 |F63100|1 |2 |0 |
+ROW |81307 |1902 |36963 |0 |3 |A54F10|1 |2 |0 |
+ROW |81308 |1903 |36971 |5 |0 |1A7C11|1 |2 |0 |
+ROW |81309 |1903 |36972 |0 |1 |2774A4|0 |2 |0 |
+ROW |81310 |1903 |36967 |0 |2 |F63100|1 |2 |0 |
+ROW |81311 |1903 |36968 |0 |3 |A54F10|1 |2 |0 |
+ROW |81312 |1903 |36969 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81313 |1903 |36970 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81314 |1903 |36966 |0 |6 |AC8C14|1 |2 |0 |
+ROW |81315 |1904 |36937 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81316 |1904 |36936 |0 |1 |2774A4|1 |2 |0 |
+ROW |81317 |1905 |36940 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81318 |1906 |36952 |0 |0 |1A7C11|1 |2 |0 |
+ROW |81319 |1906 |36951 |0 |1 |2774A4|1 |2 |0 |
+ROW |81320 |1906 |36953 |0 |2 |F63100|1 |2 |0 |
+ROW |81321 |1906 |36954 |0 |3 |A54F10|1 |2 |0 |
+ROW |81322 |1907 |36947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81323 |1907 |36944 |0 |1 |2774A4|1 |2 |0 |
+ROW |81324 |1908 |36973 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81325 |1908 |36955 |0 |1 |2774A4|1 |2 |0 |
+ROW |81326 |1861 |36798 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81327 |1861 |36781 |0 |1 |2774A4|0 |2 |0 |
+ROW |81328 |1861 |36780 |0 |2 |F63100|0 |2 |0 |
+ROW |81329 |1861 |36779 |0 |3 |A54F10|0 |2 |0 |
+ROW |81330 |1861 |36778 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81331 |1861 |36777 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81332 |1861 |36775 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81333 |1861 |36774 |0 |7 |611F27|0 |2 |0 |
+ROW |81334 |1861 |36776 |0 |8 |F230E0|0 |2 |0 |
+ROW |81335 |1861 |36776 |0 |9 |FFAD40|0 |2 |0 |
+ROW |81336 |1862 |36772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81337 |1863 |36795 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81338 |1863 |36794 |0 |1 |2774A4|0 |2 |0 |
+ROW |81339 |1863 |36792 |0 |2 |F63100|0 |2 |0 |
+ROW |81340 |1863 |36791 |0 |3 |A54F10|0 |2 |0 |
+ROW |81341 |1863 |36789 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81342 |1863 |36788 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81343 |1863 |36787 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81344 |1863 |36785 |0 |7 |611F27|0 |2 |0 |
+ROW |81345 |1863 |36786 |0 |8 |F230E0|0 |2 |0 |
+ROW |81346 |1863 |36773 |0 |9 |FFAD40|0 |2 |0 |
+ROW |81347 |1863 |36784 |0 |10 |40CDFF|0 |2 |0 |
+ROW |81348 |1863 |36783 |0 |11 |40FFA0|0 |2 |0 |
+ROW |81349 |1863 |36782 |0 |12 |AE4500|0 |2 |0 |
+ROW |81350 |1864 |36771 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81351 |1865 |36799 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81352 |1865 |36800 |0 |1 |2774A4|0 |2 |0 |
+ROW |81353 |1865 |36801 |0 |2 |F63100|0 |2 |0 |
+ROW |81354 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81355 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |81356 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81357 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |81358 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81359 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81360 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81361 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |81362 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81363 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81364 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |81365 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |81366 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |81367 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81368 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |81369 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81370 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |81371 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81372 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |81373 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |81374 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81375 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81376 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |81377 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81378 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |81379 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81380 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81381 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81382 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81383 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81384 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81385 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81386 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |81387 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |81388 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |81389 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |81390 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |81391 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |81392 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |81393 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |81394 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81395 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81396 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81397 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81398 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81399 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |81400 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |81401 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |81402 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81403 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81404 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81405 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |81406 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |81407 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |81408 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81409 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81410 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81411 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |81412 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |81413 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |81414 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81415 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81416 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81417 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |81418 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |81419 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |81420 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81421 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81422 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81423 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |81424 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |81425 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |81426 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81427 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81428 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81429 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |81430 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |81431 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |81432 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81433 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81434 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81435 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |81436 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |81437 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |81438 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81439 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81440 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81441 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |81442 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |81443 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |81444 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81445 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81446 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81447 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |81448 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |81449 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |81450 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81451 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81452 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81453 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |81454 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |81455 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |81456 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81457 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81458 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81459 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |81460 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |81461 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |81462 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81463 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81464 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81465 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |81466 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |81467 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |81468 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81469 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81470 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81471 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |81472 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |81473 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |81474 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81475 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81476 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81477 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |81478 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |81479 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |81480 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81481 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81482 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81483 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |81484 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |81485 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |81486 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81487 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81488 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81489 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |81490 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |81491 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |81492 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81493 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81494 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81495 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |81496 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |81497 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |81498 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81499 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81500 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81501 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |81502 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |81503 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |81504 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81505 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81506 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81507 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |81508 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |81509 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |81510 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81511 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81512 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81513 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |81514 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |81515 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |81516 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81517 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81518 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81519 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |81520 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |81521 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |81522 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81523 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81524 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81525 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |81526 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |81527 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |81528 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81529 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81530 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81531 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |81532 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |81533 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |81534 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81535 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81536 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81537 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |81538 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |81539 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |81540 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81541 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81542 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81543 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |81544 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |81545 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |81546 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81547 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81548 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81549 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |81550 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |81551 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |81552 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81553 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81554 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81555 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |81556 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |81557 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |81558 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81559 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81560 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81561 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81562 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |81563 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81564 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81565 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81566 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81567 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81568 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81569 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81570 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81571 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81572 |1729 |35914 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81573 |1730 |35917 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81574 |1731 |35924 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81575 |1731 |35931 |0 |1 |2774A4|0 |2 |0 |
+ROW |81576 |1731 |35922 |0 |2 |F63100|0 |2 |0 |
+ROW |81577 |1731 |35929 |0 |3 |A54F10|0 |2 |0 |
+ROW |81578 |1731 |35921 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81579 |1731 |35928 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81580 |1732 |35932 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81581 |1732 |35925 |0 |1 |2774A4|0 |2 |0 |
+ROW |81582 |1733 |35923 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81583 |1733 |35930 |0 |1 |2774A4|0 |2 |0 |
+ROW |81584 |1734 |35948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81585 |1734 |35949 |0 |1 |2774A4|0 |2 |0 |
+ROW |81586 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81587 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81588 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81589 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
+ROW |81590 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
+ROW |81591 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
+ROW |81592 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81593 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81594 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81595 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81596 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81597 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
+ROW |81598 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
+ROW |81599 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
+ROW |81600 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81601 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81602 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81603 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81604 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81605 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
+ROW |81606 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
+ROW |81607 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
+ROW |81608 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81609 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81610 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81611 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81612 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81613 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
+ROW |81614 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
+ROW |81615 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
+ROW |81616 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81617 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81618 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81619 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81620 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81621 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
+ROW |81622 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
+ROW |81623 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
+ROW |81624 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81625 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81626 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81627 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81628 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81629 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81630 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81631 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81632 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81633 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81634 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81635 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81636 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81637 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81638 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81639 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81640 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81641 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81642 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81643 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |81644 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81645 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81646 |1690 |35679 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81647 |1691 |35681 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81648 |1692 |35683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81649 |1693 |35686 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81650 |1694 |35690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81651 |1694 |35705 |0 |1 |2774A4|0 |2 |0 |
+ROW |81652 |1694 |35696 |0 |2 |F63100|0 |2 |0 |
+ROW |81653 |1694 |35687 |0 |3 |A54F10|0 |2 |0 |
+ROW |81654 |1694 |35708 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81655 |1694 |35711 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81656 |1694 |35699 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81657 |1695 |35689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81658 |1695 |35704 |0 |1 |2774A4|0 |2 |0 |
+ROW |81659 |1695 |35695 |0 |2 |F63100|0 |2 |0 |
+ROW |81660 |1695 |35701 |0 |3 |A54F10|0 |2 |0 |
+ROW |81661 |1695 |35707 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81662 |1695 |35710 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81663 |1695 |35697 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81664 |1696 |35713 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81665 |1696 |35703 |0 |1 |2774A4|0 |2 |0 |
+ROW |81666 |1696 |35694 |0 |2 |F63100|0 |2 |0 |
+ROW |81667 |1696 |35712 |0 |3 |A54F10|0 |2 |0 |
+ROW |81668 |1696 |35706 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81669 |1696 |35709 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81670 |1696 |35698 |0 |6 |AC8C14|0 |2 |0 |
+ROW |81671 |1697 |35714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81672 |1698 |35716 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81673 |1699 |35718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81674 |1699 |35720 |0 |1 |2774A4|0 |2 |0 |
+ROW |81675 |1700 |35727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81676 |1700 |35724 |0 |1 |2774A4|0 |2 |0 |
+ROW |81677 |1701 |35726 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81678 |1701 |35723 |0 |1 |2774A4|0 |2 |0 |
+ROW |81679 |1702 |35730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81680 |1702 |35728 |0 |1 |2774A4|0 |2 |0 |
+ROW |81681 |1702 |35729 |0 |2 |F63100|0 |2 |0 |
+ROW |81682 |1703 |35737 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81683 |1703 |35733 |0 |1 |2774A4|1 |2 |0 |
+ROW |81684 |1703 |35743 |0 |2 |F63100|0 |2 |0 |
+ROW |81685 |1703 |35739 |0 |3 |A54F10|1 |2 |0 |
+ROW |81686 |1703 |35736 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81687 |1703 |35742 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81688 |1704 |35748 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81689 |1704 |35747 |0 |1 |2774A4|1 |2 |0 |
+ROW |81690 |1704 |35750 |0 |2 |F63100|0 |2 |0 |
+ROW |81691 |1704 |35749 |0 |3 |A54F10|1 |2 |0 |
+ROW |81692 |1705 |35756 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81693 |1705 |35755 |0 |1 |2774A4|1 |2 |0 |
+ROW |81694 |1705 |35758 |0 |2 |F63100|0 |2 |0 |
+ROW |81695 |1705 |35757 |0 |3 |A54F10|1 |2 |0 |
+ROW |81696 |1843 |35764 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81697 |1843 |35763 |0 |1 |2774A4|1 |2 |0 |
+ROW |81698 |1843 |35766 |0 |2 |F63100|0 |2 |0 |
+ROW |81699 |1843 |35765 |0 |3 |A54F10|1 |2 |0 |
+ROW |81700 |1844 |35771 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81701 |1844 |35769 |0 |1 |2774A4|0 |2 |0 |
+ROW |81702 |1844 |35770 |0 |2 |F63100|0 |2 |0 |
+ROW |81703 |1708 |35651 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81704 |1708 |35649 |0 |1 |2774A4|0 |2 |0 |
+ROW |81705 |1708 |35647 |0 |2 |F63100|0 |2 |0 |
+ROW |81706 |1708 |35653 |0 |3 |A54F10|0 |2 |0 |
+ROW |81707 |1708 |35652 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81708 |1708 |35650 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81709 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81710 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81711 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81712 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |81713 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81714 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81715 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81716 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81717 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81718 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81719 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81720 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
+ROW |81721 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
+ROW |81722 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
+ROW |81723 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |81724 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
+ROW |81725 |1477 |33427 |0 |0 |969696|0 |9 |2 |
+ROW |81726 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
+ROW |81727 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81728 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81729 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81730 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81731 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
+ROW |81732 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
+ROW |81733 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
+ROW |81734 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |81735 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |81736 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81737 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81738 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
+ROW |81739 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81740 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
+ROW |81741 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
+ROW |81742 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81743 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
+ROW |81744 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81745 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
+ROW |81746 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
+ROW |81747 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81748 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
+ROW |81749 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81750 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81751 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
+ROW |81752 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81753 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
+ROW |81754 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
+ROW |81755 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81756 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
+ROW |81757 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81758 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
+ROW |81759 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
+ROW |81760 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81761 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
+ROW |81762 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81763 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
+ROW |81764 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
+ROW |81765 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81766 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81767 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81768 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81769 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81770 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
+ROW |81771 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
+ROW |81772 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81773 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81774 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81775 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
+ROW |81776 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81777 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81778 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
+ROW |81779 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
+ROW |81780 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81781 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81782 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81783 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
+ROW |81784 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81785 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81786 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81787 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81788 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81789 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81790 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
+ROW |81791 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81792 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |81793 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |81794 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81795 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81796 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81797 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81798 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81799 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81800 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81801 |1735 |35972 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81802 |1735 |35975 |0 |1 |2774A4|0 |2 |0 |
+ROW |81803 |1736 |35977 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81804 |1736 |35980 |0 |1 |2774A4|0 |2 |0 |
+ROW |81805 |1737 |35981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81806 |1738 |35982 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81807 |1739 |36011 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81808 |1739 |36003 |0 |1 |2774A4|0 |2 |0 |
+ROW |81809 |1739 |36013 |0 |2 |F63100|0 |2 |0 |
+ROW |81810 |1739 |36005 |0 |3 |A54F10|0 |2 |0 |
+ROW |81811 |1739 |36014 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81812 |1739 |36006 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81813 |1740 |36012 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81814 |1740 |36004 |0 |1 |2774A4|0 |2 |0 |
+ROW |81815 |1741 |36002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81816 |1741 |36010 |0 |1 |2774A4|0 |2 |0 |
+ROW |81817 |1742 |36017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81818 |1743 |36025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81819 |1744 |36026 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81820 |1745 |35985 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81821 |1746 |36041 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81822 |1747 |36053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81823 |1747 |36045 |0 |1 |2774A4|0 |2 |0 |
+ROW |81824 |1747 |36055 |0 |2 |F63100|0 |2 |0 |
+ROW |81825 |1747 |36047 |0 |3 |A54F10|0 |2 |0 |
+ROW |81826 |1747 |36056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81827 |1747 |36048 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81828 |1748 |36054 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81829 |1748 |36046 |0 |1 |2774A4|0 |2 |0 |
+ROW |81830 |1749 |36044 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81831 |1749 |36052 |0 |1 |2774A4|0 |2 |0 |
+ROW |81832 |1750 |36059 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81833 |1751 |36060 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81834 |1752 |36029 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81835 |1753 |36077 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81836 |1754 |36078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81837 |1755 |36079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81838 |1756 |36080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81839 |1757 |36088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81840 |1757 |36098 |0 |1 |2774A4|0 |2 |0 |
+ROW |81841 |1757 |36089 |0 |2 |F63100|0 |2 |0 |
+ROW |81842 |1757 |36084 |0 |3 |A54F10|0 |2 |0 |
+ROW |81843 |1757 |36091 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81844 |1757 |36085 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81845 |1758 |36082 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81846 |1758 |36083 |0 |1 |2774A4|0 |2 |0 |
+ROW |81847 |1759 |36105 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81848 |1759 |36112 |0 |1 |2774A4|0 |2 |0 |
+ROW |81849 |1759 |36103 |0 |2 |F63100|0 |2 |0 |
+ROW |81850 |1759 |36110 |0 |3 |A54F10|0 |2 |0 |
+ROW |81851 |1759 |36102 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81852 |1759 |36109 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81853 |1760 |36104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81854 |1760 |36111 |0 |1 |2774A4|0 |2 |0 |
+ROW |81855 |1761 |36113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81856 |1761 |36106 |0 |1 |2774A4|0 |2 |0 |
+ROW |81857 |1762 |36126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81858 |1763 |36127 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81859 |1764 |36144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81860 |1765 |36145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81861 |1766 |36146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81862 |1767 |36147 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81863 |1768 |36155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81864 |1768 |36165 |0 |1 |2774A4|0 |2 |0 |
+ROW |81865 |1768 |36156 |0 |2 |F63100|0 |2 |0 |
+ROW |81866 |1768 |36151 |0 |3 |A54F10|0 |2 |0 |
+ROW |81867 |1768 |36158 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81868 |1768 |36152 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81869 |1769 |36149 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81870 |1769 |36150 |0 |1 |2774A4|0 |2 |0 |
+ROW |81871 |1770 |36172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81872 |1770 |36179 |0 |1 |2774A4|0 |2 |0 |
+ROW |81873 |1770 |36170 |0 |2 |F63100|0 |2 |0 |
+ROW |81874 |1770 |36177 |0 |3 |A54F10|0 |2 |0 |
+ROW |81875 |1770 |36169 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81876 |1770 |36176 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81877 |1771 |36171 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81878 |1771 |36178 |0 |1 |2774A4|0 |2 |0 |
+ROW |81879 |1772 |36180 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81880 |1772 |36173 |0 |1 |2774A4|0 |2 |0 |
+ROW |81881 |1773 |36193 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81882 |1774 |36194 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81883 |1775 |36210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81884 |1776 |36218 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81885 |1776 |36221 |0 |1 |2774A4|0 |2 |0 |
+ROW |81886 |1777 |36223 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81887 |1777 |36226 |0 |1 |2774A4|0 |2 |0 |
+ROW |81888 |1778 |36227 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81889 |1779 |36228 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81890 |1780 |36253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81891 |1780 |36245 |0 |1 |2774A4|0 |2 |0 |
+ROW |81892 |1780 |36255 |0 |2 |F63100|0 |2 |0 |
+ROW |81893 |1780 |36247 |0 |3 |A54F10|0 |2 |0 |
+ROW |81894 |1780 |36256 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81895 |1780 |36248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81896 |1781 |36254 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81897 |1781 |36246 |0 |1 |2774A4|0 |2 |0 |
+ROW |81898 |1782 |36244 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81899 |1782 |36252 |0 |1 |2774A4|0 |2 |0 |
+ROW |81900 |1783 |36259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81901 |1784 |36231 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81902 |1785 |36295 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81903 |1785 |36287 |0 |1 |2774A4|0 |2 |0 |
+ROW |81904 |1785 |36297 |0 |2 |F63100|0 |2 |0 |
+ROW |81905 |1785 |36289 |0 |3 |A54F10|0 |2 |0 |
+ROW |81906 |1785 |36298 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81907 |1785 |36290 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81908 |1786 |36296 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81909 |1786 |36288 |0 |1 |2774A4|0 |2 |0 |
+ROW |81910 |1787 |36286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81911 |1787 |36294 |0 |1 |2774A4|0 |2 |0 |
+ROW |81912 |1788 |36301 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81913 |1789 |36309 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81914 |1790 |36310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81915 |1791 |36269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81916 |1792 |36339 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81917 |1792 |36331 |0 |1 |2774A4|0 |2 |0 |
+ROW |81918 |1792 |36341 |0 |2 |F63100|0 |2 |0 |
+ROW |81919 |1792 |36333 |0 |3 |A54F10|0 |2 |0 |
+ROW |81920 |1792 |36342 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81921 |1792 |36334 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81922 |1793 |36340 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81923 |1793 |36332 |0 |1 |2774A4|0 |2 |0 |
+ROW |81924 |1794 |36330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81925 |1794 |36338 |0 |1 |2774A4|0 |2 |0 |
+ROW |81926 |1795 |36345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81927 |1796 |36353 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81928 |1797 |36354 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81929 |1798 |36313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81930 |1799 |36371 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81931 |1800 |36383 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81932 |1800 |36375 |0 |1 |2774A4|0 |2 |0 |
+ROW |81933 |1800 |36385 |0 |2 |F63100|0 |2 |0 |
+ROW |81934 |1800 |36377 |0 |3 |A54F10|0 |2 |0 |
+ROW |81935 |1800 |36386 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81936 |1800 |36378 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81937 |1801 |36384 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81938 |1801 |36376 |0 |1 |2774A4|0 |2 |0 |
+ROW |81939 |1802 |36374 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81940 |1802 |36382 |0 |1 |2774A4|0 |2 |0 |
+ROW |81941 |1803 |36389 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81942 |1804 |36397 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81943 |1805 |36398 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81944 |1806 |36357 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81945 |1807 |36415 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81946 |1808 |36427 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81947 |1808 |36419 |0 |1 |2774A4|0 |2 |0 |
+ROW |81948 |1808 |36429 |0 |2 |F63100|0 |2 |0 |
+ROW |81949 |1808 |36421 |0 |3 |A54F10|0 |2 |0 |
+ROW |81950 |1808 |36430 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81951 |1808 |36422 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81952 |1809 |36428 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81953 |1809 |36420 |0 |1 |2774A4|0 |2 |0 |
+ROW |81954 |1810 |36418 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81955 |1810 |36426 |0 |1 |2774A4|0 |2 |0 |
+ROW |81956 |1811 |36433 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81957 |1812 |36441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81958 |1813 |36442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81959 |1814 |36401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81960 |1815 |36460 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81961 |1816 |36472 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81962 |1816 |36464 |0 |1 |2774A4|0 |2 |0 |
+ROW |81963 |1816 |36474 |0 |2 |F63100|0 |2 |0 |
+ROW |81964 |1816 |36466 |0 |3 |A54F10|0 |2 |0 |
+ROW |81965 |1816 |36475 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81966 |1816 |36467 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81967 |1817 |36473 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81968 |1817 |36465 |0 |1 |2774A4|0 |2 |0 |
+ROW |81969 |1818 |36463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81970 |1818 |36471 |0 |1 |2774A4|0 |2 |0 |
+ROW |81971 |1819 |36478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81972 |1820 |36486 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81973 |1821 |36487 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81974 |1822 |36445 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81975 |1823 |36505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81976 |1824 |36517 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81977 |1824 |36509 |0 |1 |2774A4|0 |2 |0 |
+ROW |81978 |1824 |36519 |0 |2 |F63100|0 |2 |0 |
+ROW |81979 |1824 |36511 |0 |3 |A54F10|0 |2 |0 |
+ROW |81980 |1824 |36520 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81981 |1824 |36512 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81982 |1825 |36518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81983 |1825 |36510 |0 |1 |2774A4|0 |2 |0 |
+ROW |81984 |1826 |36508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81985 |1826 |36516 |0 |1 |2774A4|0 |2 |0 |
+ROW |81986 |1827 |36523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81987 |1828 |36531 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81988 |1829 |36532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81989 |1830 |36490 |5 |0 |1A7C11|0 |2 |0 |
+ROW |81990 |1831 |36550 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81991 |1832 |36563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81992 |1832 |36555 |0 |1 |2774A4|0 |2 |0 |
+ROW |81993 |1832 |36565 |0 |2 |F63100|0 |2 |0 |
+ROW |81994 |1832 |36557 |0 |3 |A54F10|0 |2 |0 |
+ROW |81995 |1832 |36566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |81996 |1832 |36558 |0 |5 |6C59DC|0 |2 |0 |
+ROW |81997 |1833 |36564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |81998 |1833 |36556 |0 |1 |2774A4|0 |2 |0 |
+ROW |81999 |1834 |36554 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82000 |1834 |36562 |0 |1 |2774A4|0 |2 |0 |
+ROW |82001 |1835 |36569 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82002 |1836 |36577 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82003 |1837 |36578 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82004 |1838 |36535 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82005 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82006 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |82007 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82008 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |82009 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82010 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |82011 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82012 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |82013 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82014 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |82015 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82016 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |82017 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82018 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |82019 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82020 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |82021 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82022 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |82023 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |82024 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |82025 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |82026 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |82027 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |82028 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |82029 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82030 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |82031 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |82032 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |82033 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82034 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82035 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82036 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |82037 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |82038 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |82039 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82040 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82041 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82042 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |82043 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |82044 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |82045 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82046 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82047 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82048 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |82049 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82050 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |82051 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82052 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |82053 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82054 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |82055 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |82056 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |82057 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82058 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82059 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82060 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |82061 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |82062 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82063 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |82064 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |82065 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |82066 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82067 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82068 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82069 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |82070 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |82071 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82072 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |82073 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |82074 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |82075 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82076 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82077 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82078 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |82079 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |82080 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82081 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82082 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82083 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82084 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |82085 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82086 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |82087 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82088 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |82089 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82090 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82091 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82092 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82093 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |82094 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |82095 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82096 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |82097 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |82098 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82099 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |82100 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |82101 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82102 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |82103 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82104 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |82105 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82106 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |82107 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82108 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |82109 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |82110 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |82111 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82112 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |82113 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |82114 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |82115 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82116 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |82117 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |82118 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |82119 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82120 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |82121 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82122 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |82123 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82124 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |82125 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82126 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |82127 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82128 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |82129 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82130 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |82131 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |82132 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |82133 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |82134 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |82135 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82136 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |82137 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |82138 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |82139 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82140 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82141 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82142 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |82143 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |82144 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |82145 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82146 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82147 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82148 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |82149 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82150 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |82151 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82152 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |82153 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |82154 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |82155 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82156 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82157 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82158 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |82159 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |82160 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82161 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |82162 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |82163 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |82164 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82165 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82166 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82167 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |82168 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |82169 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82170 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82171 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82172 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |82173 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82174 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |82175 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82176 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82177 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82178 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |82179 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |82180 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82181 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |82182 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |82183 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82184 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |82185 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82186 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |82187 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82188 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |82189 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |82190 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |82191 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82192 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |82193 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |82194 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |82195 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82196 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |82197 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |82198 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |82199 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82200 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82201 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82202 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |82203 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82204 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |82205 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82206 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |82207 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |82208 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |82209 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82210 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |82211 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82212 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |82213 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |82214 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |82215 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82216 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82217 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82218 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |82219 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |82220 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82221 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82222 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |82223 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82224 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82225 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |82226 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82227 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |82228 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |82229 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |82230 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82231 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |82232 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82233 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |82234 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82235 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |82236 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |82237 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |82238 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82239 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82240 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82241 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |82242 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |82243 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82244 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |82245 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |82246 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |82247 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |82248 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |82249 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |82250 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |82251 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |82252 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82253 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82254 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |82255 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |82256 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |82257 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |82258 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82259 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |82260 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82261 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |82262 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82263 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |82264 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |82265 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |82266 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82267 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82268 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82269 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |82270 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82271 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |82272 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82273 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |82274 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |82275 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |82276 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82277 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |82278 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |82279 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |82280 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |82281 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |82282 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |82283 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |82284 |1839 |36585 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82285 |1839 |36588 |2 |1 |2774A4|0 |2 |0 |
+ROW |82286 |1839 |36587 |0 |2 |F63100|1 |2 |0 |
+ROW |82287 |1839 |36584 |0 |3 |A54F10|1 |2 |0 |
+ROW |82288 |1839 |36586 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82289 |1839 |36583 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82290 |1840 |36591 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82291 |1840 |36594 |2 |1 |2774A4|0 |2 |0 |
+ROW |82292 |1840 |36593 |0 |2 |F63100|1 |2 |0 |
+ROW |82293 |1840 |36590 |0 |3 |A54F10|1 |2 |0 |
+ROW |82294 |1840 |36592 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82295 |1840 |36589 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82296 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82297 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
+ROW |82298 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82299 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
+ROW |82300 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82301 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
+ROW |82302 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82303 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
+ROW |82304 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82305 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |82306 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82307 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |82308 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82309 |1231 |36630 |5 |1 |2774A4|0 |2 |0 |
+ROW |82310 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82311 |1232 |36631 |5 |1 |2774A4|0 |2 |0 |
+ROW |82312 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82313 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |82314 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82315 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |82316 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82317 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |82318 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82319 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |82320 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82321 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82322 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82323 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82324 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82325 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |82326 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82327 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |82328 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |82329 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |82330 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |82331 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |82332 |1841 |36607 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82333 |1841 |36610 |2 |1 |2774A4|0 |2 |0 |
+ROW |82334 |1841 |36609 |0 |2 |F63100|1 |2 |0 |
+ROW |82335 |1841 |36606 |0 |3 |A54F10|1 |2 |0 |
+ROW |82336 |1841 |36608 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82337 |1841 |36605 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82338 |1842 |36613 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82339 |1842 |36616 |2 |1 |2774A4|0 |2 |0 |
+ROW |82340 |1842 |36615 |0 |2 |F63100|1 |2 |0 |
+ROW |82341 |1842 |36612 |0 |3 |A54F10|1 |2 |0 |
+ROW |82342 |1842 |36614 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82343 |1842 |36611 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82344 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82345 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
+ROW |82346 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82347 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
+ROW |82348 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82349 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
+ROW |82350 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82351 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
+ROW |82352 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82353 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |82354 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82355 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |82356 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82357 |1235 |36632 |5 |1 |2774A4|0 |2 |0 |
+ROW |82358 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |82359 |1236 |36633 |5 |1 |2774A4|0 |2 |0 |
+ROW |82360 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82361 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |82362 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82363 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |82364 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82365 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |82366 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82367 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |82368 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82369 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82370 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82371 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82372 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82373 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |82374 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82375 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |82376 |1489 |33568 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82377 |1490 |33581 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82378 |1490 |33569 |0 |1 |2774A4|0 |2 |0 |
+ROW |82379 |1491 |33583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82380 |1491 |33579 |0 |1 |2774A4|0 |2 |0 |
+ROW |82381 |1492 |33619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82382 |1493 |33632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82383 |1493 |33620 |0 |1 |2774A4|0 |2 |0 |
+ROW |82384 |1494 |33634 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82385 |1494 |33630 |0 |1 |2774A4|0 |2 |0 |
+ROW |82386 |1495 |33670 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82387 |1496 |33683 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82388 |1496 |33671 |0 |1 |2774A4|0 |2 |0 |
+ROW |82389 |1497 |33685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82390 |1497 |33681 |0 |1 |2774A4|0 |2 |0 |
+ROW |82391 |1498 |33721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82392 |1499 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82393 |1499 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |82394 |1500 |33736 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82395 |1500 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |82396 |1501 |33772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82397 |1502 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82398 |1502 |33773 |0 |1 |2774A4|0 |2 |0 |
+ROW |82399 |1503 |33787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82400 |1503 |33783 |0 |1 |2774A4|0 |2 |0 |
+ROW |82401 |1504 |33823 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82402 |1505 |33836 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82403 |1505 |33824 |0 |1 |2774A4|0 |2 |0 |
+ROW |82404 |1506 |33838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82405 |1506 |33834 |0 |1 |2774A4|0 |2 |0 |
+ROW |82406 |1507 |33874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82407 |1508 |33887 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82408 |1508 |33875 |0 |1 |2774A4|0 |2 |0 |
+ROW |82409 |1509 |33889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82410 |1509 |33885 |0 |1 |2774A4|0 |2 |0 |
+ROW |82411 |1510 |33925 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82412 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82413 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
+ROW |82414 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82415 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
+ROW |82416 |1511 |33930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82417 |1512 |33943 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82418 |1512 |33931 |0 |1 |2774A4|0 |2 |0 |
+ROW |82419 |1513 |33945 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82420 |1513 |33941 |0 |1 |2774A4|0 |2 |0 |
+ROW |82421 |1514 |33981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82422 |1515 |33994 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82423 |1515 |33982 |0 |1 |2774A4|0 |2 |0 |
+ROW |82424 |1516 |33996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82425 |1516 |33992 |0 |1 |2774A4|0 |2 |0 |
+ROW |82426 |1517 |34032 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82427 |1518 |34045 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82428 |1518 |34033 |0 |1 |2774A4|0 |2 |0 |
+ROW |82429 |1519 |34047 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82430 |1519 |34043 |0 |1 |2774A4|0 |2 |0 |
+ROW |82431 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82432 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82433 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
+ROW |82434 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
+ROW |82435 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82436 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
+ROW |82437 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
+ROW |82438 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82439 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
+ROW |82440 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
+ROW |82441 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82442 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82443 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
+ROW |82444 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
+ROW |82445 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82446 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
+ROW |82447 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
+ROW |82448 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82449 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
+ROW |82450 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
+ROW |82451 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82452 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
+ROW |82453 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82454 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
+ROW |82455 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
+ROW |82456 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
+ROW |82457 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82458 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
+ROW |82459 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82460 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
+ROW |82461 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
+ROW |82462 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
+ROW |82463 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82464 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
+ROW |82465 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
+ROW |82466 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
+ROW |82467 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82468 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
+ROW |82469 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
+ROW |82470 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
+ROW |82471 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82472 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
+ROW |82473 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
+ROW |82474 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82475 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
+ROW |82476 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
+ROW |82477 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
+ROW |82478 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82479 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
+ROW |82480 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |82481 |1676 |34973 |5 |0 |1A7C11|0 |2 |0 |
+ROW |82482 |1676 |34978 |2 |1 |2774A4|0 |2 |0 |
+ROW |82483 |1676 |34976 |0 |2 |F63100|1 |2 |0 |
+ROW |82484 |1676 |34971 |0 |3 |A54F10|1 |2 |0 |
+ROW |82485 |1676 |34975 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |82486 |1676 |34970 |0 |5 |6C59DC|1 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -26074,6 +26110,10 @@ ROW |2836 |10262 |{$ZABBIX.PROXY.UTIL.MAX}
ROW |2837 |10262 |{$ZABBIX.PROXY.UTIL.MIN} |65 |Minimum average percentage of time processes busy in the last minute (default is 65). |0 |
ROW |2838 |10432 |{$PG.PASSWORD} | |Please set user's password in this macro. |0 |
ROW |2839 |10417 |{$IFCONTROL} |1 | |0 |
+ROW |2840 |10358 |{$RABBITMQ.API.SCHEME} |http |Request scheme which may be http or https |0 |
+ROW |2841 |10359 |{$RABBITMQ.API.SCHEME} |http |Request scheme which may be http or https |0 |
+ROW |2842 |10276 |{$IF.UTIL.MAX} |90 |This macro is used as a threshold in interface utilization trigger. |0 |
+ROW |2843 |10282 |{$IF.UTIL.MAX} |90 |This macro is used as a threshold in interface utilization trigger. |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -26222,18 +26262,10 @@ ROW |360 |10333 |13 |
ROW |361 |10334 |12 |
ROW |362 |10335 |12 |
ROW |363 |10336 |12 |
-ROW |364 |10337 |8 |
ROW |366 |10339 |12 |
ROW |367 |10340 |12 |
ROW |368 |10341 |12 |
ROW |369 |10342 |13 |
-ROW |370 |10343 |8 |
-ROW |371 |10344 |8 |
-ROW |372 |10345 |8 |
-ROW |373 |10346 |8 |
-ROW |374 |10347 |8 |
-ROW |375 |10348 |8 |
-ROW |376 |10349 |8 |
ROW |377 |10350 |12 |
ROW |378 |10351 |12 |
ROW |379 |10352 |12 |
@@ -26313,6 +26345,14 @@ ROW |461 |10367 |9 |
ROW |462 |10368 |9 |
ROW |463 |10369 |9 |
ROW |464 |10370 |9 |
+ROW |465 |10337 |12 |
+ROW |466 |10343 |9 |
+ROW |467 |10344 |9 |
+ROW |468 |10345 |9 |
+ROW |469 |10346 |9 |
+ROW |470 |10347 |9 |
+ROW |471 |10348 |9 |
+ROW |472 |10349 |9 |
TABLE |hosts_templates
FIELDS|hosttemplateid|hostid|templateid|
@@ -26873,4845 +26913,4846 @@ ROW |145529 |1337 |31237 |
ROW |145530 |1337 |31238 |
ROW |145531 |1337 |31239 |
ROW |145532 |1337 |32596 |
-ROW |157679 |1116 |28743 |
-ROW |157680 |1116 |28744 |
-ROW |157681 |1116 |28745 |
-ROW |157682 |1116 |28746 |
-ROW |157683 |1116 |28747 |
-ROW |157684 |1116 |28748 |
-ROW |157685 |1117 |30896 |
-ROW |157686 |1116 |30897 |
-ROW |157687 |1116 |30898 |
-ROW |157688 |1116 |30899 |
-ROW |157689 |1116 |30900 |
-ROW |157690 |1116 |30901 |
-ROW |157691 |1116 |30902 |
-ROW |157692 |1116 |30903 |
-ROW |157693 |1116 |30904 |
-ROW |157694 |1116 |30905 |
-ROW |157695 |1116 |30906 |
-ROW |157696 |1116 |30907 |
-ROW |157697 |1116 |30908 |
-ROW |157698 |1116 |30909 |
-ROW |157699 |1116 |30910 |
-ROW |157700 |1116 |30911 |
-ROW |157701 |1116 |30912 |
-ROW |157702 |1116 |30913 |
-ROW |157703 |1116 |30914 |
-ROW |157704 |1116 |30915 |
-ROW |157705 |1116 |30917 |
-ROW |157706 |1116 |30918 |
-ROW |157707 |1116 |30919 |
-ROW |157708 |1116 |30920 |
-ROW |157709 |1116 |30921 |
-ROW |157710 |1116 |30922 |
-ROW |157711 |1119 |28775 |
-ROW |157712 |1118 |28776 |
-ROW |157713 |1118 |28777 |
-ROW |157714 |1118 |28778 |
-ROW |157715 |1118 |28779 |
-ROW |157716 |1118 |28780 |
-ROW |157717 |1118 |28781 |
-ROW |157718 |1118 |28782 |
-ROW |157719 |1118 |28783 |
-ROW |157720 |1118 |28784 |
-ROW |157721 |1118 |28785 |
-ROW |157722 |1118 |28786 |
-ROW |157723 |1118 |28787 |
-ROW |157724 |1118 |28788 |
-ROW |157725 |1118 |28789 |
-ROW |157726 |1118 |28790 |
-ROW |157727 |1118 |28791 |
-ROW |157728 |1118 |28792 |
-ROW |157729 |1118 |28793 |
-ROW |157730 |1118 |28794 |
-ROW |157731 |1118 |28795 |
-ROW |157732 |1118 |28796 |
-ROW |157733 |1118 |28798 |
-ROW |157734 |1118 |28799 |
-ROW |157735 |1118 |28800 |
-ROW |157736 |1118 |28801 |
-ROW |157737 |1118 |28802 |
-ROW |157738 |1118 |28803 |
-ROW |157739 |1349 |31800 |
-ROW |157740 |1349 |31801 |
-ROW |157741 |1349 |31802 |
-ROW |157742 |1348 |31803 |
-ROW |157743 |1349 |31804 |
-ROW |157744 |1348 |31805 |
-ROW |157745 |1348 |31806 |
-ROW |157746 |1348 |31807 |
-ROW |157747 |1348 |31808 |
-ROW |157748 |1348 |31809 |
-ROW |157749 |1348 |31810 |
-ROW |157750 |1348 |31811 |
-ROW |157751 |1348 |31812 |
-ROW |157752 |1348 |31813 |
-ROW |157753 |1348 |31814 |
-ROW |157754 |1348 |31815 |
-ROW |157755 |1348 |31816 |
-ROW |157756 |1348 |31817 |
-ROW |157757 |1348 |31818 |
-ROW |157758 |1348 |31819 |
-ROW |157759 |1348 |31820 |
-ROW |157760 |1348 |31821 |
-ROW |157761 |1348 |31822 |
-ROW |157762 |1348 |31823 |
-ROW |157763 |1348 |31824 |
-ROW |157764 |1348 |31825 |
-ROW |157765 |1348 |31826 |
-ROW |157766 |1348 |31827 |
-ROW |157767 |1348 |31828 |
-ROW |157768 |1348 |31829 |
-ROW |157769 |1348 |31830 |
-ROW |157770 |1348 |31831 |
-ROW |157771 |1348 |31832 |
-ROW |157772 |1348 |31833 |
-ROW |157773 |1348 |31834 |
-ROW |157774 |1348 |31835 |
-ROW |157775 |1348 |31836 |
-ROW |157776 |1348 |31837 |
-ROW |157777 |1348 |31838 |
-ROW |157778 |1348 |31839 |
-ROW |157779 |1348 |31840 |
-ROW |157780 |1348 |31841 |
-ROW |157781 |1348 |31842 |
-ROW |157782 |1348 |31843 |
-ROW |157783 |1348 |31844 |
-ROW |157784 |1348 |31845 |
-ROW |157785 |1348 |31846 |
-ROW |157786 |1348 |31847 |
-ROW |157787 |1348 |31848 |
-ROW |157788 |1348 |31849 |
-ROW |157789 |1348 |31850 |
-ROW |157790 |1753 |35772 |
-ROW |157791 |1752 |35773 |
-ROW |157792 |1752 |35774 |
-ROW |157793 |1752 |35775 |
-ROW |157794 |1752 |35776 |
-ROW |157795 |1752 |35777 |
-ROW |157796 |1752 |35778 |
-ROW |157797 |1752 |35779 |
-ROW |157798 |1752 |35780 |
-ROW |157799 |1752 |35781 |
-ROW |157800 |1752 |35782 |
-ROW |157801 |1752 |35783 |
-ROW |157802 |1752 |35784 |
-ROW |157803 |1319 |30527 |
-ROW |157804 |1319 |30528 |
-ROW |157805 |1319 |30529 |
-ROW |157806 |1318 |30530 |
-ROW |157807 |1319 |30531 |
-ROW |157808 |1318 |30532 |
-ROW |157809 |1318 |30533 |
-ROW |157810 |1318 |30534 |
-ROW |157811 |1318 |30535 |
-ROW |157812 |1318 |30536 |
-ROW |157813 |1318 |30537 |
-ROW |157814 |1318 |30538 |
-ROW |157815 |1318 |30539 |
-ROW |157816 |1318 |30540 |
-ROW |157817 |1318 |30541 |
-ROW |157818 |1318 |30542 |
-ROW |157819 |1318 |30543 |
-ROW |157820 |1318 |30544 |
-ROW |157821 |1318 |30545 |
-ROW |157822 |1318 |30546 |
-ROW |157823 |1318 |30547 |
-ROW |157824 |1318 |30548 |
-ROW |157825 |1318 |30549 |
-ROW |157826 |1318 |30550 |
-ROW |157827 |1318 |30551 |
-ROW |157828 |1318 |30552 |
-ROW |157829 |1318 |30553 |
-ROW |157830 |1318 |30554 |
-ROW |157831 |1318 |30555 |
-ROW |157832 |1318 |30556 |
-ROW |157833 |1318 |30557 |
-ROW |157834 |1318 |30558 |
-ROW |157835 |1318 |30559 |
-ROW |157836 |1318 |30560 |
-ROW |157837 |1318 |30561 |
-ROW |157838 |1318 |30562 |
-ROW |157839 |1318 |30563 |
-ROW |157840 |1318 |30564 |
-ROW |157841 |1318 |30565 |
-ROW |157842 |1318 |30566 |
-ROW |157843 |1318 |30567 |
-ROW |157844 |1318 |30568 |
-ROW |157845 |1318 |30569 |
-ROW |157846 |1318 |30570 |
-ROW |157847 |1326 |30690 |
-ROW |157848 |1327 |30691 |
-ROW |157849 |1326 |30692 |
-ROW |157850 |1327 |30693 |
-ROW |157851 |1327 |30694 |
-ROW |157852 |1326 |30695 |
-ROW |157853 |1326 |30696 |
-ROW |157854 |1326 |30697 |
-ROW |157855 |1326 |30698 |
-ROW |157856 |1326 |30699 |
-ROW |157857 |1326 |30700 |
-ROW |157858 |1326 |30701 |
-ROW |157859 |1326 |30702 |
-ROW |157860 |1326 |30703 |
-ROW |157861 |1326 |30704 |
-ROW |157862 |1326 |30705 |
-ROW |157863 |1326 |30706 |
-ROW |157864 |1326 |30707 |
-ROW |157865 |1326 |30708 |
-ROW |157866 |1326 |30709 |
-ROW |157867 |1326 |30710 |
-ROW |157868 |1326 |30711 |
-ROW |157869 |1326 |30712 |
-ROW |157870 |1327 |30719 |
-ROW |157871 |1327 |30739 |
-ROW |157872 |1327 |30743 |
-ROW |157873 |1327 |30744 |
-ROW |157874 |1327 |30746 |
-ROW |157875 |1327 |30747 |
-ROW |157876 |1327 |30754 |
-ROW |157877 |1327 |30756 |
-ROW |157878 |1331 |30923 |
-ROW |157879 |1331 |30924 |
-ROW |157880 |1332 |30925 |
-ROW |157881 |1332 |30926 |
-ROW |157882 |1331 |30927 |
-ROW |157883 |1331 |30928 |
-ROW |157884 |1331 |30929 |
-ROW |157885 |1331 |30930 |
-ROW |157886 |1331 |30931 |
-ROW |157887 |1331 |30932 |
-ROW |157888 |1331 |30933 |
-ROW |157889 |1331 |30934 |
-ROW |157890 |1331 |30935 |
-ROW |157891 |1331 |30936 |
-ROW |157892 |1331 |30937 |
-ROW |157893 |1331 |30938 |
-ROW |157894 |1331 |30939 |
-ROW |157895 |1331 |30940 |
-ROW |157896 |1331 |30941 |
-ROW |157897 |1331 |30942 |
-ROW |157898 |1331 |30943 |
-ROW |157899 |1331 |30944 |
-ROW |157900 |1331 |30945 |
-ROW |157901 |1331 |30946 |
-ROW |157902 |1331 |30947 |
-ROW |157903 |1331 |30948 |
-ROW |157904 |1331 |30949 |
-ROW |157905 |1331 |30950 |
-ROW |157906 |1331 |30951 |
-ROW |157907 |1331 |30952 |
-ROW |157908 |1331 |30953 |
-ROW |157909 |1331 |30954 |
-ROW |157910 |1331 |30955 |
-ROW |157911 |1331 |30956 |
-ROW |157912 |1331 |30957 |
-ROW |157913 |1331 |30958 |
-ROW |157914 |1331 |30959 |
-ROW |157915 |1331 |30960 |
-ROW |157916 |1331 |30963 |
-ROW |157917 |1411 |32486 |
-ROW |157918 |1411 |32487 |
-ROW |157919 |1411 |32488 |
-ROW |157920 |1411 |32489 |
-ROW |157921 |1411 |32490 |
-ROW |157922 |1411 |32491 |
-ROW |157923 |1411 |32492 |
-ROW |157924 |1411 |32493 |
-ROW |157925 |1411 |32494 |
-ROW |157926 |1411 |32498 |
-ROW |157927 |1411 |32499 |
-ROW |157928 |1411 |32500 |
-ROW |157929 |1412 |32516 |
-ROW |157930 |1412 |32517 |
-ROW |157931 |1412 |32518 |
-ROW |157932 |1412 |32519 |
-ROW |157933 |1412 |32520 |
-ROW |157934 |1412 |32521 |
-ROW |157935 |1412 |32522 |
-ROW |157936 |1412 |32523 |
-ROW |157937 |1412 |32524 |
-ROW |157938 |1412 |32528 |
-ROW |157939 |1412 |32529 |
-ROW |157940 |1412 |32530 |
-ROW |157941 |1341 |31499 |
-ROW |157942 |1341 |31500 |
-ROW |157943 |1341 |31501 |
-ROW |157944 |1341 |31502 |
-ROW |157945 |1341 |31503 |
-ROW |157946 |1341 |31504 |
-ROW |157947 |1341 |31505 |
-ROW |157948 |1341 |31506 |
-ROW |157949 |1341 |31507 |
-ROW |157950 |1341 |31508 |
-ROW |157951 |1341 |31509 |
-ROW |157952 |1341 |31510 |
-ROW |157953 |1341 |31511 |
-ROW |157954 |1341 |31512 |
-ROW |157955 |1341 |31513 |
-ROW |157956 |1341 |31514 |
-ROW |157957 |1341 |31515 |
-ROW |157958 |1341 |31516 |
-ROW |157959 |1341 |31517 |
-ROW |157960 |1341 |31518 |
-ROW |157961 |1341 |31519 |
-ROW |157962 |1341 |31520 |
-ROW |157963 |1341 |31521 |
-ROW |157964 |1341 |31522 |
-ROW |157965 |1341 |31523 |
-ROW |157966 |1341 |31524 |
-ROW |157967 |1341 |31525 |
-ROW |157968 |1341 |31526 |
-ROW |157969 |1341 |31527 |
-ROW |157970 |1341 |31528 |
-ROW |157971 |1341 |31529 |
-ROW |157972 |1341 |31530 |
-ROW |157973 |1341 |31531 |
-ROW |157974 |1341 |31532 |
-ROW |157975 |1341 |31533 |
-ROW |157976 |1341 |31534 |
-ROW |157977 |1341 |31535 |
-ROW |157978 |1341 |31536 |
-ROW |157979 |1341 |31537 |
-ROW |157980 |1341 |31538 |
-ROW |157981 |1341 |31539 |
-ROW |157982 |1341 |31540 |
-ROW |157983 |1341 |31541 |
-ROW |157984 |1341 |31542 |
-ROW |157985 |1341 |31543 |
-ROW |157986 |1341 |31544 |
-ROW |157987 |1341 |31545 |
-ROW |157988 |1341 |31546 |
-ROW |157989 |1341 |31547 |
-ROW |157990 |1341 |31548 |
-ROW |157991 |1341 |31549 |
-ROW |157992 |1341 |31550 |
-ROW |157993 |1341 |31551 |
-ROW |157994 |1341 |31552 |
-ROW |157995 |1341 |31553 |
-ROW |157996 |1358 |32012 |
-ROW |157997 |1358 |32013 |
-ROW |157998 |1357 |32014 |
-ROW |157999 |1357 |32015 |
-ROW |158000 |1357 |32016 |
-ROW |158001 |1358 |32017 |
-ROW |158002 |1357 |32018 |
-ROW |158003 |1358 |32019 |
-ROW |158004 |1357 |32020 |
-ROW |158005 |1357 |32021 |
-ROW |158006 |1357 |32022 |
-ROW |158007 |1357 |32023 |
-ROW |158008 |1357 |32024 |
-ROW |158009 |1357 |32025 |
-ROW |158010 |1357 |32026 |
-ROW |158011 |1357 |32027 |
-ROW |158012 |1357 |32028 |
-ROW |158013 |1357 |32029 |
-ROW |158014 |1357 |32030 |
-ROW |158015 |1357 |32031 |
-ROW |158016 |1357 |32032 |
-ROW |158017 |1357 |32033 |
-ROW |158018 |1357 |32034 |
-ROW |158019 |1357 |32035 |
-ROW |158020 |1357 |32036 |
-ROW |158021 |1357 |32037 |
-ROW |158022 |1357 |32038 |
-ROW |158023 |1357 |32039 |
-ROW |158024 |1357 |32040 |
-ROW |158025 |1357 |32041 |
-ROW |158026 |1357 |32042 |
-ROW |158027 |1357 |32043 |
-ROW |158028 |1357 |32044 |
-ROW |158029 |1357 |32045 |
-ROW |158030 |1358 |32048 |
-ROW |158031 |1358 |32049 |
-ROW |158032 |1298 |30187 |
-ROW |158033 |1298 |30188 |
-ROW |158034 |1299 |30189 |
-ROW |158035 |1299 |30190 |
-ROW |158036 |1298 |30191 |
-ROW |158037 |1298 |30192 |
-ROW |158038 |1299 |35785 |
-ROW |158039 |1301 |30230 |
-ROW |158040 |1301 |30231 |
-ROW |158041 |1300 |30789 |
-ROW |158042 |1300 |30790 |
-ROW |158043 |1300 |30234 |
-ROW |158044 |1300 |30235 |
-ROW |158045 |1301 |35844 |
-ROW |158046 |1333 |30968 |
-ROW |158047 |1333 |30969 |
-ROW |158048 |1333 |30970 |
-ROW |158049 |1333 |30971 |
-ROW |158050 |1333 |30972 |
-ROW |158051 |1333 |30973 |
-ROW |158052 |1333 |30974 |
-ROW |158053 |1333 |30975 |
-ROW |158054 |1333 |30976 |
-ROW |158055 |1333 |30977 |
-ROW |158056 |1333 |30978 |
-ROW |158057 |1333 |30979 |
-ROW |158058 |1333 |30980 |
-ROW |158059 |1333 |30981 |
-ROW |158060 |1333 |30982 |
-ROW |158061 |1333 |30983 |
-ROW |158062 |1333 |30984 |
-ROW |158063 |1333 |30985 |
-ROW |158064 |1333 |30986 |
-ROW |158065 |1333 |30987 |
-ROW |158066 |1333 |30988 |
-ROW |158067 |1333 |30989 |
-ROW |158068 |1333 |30990 |
-ROW |158069 |1333 |30991 |
-ROW |158070 |1333 |30992 |
-ROW |158071 |1333 |30993 |
-ROW |158072 |1333 |30994 |
-ROW |158073 |1333 |30995 |
-ROW |158074 |1333 |30996 |
-ROW |158075 |1333 |30997 |
-ROW |158076 |1333 |30998 |
-ROW |158077 |1333 |30999 |
-ROW |158078 |1333 |31000 |
-ROW |158079 |1333 |31001 |
-ROW |158080 |1333 |31002 |
-ROW |158081 |1333 |31003 |
-ROW |158082 |1333 |31004 |
-ROW |158083 |1334 |31010 |
-ROW |158084 |1334 |31011 |
-ROW |158085 |1334 |31012 |
-ROW |158086 |1334 |31013 |
-ROW |158087 |1334 |31014 |
-ROW |158088 |1334 |31015 |
-ROW |158089 |1334 |31016 |
-ROW |158090 |1334 |31017 |
-ROW |158091 |1334 |31018 |
-ROW |158092 |1334 |31019 |
-ROW |158093 |1334 |31020 |
-ROW |158094 |1334 |31021 |
-ROW |158095 |1334 |31022 |
-ROW |158096 |1334 |31023 |
-ROW |158097 |1334 |31024 |
-ROW |158098 |1334 |31025 |
-ROW |158099 |1334 |31026 |
-ROW |158100 |1334 |31027 |
-ROW |158101 |1334 |31028 |
-ROW |158102 |1334 |31029 |
-ROW |158103 |1334 |31030 |
-ROW |158104 |1334 |31031 |
-ROW |158105 |1334 |31032 |
-ROW |158106 |1334 |31033 |
-ROW |158107 |1334 |31034 |
-ROW |158108 |1334 |31035 |
-ROW |158109 |1334 |31036 |
-ROW |158110 |1334 |31037 |
-ROW |158111 |1334 |31038 |
-ROW |158112 |1334 |31039 |
-ROW |158113 |1334 |31040 |
-ROW |158114 |1334 |31041 |
-ROW |158115 |1334 |31042 |
-ROW |158116 |1334 |31043 |
-ROW |158117 |1334 |31044 |
-ROW |158118 |1334 |31045 |
-ROW |158119 |1334 |31046 |
-ROW |158120 |1359 |32071 |
-ROW |158121 |1359 |32072 |
-ROW |158122 |1359 |32073 |
-ROW |158123 |1359 |32074 |
-ROW |158124 |1359 |32075 |
-ROW |158125 |1359 |32076 |
-ROW |158126 |1359 |32077 |
-ROW |158127 |1359 |32078 |
-ROW |158128 |1359 |32079 |
-ROW |158129 |1359 |32080 |
-ROW |158130 |1359 |32081 |
-ROW |158131 |1359 |32082 |
-ROW |158132 |1359 |32083 |
-ROW |158133 |1359 |32084 |
-ROW |158134 |1359 |32085 |
-ROW |158135 |1359 |32086 |
-ROW |158136 |1359 |32087 |
-ROW |158137 |1359 |32088 |
-ROW |158138 |1359 |32089 |
-ROW |158139 |1359 |32090 |
-ROW |158140 |1359 |32091 |
-ROW |158141 |1359 |32092 |
-ROW |158142 |1359 |32093 |
-ROW |158143 |1359 |32094 |
-ROW |158144 |1359 |32095 |
-ROW |158145 |1359 |32096 |
-ROW |158146 |1359 |32097 |
-ROW |158147 |1359 |32098 |
-ROW |158148 |1359 |32099 |
-ROW |158149 |1359 |32100 |
-ROW |158150 |1359 |32101 |
-ROW |158151 |1359 |32102 |
-ROW |158152 |1359 |32103 |
-ROW |158153 |1359 |32104 |
-ROW |158154 |1359 |32105 |
-ROW |158155 |1359 |32106 |
-ROW |158156 |1359 |32107 |
-ROW |158157 |1359 |32108 |
-ROW |158158 |1359 |32109 |
-ROW |158159 |1359 |32110 |
-ROW |158160 |1359 |32111 |
-ROW |158161 |1359 |32112 |
-ROW |158162 |1359 |32113 |
-ROW |158163 |1359 |32114 |
-ROW |158164 |1359 |32115 |
-ROW |158165 |1359 |32116 |
-ROW |158166 |1359 |32117 |
-ROW |158167 |1359 |32118 |
-ROW |158168 |1359 |32119 |
-ROW |158169 |1359 |32120 |
-ROW |158170 |1359 |32121 |
-ROW |158171 |1359 |32122 |
-ROW |158172 |1359 |32123 |
-ROW |158173 |1359 |32124 |
-ROW |158174 |1359 |32125 |
-ROW |158175 |1359 |32126 |
-ROW |158176 |1359 |32127 |
-ROW |158177 |1359 |32128 |
-ROW |158178 |1359 |32129 |
-ROW |158179 |1359 |32130 |
-ROW |158180 |1359 |32131 |
-ROW |158181 |1359 |32132 |
-ROW |158182 |1320 |30611 |
-ROW |158183 |1321 |30612 |
-ROW |158184 |1320 |30613 |
-ROW |158185 |1320 |30614 |
-ROW |158186 |1320 |30615 |
-ROW |158187 |1320 |30616 |
-ROW |158188 |1320 |30617 |
-ROW |158189 |1320 |30618 |
-ROW |158190 |1320 |30619 |
-ROW |158191 |1320 |30620 |
-ROW |158192 |1320 |30621 |
-ROW |158193 |1320 |30622 |
-ROW |158194 |1320 |30623 |
-ROW |158195 |1320 |30624 |
-ROW |158196 |1320 |30625 |
-ROW |158197 |1320 |30626 |
-ROW |158198 |1320 |30627 |
-ROW |158199 |1320 |30628 |
-ROW |158200 |1320 |30629 |
-ROW |158201 |1320 |30630 |
-ROW |158202 |1320 |30631 |
-ROW |158203 |1320 |30632 |
-ROW |158204 |1320 |30633 |
-ROW |158205 |1320 |30634 |
-ROW |158206 |1320 |30635 |
-ROW |158207 |1320 |30636 |
-ROW |158208 |1121 |28804 |
-ROW |158209 |1120 |28805 |
-ROW |158210 |1120 |28806 |
-ROW |158211 |1120 |28807 |
-ROW |158212 |1120 |28808 |
-ROW |158213 |1120 |28809 |
-ROW |158214 |1120 |28810 |
-ROW |158215 |1120 |28811 |
-ROW |158216 |1120 |28812 |
-ROW |158217 |1120 |28813 |
-ROW |158218 |1120 |28814 |
-ROW |158219 |1120 |28815 |
-ROW |158220 |1120 |28816 |
-ROW |158221 |1120 |28817 |
-ROW |158222 |1120 |28818 |
-ROW |158223 |1120 |28819 |
-ROW |158224 |1120 |28820 |
-ROW |158225 |1123 |28821 |
-ROW |158226 |1122 |28822 |
-ROW |158227 |1122 |28823 |
-ROW |158228 |1122 |28824 |
-ROW |158229 |1122 |28825 |
-ROW |158230 |1122 |28826 |
-ROW |158231 |1122 |28827 |
-ROW |158232 |1122 |28828 |
-ROW |158233 |1122 |28829 |
-ROW |158234 |1122 |28830 |
-ROW |158235 |1122 |28831 |
-ROW |158236 |1122 |28832 |
-ROW |158237 |1122 |28833 |
-ROW |158238 |1613 |34835 |
-ROW |158239 |1613 |34836 |
-ROW |158240 |1613 |34837 |
-ROW |158241 |1613 |34838 |
-ROW |158242 |1613 |34839 |
-ROW |158243 |1613 |34840 |
-ROW |158244 |1613 |34841 |
-ROW |158245 |1613 |34842 |
-ROW |158246 |1613 |34843 |
-ROW |158247 |1613 |34844 |
-ROW |158248 |1612 |34845 |
-ROW |158249 |1612 |34846 |
-ROW |158250 |1612 |34847 |
-ROW |158251 |1612 |34848 |
-ROW |158252 |1612 |34849 |
-ROW |158253 |1612 |34850 |
-ROW |158254 |1612 |34851 |
-ROW |158255 |1612 |34852 |
-ROW |158256 |1612 |34853 |
-ROW |158257 |1612 |34854 |
-ROW |158258 |1612 |34855 |
-ROW |158259 |1612 |34856 |
-ROW |158260 |1612 |34857 |
-ROW |158261 |1612 |34858 |
-ROW |158262 |1865 |36802 |
-ROW |158263 |1862 |36803 |
-ROW |158264 |1860 |36804 |
-ROW |158265 |1860 |36805 |
-ROW |158266 |1860 |36806 |
-ROW |158267 |1861 |36807 |
-ROW |158268 |1861 |36808 |
-ROW |158269 |1861 |36809 |
-ROW |158270 |1861 |36810 |
-ROW |158271 |1862 |36811 |
-ROW |158272 |1860 |36812 |
-ROW |158273 |1862 |36813 |
-ROW |158274 |1865 |36814 |
-ROW |158275 |1862 |36815 |
-ROW |158276 |1862 |36816 |
-ROW |158277 |1862 |36817 |
-ROW |158278 |1862 |36818 |
-ROW |158279 |1862 |36819 |
-ROW |158280 |1862 |36820 |
-ROW |158281 |1860 |36821 |
-ROW |158282 |1860 |36822 |
-ROW |158283 |1865 |36823 |
-ROW |158284 |1864 |36824 |
-ROW |158285 |1865 |36825 |
-ROW |158286 |1864 |36826 |
-ROW |158287 |1864 |36827 |
-ROW |158288 |1864 |36828 |
-ROW |158289 |1864 |36829 |
-ROW |158290 |1864 |36830 |
-ROW |158291 |1864 |36831 |
-ROW |158292 |1864 |36832 |
-ROW |158293 |1864 |36833 |
-ROW |158294 |1861 |36834 |
-ROW |158295 |1864 |36835 |
-ROW |158296 |1864 |36836 |
-ROW |158297 |1864 |36837 |
-ROW |158298 |1864 |36838 |
-ROW |158299 |1864 |36839 |
-ROW |158300 |1864 |36840 |
-ROW |158301 |1864 |36841 |
-ROW |158302 |1864 |36842 |
-ROW |158303 |1865 |36843 |
-ROW |158304 |1860 |36848 |
-ROW |158305 |1860 |36849 |
-ROW |158306 |1860 |36850 |
-ROW |158307 |1860 |36851 |
-ROW |158308 |1860 |36852 |
-ROW |158309 |1860 |36853 |
-ROW |158310 |1863 |36854 |
-ROW |158311 |1863 |36855 |
-ROW |158312 |1863 |36856 |
-ROW |158313 |1863 |36857 |
-ROW |158314 |1863 |36858 |
-ROW |158315 |1863 |36859 |
-ROW |158316 |1863 |36860 |
-ROW |158317 |1863 |36861 |
-ROW |158318 |1863 |36862 |
-ROW |158319 |1863 |36863 |
-ROW |158320 |1863 |36864 |
-ROW |158321 |1863 |36865 |
-ROW |158322 |1863 |36866 |
-ROW |158323 |1863 |36867 |
-ROW |158324 |1863 |36868 |
-ROW |158325 |1863 |36869 |
-ROW |158326 |1863 |36870 |
-ROW |158327 |1863 |36871 |
-ROW |158328 |1863 |36872 |
-ROW |158329 |1863 |36873 |
-ROW |158330 |1863 |36874 |
-ROW |158331 |1863 |36875 |
-ROW |158332 |1863 |36876 |
-ROW |158333 |1863 |36877 |
-ROW |158334 |1863 |36878 |
-ROW |158335 |1863 |36879 |
-ROW |158336 |1866 |36880 |
-ROW |158337 |1866 |36881 |
-ROW |158338 |1866 |36882 |
-ROW |158339 |1866 |36883 |
-ROW |158340 |1866 |36884 |
-ROW |158341 |1866 |36885 |
-ROW |158342 |1866 |36886 |
-ROW |158343 |1860 |36887 |
-ROW |158344 |1351 |31868 |
-ROW |158345 |1351 |31869 |
-ROW |158346 |1350 |31870 |
-ROW |158347 |1350 |31871 |
-ROW |158348 |1350 |31872 |
-ROW |158349 |1350 |31873 |
-ROW |158350 |1350 |31874 |
-ROW |158351 |1350 |31875 |
-ROW |158352 |1350 |31876 |
-ROW |158353 |1350 |31877 |
-ROW |158354 |1350 |31878 |
-ROW |158355 |1350 |31879 |
-ROW |158356 |1350 |31880 |
-ROW |158357 |1350 |31881 |
-ROW |158358 |1350 |31882 |
-ROW |158359 |1350 |31883 |
-ROW |158360 |1350 |31884 |
-ROW |158361 |1350 |31885 |
-ROW |158362 |1350 |31886 |
-ROW |158363 |1350 |31887 |
-ROW |158364 |1350 |31888 |
-ROW |158365 |1350 |31889 |
-ROW |158366 |1350 |31890 |
-ROW |158367 |1352 |31891 |
-ROW |158368 |1353 |31892 |
-ROW |158369 |1353 |31893 |
-ROW |158370 |1352 |31894 |
-ROW |158371 |1352 |31895 |
-ROW |158372 |1352 |31896 |
-ROW |158373 |1352 |31897 |
-ROW |158374 |1352 |31898 |
-ROW |158375 |1352 |31899 |
-ROW |158376 |1352 |31900 |
-ROW |158377 |1352 |31901 |
-ROW |158378 |1352 |31902 |
-ROW |158379 |1352 |31903 |
-ROW |158380 |1352 |31904 |
-ROW |158381 |1352 |31905 |
-ROW |158382 |1352 |31906 |
-ROW |158383 |1352 |31907 |
-ROW |158384 |1352 |31908 |
-ROW |158385 |1352 |31909 |
-ROW |158386 |1426 |32829 |
-ROW |158387 |1426 |32830 |
-ROW |158388 |1427 |32831 |
-ROW |158389 |1427 |32832 |
-ROW |158390 |1428 |32833 |
-ROW |158391 |1428 |32834 |
-ROW |158392 |1428 |32835 |
-ROW |158393 |1427 |32836 |
-ROW |158394 |1427 |32837 |
-ROW |158395 |1427 |32838 |
-ROW |158396 |1427 |32839 |
-ROW |158397 |1425 |32840 |
-ROW |158398 |1425 |32841 |
-ROW |158399 |1425 |32842 |
-ROW |158400 |1425 |32843 |
-ROW |158401 |1425 |32844 |
-ROW |158402 |1425 |32845 |
-ROW |158403 |1425 |32846 |
-ROW |158404 |1425 |32847 |
-ROW |158405 |1425 |32848 |
-ROW |158406 |1425 |32849 |
-ROW |158407 |1425 |32850 |
-ROW |158408 |1425 |32851 |
-ROW |158409 |1425 |32852 |
-ROW |158410 |1425 |32853 |
-ROW |158411 |1425 |32854 |
-ROW |158412 |1425 |32855 |
-ROW |158413 |1425 |32856 |
-ROW |158414 |1425 |32857 |
-ROW |158415 |1425 |32858 |
-ROW |158416 |1425 |32859 |
-ROW |158417 |1425 |32860 |
-ROW |158418 |1425 |32861 |
-ROW |158419 |1425 |32862 |
-ROW |158420 |1425 |32863 |
-ROW |158421 |1427 |32864 |
-ROW |158422 |1427 |32865 |
-ROW |158423 |1427 |32866 |
-ROW |158424 |1427 |32867 |
-ROW |158425 |1427 |32868 |
-ROW |158426 |1427 |32869 |
-ROW |158427 |1427 |32870 |
-ROW |158428 |1427 |32871 |
-ROW |158429 |1427 |32872 |
-ROW |158430 |1427 |32873 |
-ROW |158431 |1427 |32874 |
-ROW |158432 |1427 |32875 |
-ROW |158433 |1427 |32876 |
-ROW |158434 |1427 |32877 |
-ROW |158435 |1427 |32878 |
-ROW |158436 |1425 |32884 |
-ROW |158437 |1427 |32885 |
-ROW |158438 |1427 |32886 |
-ROW |158439 |1427 |32887 |
-ROW |158440 |1427 |32888 |
-ROW |158441 |1427 |32889 |
-ROW |158442 |1427 |32890 |
-ROW |158443 |1430 |32925 |
-ROW |158444 |1430 |32926 |
-ROW |158445 |1431 |32927 |
-ROW |158446 |1432 |32928 |
-ROW |158447 |1432 |32929 |
-ROW |158448 |1432 |32930 |
-ROW |158449 |1431 |32931 |
-ROW |158450 |1429 |32932 |
-ROW |158451 |1429 |32933 |
-ROW |158452 |1429 |32934 |
-ROW |158453 |1429 |32935 |
-ROW |158454 |1429 |32936 |
-ROW |158455 |1429 |32937 |
-ROW |158456 |1429 |32938 |
-ROW |158457 |1429 |32939 |
-ROW |158458 |1429 |32940 |
-ROW |158459 |1429 |32941 |
-ROW |158460 |1429 |32942 |
-ROW |158461 |1429 |32943 |
-ROW |158462 |1429 |32944 |
-ROW |158463 |1429 |32945 |
-ROW |158464 |1429 |32946 |
-ROW |158465 |1429 |32947 |
-ROW |158466 |1429 |32948 |
-ROW |158467 |1429 |32949 |
-ROW |158468 |1429 |32950 |
-ROW |158469 |1429 |32951 |
-ROW |158470 |1429 |32952 |
-ROW |158471 |1429 |32953 |
-ROW |158472 |1429 |32954 |
-ROW |158473 |1429 |32955 |
-ROW |158474 |1431 |32956 |
-ROW |158475 |1431 |32957 |
-ROW |158476 |1431 |32958 |
-ROW |158477 |1431 |32959 |
-ROW |158478 |1431 |32960 |
-ROW |158479 |1431 |32961 |
-ROW |158480 |1431 |32962 |
-ROW |158481 |1431 |32963 |
-ROW |158482 |1431 |32964 |
-ROW |158483 |1431 |32965 |
-ROW |158484 |1431 |32966 |
-ROW |158485 |1431 |32967 |
-ROW |158486 |1431 |32968 |
-ROW |158487 |1431 |32969 |
-ROW |158488 |1431 |32970 |
-ROW |158489 |1429 |32976 |
-ROW |158490 |1431 |32977 |
-ROW |158491 |1431 |32978 |
-ROW |158492 |1431 |32979 |
-ROW |158493 |1431 |32980 |
-ROW |158494 |1431 |32981 |
-ROW |158495 |1431 |32982 |
-ROW |158496 |1354 |31910 |
-ROW |158497 |1354 |31911 |
-ROW |158498 |1354 |31912 |
-ROW |158499 |1354 |31913 |
-ROW |158500 |1354 |31914 |
-ROW |158501 |1354 |31915 |
-ROW |158502 |1354 |31916 |
-ROW |158503 |1354 |31917 |
-ROW |158504 |1354 |31918 |
-ROW |158505 |1354 |31919 |
-ROW |158506 |1354 |31920 |
-ROW |158507 |1354 |31921 |
-ROW |158508 |1354 |31922 |
-ROW |158509 |1354 |31923 |
-ROW |158510 |1354 |31924 |
-ROW |158511 |1354 |31925 |
-ROW |158512 |1354 |31926 |
-ROW |158513 |1354 |31927 |
-ROW |158514 |1354 |31928 |
-ROW |158515 |1354 |31929 |
-ROW |158516 |1354 |31930 |
-ROW |158517 |1354 |31931 |
-ROW |158518 |1354 |31932 |
-ROW |158519 |1354 |31933 |
-ROW |158520 |1354 |31934 |
-ROW |158521 |1354 |31935 |
-ROW |158522 |1354 |31936 |
-ROW |158523 |1354 |31937 |
-ROW |158524 |1354 |31938 |
-ROW |158525 |1354 |31939 |
-ROW |158526 |1354 |31940 |
-ROW |158527 |1354 |31941 |
-ROW |158528 |1354 |31942 |
-ROW |158529 |1354 |31943 |
-ROW |158530 |1354 |31944 |
-ROW |158531 |1354 |31945 |
-ROW |158532 |1354 |31946 |
-ROW |158533 |1354 |31947 |
-ROW |158534 |1354 |31948 |
-ROW |158535 |1354 |31949 |
-ROW |158536 |1354 |31950 |
-ROW |158537 |1354 |31951 |
-ROW |158538 |1354 |31952 |
-ROW |158539 |1354 |31953 |
-ROW |158540 |1354 |31954 |
-ROW |158541 |1354 |31955 |
-ROW |158542 |1354 |31956 |
-ROW |158543 |1354 |31957 |
-ROW |158544 |1354 |31958 |
-ROW |158545 |1354 |31959 |
-ROW |158546 |1354 |31960 |
-ROW |158547 |1354 |31961 |
-ROW |158548 |1354 |31962 |
-ROW |158549 |1354 |31963 |
-ROW |158550 |1737 |35560 |
-ROW |158551 |1737 |35561 |
-ROW |158552 |1109 |28511 |
-ROW |158553 |1344 |36888 |
-ROW |158554 |1342 |31554 |
-ROW |158555 |1342 |31555 |
-ROW |158556 |1342 |31556 |
-ROW |158557 |1343 |31557 |
-ROW |158558 |1343 |31558 |
-ROW |158559 |1343 |31559 |
-ROW |158560 |1343 |31560 |
-ROW |158561 |1343 |31561 |
-ROW |158562 |1343 |31562 |
-ROW |158563 |1343 |31563 |
-ROW |158564 |1343 |31564 |
-ROW |158565 |1343 |31565 |
-ROW |158566 |1343 |31566 |
-ROW |158567 |1343 |31567 |
-ROW |158568 |1343 |31568 |
-ROW |158569 |1343 |31569 |
-ROW |158570 |1343 |31570 |
-ROW |158571 |1343 |31571 |
-ROW |158572 |1343 |31572 |
-ROW |158573 |1343 |31573 |
-ROW |158574 |1343 |31574 |
-ROW |158575 |1343 |31575 |
-ROW |158576 |1344 |31576 |
-ROW |158577 |1344 |31577 |
-ROW |158578 |1344 |31578 |
-ROW |158579 |1344 |31579 |
-ROW |158580 |1344 |31580 |
-ROW |158581 |1344 |31581 |
-ROW |158582 |1344 |31582 |
-ROW |158583 |1344 |31583 |
-ROW |158584 |1344 |31584 |
-ROW |158585 |1344 |31585 |
-ROW |158586 |1344 |31586 |
-ROW |158587 |1344 |31587 |
-ROW |158588 |1344 |31588 |
-ROW |158589 |1344 |31589 |
-ROW |158590 |1344 |31590 |
-ROW |158591 |1344 |31591 |
-ROW |158592 |1344 |31592 |
-ROW |158593 |1344 |31593 |
-ROW |158594 |1344 |31594 |
-ROW |158595 |1344 |31595 |
-ROW |158596 |1344 |31596 |
-ROW |158597 |1342 |31605 |
-ROW |158598 |1342 |31606 |
-ROW |158599 |1342 |31607 |
-ROW |158600 |1342 |31608 |
-ROW |158601 |1342 |31609 |
-ROW |158602 |1343 |31610 |
-ROW |158603 |1343 |31611 |
-ROW |158604 |1343 |31612 |
-ROW |158605 |1343 |31613 |
-ROW |158606 |1343 |31614 |
-ROW |158607 |1343 |31615 |
-ROW |158608 |1343 |31616 |
-ROW |158609 |1343 |31617 |
-ROW |158610 |1343 |31618 |
-ROW |158611 |1343 |31619 |
-ROW |158612 |1343 |31620 |
-ROW |158613 |1343 |31621 |
-ROW |158614 |1344 |31622 |
-ROW |158615 |1344 |31623 |
-ROW |158616 |1344 |31624 |
-ROW |158617 |1344 |31625 |
-ROW |158618 |1512 |34094 |
-ROW |158619 |1512 |34095 |
-ROW |158620 |1512 |34096 |
-ROW |158621 |1512 |34097 |
-ROW |158622 |1512 |34098 |
-ROW |158623 |1513 |34106 |
-ROW |158624 |1513 |34107 |
-ROW |158625 |1513 |34108 |
-ROW |158626 |1513 |34109 |
-ROW |158627 |1513 |34110 |
-ROW |158628 |1513 |34111 |
-ROW |158629 |1513 |34112 |
-ROW |158630 |1513 |34113 |
-ROW |158631 |1513 |34114 |
-ROW |158632 |1513 |34115 |
-ROW |158633 |1513 |34116 |
-ROW |158634 |1513 |34117 |
-ROW |158635 |1513 |34118 |
-ROW |158636 |1513 |34119 |
-ROW |158637 |1513 |34120 |
-ROW |158638 |1513 |34121 |
-ROW |158639 |1513 |34122 |
-ROW |158640 |356 |36889 |
-ROW |158641 |356 |36890 |
-ROW |158642 |356 |36891 |
-ROW |158643 |356 |36892 |
-ROW |158644 |356 |10067 |
-ROW |158645 |356 |10068 |
-ROW |158646 |356 |10069 |
-ROW |158647 |356 |10070 |
-ROW |158648 |356 |10071 |
-ROW |158649 |356 |10072 |
-ROW |158650 |356 |23340 |
-ROW |158651 |356 |23341 |
-ROW |158652 |356 |23342 |
-ROW |158653 |356 |23343 |
-ROW |158654 |356 |23344 |
-ROW |158655 |356 |23345 |
-ROW |158656 |356 |23346 |
-ROW |158657 |356 |23347 |
-ROW |158658 |356 |23348 |
-ROW |158659 |356 |23349 |
-ROW |158660 |356 |23350 |
-ROW |158661 |356 |23351 |
-ROW |158662 |356 |23352 |
-ROW |158663 |356 |23353 |
-ROW |158664 |356 |23354 |
-ROW |158665 |356 |23355 |
-ROW |158666 |356 |23356 |
-ROW |158667 |356 |23357 |
-ROW |158668 |356 |23358 |
-ROW |158669 |356 |23359 |
-ROW |158670 |356 |23360 |
-ROW |158671 |356 |25368 |
-ROW |158672 |356 |25369 |
-ROW |158673 |356 |28250 |
-ROW |158674 |356 |28251 |
-ROW |158675 |356 |28617 |
-ROW |158676 |356 |28618 |
-ROW |158677 |356 |28619 |
-ROW |158678 |1867 |36893 |
-ROW |158679 |1111 |36894 |
-ROW |158680 |1111 |36895 |
-ROW |158681 |1111 |36896 |
-ROW |158682 |1111 |36897 |
-ROW |158683 |1111 |36898 |
-ROW |158684 |1111 |36899 |
-ROW |158685 |1111 |36900 |
-ROW |158686 |1111 |36901 |
-ROW |158687 |1111 |36902 |
-ROW |158688 |1111 |36903 |
-ROW |158689 |1111 |36904 |
-ROW |158690 |1111 |36905 |
-ROW |158691 |1111 |36906 |
-ROW |158692 |1111 |36907 |
-ROW |158693 |1111 |36908 |
-ROW |158694 |1111 |36909 |
-ROW |158695 |1111 |36910 |
-ROW |158696 |1111 |36911 |
-ROW |158697 |1111 |36912 |
-ROW |158698 |1111 |36913 |
-ROW |158699 |1111 |36914 |
-ROW |158700 |1111 |36915 |
-ROW |158701 |1111 |36916 |
-ROW |158702 |1111 |36917 |
-ROW |158703 |1111 |36918 |
-ROW |158704 |1111 |36919 |
-ROW |158705 |1111 |36920 |
-ROW |158706 |1111 |36921 |
-ROW |158707 |1111 |36922 |
-ROW |158708 |1111 |36923 |
-ROW |158709 |1111 |36924 |
-ROW |158710 |1111 |36925 |
-ROW |158711 |1111 |36926 |
-ROW |158712 |1111 |36927 |
-ROW |158713 |1111 |36928 |
-ROW |158714 |1111 |36929 |
-ROW |158715 |1111 |36930 |
-ROW |158716 |179 |10061 |
-ROW |158717 |179 |10062 |
-ROW |158718 |179 |10063 |
-ROW |158719 |179 |10064 |
-ROW |158720 |179 |10065 |
-ROW |158721 |179 |10066 |
-ROW |158722 |179 |22183 |
-ROW |158723 |179 |22185 |
-ROW |158724 |179 |22187 |
-ROW |158725 |179 |22189 |
-ROW |158726 |179 |22191 |
-ROW |158727 |179 |22196 |
-ROW |158728 |179 |22199 |
-ROW |158729 |179 |22219 |
-ROW |158730 |179 |22396 |
-ROW |158731 |179 |22399 |
-ROW |158732 |179 |22400 |
-ROW |158733 |179 |22401 |
-ROW |158734 |179 |22402 |
-ROW |158735 |179 |22404 |
-ROW |158736 |179 |22406 |
-ROW |158737 |179 |22408 |
-ROW |158738 |179 |22412 |
-ROW |158739 |179 |22414 |
-ROW |158740 |179 |22416 |
-ROW |158741 |179 |22418 |
-ROW |158742 |179 |22420 |
-ROW |158743 |179 |22422 |
-ROW |158744 |179 |22424 |
-ROW |158745 |179 |22426 |
-ROW |158746 |179 |22430 |
-ROW |158747 |179 |22689 |
-ROW |158748 |179 |23171 |
-ROW |158749 |179 |23251 |
-ROW |158750 |179 |23634 |
-ROW |158751 |179 |23661 |
-ROW |158752 |179 |23663 |
-ROW |158753 |179 |25366 |
-ROW |158754 |179 |25370 |
-ROW |158755 |179 |25665 |
-ROW |158756 |179 |25666 |
-ROW |158757 |179 |28248 |
-ROW |158758 |179 |28533 |
-ROW |158759 |179 |28535 |
-ROW |158760 |179 |28537 |
-ROW |158761 |179 |29822 |
-ROW |158762 |179 |34189 |
-ROW |158763 |345 |10073 |
-ROW |158764 |345 |10074 |
-ROW |158765 |345 |10075 |
-ROW |158766 |345 |10076 |
-ROW |158767 |345 |10077 |
-ROW |158768 |345 |10078 |
-ROW |158769 |345 |23252 |
-ROW |158770 |345 |23253 |
-ROW |158771 |345 |23255 |
-ROW |158772 |345 |23256 |
-ROW |158773 |345 |23257 |
-ROW |158774 |345 |23258 |
-ROW |158775 |345 |23259 |
-ROW |158776 |345 |23260 |
-ROW |158777 |345 |23261 |
-ROW |158778 |345 |23262 |
-ROW |158779 |345 |23264 |
-ROW |158780 |345 |23265 |
-ROW |158781 |345 |23266 |
-ROW |158782 |345 |23267 |
-ROW |158783 |345 |23268 |
-ROW |158784 |345 |23269 |
-ROW |158785 |345 |23270 |
-ROW |158786 |345 |23271 |
-ROW |158787 |345 |23272 |
-ROW |158788 |345 |23273 |
-ROW |158789 |345 |23274 |
-ROW |158790 |345 |23275 |
-ROW |158791 |345 |23276 |
-ROW |158792 |345 |23277 |
-ROW |158793 |345 |23328 |
-ROW |158794 |345 |23620 |
-ROW |158795 |345 |23625 |
-ROW |158796 |345 |23628 |
-ROW |158797 |345 |23635 |
-ROW |158798 |345 |23662 |
-ROW |158799 |345 |23664 |
-ROW |158800 |345 |25367 |
-ROW |158801 |345 |25371 |
-ROW |158802 |345 |25667 |
-ROW |158803 |345 |25668 |
-ROW |158804 |345 |28249 |
-ROW |158805 |345 |28534 |
-ROW |158806 |345 |28536 |
-ROW |158807 |345 |28538 |
-ROW |158808 |345 |29823 |
-ROW |158809 |345 |34196 |
-ROW |158810 |1514 |28539 |
-ROW |158811 |1110 |28540 |
-ROW |158812 |1110 |28541 |
-ROW |158813 |1110 |28542 |
-ROW |158814 |1110 |28543 |
-ROW |158815 |1110 |28544 |
-ROW |158816 |1110 |28545 |
-ROW |158817 |1110 |28546 |
-ROW |158818 |1110 |28547 |
-ROW |158819 |1110 |28548 |
-ROW |158820 |1110 |28549 |
-ROW |158821 |1110 |28550 |
-ROW |158822 |1110 |28551 |
-ROW |158823 |1110 |28552 |
-ROW |158824 |1110 |28553 |
-ROW |158825 |1110 |28554 |
-ROW |158826 |1110 |28555 |
-ROW |158827 |1110 |28556 |
-ROW |158828 |1110 |28557 |
-ROW |158829 |1110 |28558 |
-ROW |158830 |1110 |28559 |
-ROW |158831 |1110 |28560 |
-ROW |158832 |1110 |28561 |
-ROW |158833 |1110 |28562 |
-ROW |158834 |1110 |28563 |
-ROW |158835 |1110 |28564 |
-ROW |158836 |1110 |28565 |
-ROW |158837 |1110 |28566 |
-ROW |158838 |1110 |28567 |
-ROW |158839 |1110 |28568 |
-ROW |158840 |1110 |28569 |
-ROW |158841 |1110 |28570 |
-ROW |158842 |1110 |28571 |
-ROW |158843 |1110 |28572 |
-ROW |158844 |1110 |28573 |
-ROW |158845 |1110 |28574 |
-ROW |158846 |1110 |28575 |
-ROW |158847 |1110 |28576 |
-ROW |158848 |1110 |28577 |
-ROW |158849 |1110 |28578 |
-ROW |158850 |1110 |28579 |
-ROW |158851 |1110 |28580 |
-ROW |158852 |1110 |28581 |
-ROW |158853 |1110 |28582 |
-ROW |158854 |1110 |28583 |
-ROW |158855 |1110 |28584 |
-ROW |158856 |1110 |29821 |
-ROW |158857 |1110 |31053 |
-ROW |158858 |1360 |32158 |
-ROW |158859 |1360 |32159 |
-ROW |158860 |1361 |32160 |
-ROW |158861 |1361 |32161 |
-ROW |158862 |1361 |32162 |
-ROW |158863 |1361 |32163 |
-ROW |158864 |1361 |32164 |
-ROW |158865 |1361 |32165 |
-ROW |158866 |1361 |32166 |
-ROW |158867 |1361 |32167 |
-ROW |158868 |1361 |32168 |
-ROW |158869 |1361 |32169 |
-ROW |158870 |1361 |32170 |
-ROW |158871 |1361 |32171 |
-ROW |158872 |1361 |32172 |
-ROW |158873 |1361 |32173 |
-ROW |158874 |1361 |32174 |
-ROW |158875 |1361 |32175 |
-ROW |158876 |1361 |32176 |
-ROW |158877 |1361 |32177 |
-ROW |158878 |1361 |32178 |
-ROW |158879 |1361 |32179 |
-ROW |158880 |1361 |32180 |
-ROW |158881 |1361 |32181 |
-ROW |158882 |1361 |32182 |
-ROW |158883 |1361 |32183 |
-ROW |158884 |1361 |32184 |
-ROW |158885 |1361 |32185 |
-ROW |158886 |1361 |32186 |
-ROW |158887 |1361 |32187 |
-ROW |158888 |1361 |32188 |
-ROW |158889 |1361 |32189 |
-ROW |158890 |1361 |32190 |
-ROW |158891 |1361 |32191 |
-ROW |158892 |1361 |32192 |
-ROW |158893 |1361 |32201 |
-ROW |158894 |1361 |32202 |
-ROW |158895 |1361 |32203 |
-ROW |158896 |1361 |32204 |
-ROW |158897 |1361 |32205 |
-ROW |158898 |1361 |32206 |
-ROW |158899 |446 |23644 |
-ROW |158900 |447 |23645 |
-ROW |158901 |448 |23646 |
-ROW |158902 |449 |23647 |
-ROW |158903 |450 |23648 |
-ROW |158904 |451 |23649 |
-ROW |158905 |452 |23650 |
-ROW |158906 |453 |23651 |
-ROW |158907 |454 |23652 |
-ROW |158908 |455 |23653 |
-ROW |158909 |456 |23654 |
-ROW |158910 |280 |22917 |
-ROW |158911 |280 |22918 |
-ROW |158912 |273 |22920 |
-ROW |158913 |279 |22920 |
-ROW |158914 |273 |22921 |
-ROW |158915 |279 |22921 |
-ROW |158916 |273 |22922 |
-ROW |158917 |279 |22922 |
-ROW |158918 |273 |22923 |
-ROW |158919 |279 |22923 |
-ROW |158920 |273 |22924 |
-ROW |158921 |279 |22924 |
-ROW |158922 |275 |22933 |
-ROW |158923 |278 |22933 |
-ROW |158924 |275 |22934 |
-ROW |158925 |278 |22934 |
-ROW |158926 |275 |22938 |
-ROW |158927 |278 |22938 |
-ROW |158928 |275 |22939 |
-ROW |158929 |278 |22939 |
-ROW |158930 |278 |22940 |
-ROW |158931 |281 |22940 |
-ROW |158932 |281 |22941 |
-ROW |158933 |276 |22942 |
-ROW |158934 |276 |22943 |
-ROW |158935 |273 |23108 |
-ROW |158936 |331 |23108 |
-ROW |158937 |279 |23108 |
-ROW |158938 |273 |23109 |
-ROW |158939 |331 |23109 |
-ROW |158940 |279 |23109 |
-ROW |158941 |273 |23110 |
-ROW |158942 |279 |23110 |
-ROW |158943 |273 |23111 |
-ROW |158944 |331 |23111 |
-ROW |158945 |279 |23111 |
-ROW |158946 |273 |23112 |
-ROW |158947 |331 |23112 |
-ROW |158948 |279 |23112 |
-ROW |158949 |273 |23113 |
-ROW |158950 |279 |23113 |
-ROW |158951 |273 |23114 |
-ROW |158952 |279 |23114 |
-ROW |158953 |273 |23115 |
-ROW |158954 |279 |23115 |
-ROW |158955 |274 |23116 |
-ROW |158956 |279 |23116 |
-ROW |158957 |274 |23117 |
-ROW |158958 |279 |23117 |
-ROW |158959 |273 |23118 |
-ROW |158960 |331 |23118 |
-ROW |158961 |273 |23119 |
-ROW |158962 |279 |23119 |
-ROW |158963 |273 |23120 |
-ROW |158964 |279 |23120 |
-ROW |158965 |273 |23121 |
-ROW |158966 |279 |23121 |
-ROW |158967 |276 |23122 |
-ROW |158968 |279 |23122 |
-ROW |158969 |273 |23123 |
-ROW |158970 |279 |23123 |
-ROW |158971 |276 |23124 |
-ROW |158972 |276 |23125 |
-ROW |158973 |276 |23126 |
-ROW |158974 |276 |23127 |
-ROW |158975 |276 |23128 |
-ROW |158976 |276 |23129 |
-ROW |158977 |276 |23130 |
-ROW |158978 |276 |23131 |
-ROW |158979 |277 |22945 |
-ROW |158980 |277 |22946 |
-ROW |158981 |274 |22948 |
-ROW |158982 |274 |22949 |
-ROW |158983 |274 |22950 |
-ROW |158984 |274 |22951 |
-ROW |158985 |274 |22952 |
-ROW |158986 |268 |22875 |
-ROW |158987 |268 |22876 |
-ROW |158988 |270 |22877 |
-ROW |158989 |270 |22878 |
-ROW |158990 |265 |22879 |
-ROW |158991 |268 |22879 |
-ROW |158992 |263 |22880 |
-ROW |158993 |269 |22880 |
-ROW |158994 |263 |22881 |
-ROW |158995 |269 |22881 |
-ROW |158996 |263 |22882 |
-ROW |158997 |269 |22882 |
-ROW |158998 |263 |22883 |
-ROW |158999 |269 |22883 |
-ROW |159000 |263 |22884 |
-ROW |159001 |269 |22884 |
-ROW |159002 |263 |22885 |
-ROW |159003 |269 |22885 |
-ROW |159004 |263 |22886 |
-ROW |159005 |269 |22886 |
-ROW |159006 |263 |22888 |
-ROW |159007 |269 |22888 |
-ROW |159008 |263 |22891 |
-ROW |159009 |269 |22891 |
-ROW |159010 |263 |22892 |
-ROW |159011 |269 |22892 |
-ROW |159012 |265 |22893 |
-ROW |159013 |268 |22893 |
-ROW |159014 |265 |22894 |
-ROW |159015 |268 |22894 |
-ROW |159016 |266 |22895 |
-ROW |159017 |266 |22896 |
-ROW |159018 |266 |22897 |
-ROW |159019 |265 |22898 |
-ROW |159020 |268 |22898 |
-ROW |159021 |265 |22899 |
-ROW |159022 |268 |22899 |
-ROW |159023 |268 |22900 |
-ROW |159024 |271 |22900 |
-ROW |159025 |271 |22901 |
-ROW |159026 |266 |22902 |
-ROW |159027 |266 |22903 |
-ROW |159028 |264 |22908 |
-ROW |159029 |264 |22909 |
-ROW |159030 |264 |22910 |
-ROW |159031 |264 |22911 |
-ROW |159032 |264 |22912 |
-ROW |159033 |267 |23073 |
-ROW |159034 |267 |23074 |
-ROW |159035 |283 |22961 |
-ROW |159036 |289 |22961 |
-ROW |159037 |283 |22962 |
-ROW |159038 |289 |22962 |
-ROW |159039 |283 |22963 |
-ROW |159040 |289 |22963 |
-ROW |159041 |283 |22965 |
-ROW |159042 |289 |22965 |
-ROW |159043 |283 |22968 |
-ROW |159044 |289 |22968 |
-ROW |159045 |283 |22971 |
-ROW |159046 |289 |22971 |
-ROW |159047 |283 |22972 |
-ROW |159048 |289 |22972 |
-ROW |159049 |285 |22973 |
-ROW |159050 |288 |22973 |
-ROW |159051 |285 |22974 |
-ROW |159052 |288 |22974 |
-ROW |159053 |285 |22978 |
-ROW |159054 |288 |22978 |
-ROW |159055 |288 |22980 |
-ROW |159056 |291 |22980 |
-ROW |159057 |291 |22981 |
-ROW |159058 |286 |22982 |
-ROW |159059 |286 |22983 |
-ROW |159060 |287 |22985 |
-ROW |159061 |287 |22986 |
-ROW |159062 |284 |22988 |
-ROW |159063 |284 |22989 |
-ROW |159064 |284 |22990 |
-ROW |159065 |284 |22991 |
-ROW |159066 |284 |22992 |
-ROW |159067 |308 |23035 |
-ROW |159068 |308 |23036 |
-ROW |159069 |305 |23039 |
-ROW |159070 |308 |23039 |
-ROW |159071 |303 |23041 |
-ROW |159072 |309 |23041 |
-ROW |159073 |303 |23042 |
-ROW |159074 |309 |23042 |
-ROW |159075 |303 |23043 |
-ROW |159076 |309 |23043 |
-ROW |159077 |305 |23053 |
-ROW |159078 |308 |23053 |
-ROW |159079 |305 |23054 |
-ROW |159080 |308 |23054 |
-ROW |159081 |305 |23058 |
-ROW |159082 |308 |23058 |
-ROW |159083 |305 |23059 |
-ROW |159084 |308 |23059 |
-ROW |159085 |308 |23060 |
-ROW |159086 |311 |23060 |
-ROW |159087 |311 |23061 |
-ROW |159088 |306 |23062 |
-ROW |159089 |306 |23063 |
-ROW |159090 |307 |23077 |
-ROW |159091 |307 |23078 |
-ROW |159092 |304 |23068 |
-ROW |159093 |304 |23069 |
-ROW |159094 |304 |23070 |
-ROW |159095 |304 |23071 |
-ROW |159096 |304 |23072 |
-ROW |159097 |258 |22835 |
-ROW |159098 |258 |22836 |
-ROW |159099 |260 |22837 |
-ROW |159100 |260 |22838 |
-ROW |159101 |255 |22839 |
-ROW |159102 |258 |22839 |
-ROW |159103 |253 |22840 |
-ROW |159104 |259 |22840 |
-ROW |159105 |253 |22841 |
-ROW |159106 |259 |22841 |
-ROW |159107 |253 |22842 |
-ROW |159108 |259 |22842 |
-ROW |159109 |253 |22843 |
-ROW |159110 |259 |22843 |
-ROW |159111 |253 |22844 |
-ROW |159112 |259 |22844 |
-ROW |159113 |253 |22845 |
-ROW |159114 |259 |22845 |
-ROW |159115 |253 |22846 |
-ROW |159116 |259 |22846 |
-ROW |159117 |253 |22848 |
-ROW |159118 |259 |22848 |
-ROW |159119 |253 |22851 |
-ROW |159120 |259 |22851 |
-ROW |159121 |253 |22852 |
-ROW |159122 |259 |22852 |
-ROW |159123 |255 |22853 |
-ROW |159124 |258 |22853 |
-ROW |159125 |255 |22854 |
-ROW |159126 |258 |22854 |
-ROW |159127 |256 |22855 |
-ROW |159128 |256 |22856 |
-ROW |159129 |256 |22857 |
-ROW |159130 |255 |22858 |
-ROW |159131 |258 |22858 |
-ROW |159132 |255 |22859 |
-ROW |159133 |258 |22859 |
-ROW |159134 |258 |22860 |
-ROW |159135 |261 |22860 |
-ROW |159136 |261 |22861 |
-ROW |159137 |256 |22862 |
-ROW |159138 |256 |22863 |
-ROW |159139 |254 |22868 |
-ROW |159140 |254 |22869 |
-ROW |159141 |254 |22870 |
-ROW |159142 |254 |22871 |
-ROW |159143 |254 |22872 |
-ROW |159144 |257 |23075 |
-ROW |159145 |257 |23076 |
-ROW |159146 |298 |22996 |
-ROW |159147 |300 |22997 |
-ROW |159148 |300 |22998 |
-ROW |159149 |295 |22999 |
-ROW |159150 |298 |22999 |
-ROW |159151 |293 |23000 |
-ROW |159152 |299 |23000 |
-ROW |159153 |293 |23001 |
-ROW |159154 |299 |23001 |
-ROW |159155 |293 |23002 |
-ROW |159156 |299 |23002 |
-ROW |159157 |293 |23003 |
-ROW |159158 |299 |23003 |
-ROW |159159 |293 |23004 |
-ROW |159160 |299 |23004 |
-ROW |159161 |293 |23005 |
-ROW |159162 |299 |23005 |
-ROW |159163 |293 |23007 |
-ROW |159164 |299 |23007 |
-ROW |159165 |293 |23011 |
-ROW |159166 |299 |23011 |
-ROW |159167 |293 |23012 |
-ROW |159168 |299 |23012 |
-ROW |159169 |295 |23013 |
-ROW |159170 |298 |23013 |
-ROW |159171 |295 |23014 |
-ROW |159172 |298 |23014 |
-ROW |159173 |296 |23015 |
-ROW |159174 |296 |23016 |
-ROW |159175 |296 |23017 |
-ROW |159176 |295 |23018 |
-ROW |159177 |298 |23018 |
-ROW |159178 |295 |23019 |
-ROW |159179 |298 |23019 |
-ROW |159180 |298 |23020 |
-ROW |159181 |301 |23020 |
-ROW |159182 |301 |23021 |
-ROW |159183 |296 |23022 |
-ROW |159184 |296 |23023 |
-ROW |159185 |297 |23025 |
-ROW |159186 |297 |23026 |
-ROW |159187 |294 |23028 |
-ROW |159188 |294 |23029 |
-ROW |159189 |294 |23030 |
-ROW |159190 |294 |23031 |
-ROW |159191 |294 |23032 |
-ROW |159192 |743 |26925 |
-ROW |159193 |743 |26926 |
-ROW |159194 |741 |26927 |
-ROW |159195 |742 |26928 |
-ROW |159196 |743 |26929 |
-ROW |159197 |743 |26930 |
-ROW |159198 |743 |26931 |
-ROW |159199 |743 |26932 |
-ROW |159200 |745 |26933 |
-ROW |159201 |746 |26934 |
-ROW |159202 |744 |26935 |
-ROW |159203 |744 |26936 |
-ROW |159204 |746 |26937 |
-ROW |159205 |746 |26938 |
-ROW |159206 |746 |26939 |
-ROW |159207 |746 |26940 |
-ROW |159208 |746 |26941 |
-ROW |159209 |746 |26942 |
-ROW |159210 |745 |26943 |
-ROW |159211 |1362 |32207 |
-ROW |159212 |1362 |32208 |
-ROW |159213 |1362 |32209 |
-ROW |159214 |1362 |32210 |
-ROW |159215 |1362 |32211 |
-ROW |159216 |1362 |32212 |
-ROW |159217 |1362 |32213 |
-ROW |159218 |1362 |32214 |
-ROW |159219 |1362 |32215 |
-ROW |159220 |1362 |32216 |
-ROW |159221 |1362 |32217 |
-ROW |159222 |1362 |32218 |
-ROW |159223 |1362 |32219 |
-ROW |159224 |1362 |32220 |
-ROW |159225 |1362 |32221 |
-ROW |159226 |1362 |32222 |
-ROW |159227 |1362 |32223 |
-ROW |159228 |1362 |32224 |
-ROW |159229 |1362 |32225 |
-ROW |159230 |1362 |32226 |
-ROW |159231 |1362 |32227 |
-ROW |159232 |1362 |32228 |
-ROW |159233 |1362 |32229 |
-ROW |159234 |1362 |32230 |
-ROW |159235 |1362 |32231 |
-ROW |159236 |1362 |32232 |
-ROW |159237 |1362 |32233 |
-ROW |159238 |1362 |32234 |
-ROW |159239 |1362 |32235 |
-ROW |159240 |1362 |32236 |
-ROW |159241 |1362 |32237 |
-ROW |159242 |1362 |32238 |
-ROW |159243 |1362 |32239 |
-ROW |159244 |1362 |32240 |
-ROW |159245 |1362 |32241 |
-ROW |159246 |1362 |32242 |
-ROW |159247 |1362 |32243 |
-ROW |159248 |1362 |32244 |
-ROW |159249 |1362 |32245 |
-ROW |159250 |1362 |32246 |
-ROW |159251 |1362 |32247 |
-ROW |159252 |1362 |32248 |
-ROW |159253 |1362 |32249 |
-ROW |159254 |1362 |32250 |
-ROW |159255 |1362 |32251 |
-ROW |159256 |1362 |32252 |
-ROW |159257 |1362 |32253 |
-ROW |159258 |1362 |32254 |
-ROW |159259 |1362 |32255 |
-ROW |159260 |1362 |32256 |
-ROW |159261 |1362 |32257 |
-ROW |159262 |1362 |32258 |
-ROW |159263 |1362 |32259 |
-ROW |159264 |1362 |32260 |
-ROW |159265 |1362 |32261 |
-ROW |159266 |1362 |32262 |
-ROW |159267 |1362 |32263 |
-ROW |159268 |1362 |32264 |
-ROW |159269 |1362 |32265 |
-ROW |159270 |1362 |32266 |
-ROW |159271 |1362 |32267 |
-ROW |159272 |1362 |32268 |
-ROW |159273 |1362 |32269 |
-ROW |159274 |1362 |32270 |
-ROW |159275 |1362 |32271 |
-ROW |159276 |1362 |32272 |
-ROW |159277 |1362 |32273 |
-ROW |159278 |1329 |36931 |
-ROW |159279 |1329 |36932 |
-ROW |159280 |1329 |36933 |
-ROW |159281 |1328 |30821 |
-ROW |159282 |1328 |30822 |
-ROW |159283 |1330 |30823 |
-ROW |159284 |1330 |30824 |
-ROW |159285 |1330 |30825 |
-ROW |159286 |1330 |30826 |
-ROW |159287 |1328 |30827 |
-ROW |159288 |1330 |30828 |
-ROW |159289 |1330 |30829 |
-ROW |159290 |1330 |30830 |
-ROW |159291 |1328 |31054 |
-ROW |159292 |1328 |30831 |
-ROW |159293 |1328 |30832 |
-ROW |159294 |1328 |30833 |
-ROW |159295 |1328 |30834 |
-ROW |159296 |1328 |30835 |
-ROW |159297 |1329 |30836 |
-ROW |159298 |1328 |30837 |
-ROW |159299 |1328 |30838 |
-ROW |159300 |1328 |30839 |
-ROW |159301 |1328 |30841 |
-ROW |159302 |1329 |30843 |
-ROW |159303 |1329 |30844 |
-ROW |159304 |1328 |30846 |
-ROW |159305 |1328 |30847 |
-ROW |159306 |1328 |30848 |
-ROW |159307 |1328 |30849 |
-ROW |159308 |1328 |30850 |
-ROW |159309 |1328 |30851 |
-ROW |159310 |1328 |30852 |
-ROW |159311 |1328 |30853 |
-ROW |159312 |1328 |30854 |
-ROW |159313 |1328 |30855 |
-ROW |159314 |1328 |30856 |
-ROW |159315 |1328 |30857 |
-ROW |159316 |1328 |30858 |
-ROW |159317 |1328 |30859 |
-ROW |159318 |1328 |30860 |
-ROW |159319 |1328 |30861 |
-ROW |159320 |1328 |30862 |
-ROW |159321 |1328 |30863 |
-ROW |159322 |1328 |30864 |
-ROW |159323 |1328 |30865 |
-ROW |159324 |1328 |30866 |
-ROW |159325 |1328 |30867 |
-ROW |159326 |1328 |30868 |
-ROW |159327 |1328 |30869 |
-ROW |159328 |1328 |30870 |
-ROW |159329 |1328 |30871 |
-ROW |159330 |1328 |30872 |
-ROW |159331 |1329 |30873 |
-ROW |159332 |1434 |33017 |
-ROW |159333 |1434 |33018 |
-ROW |159334 |1433 |33019 |
-ROW |159335 |1434 |33020 |
-ROW |159336 |1434 |33021 |
-ROW |159337 |1433 |33022 |
-ROW |159338 |1433 |33023 |
-ROW |159339 |1433 |33024 |
-ROW |159340 |1433 |33025 |
-ROW |159341 |1433 |33026 |
-ROW |159342 |1433 |33027 |
-ROW |159343 |1433 |33028 |
-ROW |159344 |1433 |33029 |
-ROW |159345 |1433 |33030 |
-ROW |159346 |1433 |33031 |
-ROW |159347 |1433 |33032 |
-ROW |159348 |1433 |33033 |
-ROW |159349 |1433 |33034 |
-ROW |159350 |1433 |33035 |
-ROW |159351 |1433 |33036 |
-ROW |159352 |1433 |33037 |
-ROW |159353 |1433 |33038 |
-ROW |159354 |1433 |33039 |
-ROW |159355 |1433 |33040 |
-ROW |159356 |1433 |33041 |
-ROW |159357 |1433 |33042 |
-ROW |159358 |1433 |33043 |
-ROW |159359 |1433 |33044 |
-ROW |159360 |1433 |33045 |
-ROW |159361 |1433 |33046 |
-ROW |159362 |1433 |33047 |
-ROW |159363 |1433 |33048 |
-ROW |159364 |1433 |33049 |
-ROW |159365 |1433 |33050 |
-ROW |159366 |1433 |33051 |
-ROW |159367 |1433 |33052 |
-ROW |159368 |1433 |33053 |
-ROW |159369 |1433 |33054 |
-ROW |159370 |1433 |33055 |
-ROW |159371 |1433 |33056 |
-ROW |159372 |1433 |33057 |
-ROW |159373 |1433 |33058 |
-ROW |159374 |1433 |33059 |
-ROW |159375 |1433 |33060 |
-ROW |159376 |1434 |33065 |
-ROW |159377 |1434 |33066 |
-ROW |159378 |1433 |33122 |
-ROW |159379 |1433 |33123 |
-ROW |159380 |1433 |33124 |
-ROW |159381 |1433 |33125 |
-ROW |159382 |1433 |33126 |
-ROW |159383 |1433 |33127 |
-ROW |159384 |1433 |33128 |
-ROW |159385 |1433 |33129 |
-ROW |159386 |1433 |33130 |
-ROW |159387 |1433 |33131 |
-ROW |159388 |1433 |33132 |
-ROW |159389 |1433 |33133 |
-ROW |159390 |1433 |33134 |
-ROW |159391 |1433 |33135 |
-ROW |159392 |1433 |33136 |
-ROW |159393 |1433 |33137 |
-ROW |159394 |1433 |33138 |
-ROW |159395 |1435 |33139 |
-ROW |159396 |1436 |33140 |
-ROW |159397 |1435 |33141 |
-ROW |159398 |1436 |33142 |
-ROW |159399 |1435 |33144 |
-ROW |159400 |1435 |33145 |
-ROW |159401 |1435 |33146 |
-ROW |159402 |1435 |33147 |
-ROW |159403 |1435 |33148 |
-ROW |159404 |1435 |33149 |
-ROW |159405 |1435 |33150 |
-ROW |159406 |1435 |33151 |
-ROW |159407 |1435 |33152 |
-ROW |159408 |1435 |33153 |
-ROW |159409 |1435 |33154 |
-ROW |159410 |1435 |33155 |
-ROW |159411 |1435 |33156 |
-ROW |159412 |1435 |33157 |
-ROW |159413 |1435 |33158 |
-ROW |159414 |1435 |33159 |
-ROW |159415 |1435 |33160 |
-ROW |159416 |1435 |33161 |
-ROW |159417 |1435 |33162 |
-ROW |159418 |1435 |33163 |
-ROW |159419 |1435 |33164 |
-ROW |159420 |1435 |33165 |
-ROW |159421 |1435 |33166 |
-ROW |159422 |1435 |33167 |
-ROW |159423 |1435 |33168 |
-ROW |159424 |1435 |33169 |
-ROW |159425 |1435 |33170 |
-ROW |159426 |1435 |33171 |
-ROW |159427 |1435 |33172 |
-ROW |159428 |1435 |33567 |
-ROW |159429 |1436 |33177 |
-ROW |159430 |1436 |33178 |
-ROW |159431 |1336 |31055 |
-ROW |159432 |1335 |31056 |
-ROW |159433 |1335 |31057 |
-ROW |159434 |1335 |31058 |
-ROW |159435 |1335 |31626 |
-ROW |159436 |1335 |31627 |
-ROW |159437 |1335 |31628 |
-ROW |159438 |1336 |34173 |
-ROW |159439 |1336 |34174 |
-ROW |159440 |1336 |31059 |
-ROW |159441 |1335 |31060 |
-ROW |159442 |1335 |31061 |
-ROW |159443 |1335 |31062 |
-ROW |159444 |1335 |31063 |
-ROW |159445 |1335 |31064 |
-ROW |159446 |1335 |31065 |
-ROW |159447 |1335 |31066 |
-ROW |159448 |1335 |31067 |
-ROW |159449 |1335 |31068 |
-ROW |159450 |1335 |31069 |
-ROW |159451 |1335 |31070 |
-ROW |159452 |1335 |31071 |
-ROW |159453 |1335 |31072 |
-ROW |159454 |1335 |31073 |
-ROW |159455 |1335 |31074 |
-ROW |159456 |1335 |31075 |
-ROW |159457 |1335 |31076 |
-ROW |159458 |1335 |31077 |
-ROW |159459 |1335 |31078 |
-ROW |159460 |1335 |31079 |
-ROW |159461 |1335 |31080 |
-ROW |159462 |1335 |31081 |
-ROW |159463 |1335 |31082 |
-ROW |159464 |1335 |31083 |
-ROW |159465 |1335 |31084 |
-ROW |159466 |1335 |31085 |
-ROW |159467 |1335 |31086 |
-ROW |159468 |1335 |31087 |
-ROW |159469 |1335 |31088 |
-ROW |159470 |1335 |31089 |
-ROW |159471 |1335 |31090 |
-ROW |159472 |1336 |31091 |
-ROW |159473 |1335 |31092 |
-ROW |159474 |1336 |31093 |
-ROW |159475 |1336 |31094 |
-ROW |159476 |1335 |31095 |
-ROW |159477 |1335 |31096 |
-ROW |159478 |1335 |31097 |
-ROW |159479 |1335 |31098 |
-ROW |159480 |1335 |31099 |
-ROW |159481 |1335 |31100 |
-ROW |159482 |1335 |31101 |
-ROW |159483 |1335 |31102 |
-ROW |159484 |1335 |31103 |
-ROW |159485 |1335 |31104 |
-ROW |159486 |1335 |31105 |
-ROW |159487 |1335 |31106 |
-ROW |159488 |1335 |31107 |
-ROW |159489 |1335 |31108 |
-ROW |159490 |1335 |31109 |
-ROW |159491 |1335 |31110 |
-ROW |159492 |1335 |31111 |
-ROW |159493 |1335 |31112 |
-ROW |159494 |1335 |31113 |
-ROW |159495 |1335 |31114 |
-ROW |159496 |1335 |31115 |
-ROW |159497 |1335 |31116 |
-ROW |159498 |1335 |31117 |
-ROW |159499 |1335 |31118 |
-ROW |159500 |1335 |31119 |
-ROW |159501 |1335 |31120 |
-ROW |159502 |1335 |31121 |
-ROW |159503 |1336 |31128 |
-ROW |159504 |1336 |31129 |
-ROW |159505 |1336 |31130 |
-ROW |159506 |1336 |31132 |
-ROW |159507 |1336 |33194 |
-ROW |159508 |1314 |30431 |
-ROW |159509 |1314 |30432 |
-ROW |159510 |1315 |30433 |
-ROW |159511 |1314 |30434 |
-ROW |159512 |1314 |30435 |
-ROW |159513 |1314 |32546 |
-ROW |159514 |1315 |30436 |
-ROW |159515 |1314 |30437 |
-ROW |159516 |1314 |30438 |
-ROW |159517 |1314 |30439 |
-ROW |159518 |1314 |30440 |
-ROW |159519 |1314 |30441 |
-ROW |159520 |1314 |30442 |
-ROW |159521 |1315 |30443 |
-ROW |159522 |1314 |30444 |
-ROW |159523 |1314 |30445 |
-ROW |159524 |1314 |30446 |
-ROW |159525 |1314 |30447 |
-ROW |159526 |1314 |30449 |
-ROW |159527 |1314 |30450 |
-ROW |159528 |1314 |30451 |
-ROW |159529 |1314 |30452 |
-ROW |159530 |1314 |30453 |
-ROW |159531 |1314 |30454 |
-ROW |159532 |1314 |30455 |
-ROW |159533 |1314 |30456 |
-ROW |159534 |1314 |30457 |
-ROW |159535 |1314 |30458 |
-ROW |159536 |1314 |30459 |
-ROW |159537 |1314 |30460 |
-ROW |159538 |1314 |30461 |
-ROW |159539 |1314 |30462 |
-ROW |159540 |1314 |30463 |
-ROW |159541 |1314 |30464 |
-ROW |159542 |1314 |30465 |
-ROW |159543 |1314 |30466 |
-ROW |159544 |1314 |30470 |
-ROW |159545 |1314 |30471 |
-ROW |159546 |1314 |31168 |
-ROW |159547 |1314 |31169 |
-ROW |159548 |1314 |31170 |
-ROW |159549 |1314 |31171 |
-ROW |159550 |1314 |32547 |
-ROW |159551 |1314 |32548 |
-ROW |159552 |1314 |32549 |
-ROW |159553 |1314 |32550 |
-ROW |159554 |1314 |32551 |
-ROW |159555 |1314 |32552 |
-ROW |159556 |1314 |30474 |
-ROW |159557 |1315 |30475 |
-ROW |159558 |1314 |30476 |
-ROW |159559 |1314 |30477 |
-ROW |159560 |1314 |30478 |
-ROW |159561 |1314 |32554 |
-ROW |159562 |1314 |32555 |
-ROW |159563 |1314 |32556 |
-ROW |159564 |1314 |32557 |
-ROW |159565 |1314 |32558 |
-ROW |159566 |1314 |32559 |
-ROW |159567 |1322 |30637 |
-ROW |159568 |1322 |30638 |
-ROW |159569 |1323 |30639 |
-ROW |159570 |1322 |30640 |
-ROW |159571 |1322 |30641 |
-ROW |159572 |1322 |32560 |
-ROW |159573 |1323 |30642 |
-ROW |159574 |1322 |30643 |
-ROW |159575 |1322 |30644 |
-ROW |159576 |1322 |30645 |
-ROW |159577 |1322 |30646 |
-ROW |159578 |1322 |30647 |
-ROW |159579 |1322 |30648 |
-ROW |159580 |1323 |30649 |
-ROW |159581 |1322 |30650 |
-ROW |159582 |1322 |30651 |
-ROW |159583 |1322 |30652 |
-ROW |159584 |1322 |30653 |
-ROW |159585 |1322 |30655 |
-ROW |159586 |1322 |30656 |
-ROW |159587 |1322 |30657 |
-ROW |159588 |1322 |30658 |
-ROW |159589 |1322 |30659 |
-ROW |159590 |1322 |30660 |
-ROW |159591 |1322 |30661 |
-ROW |159592 |1322 |30662 |
-ROW |159593 |1322 |30663 |
-ROW |159594 |1322 |30664 |
-ROW |159595 |1322 |30665 |
-ROW |159596 |1322 |30666 |
-ROW |159597 |1322 |30667 |
-ROW |159598 |1322 |30668 |
-ROW |159599 |1322 |30669 |
-ROW |159600 |1322 |30670 |
-ROW |159601 |1322 |30671 |
-ROW |159602 |1322 |30672 |
-ROW |159603 |1322 |30676 |
-ROW |159604 |1322 |30677 |
-ROW |159605 |1322 |31172 |
-ROW |159606 |1322 |31173 |
-ROW |159607 |1322 |31174 |
-ROW |159608 |1322 |31175 |
-ROW |159609 |1322 |32561 |
-ROW |159610 |1322 |32562 |
-ROW |159611 |1322 |32563 |
-ROW |159612 |1322 |32564 |
-ROW |159613 |1322 |32565 |
-ROW |159614 |1322 |32566 |
-ROW |159615 |1322 |30680 |
-ROW |159616 |1323 |30681 |
-ROW |159617 |1322 |30682 |
-ROW |159618 |1322 |30683 |
-ROW |159619 |1322 |30684 |
-ROW |159620 |1322 |32568 |
-ROW |159621 |1322 |32569 |
-ROW |159622 |1322 |32570 |
-ROW |159623 |1322 |32571 |
-ROW |159624 |1322 |32572 |
-ROW |159625 |1322 |32573 |
-ROW |159626 |1317 |30479 |
-ROW |159627 |1316 |30480 |
-ROW |159628 |1316 |30481 |
-ROW |159629 |1316 |30482 |
-ROW |159630 |1316 |30483 |
-ROW |159631 |1316 |32574 |
-ROW |159632 |1316 |30484 |
-ROW |159633 |1317 |30485 |
-ROW |159634 |1316 |30486 |
-ROW |159635 |1317 |30487 |
-ROW |159636 |1316 |30488 |
-ROW |159637 |1316 |30489 |
-ROW |159638 |1316 |30490 |
-ROW |159639 |1316 |30491 |
-ROW |159640 |1316 |30492 |
-ROW |159641 |1316 |30493 |
-ROW |159642 |1316 |30494 |
-ROW |159643 |1316 |30495 |
-ROW |159644 |1316 |30496 |
-ROW |159645 |1316 |30497 |
-ROW |159646 |1316 |30499 |
-ROW |159647 |1316 |30500 |
-ROW |159648 |1316 |30503 |
-ROW |159649 |1316 |30504 |
-ROW |159650 |1316 |30505 |
-ROW |159651 |1316 |30506 |
-ROW |159652 |1316 |30507 |
-ROW |159653 |1316 |30508 |
-ROW |159654 |1316 |30509 |
-ROW |159655 |1316 |30510 |
-ROW |159656 |1316 |30512 |
-ROW |159657 |1316 |30513 |
-ROW |159658 |1316 |30514 |
-ROW |159659 |1316 |30515 |
-ROW |159660 |1316 |30516 |
-ROW |159661 |1316 |30517 |
-ROW |159662 |1316 |30518 |
-ROW |159663 |1316 |30519 |
-ROW |159664 |1316 |31176 |
-ROW |159665 |1316 |31177 |
-ROW |159666 |1316 |31178 |
-ROW |159667 |1316 |31179 |
-ROW |159668 |1316 |32575 |
-ROW |159669 |1316 |32576 |
-ROW |159670 |1316 |32577 |
-ROW |159671 |1316 |32578 |
-ROW |159672 |1316 |32579 |
-ROW |159673 |1316 |32580 |
-ROW |159674 |1316 |30522 |
-ROW |159675 |1317 |30523 |
-ROW |159676 |1316 |30524 |
-ROW |159677 |1316 |30525 |
-ROW |159678 |1316 |30526 |
-ROW |159679 |1316 |32582 |
-ROW |159680 |1316 |32583 |
-ROW |159681 |1316 |32584 |
-ROW |159682 |1316 |32585 |
-ROW |159683 |1316 |32586 |
-ROW |159684 |1316 |32587 |
-ROW |159685 |1345 |31629 |
-ROW |159686 |1345 |31630 |
-ROW |159687 |1346 |31631 |
-ROW |159688 |1345 |31632 |
-ROW |159689 |1346 |31633 |
-ROW |159690 |1346 |31634 |
-ROW |159691 |1346 |31635 |
-ROW |159692 |1346 |31636 |
-ROW |159693 |1346 |31637 |
-ROW |159694 |1346 |31638 |
-ROW |159695 |1346 |31639 |
-ROW |159696 |1345 |31640 |
-ROW |159697 |1345 |31641 |
-ROW |159698 |1346 |31642 |
-ROW |159699 |1346 |31643 |
-ROW |159700 |1346 |31644 |
-ROW |159701 |1346 |31645 |
-ROW |159702 |1345 |31646 |
-ROW |159703 |1345 |31647 |
-ROW |159704 |1345 |31648 |
-ROW |159705 |1345 |31649 |
-ROW |159706 |1345 |31650 |
-ROW |159707 |1345 |31651 |
-ROW |159708 |1345 |31652 |
-ROW |159709 |1345 |31653 |
-ROW |159710 |1345 |31654 |
-ROW |159711 |1345 |31655 |
-ROW |159712 |1345 |31656 |
-ROW |159713 |1345 |31657 |
-ROW |159714 |1345 |31658 |
-ROW |159715 |1345 |31659 |
-ROW |159716 |1345 |31660 |
-ROW |159717 |1345 |31661 |
-ROW |159718 |1345 |31662 |
-ROW |159719 |1345 |31663 |
-ROW |159720 |1345 |31664 |
-ROW |159721 |1345 |31665 |
-ROW |159722 |1345 |31666 |
-ROW |159723 |1345 |31667 |
-ROW |159724 |1345 |31668 |
-ROW |159725 |1345 |31669 |
-ROW |159726 |1345 |31670 |
-ROW |159727 |1345 |31671 |
-ROW |159728 |1345 |31672 |
-ROW |159729 |1345 |31673 |
-ROW |159730 |1345 |31674 |
-ROW |159731 |1345 |31675 |
-ROW |159732 |1345 |31676 |
-ROW |159733 |1345 |31677 |
-ROW |159734 |1345 |31678 |
-ROW |159735 |1345 |31679 |
-ROW |159736 |1345 |31680 |
-ROW |159737 |1345 |31681 |
-ROW |159738 |1345 |31682 |
-ROW |159739 |1345 |31683 |
-ROW |159740 |1345 |31684 |
-ROW |159741 |1345 |31685 |
-ROW |159742 |1345 |31686 |
-ROW |159743 |1345 |31687 |
-ROW |159744 |1345 |31688 |
-ROW |159745 |1345 |31689 |
-ROW |159746 |1345 |31690 |
-ROW |159747 |1345 |31691 |
-ROW |159748 |1345 |31692 |
-ROW |159749 |1345 |31693 |
-ROW |159750 |1345 |31694 |
-ROW |159751 |1345 |31695 |
-ROW |159752 |1345 |31696 |
-ROW |159753 |1345 |31697 |
-ROW |159754 |1345 |31698 |
-ROW |159755 |1345 |31699 |
-ROW |159756 |1345 |31700 |
-ROW |159757 |1345 |31701 |
-ROW |159758 |1345 |31702 |
-ROW |159759 |1345 |31703 |
-ROW |159760 |1345 |31704 |
-ROW |159761 |1345 |31705 |
-ROW |159762 |1857 |36934 |
-ROW |159763 |1857 |36935 |
-ROW |159764 |1856 |36936 |
-ROW |159765 |1856 |36937 |
-ROW |159766 |1857 |36938 |
-ROW |159767 |1856 |36939 |
-ROW |159768 |1856 |36940 |
-ROW |159769 |1856 |36941 |
-ROW |159770 |1856 |36942 |
-ROW |159771 |1856 |36943 |
-ROW |159772 |1856 |36944 |
-ROW |159773 |1857 |36945 |
-ROW |159774 |1857 |36946 |
-ROW |159775 |1856 |36947 |
-ROW |159776 |1856 |36948 |
-ROW |159777 |1857 |36949 |
-ROW |159778 |1857 |36950 |
-ROW |159779 |1856 |36951 |
-ROW |159780 |1856 |36952 |
-ROW |159781 |1856 |36953 |
-ROW |159782 |1856 |36954 |
-ROW |159783 |1856 |36955 |
-ROW |159784 |1856 |36956 |
-ROW |159785 |1856 |36957 |
-ROW |159786 |1856 |36958 |
-ROW |159787 |1856 |36959 |
-ROW |159788 |1856 |36960 |
-ROW |159789 |1856 |36961 |
-ROW |159790 |1856 |36962 |
-ROW |159791 |1856 |36963 |
-ROW |159792 |1856 |36964 |
-ROW |159793 |1856 |36965 |
-ROW |159794 |1856 |36966 |
-ROW |159795 |1856 |36967 |
-ROW |159796 |1856 |36968 |
-ROW |159797 |1856 |36969 |
-ROW |159798 |1856 |36970 |
-ROW |159799 |1856 |36971 |
-ROW |159800 |1856 |36972 |
-ROW |159801 |1856 |36973 |
-ROW |159802 |1857 |36976 |
-ROW |159803 |1857 |36977 |
-ROW |159804 |1858 |36705 |
-ROW |159805 |1858 |36706 |
-ROW |159806 |1859 |36707 |
-ROW |159807 |1858 |36708 |
-ROW |159808 |1859 |36709 |
-ROW |159809 |1859 |36710 |
-ROW |159810 |1859 |36711 |
-ROW |159811 |1859 |36712 |
-ROW |159812 |1858 |36713 |
-ROW |159813 |1858 |36714 |
-ROW |159814 |1858 |36715 |
-ROW |159815 |1858 |36716 |
-ROW |159816 |1859 |36717 |
-ROW |159817 |1858 |36718 |
-ROW |159818 |1858 |36719 |
-ROW |159819 |1858 |36720 |
-ROW |159820 |1858 |36721 |
-ROW |159821 |1859 |36722 |
-ROW |159822 |1859 |36723 |
-ROW |159823 |1858 |36724 |
-ROW |159824 |1858 |36725 |
-ROW |159825 |1858 |36726 |
-ROW |159826 |1858 |36728 |
-ROW |159827 |1858 |36729 |
-ROW |159828 |1858 |36730 |
-ROW |159829 |1858 |36731 |
-ROW |159830 |1858 |36732 |
-ROW |159831 |1858 |36733 |
-ROW |159832 |1858 |36734 |
-ROW |159833 |1858 |36735 |
-ROW |159834 |1858 |36736 |
-ROW |159835 |1858 |36737 |
-ROW |159836 |1858 |36738 |
-ROW |159837 |1858 |36739 |
-ROW |159838 |1858 |36740 |
-ROW |159839 |1858 |36741 |
-ROW |159840 |1858 |36742 |
-ROW |159841 |1858 |36743 |
-ROW |159842 |1858 |36744 |
-ROW |159843 |1858 |36745 |
-ROW |159844 |1858 |36746 |
-ROW |159845 |1858 |36747 |
-ROW |159846 |1858 |36748 |
-ROW |159847 |1858 |36749 |
-ROW |159848 |1858 |36750 |
-ROW |159849 |1858 |36751 |
-ROW |159850 |1858 |36752 |
-ROW |159851 |1858 |36753 |
-ROW |159852 |1858 |36754 |
-ROW |159853 |1858 |36755 |
-ROW |159854 |1858 |36756 |
-ROW |159855 |1858 |36757 |
-ROW |159856 |1858 |36758 |
-ROW |159857 |1858 |36759 |
-ROW |159858 |1858 |36760 |
-ROW |159859 |1858 |36761 |
-ROW |159860 |1858 |36762 |
-ROW |159861 |1858 |36763 |
-ROW |159862 |1858 |36764 |
-ROW |159863 |1858 |36765 |
-ROW |159864 |1858 |36766 |
-ROW |159865 |1858 |36767 |
-ROW |159866 |1302 |30273 |
-ROW |159867 |1302 |30274 |
-ROW |159868 |1303 |30275 |
-ROW |159869 |1303 |30276 |
-ROW |159870 |1302 |30277 |
-ROW |159871 |1302 |30278 |
-ROW |159872 |1302 |30279 |
-ROW |159873 |1302 |30280 |
-ROW |159874 |1302 |30281 |
-ROW |159875 |1302 |30282 |
-ROW |159876 |1302 |30283 |
-ROW |159877 |1302 |30284 |
-ROW |159878 |1302 |30285 |
-ROW |159879 |1302 |30286 |
-ROW |159880 |1302 |30287 |
-ROW |159881 |1302 |30288 |
-ROW |159882 |1302 |30289 |
-ROW |159883 |1302 |30290 |
-ROW |159884 |1302 |30291 |
-ROW |159885 |1302 |30292 |
-ROW |159886 |1302 |30293 |
-ROW |159887 |1302 |30294 |
-ROW |159888 |1302 |30295 |
-ROW |159889 |1302 |30296 |
-ROW |159890 |1302 |30297 |
-ROW |159891 |1302 |30298 |
-ROW |159892 |1302 |30299 |
-ROW |159893 |1302 |30300 |
-ROW |159894 |1302 |30301 |
-ROW |159895 |1302 |30302 |
-ROW |159896 |1302 |30303 |
-ROW |159897 |1302 |30304 |
-ROW |159898 |1302 |30305 |
-ROW |159899 |1302 |30306 |
-ROW |159900 |1302 |30307 |
-ROW |159901 |1302 |30308 |
-ROW |159902 |1302 |30309 |
-ROW |159903 |1302 |30310 |
-ROW |159904 |1302 |30311 |
-ROW |159905 |1302 |30312 |
-ROW |159906 |1302 |30313 |
-ROW |159907 |1302 |30314 |
-ROW |159908 |1302 |30315 |
-ROW |159909 |1302 |30316 |
-ROW |159910 |1302 |30317 |
-ROW |159911 |1302 |30318 |
-ROW |159912 |1302 |30319 |
-ROW |159913 |1302 |30320 |
-ROW |159914 |1302 |30321 |
-ROW |159915 |1302 |30322 |
-ROW |159916 |1302 |30323 |
-ROW |159917 |1302 |30324 |
-ROW |159918 |1302 |30325 |
-ROW |159919 |1302 |30326 |
-ROW |159920 |1302 |30327 |
-ROW |159921 |1302 |30328 |
-ROW |159922 |1302 |30329 |
-ROW |159923 |1302 |30330 |
-ROW |159924 |1302 |30331 |
-ROW |159925 |1302 |30332 |
-ROW |159926 |1302 |30333 |
-ROW |159927 |1302 |30334 |
-ROW |159928 |1302 |30335 |
-ROW |159929 |1302 |30336 |
-ROW |159930 |1302 |30344 |
-ROW |159931 |1302 |30345 |
-ROW |159932 |1302 |30346 |
-ROW |159933 |1302 |30347 |
-ROW |159934 |1302 |30351 |
-ROW |159935 |1302 |30352 |
-ROW |159936 |1302 |30353 |
-ROW |159937 |1302 |30354 |
-ROW |159938 |1302 |30355 |
-ROW |159939 |1302 |30356 |
-ROW |159940 |1302 |30357 |
-ROW |159941 |1302 |30358 |
-ROW |159942 |1302 |30359 |
-ROW |159943 |1302 |30360 |
-ROW |159944 |1302 |30361 |
-ROW |159945 |1302 |30362 |
-ROW |159946 |1302 |30363 |
-ROW |159947 |1302 |30364 |
-ROW |159948 |1302 |30365 |
-ROW |159949 |1302 |30366 |
-ROW |159950 |1302 |30367 |
-ROW |159951 |1302 |30368 |
-ROW |159952 |1302 |30369 |
-ROW |159953 |1302 |30370 |
-ROW |159954 |1302 |30371 |
-ROW |159955 |1302 |30372 |
-ROW |159956 |1302 |30373 |
-ROW |159957 |1302 |30374 |
-ROW |159958 |1302 |30375 |
-ROW |159959 |1302 |30376 |
-ROW |159960 |1302 |30377 |
-ROW |159961 |1302 |30378 |
-ROW |159962 |1302 |30379 |
-ROW |159963 |1302 |30380 |
-ROW |159964 |1302 |30381 |
-ROW |159965 |1302 |30382 |
-ROW |159966 |1302 |30383 |
-ROW |159967 |1302 |30384 |
-ROW |159968 |1302 |30385 |
-ROW |159969 |1302 |30386 |
-ROW |159970 |1302 |30387 |
-ROW |159971 |1302 |30388 |
-ROW |159972 |1302 |30389 |
-ROW |159973 |1302 |30390 |
-ROW |159974 |1302 |30391 |
-ROW |159975 |1302 |30392 |
-ROW |159976 |1302 |30393 |
-ROW |159977 |1302 |30394 |
-ROW |159978 |1302 |30395 |
-ROW |159979 |1302 |30397 |
-ROW |159980 |1302 |30398 |
-ROW |159981 |1302 |30399 |
-ROW |159982 |1302 |30400 |
-ROW |159983 |1302 |30401 |
-ROW |159984 |1302 |30402 |
-ROW |159985 |1302 |30403 |
-ROW |159986 |1302 |30404 |
-ROW |159987 |780 |27065 |
-ROW |159988 |780 |27066 |
-ROW |159989 |780 |27067 |
-ROW |159990 |799 |27149 |
-ROW |159991 |799 |27150 |
-ROW |159992 |799 |27151 |
-ROW |159993 |805 |27192 |
-ROW |159994 |805 |27193 |
-ROW |159995 |805 |27194 |
-ROW |159996 |813 |27225 |
-ROW |159997 |813 |27226 |
-ROW |159998 |813 |27227 |
-ROW |159999 |822 |27261 |
-ROW |160000 |822 |27262 |
-ROW |160001 |822 |27263 |
-ROW |160002 |825 |27282 |
-ROW |160003 |825 |27283 |
-ROW |160004 |825 |27284 |
-ROW |160005 |842 |27333 |
-ROW |160006 |842 |27334 |
-ROW |160007 |842 |27335 |
-ROW |160008 |847 |27365 |
-ROW |160009 |847 |27366 |
-ROW |160010 |847 |27367 |
-ROW |160011 |876 |27462 |
-ROW |160012 |876 |27463 |
-ROW |160013 |876 |27464 |
-ROW |160014 |885 |27496 |
-ROW |160015 |885 |27497 |
-ROW |160016 |885 |27498 |
-ROW |160017 |894 |27532 |
-ROW |160018 |894 |27533 |
-ROW |160019 |894 |27534 |
-ROW |160020 |903 |27568 |
-ROW |160021 |903 |27569 |
-ROW |160022 |903 |27570 |
-ROW |160023 |915 |27631 |
-ROW |160024 |915 |27632 |
-ROW |160025 |915 |27633 |
-ROW |160026 |918 |27654 |
-ROW |160027 |918 |27655 |
-ROW |160028 |918 |27656 |
-ROW |160029 |936 |27734 |
-ROW |160030 |936 |27735 |
-ROW |160031 |936 |27736 |
-ROW |160032 |944 |27766 |
-ROW |160033 |944 |27767 |
-ROW |160034 |944 |27768 |
-ROW |160035 |951 |27800 |
-ROW |160036 |951 |27801 |
-ROW |160037 |951 |27802 |
-ROW |160038 |971 |27882 |
-ROW |160039 |971 |27883 |
-ROW |160040 |971 |27884 |
-ROW |160041 |979 |27919 |
-ROW |160042 |979 |27920 |
-ROW |160043 |979 |27921 |
-ROW |160044 |988 |27956 |
-ROW |160045 |988 |27957 |
-ROW |160046 |988 |27958 |
-ROW |160047 |994 |27986 |
-ROW |160048 |994 |27987 |
-ROW |160049 |994 |27988 |
-ROW |160050 |1000 |28015 |
-ROW |160051 |1000 |28016 |
-ROW |160052 |1000 |28017 |
-ROW |160053 |1030 |28130 |
-ROW |160054 |1030 |28131 |
-ROW |160055 |1030 |28132 |
-ROW |160056 |1055 |28233 |
-ROW |160057 |1055 |28234 |
-ROW |160058 |1055 |28235 |
-ROW |160059 |1060 |28282 |
-ROW |160060 |1060 |28283 |
-ROW |160061 |1060 |28284 |
-ROW |160062 |1070 |28330 |
-ROW |160063 |1070 |28331 |
-ROW |160064 |1070 |28332 |
-ROW |160065 |1079 |28377 |
-ROW |160066 |1079 |28378 |
-ROW |160067 |1079 |28379 |
-ROW |160068 |1095 |28454 |
-ROW |160069 |1095 |28455 |
-ROW |160070 |1095 |28456 |
-ROW |160071 |1102 |28482 |
-ROW |160072 |1102 |28483 |
-ROW |160073 |1102 |28484 |
-ROW |160074 |1127 |28957 |
-ROW |160075 |1127 |28958 |
-ROW |160076 |1127 |28959 |
-ROW |160077 |1136 |29050 |
-ROW |160078 |1136 |29051 |
-ROW |160079 |1136 |29052 |
-ROW |160080 |1271 |30046 |
-ROW |160081 |1271 |30047 |
-ROW |160082 |1271 |30048 |
-ROW |160083 |1414 |32601 |
-ROW |160084 |1414 |32602 |
-ROW |160085 |1414 |32603 |
-ROW |160086 |1422 |32765 |
-ROW |160087 |1422 |32766 |
-ROW |160088 |1422 |32767 |
-ROW |160089 |800 |27152 |
-ROW |160090 |799 |27154 |
-ROW |160091 |800 |27157 |
-ROW |160092 |799 |29844 |
-ROW |160093 |800 |29845 |
-ROW |160094 |800 |29846 |
-ROW |160095 |800 |29847 |
-ROW |160096 |800 |29848 |
-ROW |160097 |804 |27195 |
-ROW |160098 |804 |27199 |
-ROW |160099 |805 |27202 |
-ROW |160100 |812 |27228 |
-ROW |160101 |812 |27232 |
-ROW |160102 |813 |27235 |
-ROW |160103 |821 |27264 |
-ROW |160104 |821 |27268 |
-ROW |160105 |822 |27271 |
-ROW |160106 |824 |27285 |
-ROW |160107 |824 |27289 |
-ROW |160108 |825 |27292 |
-ROW |160109 |841 |27336 |
-ROW |160110 |841 |27340 |
-ROW |160111 |842 |27343 |
-ROW |160112 |846 |27368 |
-ROW |160113 |846 |27372 |
-ROW |160114 |847 |27375 |
-ROW |160115 |875 |27465 |
-ROW |160116 |875 |27469 |
-ROW |160117 |876 |27472 |
-ROW |160118 |884 |27499 |
-ROW |160119 |884 |27503 |
-ROW |160120 |885 |27506 |
-ROW |160121 |893 |27535 |
-ROW |160122 |893 |27539 |
-ROW |160123 |894 |27542 |
-ROW |160124 |902 |27571 |
-ROW |160125 |902 |27575 |
-ROW |160126 |903 |27578 |
-ROW |160127 |914 |27634 |
-ROW |160128 |914 |27638 |
-ROW |160129 |915 |27641 |
-ROW |160130 |917 |27657 |
-ROW |160131 |917 |27661 |
-ROW |160132 |918 |27664 |
-ROW |160133 |935 |27737 |
-ROW |160134 |935 |27741 |
-ROW |160135 |936 |27744 |
-ROW |160136 |943 |27769 |
-ROW |160137 |943 |27773 |
-ROW |160138 |944 |27776 |
-ROW |160139 |950 |27803 |
-ROW |160140 |950 |27807 |
-ROW |160141 |951 |27810 |
-ROW |160142 |970 |27885 |
-ROW |160143 |970 |27889 |
-ROW |160144 |971 |27892 |
-ROW |160145 |978 |27922 |
-ROW |160146 |978 |27926 |
-ROW |160147 |979 |27929 |
-ROW |160148 |987 |27959 |
-ROW |160149 |987 |27963 |
-ROW |160150 |988 |27966 |
-ROW |160151 |993 |27989 |
-ROW |160152 |993 |27993 |
-ROW |160153 |994 |27996 |
-ROW |160154 |999 |28018 |
-ROW |160155 |999 |28022 |
-ROW |160156 |1000 |28025 |
-ROW |160157 |1029 |28133 |
-ROW |160158 |1029 |28137 |
-ROW |160159 |1030 |28140 |
-ROW |160160 |1054 |28236 |
-ROW |160161 |1054 |28240 |
-ROW |160162 |1055 |28243 |
-ROW |160163 |1059 |28285 |
-ROW |160164 |1059 |28289 |
-ROW |160165 |1060 |28292 |
-ROW |160166 |1069 |28333 |
-ROW |160167 |1069 |28337 |
-ROW |160168 |1070 |28340 |
-ROW |160169 |1078 |28380 |
-ROW |160170 |1078 |28384 |
-ROW |160171 |1079 |28387 |
-ROW |160172 |1094 |28457 |
-ROW |160173 |1094 |28461 |
-ROW |160174 |1095 |28464 |
-ROW |160175 |1101 |28485 |
-ROW |160176 |1101 |28489 |
-ROW |160177 |1102 |28492 |
-ROW |160178 |1126 |28960 |
-ROW |160179 |1126 |28964 |
-ROW |160180 |1127 |28967 |
-ROW |160181 |1135 |29053 |
-ROW |160182 |1135 |29057 |
-ROW |160183 |1136 |29060 |
-ROW |160184 |1000 |29834 |
-ROW |160185 |999 |29835 |
-ROW |160186 |999 |29836 |
-ROW |160187 |999 |29837 |
-ROW |160188 |999 |29838 |
-ROW |160189 |805 |29849 |
-ROW |160190 |804 |29850 |
-ROW |160191 |804 |29851 |
-ROW |160192 |804 |29852 |
-ROW |160193 |804 |29853 |
-ROW |160194 |813 |29854 |
-ROW |160195 |812 |29855 |
-ROW |160196 |812 |29856 |
-ROW |160197 |812 |29857 |
-ROW |160198 |812 |29858 |
-ROW |160199 |822 |29859 |
-ROW |160200 |821 |29860 |
-ROW |160201 |821 |29861 |
-ROW |160202 |821 |29862 |
-ROW |160203 |821 |29863 |
-ROW |160204 |825 |29864 |
-ROW |160205 |824 |29865 |
-ROW |160206 |824 |29866 |
-ROW |160207 |824 |29867 |
-ROW |160208 |824 |29868 |
-ROW |160209 |842 |29869 |
-ROW |160210 |841 |29870 |
-ROW |160211 |841 |29871 |
-ROW |160212 |841 |29872 |
-ROW |160213 |841 |29873 |
-ROW |160214 |847 |29874 |
-ROW |160215 |846 |29875 |
-ROW |160216 |846 |29876 |
-ROW |160217 |846 |29877 |
-ROW |160218 |846 |29878 |
-ROW |160219 |876 |29879 |
-ROW |160220 |875 |29880 |
-ROW |160221 |875 |29881 |
-ROW |160222 |875 |29882 |
-ROW |160223 |875 |29883 |
-ROW |160224 |885 |29884 |
-ROW |160225 |884 |29885 |
-ROW |160226 |884 |29886 |
-ROW |160227 |884 |29887 |
-ROW |160228 |884 |29888 |
-ROW |160229 |894 |29889 |
-ROW |160230 |893 |29890 |
-ROW |160231 |893 |29891 |
-ROW |160232 |893 |29892 |
-ROW |160233 |893 |29893 |
-ROW |160234 |903 |29894 |
-ROW |160235 |902 |29895 |
-ROW |160236 |902 |29896 |
-ROW |160237 |902 |29897 |
-ROW |160238 |902 |29898 |
-ROW |160239 |915 |29899 |
-ROW |160240 |914 |29900 |
-ROW |160241 |914 |29901 |
-ROW |160242 |914 |29902 |
-ROW |160243 |914 |29903 |
-ROW |160244 |918 |29904 |
-ROW |160245 |917 |29905 |
-ROW |160246 |917 |29906 |
-ROW |160247 |917 |29907 |
-ROW |160248 |917 |29908 |
-ROW |160249 |936 |29909 |
-ROW |160250 |935 |29910 |
-ROW |160251 |935 |29911 |
-ROW |160252 |935 |29912 |
-ROW |160253 |935 |29913 |
-ROW |160254 |944 |29914 |
-ROW |160255 |943 |29915 |
-ROW |160256 |943 |29916 |
-ROW |160257 |943 |29917 |
-ROW |160258 |943 |29918 |
-ROW |160259 |951 |29919 |
-ROW |160260 |950 |29920 |
-ROW |160261 |950 |29921 |
-ROW |160262 |950 |29922 |
-ROW |160263 |950 |29923 |
-ROW |160264 |971 |29924 |
-ROW |160265 |970 |29925 |
-ROW |160266 |970 |29926 |
-ROW |160267 |970 |29927 |
-ROW |160268 |970 |29928 |
-ROW |160269 |979 |29929 |
-ROW |160270 |978 |29930 |
-ROW |160271 |978 |29931 |
-ROW |160272 |978 |29932 |
-ROW |160273 |978 |29933 |
-ROW |160274 |988 |29934 |
-ROW |160275 |987 |29935 |
-ROW |160276 |987 |29936 |
-ROW |160277 |987 |29937 |
-ROW |160278 |987 |29938 |
-ROW |160279 |994 |29939 |
-ROW |160280 |993 |29940 |
-ROW |160281 |993 |29941 |
-ROW |160282 |993 |29942 |
-ROW |160283 |993 |29943 |
-ROW |160284 |1030 |29944 |
-ROW |160285 |1029 |29945 |
-ROW |160286 |1029 |29946 |
-ROW |160287 |1029 |29947 |
-ROW |160288 |1029 |29948 |
-ROW |160289 |1055 |29954 |
-ROW |160290 |1054 |29955 |
-ROW |160291 |1054 |29956 |
-ROW |160292 |1054 |29957 |
-ROW |160293 |1054 |29958 |
-ROW |160294 |1060 |29959 |
-ROW |160295 |1059 |29960 |
-ROW |160296 |1059 |29961 |
-ROW |160297 |1059 |29962 |
-ROW |160298 |1059 |29963 |
-ROW |160299 |1070 |29964 |
-ROW |160300 |1069 |29965 |
-ROW |160301 |1069 |29966 |
-ROW |160302 |1069 |29967 |
-ROW |160303 |1069 |29968 |
-ROW |160304 |1079 |29969 |
-ROW |160305 |1078 |29970 |
-ROW |160306 |1078 |29971 |
-ROW |160307 |1078 |29972 |
-ROW |160308 |1078 |29973 |
-ROW |160309 |1095 |29974 |
-ROW |160310 |1094 |29975 |
-ROW |160311 |1094 |29976 |
-ROW |160312 |1094 |29977 |
-ROW |160313 |1094 |29978 |
-ROW |160314 |1102 |29979 |
-ROW |160315 |1101 |29980 |
-ROW |160316 |1101 |29981 |
-ROW |160317 |1101 |29982 |
-ROW |160318 |1101 |29983 |
-ROW |160319 |1127 |29984 |
-ROW |160320 |1126 |29985 |
-ROW |160321 |1126 |29986 |
-ROW |160322 |1126 |29987 |
-ROW |160323 |1126 |29988 |
-ROW |160324 |1136 |29989 |
-ROW |160325 |1135 |29990 |
-ROW |160326 |1135 |29991 |
-ROW |160327 |1135 |29992 |
-ROW |160328 |1135 |29993 |
-ROW |160329 |1270 |30049 |
-ROW |160330 |1270 |30050 |
-ROW |160331 |1270 |30051 |
-ROW |160332 |1270 |30052 |
-ROW |160333 |1270 |30053 |
-ROW |160334 |1270 |30054 |
-ROW |160335 |1271 |30055 |
-ROW |160336 |1271 |30056 |
-ROW |160337 |1413 |32604 |
-ROW |160338 |1413 |32605 |
-ROW |160339 |1413 |32606 |
-ROW |160340 |1413 |32607 |
-ROW |160341 |1413 |32608 |
-ROW |160342 |1413 |32609 |
-ROW |160343 |1414 |32610 |
-ROW |160344 |1414 |32611 |
-ROW |160345 |1421 |32768 |
-ROW |160346 |1421 |32769 |
-ROW |160347 |1421 |32770 |
-ROW |160348 |1421 |32771 |
-ROW |160349 |1421 |32772 |
-ROW |160350 |1421 |32773 |
-ROW |160351 |1422 |32774 |
-ROW |160352 |1422 |32775 |
-ROW |160353 |1283 |30142 |
-ROW |160354 |1286 |30143 |
-ROW |160355 |1292 |30145 |
-ROW |160356 |1295 |30146 |
-ROW |160357 |1284 |30157 |
-ROW |160358 |1284 |30158 |
-ROW |160359 |1284 |30159 |
-ROW |160360 |1287 |30163 |
-ROW |160361 |1287 |30164 |
-ROW |160362 |1287 |30165 |
-ROW |160363 |1293 |30175 |
-ROW |160364 |1293 |30176 |
-ROW |160365 |1293 |30177 |
-ROW |160366 |1296 |30181 |
-ROW |160367 |1296 |30182 |
-ROW |160368 |1296 |30183 |
-ROW |160369 |1419 |32741 |
-ROW |160370 |1420 |32753 |
-ROW |160371 |1221 |22231 |
-ROW |160372 |1221 |22232 |
-ROW |160373 |1221 |23318 |
-ROW |160374 |1222 |29544 |
-ROW |160375 |1223 |29545 |
-ROW |160376 |1223 |29546 |
-ROW |160377 |1224 |29547 |
-ROW |160378 |1225 |10020 |
-ROW |160379 |1225 |10059 |
-ROW |160380 |1226 |22833 |
-ROW |160381 |1226 |22834 |
-ROW |160382 |1228 |22873 |
-ROW |160383 |1228 |22874 |
-ROW |160384 |1230 |22913 |
-ROW |160385 |1230 |22914 |
-ROW |160386 |1232 |22953 |
-ROW |160387 |1232 |22954 |
-ROW |160388 |1234 |22993 |
-ROW |160389 |1234 |22994 |
-ROW |160390 |1236 |23033 |
-ROW |160391 |1236 |23034 |
-ROW |160392 |1238 |23160 |
-ROW |160393 |1238 |23161 |
-ROW |160394 |1225 |23319 |
-ROW |160395 |1226 |23320 |
-ROW |160396 |1228 |23321 |
-ROW |160397 |1230 |23322 |
-ROW |160398 |1232 |23323 |
-ROW |160399 |1234 |23324 |
-ROW |160400 |1236 |23325 |
-ROW |160401 |1238 |23326 |
-ROW |160402 |1161 |29548 |
-ROW |160403 |1227 |29549 |
-ROW |160404 |1229 |29550 |
-ROW |160405 |1231 |29551 |
-ROW |160406 |1233 |29552 |
-ROW |160407 |1235 |29553 |
-ROW |160408 |1237 |29554 |
-ROW |160409 |1219 |29555 |
-ROW |160410 |1241 |29558 |
-ROW |160411 |1242 |29559 |
-ROW |160412 |1241 |29560 |
-ROW |160413 |1269 |29995 |
-ROW |160414 |1192 |29996 |
-ROW |160415 |1269 |29997 |
-ROW |160416 |1240 |23287 |
-ROW |160417 |1240 |23288 |
-ROW |160418 |1240 |23327 |
-ROW |160419 |1171 |29557 |
-ROW |160420 |810 |27203 |
-ROW |160421 |807 |27207 |
-ROW |160422 |806 |27208 |
-ROW |160423 |810 |30086 |
-ROW |160424 |807 |30087 |
-ROW |160425 |807 |30088 |
-ROW |160426 |807 |30089 |
-ROW |160427 |808 |27212 |
-ROW |160428 |809 |27213 |
-ROW |160429 |810 |27214 |
-ROW |160430 |1279 |30091 |
-ROW |160431 |1279 |30092 |
-ROW |160432 |1364 |28305 |
-ROW |160433 |1068 |28323 |
-ROW |160434 |1068 |28324 |
-ROW |160435 |1062 |28325 |
-ROW |160436 |1062 |28326 |
-ROW |160437 |1064 |28327 |
-ROW |160438 |1064 |28328 |
-ROW |160439 |1066 |28329 |
-ROW |160440 |1363 |32307 |
-ROW |160441 |819 |27236 |
-ROW |160442 |819 |27237 |
-ROW |160443 |813 |27238 |
-ROW |160444 |814 |27240 |
-ROW |160445 |815 |30093 |
-ROW |160446 |816 |27246 |
-ROW |160447 |816 |27247 |
-ROW |160448 |817 |27248 |
-ROW |160449 |818 |27249 |
-ROW |160450 |818 |27250 |
-ROW |160451 |826 |27294 |
-ROW |160452 |831 |27295 |
-ROW |160453 |831 |27296 |
-ROW |160454 |835 |27297 |
-ROW |160455 |827 |30094 |
-ROW |160456 |836 |27299 |
-ROW |160457 |838 |27301 |
-ROW |160458 |837 |30095 |
-ROW |160459 |839 |30096 |
-ROW |160460 |829 |27312 |
-ROW |160461 |830 |27313 |
-ROW |160462 |828 |27314 |
-ROW |160463 |828 |27315 |
-ROW |160464 |833 |27316 |
-ROW |160465 |834 |27317 |
-ROW |160466 |832 |27318 |
-ROW |160467 |835 |27319 |
-ROW |160468 |835 |27320 |
-ROW |160469 |1755 |35903 |
-ROW |160470 |1755 |35904 |
-ROW |160471 |1755 |35905 |
-ROW |160472 |1755 |35906 |
-ROW |160473 |1757 |35907 |
-ROW |160474 |1757 |35908 |
-ROW |160475 |1754 |35914 |
-ROW |160476 |1756 |35915 |
-ROW |160477 |1756 |35916 |
-ROW |160478 |1756 |35917 |
-ROW |160479 |1444 |33197 |
-ROW |160480 |1444 |33198 |
-ROW |160481 |1444 |33199 |
-ROW |160482 |1439 |33200 |
-ROW |160483 |1439 |33201 |
-ROW |160484 |1439 |33202 |
-ROW |160485 |1440 |33203 |
-ROW |160486 |1440 |33204 |
-ROW |160487 |1439 |33205 |
-ROW |160488 |1439 |33206 |
-ROW |160489 |1439 |33207 |
-ROW |160490 |1440 |33208 |
-ROW |160491 |1444 |33209 |
-ROW |160492 |1444 |33210 |
-ROW |160493 |1437 |33219 |
-ROW |160494 |1440 |33220 |
-ROW |160495 |1438 |33221 |
-ROW |160496 |1441 |33222 |
-ROW |160497 |1441 |33223 |
-ROW |160498 |1441 |33224 |
-ROW |160499 |1443 |33235 |
-ROW |160500 |1445 |33236 |
-ROW |160501 |1445 |33237 |
-ROW |160502 |1453 |33238 |
-ROW |160503 |1453 |33239 |
-ROW |160504 |1453 |33240 |
-ROW |160505 |1448 |33241 |
-ROW |160506 |1448 |33242 |
-ROW |160507 |1448 |33243 |
-ROW |160508 |1449 |33244 |
-ROW |160509 |1449 |33245 |
-ROW |160510 |1448 |33246 |
-ROW |160511 |1448 |33247 |
-ROW |160512 |1448 |33248 |
-ROW |160513 |1449 |33249 |
-ROW |160514 |1453 |33250 |
-ROW |160515 |1453 |33251 |
-ROW |160516 |1446 |33260 |
-ROW |160517 |1449 |33261 |
-ROW |160518 |1447 |33262 |
-ROW |160519 |1450 |33263 |
-ROW |160520 |1450 |33264 |
-ROW |160521 |1450 |33265 |
-ROW |160522 |1452 |33276 |
-ROW |160523 |1454 |33277 |
-ROW |160524 |1454 |33278 |
-ROW |160525 |1462 |33279 |
-ROW |160526 |1462 |33280 |
-ROW |160527 |1462 |33281 |
-ROW |160528 |1457 |33282 |
-ROW |160529 |1457 |33283 |
-ROW |160530 |1457 |33284 |
-ROW |160531 |1458 |33285 |
-ROW |160532 |1458 |33286 |
-ROW |160533 |1457 |33287 |
-ROW |160534 |1457 |33288 |
-ROW |160535 |1457 |33289 |
-ROW |160536 |1458 |33290 |
-ROW |160537 |1462 |33291 |
-ROW |160538 |1462 |33292 |
-ROW |160539 |1455 |33301 |
-ROW |160540 |1458 |33302 |
-ROW |160541 |1456 |33303 |
-ROW |160542 |1459 |33304 |
-ROW |160543 |1459 |33305 |
-ROW |160544 |1459 |33306 |
-ROW |160545 |1461 |33317 |
-ROW |160546 |1463 |33318 |
-ROW |160547 |1463 |33319 |
-ROW |160548 |1471 |33320 |
-ROW |160549 |1471 |33321 |
-ROW |160550 |1471 |33322 |
-ROW |160551 |1466 |33323 |
-ROW |160552 |1466 |33324 |
-ROW |160553 |1466 |33325 |
-ROW |160554 |1467 |33326 |
-ROW |160555 |1467 |33327 |
-ROW |160556 |1466 |33328 |
-ROW |160557 |1466 |33329 |
-ROW |160558 |1466 |33330 |
-ROW |160559 |1467 |33331 |
-ROW |160560 |1471 |33332 |
-ROW |160561 |1471 |33333 |
-ROW |160562 |1464 |33342 |
-ROW |160563 |1467 |33343 |
-ROW |160564 |1465 |33344 |
-ROW |160565 |1468 |33345 |
-ROW |160566 |1468 |33346 |
-ROW |160567 |1468 |33347 |
-ROW |160568 |1470 |33358 |
-ROW |160569 |1472 |33359 |
-ROW |160570 |1472 |33360 |
-ROW |160571 |1480 |33361 |
-ROW |160572 |1480 |33362 |
-ROW |160573 |1480 |33363 |
-ROW |160574 |1475 |33364 |
-ROW |160575 |1475 |33365 |
-ROW |160576 |1475 |33366 |
-ROW |160577 |1476 |33367 |
-ROW |160578 |1476 |33368 |
-ROW |160579 |1475 |33369 |
-ROW |160580 |1475 |33370 |
-ROW |160581 |1475 |33371 |
-ROW |160582 |1476 |33372 |
-ROW |160583 |1480 |33373 |
-ROW |160584 |1480 |33374 |
-ROW |160585 |1473 |33383 |
-ROW |160586 |1476 |33384 |
-ROW |160587 |1474 |33385 |
-ROW |160588 |1477 |33386 |
-ROW |160589 |1477 |33387 |
-ROW |160590 |1477 |33388 |
-ROW |160591 |1479 |33399 |
-ROW |160592 |1481 |33400 |
-ROW |160593 |1481 |33401 |
-ROW |160594 |851 |27376 |
-ROW |160595 |852 |27378 |
-ROW |160596 |852 |27379 |
-ROW |160597 |852 |30097 |
-ROW |160598 |869 |27380 |
-ROW |160599 |870 |27382 |
-ROW |160600 |870 |27383 |
-ROW |160601 |858 |27385 |
-ROW |160602 |858 |27386 |
-ROW |160603 |1048 |28209 |
-ROW |160604 |1048 |28210 |
-ROW |160605 |858 |30098 |
-ROW |160606 |870 |30099 |
-ROW |160607 |1048 |30100 |
-ROW |160608 |848 |27415 |
-ROW |160609 |848 |27416 |
-ROW |160610 |849 |27417 |
-ROW |160611 |852 |27419 |
-ROW |160612 |853 |27420 |
-ROW |160613 |853 |27421 |
-ROW |160614 |854 |27422 |
-ROW |160615 |855 |27423 |
-ROW |160616 |1056 |28246 |
-ROW |160617 |848 |30101 |
-ROW |160618 |856 |27425 |
-ROW |160619 |856 |27426 |
-ROW |160620 |857 |27427 |
-ROW |160621 |858 |27428 |
-ROW |160622 |859 |27429 |
-ROW |160623 |859 |27430 |
-ROW |160624 |860 |27431 |
-ROW |160625 |861 |27432 |
-ROW |160626 |868 |27443 |
-ROW |160627 |868 |27444 |
-ROW |160628 |870 |27445 |
-ROW |160629 |871 |27446 |
-ROW |160630 |871 |27447 |
-ROW |160631 |872 |27448 |
-ROW |160632 |873 |27449 |
-ROW |160633 |1048 |28208 |
-ROW |160634 |1049 |28215 |
-ROW |160635 |1050 |28216 |
-ROW |160636 |1051 |28217 |
-ROW |160637 |1051 |28218 |
-ROW |160638 |1052 |28220 |
-ROW |160639 |1052 |28222 |
-ROW |160640 |1057 |28247 |
-ROW |160641 |856 |30102 |
-ROW |160642 |868 |30103 |
-ROW |160643 |1052 |30104 |
-ROW |160644 |877 |27478 |
-ROW |160645 |880 |27479 |
-ROW |160646 |881 |27480 |
-ROW |160647 |882 |27481 |
-ROW |160648 |882 |27482 |
-ROW |160649 |882 |27483 |
-ROW |160650 |882 |27484 |
-ROW |160651 |879 |27485 |
-ROW |160652 |878 |30105 |
-ROW |160653 |891 |27508 |
-ROW |160654 |891 |27509 |
-ROW |160655 |891 |27510 |
-ROW |160656 |886 |27511 |
-ROW |160657 |891 |30106 |
-ROW |160658 |888 |27517 |
-ROW |160659 |890 |27518 |
-ROW |160660 |889 |27519 |
-ROW |160661 |887 |30107 |
-ROW |160662 |900 |27543 |
-ROW |160663 |900 |27544 |
-ROW |160664 |900 |27545 |
-ROW |160665 |900 |27546 |
-ROW |160666 |895 |27547 |
-ROW |160667 |897 |27553 |
-ROW |160668 |899 |27554 |
-ROW |160669 |898 |27555 |
-ROW |160670 |896 |30108 |
-ROW |160671 |909 |27579 |
-ROW |160672 |909 |27580 |
-ROW |160673 |909 |27582 |
-ROW |160674 |909 |27583 |
-ROW |160675 |906 |27584 |
-ROW |160676 |906 |27585 |
-ROW |160677 |904 |27586 |
-ROW |160678 |909 |30109 |
-ROW |160679 |905 |27591 |
-ROW |160680 |907 |27593 |
-ROW |160681 |908 |27594 |
-ROW |160682 |908 |27595 |
-ROW |160683 |905 |30110 |
-ROW |160684 |905 |30111 |
-ROW |160685 |1742 |35646 |
-ROW |160686 |1749 |35647 |
-ROW |160687 |1748 |35648 |
-ROW |160688 |1749 |35649 |
-ROW |160689 |1749 |35650 |
-ROW |160690 |1749 |35651 |
-ROW |160691 |1749 |35652 |
-ROW |160692 |1749 |35653 |
-ROW |160693 |1742 |35654 |
-ROW |160694 |1742 |35655 |
-ROW |160695 |1742 |35656 |
-ROW |160696 |1742 |35657 |
-ROW |160697 |1742 |35658 |
-ROW |160698 |1742 |35659 |
-ROW |160699 |1742 |35660 |
-ROW |160700 |1742 |35661 |
-ROW |160701 |1742 |35662 |
-ROW |160702 |1748 |35663 |
-ROW |160703 |1855 |36626 |
-ROW |160704 |1855 |36627 |
-ROW |160705 |1750 |35679 |
-ROW |160706 |1751 |35680 |
-ROW |160707 |1751 |35681 |
-ROW |160708 |1747 |35682 |
-ROW |160709 |1740 |35683 |
-ROW |160710 |1740 |35684 |
-ROW |160711 |1746 |35685 |
-ROW |160712 |1750 |35686 |
-ROW |160713 |1739 |35687 |
-ROW |160714 |1739 |35688 |
-ROW |160715 |1739 |35689 |
-ROW |160716 |1739 |35690 |
-ROW |160717 |1739 |35691 |
-ROW |160718 |1739 |35692 |
-ROW |160719 |1739 |35693 |
-ROW |160720 |1739 |35694 |
-ROW |160721 |1739 |35695 |
-ROW |160722 |1739 |35696 |
-ROW |160723 |1739 |35697 |
-ROW |160724 |1739 |35698 |
-ROW |160725 |1739 |35699 |
-ROW |160726 |1739 |35700 |
-ROW |160727 |1739 |35701 |
-ROW |160728 |1739 |35702 |
-ROW |160729 |1739 |35703 |
-ROW |160730 |1739 |35704 |
-ROW |160731 |1739 |35705 |
-ROW |160732 |1739 |35706 |
-ROW |160733 |1739 |35707 |
-ROW |160734 |1739 |35708 |
-ROW |160735 |1739 |35709 |
-ROW |160736 |1739 |35710 |
-ROW |160737 |1739 |35711 |
-ROW |160738 |1739 |35712 |
-ROW |160739 |1739 |35713 |
-ROW |160740 |1739 |35714 |
-ROW |160741 |1739 |35715 |
-ROW |160742 |1739 |35716 |
-ROW |160743 |1743 |35722 |
-ROW |160744 |1743 |35723 |
-ROW |160745 |1743 |35724 |
-ROW |160746 |1743 |35725 |
-ROW |160747 |1743 |35726 |
-ROW |160748 |1743 |35727 |
-ROW |160749 |1744 |35728 |
-ROW |160750 |1744 |35729 |
-ROW |160751 |1744 |35730 |
-ROW |160752 |1744 |35731 |
-ROW |160753 |919 |27671 |
-ROW |160754 |921 |27672 |
-ROW |160755 |922 |27673 |
-ROW |160756 |923 |27674 |
-ROW |160757 |924 |27675 |
-ROW |160758 |924 |27676 |
-ROW |160759 |924 |27677 |
-ROW |160760 |924 |27678 |
-ROW |160761 |924 |27679 |
-ROW |160762 |920 |30112 |
-ROW |160763 |1036 |28141 |
-ROW |160764 |1036 |28142 |
-ROW |160765 |1031 |28143 |
-ROW |160766 |1033 |28150 |
-ROW |160767 |1032 |28153 |
-ROW |160768 |1034 |28154 |
-ROW |160769 |1035 |28155 |
-ROW |160770 |1033 |28156 |
-ROW |160771 |1036 |28157 |
-ROW |160772 |1036 |28158 |
-ROW |160773 |1032 |30113 |
-ROW |160774 |1032 |30114 |
-ROW |160775 |1032 |30115 |
-ROW |160776 |941 |27748 |
-ROW |160777 |941 |27749 |
-ROW |160778 |941 |27750 |
-ROW |160779 |939 |27751 |
-ROW |160780 |937 |27753 |
-ROW |160781 |941 |27754 |
-ROW |160782 |940 |27755 |
-ROW |160783 |938 |30116 |
-ROW |160784 |948 |27777 |
-ROW |160785 |948 |27778 |
-ROW |160786 |945 |27783 |
-ROW |160787 |945 |27784 |
-ROW |160788 |948 |27785 |
-ROW |160789 |946 |27786 |
-ROW |160790 |947 |27787 |
-ROW |160791 |957 |27812 |
-ROW |160792 |957 |27813 |
-ROW |160793 |951 |27814 |
-ROW |160794 |957 |30117 |
-ROW |160795 |954 |27821 |
-ROW |160796 |956 |27822 |
-ROW |160797 |955 |27823 |
-ROW |160798 |952 |28894 |
-ROW |160799 |953 |30118 |
-ROW |160800 |1486 |33402 |
-ROW |160801 |1486 |33403 |
-ROW |160802 |1486 |33404 |
-ROW |160803 |1483 |33405 |
-ROW |160804 |1483 |33406 |
-ROW |160805 |1482 |33407 |
-ROW |160806 |1483 |33408 |
-ROW |160807 |1483 |33409 |
-ROW |160808 |1483 |33410 |
-ROW |160809 |1483 |33411 |
-ROW |160810 |1486 |33412 |
-ROW |160811 |1486 |33413 |
-ROW |160812 |1044 |28200 |
-ROW |160813 |1044 |28201 |
-ROW |160814 |1045 |28202 |
-ROW |160815 |1045 |28203 |
-ROW |160816 |1047 |28204 |
-ROW |160817 |1047 |28205 |
-ROW |160818 |1046 |28206 |
-ROW |160819 |1484 |33429 |
-ROW |160820 |1484 |33430 |
-ROW |160821 |1484 |33431 |
-ROW |160822 |976 |27893 |
-ROW |160823 |976 |27894 |
-ROW |160824 |976 |27895 |
-ROW |160825 |973 |27898 |
-ROW |160826 |973 |27900 |
-ROW |160827 |976 |30119 |
-ROW |160828 |973 |30120 |
-ROW |160829 |972 |27904 |
-ROW |160830 |974 |27905 |
-ROW |160831 |975 |27906 |
-ROW |160832 |975 |27907 |
-ROW |160833 |975 |27908 |
-ROW |160834 |974 |31790 |
-ROW |160835 |1365 |32308 |
-ROW |160836 |1368 |32309 |
-ROW |160837 |1370 |32310 |
-ROW |160838 |1370 |32311 |
-ROW |160839 |1366 |32312 |
-ROW |160840 |1369 |32313 |
-ROW |160841 |1369 |32314 |
-ROW |160842 |1369 |32315 |
-ROW |160843 |1369 |32316 |
-ROW |160844 |1368 |32317 |
-ROW |160845 |1368 |32318 |
-ROW |160846 |1365 |32319 |
-ROW |160847 |1367 |32320 |
-ROW |160848 |1367 |32321 |
-ROW |160849 |1367 |32322 |
-ROW |160850 |1366 |32323 |
-ROW |160851 |1366 |32324 |
-ROW |160852 |1371 |32325 |
-ROW |160853 |1365 |32326 |
-ROW |160854 |1365 |32327 |
-ROW |160855 |1370 |32328 |
-ROW |160856 |1366 |32330 |
-ROW |160857 |1372 |32331 |
-ROW |160858 |1376 |32332 |
-ROW |160859 |1377 |32333 |
-ROW |160860 |1377 |32334 |
-ROW |160861 |1373 |32335 |
-ROW |160862 |1376 |32336 |
-ROW |160863 |1376 |32337 |
-ROW |160864 |1376 |32338 |
-ROW |160865 |1375 |32339 |
-ROW |160866 |1378 |32340 |
-ROW |160867 |1375 |32341 |
-ROW |160868 |1375 |32342 |
-ROW |160869 |1374 |32343 |
-ROW |160870 |1374 |32344 |
-ROW |160871 |1374 |32345 |
-ROW |160872 |1373 |32346 |
-ROW |160873 |1373 |32347 |
-ROW |160874 |1377 |32348 |
-ROW |160875 |1373 |32350 |
-ROW |160876 |1379 |32351 |
-ROW |160877 |1382 |32352 |
-ROW |160878 |1384 |32353 |
-ROW |160879 |1384 |32354 |
-ROW |160880 |1380 |32355 |
-ROW |160881 |1383 |32356 |
-ROW |160882 |1383 |32357 |
-ROW |160883 |1383 |32358 |
-ROW |160884 |1383 |32359 |
-ROW |160885 |1382 |32360 |
-ROW |160886 |1382 |32361 |
-ROW |160887 |1379 |32362 |
-ROW |160888 |1381 |32363 |
-ROW |160889 |1381 |32364 |
-ROW |160890 |1381 |32365 |
-ROW |160891 |1380 |32366 |
-ROW |160892 |1380 |32367 |
-ROW |160893 |1385 |32368 |
-ROW |160894 |1379 |32369 |
-ROW |160895 |1379 |32370 |
-ROW |160896 |1384 |32371 |
-ROW |160897 |1380 |32373 |
-ROW |160898 |1390 |32374 |
-ROW |160899 |1387 |32375 |
-ROW |160900 |1387 |32376 |
-ROW |160901 |1388 |32377 |
-ROW |160902 |1388 |32378 |
-ROW |160903 |1388 |32379 |
-ROW |160904 |1389 |32380 |
-ROW |160905 |1386 |32382 |
-ROW |160906 |1391 |32383 |
-ROW |160907 |1393 |32384 |
-ROW |160908 |1395 |32385 |
-ROW |160909 |1392 |32386 |
-ROW |160910 |1394 |32387 |
-ROW |160911 |1394 |32388 |
-ROW |160912 |1394 |32389 |
-ROW |160913 |1393 |32390 |
-ROW |160914 |1392 |32391 |
-ROW |160915 |1391 |32392 |
-ROW |160916 |1392 |32393 |
-ROW |160917 |1392 |32394 |
-ROW |160918 |1396 |32395 |
-ROW |160919 |1391 |32396 |
-ROW |160920 |1391 |32397 |
-ROW |160921 |1391 |32398 |
-ROW |160922 |1395 |32399 |
-ROW |160923 |1392 |32401 |
-ROW |160924 |1397 |32402 |
-ROW |160925 |1399 |32403 |
-ROW |160926 |1401 |32404 |
-ROW |160927 |1398 |32405 |
-ROW |160928 |1400 |32406 |
-ROW |160929 |1400 |32407 |
-ROW |160930 |1400 |32408 |
-ROW |160931 |1399 |32409 |
-ROW |160932 |1398 |32410 |
-ROW |160933 |1397 |32411 |
-ROW |160934 |1398 |32412 |
-ROW |160935 |1398 |32413 |
-ROW |160936 |1402 |32414 |
-ROW |160937 |1397 |32415 |
-ROW |160938 |1397 |32416 |
-ROW |160939 |1397 |32417 |
-ROW |160940 |1401 |32418 |
-ROW |160941 |1398 |32420 |
-ROW |160942 |1409 |32421 |
-ROW |160943 |1407 |32422 |
-ROW |160944 |1405 |32423 |
-ROW |160945 |1405 |32424 |
-ROW |160946 |1407 |32425 |
-ROW |160947 |1407 |32426 |
-ROW |160948 |1407 |32427 |
-ROW |160949 |1408 |32428 |
-ROW |160950 |1408 |32429 |
-ROW |160951 |1404 |32436 |
-ROW |160952 |1404 |32437 |
-ROW |160953 |1404 |32438 |
-ROW |160954 |1403 |32439 |
-ROW |160955 |1404 |32440 |
-ROW |160956 |1406 |32441 |
-ROW |160957 |1406 |32442 |
-ROW |160958 |1406 |32443 |
-ROW |160959 |1406 |32444 |
-ROW |160960 |985 |27930 |
-ROW |160961 |985 |27931 |
-ROW |160962 |981 |27935 |
-ROW |160963 |980 |27936 |
-ROW |160964 |985 |30121 |
-ROW |160965 |981 |30122 |
-ROW |160966 |981 |30123 |
-ROW |160967 |982 |27940 |
-ROW |160968 |982 |27941 |
-ROW |160969 |984 |27942 |
-ROW |160970 |983 |27943 |
-ROW |160971 |991 |27967 |
-ROW |160972 |991 |27968 |
-ROW |160973 |991 |27970 |
-ROW |160974 |991 |27971 |
-ROW |160975 |990 |27972 |
-ROW |160976 |990 |27973 |
-ROW |160977 |989 |27975 |
-ROW |160978 |1282 |30124 |
-ROW |160979 |991 |30125 |
-ROW |160980 |990 |30126 |
-ROW |160981 |1280 |30129 |
-ROW |160982 |1281 |30130 |
-ROW |160983 |997 |27997 |
-ROW |160984 |997 |27998 |
-ROW |160985 |997 |27999 |
-ROW |160986 |997 |28000 |
-ROW |160987 |995 |28003 |
-ROW |160988 |996 |30131 |
-ROW |160989 |1003 |28026 |
-ROW |160990 |1003 |28027 |
-ROW |160991 |1001 |28031 |
-ROW |160992 |1002 |30132 |
-ROW |160993 |1002 |30133 |
-ROW |160994 |1002 |30134 |
-ROW |160995 |1002 |30135 |
-ROW |160996 |1002 |30136 |
-ROW |160997 |1761 |35951 |
-ROW |160998 |1758 |35952 |
-ROW |160999 |1758 |35953 |
-ROW |161000 |1758 |35954 |
-ROW |161001 |1758 |35955 |
-ROW |161002 |1758 |35956 |
-ROW |161003 |1758 |35957 |
-ROW |161004 |1758 |35958 |
-ROW |161005 |1761 |35959 |
-ROW |161006 |1761 |35960 |
-ROW |161007 |1762 |35981 |
-ROW |161008 |1760 |35982 |
-ROW |161009 |1768 |35983 |
-ROW |161010 |1764 |35984 |
-ROW |161011 |1763 |35985 |
-ROW |161012 |1764 |35986 |
-ROW |161013 |1764 |35987 |
-ROW |161014 |1764 |35988 |
-ROW |161015 |1764 |35989 |
-ROW |161016 |1764 |35990 |
-ROW |161017 |1764 |35991 |
-ROW |161018 |1768 |35992 |
-ROW |161019 |1765 |35999 |
-ROW |161020 |1769 |36025 |
-ROW |161021 |1767 |36026 |
-ROW |161022 |1775 |36027 |
-ROW |161023 |1772 |36028 |
-ROW |161024 |1770 |36029 |
-ROW |161025 |1772 |36030 |
-ROW |161026 |1772 |36031 |
-ROW |161027 |1772 |36032 |
-ROW |161028 |1772 |36033 |
-ROW |161029 |1772 |36034 |
-ROW |161030 |1772 |36035 |
-ROW |161031 |1775 |36036 |
-ROW |161032 |1771 |36041 |
-ROW |161033 |1776 |36059 |
-ROW |161034 |1774 |36060 |
-ROW |161035 |1783 |36061 |
-ROW |161036 |1779 |36062 |
-ROW |161037 |1779 |36063 |
-ROW |161038 |1779 |36064 |
-ROW |161039 |1779 |36065 |
-ROW |161040 |1779 |36066 |
-ROW |161041 |1783 |36067 |
-ROW |161042 |1778 |36079 |
-ROW |161043 |1791 |36128 |
-ROW |161044 |1787 |36129 |
-ROW |161045 |1787 |36130 |
-ROW |161046 |1787 |36131 |
-ROW |161047 |1787 |36132 |
-ROW |161048 |1787 |36133 |
-ROW |161049 |1791 |36134 |
-ROW |161050 |1786 |36146 |
-ROW |161051 |1797 |36195 |
-ROW |161052 |1794 |36196 |
-ROW |161053 |1794 |36197 |
-ROW |161054 |1794 |36198 |
-ROW |161055 |1794 |36199 |
-ROW |161056 |1794 |36200 |
-ROW |161057 |1794 |36201 |
-ROW |161058 |1794 |36202 |
-ROW |161059 |1797 |36203 |
-ROW |161060 |1797 |36204 |
-ROW |161061 |1793 |36210 |
-ROW |161062 |1798 |36227 |
-ROW |161063 |1796 |36228 |
-ROW |161064 |1802 |36229 |
-ROW |161065 |1800 |36230 |
-ROW |161066 |1799 |36231 |
-ROW |161067 |1800 |36232 |
-ROW |161068 |1800 |36233 |
-ROW |161069 |1800 |36234 |
-ROW |161070 |1800 |36235 |
-ROW |161071 |1800 |36236 |
-ROW |161072 |1800 |36237 |
-ROW |161073 |1802 |36238 |
-ROW |161074 |1808 |36267 |
-ROW |161075 |1804 |36268 |
-ROW |161076 |1803 |36269 |
-ROW |161077 |1804 |36270 |
-ROW |161078 |1804 |36271 |
-ROW |161079 |1804 |36272 |
-ROW |161080 |1804 |36273 |
-ROW |161081 |1804 |36274 |
-ROW |161082 |1804 |36275 |
-ROW |161083 |1808 |36276 |
-ROW |161084 |1805 |36283 |
-ROW |161085 |1809 |36309 |
-ROW |161086 |1807 |36310 |
-ROW |161087 |1815 |36311 |
-ROW |161088 |1811 |36312 |
-ROW |161089 |1810 |36313 |
-ROW |161090 |1811 |36314 |
-ROW |161091 |1811 |36315 |
-ROW |161092 |1811 |36316 |
-ROW |161093 |1811 |36317 |
-ROW |161094 |1811 |36318 |
-ROW |161095 |1811 |36319 |
-ROW |161096 |1815 |36320 |
-ROW |161097 |1812 |36327 |
-ROW |161098 |1816 |36353 |
-ROW |161099 |1814 |36354 |
-ROW |161100 |1822 |36355 |
-ROW |161101 |1819 |36356 |
-ROW |161102 |1817 |36357 |
-ROW |161103 |1819 |36358 |
-ROW |161104 |1819 |36359 |
-ROW |161105 |1819 |36360 |
-ROW |161106 |1819 |36361 |
-ROW |161107 |1819 |36362 |
-ROW |161108 |1819 |36363 |
-ROW |161109 |1822 |36364 |
-ROW |161110 |1818 |36371 |
-ROW |161111 |1823 |36397 |
-ROW |161112 |1821 |36398 |
-ROW |161113 |1829 |36399 |
-ROW |161114 |1826 |36400 |
-ROW |161115 |1824 |36401 |
-ROW |161116 |1826 |36402 |
-ROW |161117 |1826 |36403 |
-ROW |161118 |1826 |36404 |
-ROW |161119 |1826 |36405 |
-ROW |161120 |1826 |36406 |
-ROW |161121 |1826 |36407 |
-ROW |161122 |1829 |36408 |
-ROW |161123 |1825 |36415 |
-ROW |161124 |1830 |36441 |
-ROW |161125 |1828 |36442 |
-ROW |161126 |1837 |36443 |
-ROW |161127 |1833 |36444 |
-ROW |161128 |1831 |36445 |
-ROW |161129 |1833 |36446 |
-ROW |161130 |1833 |36447 |
-ROW |161131 |1833 |36448 |
-ROW |161132 |1834 |36449 |
-ROW |161133 |1833 |36450 |
-ROW |161134 |1833 |36451 |
-ROW |161135 |1833 |36452 |
-ROW |161136 |1837 |36453 |
-ROW |161137 |1832 |36460 |
-ROW |161138 |1838 |36486 |
-ROW |161139 |1836 |36487 |
-ROW |161140 |1845 |36488 |
-ROW |161141 |1841 |36489 |
-ROW |161142 |1839 |36490 |
-ROW |161143 |1841 |36491 |
-ROW |161144 |1841 |36492 |
-ROW |161145 |1841 |36493 |
-ROW |161146 |1842 |36494 |
-ROW |161147 |1841 |36495 |
-ROW |161148 |1841 |36496 |
-ROW |161149 |1841 |36497 |
-ROW |161150 |1845 |36498 |
-ROW |161151 |1840 |36505 |
-ROW |161152 |1846 |36531 |
-ROW |161153 |1844 |36532 |
-ROW |161154 |1853 |36533 |
-ROW |161155 |1849 |36534 |
-ROW |161156 |1847 |36535 |
-ROW |161157 |1849 |36536 |
-ROW |161158 |1849 |36537 |
-ROW |161159 |1849 |36538 |
-ROW |161160 |1849 |36539 |
-ROW |161161 |1849 |36540 |
-ROW |161162 |1849 |36541 |
-ROW |161163 |1853 |36542 |
-ROW |161164 |1848 |36550 |
-ROW |161165 |1850 |36551 |
-ROW |161166 |1854 |36577 |
-ROW |161167 |1852 |36578 |
-ROW |161168 |1142 |29087 |
-ROW |161169 |1142 |29088 |
-ROW |161170 |1142 |29089 |
-ROW |161171 |1142 |29090 |
-ROW |161172 |1142 |29091 |
-ROW |161173 |1142 |29092 |
-ROW |161174 |1142 |29093 |
-ROW |161175 |1142 |29094 |
-ROW |161176 |1142 |29095 |
-ROW |161177 |1142 |29096 |
-ROW |161178 |1142 |29097 |
-ROW |161179 |1142 |29098 |
-ROW |161180 |1142 |29099 |
-ROW |161181 |1142 |29100 |
-ROW |161182 |1142 |29101 |
-ROW |161183 |1142 |29102 |
-ROW |161184 |1144 |29103 |
-ROW |161185 |1144 |29104 |
-ROW |161186 |1144 |29105 |
-ROW |161187 |1144 |29106 |
-ROW |161188 |1144 |29107 |
-ROW |161189 |1144 |29108 |
-ROW |161190 |1151 |29110 |
-ROW |161191 |1148 |29111 |
-ROW |161192 |1148 |29112 |
-ROW |161193 |1148 |29113 |
-ROW |161194 |1148 |29114 |
-ROW |161195 |1148 |29115 |
-ROW |161196 |1148 |29116 |
-ROW |161197 |1148 |29117 |
-ROW |161198 |1148 |29118 |
-ROW |161199 |1148 |29119 |
-ROW |161200 |1150 |29120 |
-ROW |161201 |1149 |29121 |
-ROW |161202 |1149 |29122 |
-ROW |161203 |1149 |29123 |
-ROW |161204 |1152 |29124 |
-ROW |161205 |1152 |29125 |
-ROW |161206 |1152 |29126 |
-ROW |161207 |1152 |29127 |
-ROW |161208 |1152 |29128 |
-ROW |161209 |1152 |29129 |
-ROW |161210 |1152 |29130 |
-ROW |161211 |1152 |29131 |
-ROW |161212 |1152 |29132 |
-ROW |161213 |1152 |29133 |
-ROW |161214 |1152 |29134 |
-ROW |161215 |1152 |29135 |
-ROW |161216 |1152 |29136 |
-ROW |161217 |1152 |29137 |
-ROW |161218 |1152 |29138 |
-ROW |161219 |1152 |29139 |
-ROW |161220 |1154 |29140 |
-ROW |161221 |1154 |29141 |
-ROW |161222 |1154 |29142 |
-ROW |161223 |1154 |29143 |
-ROW |161224 |1154 |29144 |
-ROW |161225 |1154 |29145 |
-ROW |161226 |1161 |29147 |
-ROW |161227 |1158 |29148 |
-ROW |161228 |1158 |29149 |
-ROW |161229 |1158 |29150 |
-ROW |161230 |1158 |29151 |
-ROW |161231 |1158 |29152 |
-ROW |161232 |1158 |29153 |
-ROW |161233 |1158 |29154 |
-ROW |161234 |1158 |29155 |
-ROW |161235 |1158 |29156 |
-ROW |161236 |1160 |29157 |
-ROW |161237 |1159 |29158 |
-ROW |161238 |1159 |29159 |
-ROW |161239 |1159 |29160 |
-ROW |161240 |1162 |29161 |
-ROW |161241 |1162 |29162 |
-ROW |161242 |1162 |29163 |
-ROW |161243 |1162 |29164 |
-ROW |161244 |1162 |29165 |
-ROW |161245 |1162 |29166 |
-ROW |161246 |1162 |29167 |
-ROW |161247 |1162 |29168 |
-ROW |161248 |1162 |29169 |
-ROW |161249 |1162 |29170 |
-ROW |161250 |1162 |29171 |
-ROW |161251 |1162 |29172 |
-ROW |161252 |1162 |29173 |
-ROW |161253 |1162 |29174 |
-ROW |161254 |1162 |29175 |
-ROW |161255 |1162 |29176 |
-ROW |161256 |1164 |29177 |
-ROW |161257 |1164 |29178 |
-ROW |161258 |1164 |29179 |
-ROW |161259 |1164 |29180 |
-ROW |161260 |1164 |29181 |
-ROW |161261 |1164 |29182 |
-ROW |161262 |1171 |29184 |
-ROW |161263 |1168 |29185 |
-ROW |161264 |1168 |29186 |
-ROW |161265 |1168 |29187 |
-ROW |161266 |1168 |29188 |
-ROW |161267 |1168 |29189 |
-ROW |161268 |1168 |29190 |
-ROW |161269 |1168 |29191 |
-ROW |161270 |1168 |29192 |
-ROW |161271 |1168 |29193 |
-ROW |161272 |1170 |29194 |
-ROW |161273 |1169 |29195 |
-ROW |161274 |1169 |29196 |
-ROW |161275 |1169 |29197 |
-ROW |161276 |1142 |29198 |
-ROW |161277 |1144 |31270 |
-ROW |161278 |1152 |29199 |
-ROW |161279 |1154 |31271 |
-ROW |161280 |1162 |29200 |
-ROW |161281 |1164 |31272 |
-ROW |161282 |1146 |31278 |
-ROW |161283 |1156 |31281 |
-ROW |161284 |1166 |31284 |
-ROW |161285 |1146 |31287 |
-ROW |161286 |1146 |31290 |
-ROW |161287 |1156 |31293 |
-ROW |161288 |1156 |31296 |
-ROW |161289 |1166 |31299 |
-ROW |161290 |1166 |31302 |
-ROW |161291 |1173 |29273 |
-ROW |161292 |1173 |29274 |
-ROW |161293 |1173 |29275 |
-ROW |161294 |1173 |29276 |
-ROW |161295 |1173 |29277 |
-ROW |161296 |1173 |29278 |
-ROW |161297 |1173 |29279 |
-ROW |161298 |1173 |29280 |
-ROW |161299 |1173 |29281 |
-ROW |161300 |1173 |29282 |
-ROW |161301 |1173 |29283 |
-ROW |161302 |1173 |29284 |
-ROW |161303 |1173 |29285 |
-ROW |161304 |1173 |29286 |
-ROW |161305 |1173 |29287 |
-ROW |161306 |1173 |29288 |
-ROW |161307 |1175 |29289 |
-ROW |161308 |1175 |29290 |
-ROW |161309 |1175 |29291 |
-ROW |161310 |1175 |29292 |
-ROW |161311 |1175 |29293 |
-ROW |161312 |1175 |29294 |
-ROW |161313 |1182 |29296 |
-ROW |161314 |1179 |29297 |
-ROW |161315 |1179 |29298 |
-ROW |161316 |1179 |29299 |
-ROW |161317 |1179 |29300 |
-ROW |161318 |1179 |29301 |
-ROW |161319 |1179 |29302 |
-ROW |161320 |1179 |29303 |
-ROW |161321 |1179 |29304 |
-ROW |161322 |1179 |29305 |
-ROW |161323 |1181 |29306 |
-ROW |161324 |1180 |29307 |
-ROW |161325 |1180 |29308 |
-ROW |161326 |1180 |29309 |
-ROW |161327 |1183 |29310 |
-ROW |161328 |1183 |29311 |
-ROW |161329 |1183 |29312 |
-ROW |161330 |1183 |29313 |
-ROW |161331 |1183 |29314 |
-ROW |161332 |1183 |29315 |
-ROW |161333 |1183 |29316 |
-ROW |161334 |1183 |29317 |
-ROW |161335 |1183 |29318 |
-ROW |161336 |1183 |29319 |
-ROW |161337 |1183 |29320 |
-ROW |161338 |1183 |29321 |
-ROW |161339 |1183 |29322 |
-ROW |161340 |1183 |29323 |
-ROW |161341 |1183 |29324 |
-ROW |161342 |1183 |29325 |
-ROW |161343 |1185 |29326 |
-ROW |161344 |1185 |29327 |
-ROW |161345 |1185 |29328 |
-ROW |161346 |1185 |29329 |
-ROW |161347 |1185 |29330 |
-ROW |161348 |1185 |29331 |
-ROW |161349 |1192 |29333 |
-ROW |161350 |1189 |29334 |
-ROW |161351 |1189 |29335 |
-ROW |161352 |1189 |29336 |
-ROW |161353 |1189 |29337 |
-ROW |161354 |1189 |29338 |
-ROW |161355 |1189 |29339 |
-ROW |161356 |1189 |29340 |
-ROW |161357 |1189 |29341 |
-ROW |161358 |1189 |29342 |
-ROW |161359 |1191 |29343 |
-ROW |161360 |1190 |29344 |
-ROW |161361 |1190 |29345 |
-ROW |161362 |1190 |29346 |
-ROW |161363 |1173 |29347 |
-ROW |161364 |1175 |31303 |
-ROW |161365 |1183 |29348 |
-ROW |161366 |1185 |31304 |
-ROW |161367 |1177 |31309 |
-ROW |161368 |1187 |31312 |
-ROW |161369 |1177 |31315 |
-ROW |161370 |1177 |31318 |
-ROW |161371 |1187 |31321 |
-ROW |161372 |1187 |31324 |
-ROW |161373 |1201 |29395 |
-ROW |161374 |1196 |29396 |
-ROW |161375 |1196 |29397 |
-ROW |161376 |1194 |29398 |
-ROW |161377 |1193 |29399 |
-ROW |161378 |1196 |29400 |
-ROW |161379 |1196 |29401 |
-ROW |161380 |1196 |29402 |
-ROW |161381 |1196 |29403 |
-ROW |161382 |1194 |29404 |
-ROW |161383 |1193 |29405 |
-ROW |161384 |1193 |29406 |
-ROW |161385 |1193 |29407 |
-ROW |161386 |1193 |29408 |
-ROW |161387 |1193 |29409 |
-ROW |161388 |1193 |29410 |
-ROW |161389 |1193 |29411 |
-ROW |161390 |1193 |29412 |
-ROW |161391 |1193 |29413 |
-ROW |161392 |1194 |29414 |
-ROW |161393 |1197 |29415 |
-ROW |161394 |1193 |29416 |
-ROW |161395 |1193 |29417 |
-ROW |161396 |1193 |29418 |
-ROW |161397 |1193 |29419 |
-ROW |161398 |1193 |29420 |
-ROW |161399 |1199 |29421 |
-ROW |161400 |1195 |29422 |
-ROW |161401 |1194 |29423 |
-ROW |161402 |1194 |29424 |
-ROW |161403 |1194 |29425 |
-ROW |161404 |1193 |29426 |
-ROW |161405 |1193 |29427 |
-ROW |161406 |1195 |29428 |
-ROW |161407 |1201 |29450 |
-ROW |161408 |1201 |29451 |
-ROW |161409 |1128 |28978 |
-ROW |161410 |1128 |28979 |
-ROW |161411 |1128 |28980 |
-ROW |161412 |1128 |28981 |
-ROW |161413 |1128 |28982 |
-ROW |161414 |1128 |28983 |
-ROW |161415 |1128 |28984 |
-ROW |161416 |1128 |28985 |
-ROW |161417 |1128 |28986 |
-ROW |161418 |1130 |28987 |
-ROW |161419 |1130 |28988 |
-ROW |161420 |1130 |28989 |
-ROW |161421 |1130 |28990 |
-ROW |161422 |1130 |28991 |
-ROW |161423 |1130 |28992 |
-ROW |161424 |1132 |28993 |
-ROW |161425 |1132 |28994 |
-ROW |161426 |1132 |28995 |
-ROW |161427 |1132 |28996 |
-ROW |161428 |1132 |28997 |
-ROW |161429 |1132 |28998 |
-ROW |161430 |1132 |28999 |
-ROW |161431 |1132 |29000 |
-ROW |161432 |1132 |29001 |
-ROW |161433 |1134 |29002 |
-ROW |161434 |1134 |29003 |
-ROW |161435 |1134 |29004 |
-ROW |161436 |1134 |29005 |
-ROW |161437 |1134 |29006 |
-ROW |161438 |1134 |29007 |
-ROW |161439 |1130 |29017 |
-ROW |161440 |1130 |29018 |
-ROW |161441 |1130 |29019 |
-ROW |161442 |1130 |29020 |
-ROW |161443 |1130 |29021 |
-ROW |161444 |1130 |29022 |
-ROW |161445 |1130 |29023 |
-ROW |161446 |1130 |29024 |
-ROW |161447 |1130 |29025 |
-ROW |161448 |1130 |29026 |
-ROW |161449 |1134 |29034 |
-ROW |161450 |1134 |29035 |
-ROW |161451 |1134 |29036 |
-ROW |161452 |1134 |29037 |
-ROW |161453 |1134 |29038 |
-ROW |161454 |1134 |29039 |
-ROW |161455 |1134 |29040 |
-ROW |161456 |1134 |29041 |
-ROW |161457 |1134 |29042 |
-ROW |161458 |1134 |29043 |
-ROW |161459 |1130 |29048 |
-ROW |161460 |1134 |29049 |
-ROW |161461 |1202 |29454 |
-ROW |161462 |1202 |29455 |
-ROW |161463 |1202 |29456 |
-ROW |161464 |1202 |29457 |
-ROW |161465 |1202 |29458 |
-ROW |161466 |1202 |29459 |
-ROW |161467 |1203 |29460 |
-ROW |161468 |1203 |29461 |
-ROW |161469 |1203 |29462 |
-ROW |161470 |1203 |29463 |
-ROW |161471 |1203 |29466 |
-ROW |161472 |1203 |29467 |
-ROW |161473 |1203 |29468 |
-ROW |161474 |1203 |29469 |
-ROW |161475 |1203 |29470 |
-ROW |161476 |1209 |29472 |
-ROW |161477 |1207 |29473 |
-ROW |161478 |1207 |29474 |
-ROW |161479 |1207 |29475 |
-ROW |161480 |1207 |29476 |
-ROW |161481 |1207 |29477 |
-ROW |161482 |1208 |29478 |
-ROW |161483 |1202 |30137 |
-ROW |161484 |1202 |31325 |
-ROW |161485 |1203 |31326 |
-ROW |161486 |1203 |31327 |
-ROW |161487 |1211 |36579 |
-ROW |161488 |1212 |29480 |
-ROW |161489 |1212 |29481 |
-ROW |161490 |1212 |29482 |
-ROW |161491 |1212 |29483 |
-ROW |161492 |1212 |29484 |
-ROW |161493 |1212 |29485 |
-ROW |161494 |1213 |29486 |
-ROW |161495 |1213 |29487 |
-ROW |161496 |1213 |29488 |
-ROW |161497 |1213 |29489 |
-ROW |161498 |1213 |29492 |
-ROW |161499 |1213 |29493 |
-ROW |161500 |1213 |29494 |
-ROW |161501 |1213 |29495 |
-ROW |161502 |1213 |29496 |
-ROW |161503 |1219 |29498 |
-ROW |161504 |1217 |29499 |
-ROW |161505 |1217 |29500 |
-ROW |161506 |1217 |29501 |
-ROW |161507 |1217 |29502 |
-ROW |161508 |1217 |29503 |
-ROW |161509 |1218 |29504 |
-ROW |161510 |1212 |30138 |
-ROW |161511 |1212 |31328 |
-ROW |161512 |1213 |31329 |
-ROW |161513 |1213 |31330 |
-ROW |161514 |1216 |36580 |
-ROW |161515 |1203 |31331 |
-ROW |161516 |1213 |31332 |
-ROW |161517 |1310 |30425 |
-ROW |161518 |1311 |30426 |
-ROW |161519 |1243 |29561 |
-ROW |161520 |1243 |29562 |
-ROW |161521 |1243 |29563 |
-ROW |161522 |1243 |29564 |
-ROW |161523 |1243 |29565 |
-ROW |161524 |1243 |29566 |
-ROW |161525 |1244 |29567 |
-ROW |161526 |1244 |29568 |
-ROW |161527 |1244 |29569 |
-ROW |161528 |1244 |29570 |
-ROW |161529 |1244 |29573 |
-ROW |161530 |1244 |29574 |
-ROW |161531 |1244 |29575 |
-ROW |161532 |1244 |29576 |
-ROW |161533 |1244 |29577 |
-ROW |161534 |1250 |29579 |
-ROW |161535 |1248 |29580 |
-ROW |161536 |1248 |29581 |
-ROW |161537 |1248 |29582 |
-ROW |161538 |1248 |29583 |
-ROW |161539 |1248 |29584 |
-ROW |161540 |1249 |29585 |
-ROW |161541 |1243 |30139 |
-ROW |161542 |1243 |31343 |
-ROW |161543 |1244 |31344 |
-ROW |161544 |1244 |31345 |
-ROW |161545 |1252 |36601 |
-ROW |161546 |1253 |29587 |
-ROW |161547 |1253 |29588 |
-ROW |161548 |1253 |29589 |
-ROW |161549 |1253 |29590 |
-ROW |161550 |1253 |29591 |
-ROW |161551 |1253 |29592 |
-ROW |161552 |1254 |29593 |
-ROW |161553 |1254 |29594 |
-ROW |161554 |1254 |29595 |
-ROW |161555 |1254 |29596 |
-ROW |161556 |1254 |29599 |
-ROW |161557 |1254 |29600 |
-ROW |161558 |1254 |29601 |
-ROW |161559 |1254 |29602 |
-ROW |161560 |1254 |29603 |
-ROW |161561 |1242 |29605 |
-ROW |161562 |1258 |29606 |
-ROW |161563 |1258 |29607 |
-ROW |161564 |1258 |29608 |
-ROW |161565 |1258 |29609 |
-ROW |161566 |1258 |29610 |
-ROW |161567 |1259 |29611 |
-ROW |161568 |1253 |30140 |
-ROW |161569 |1253 |31346 |
-ROW |161570 |1254 |31347 |
-ROW |161571 |1254 |31348 |
-ROW |161572 |1257 |36602 |
-ROW |161573 |1244 |31349 |
-ROW |161574 |1254 |31350 |
-ROW |161575 |1312 |30429 |
-ROW |161576 |1313 |30430 |
-ROW |161577 |1493 |33568 |
-ROW |161578 |1493 |33569 |
-ROW |161579 |1493 |33570 |
-ROW |161580 |1492 |33571 |
-ROW |161581 |1492 |33572 |
-ROW |161582 |1492 |33574 |
-ROW |161583 |1492 |33575 |
-ROW |161584 |1492 |33576 |
-ROW |161585 |1492 |33577 |
-ROW |161586 |1492 |33578 |
-ROW |161587 |1493 |33579 |
-ROW |161588 |1493 |33580 |
-ROW |161589 |1493 |33581 |
-ROW |161590 |1493 |33582 |
-ROW |161591 |1493 |33583 |
-ROW |161592 |1493 |33584 |
-ROW |161593 |1493 |33585 |
-ROW |161594 |1493 |33589 |
-ROW |161595 |1493 |33590 |
-ROW |161596 |1493 |33591 |
-ROW |161597 |1493 |33592 |
-ROW |161598 |1493 |33593 |
-ROW |161599 |1493 |33594 |
-ROW |161600 |1493 |33595 |
-ROW |161601 |1492 |34083 |
-ROW |161602 |1493 |33602 |
-ROW |161603 |1493 |33603 |
-ROW |161604 |1493 |33604 |
-ROW |161605 |1493 |33605 |
-ROW |161606 |1493 |33606 |
-ROW |161607 |1492 |33607 |
-ROW |161608 |1493 |33608 |
-ROW |161609 |1493 |33609 |
-ROW |161610 |1493 |33610 |
-ROW |161611 |1493 |33611 |
-ROW |161612 |1493 |33612 |
-ROW |161613 |1493 |33613 |
-ROW |161614 |1493 |33614 |
-ROW |161615 |1493 |33615 |
-ROW |161616 |1493 |33616 |
-ROW |161617 |1493 |33617 |
-ROW |161618 |1493 |33618 |
-ROW |161619 |1495 |33619 |
-ROW |161620 |1495 |33620 |
-ROW |161621 |1495 |33621 |
-ROW |161622 |1494 |33622 |
-ROW |161623 |1494 |33623 |
-ROW |161624 |1494 |33625 |
-ROW |161625 |1494 |33626 |
-ROW |161626 |1494 |33627 |
-ROW |161627 |1494 |33628 |
-ROW |161628 |1494 |33629 |
-ROW |161629 |1495 |33630 |
-ROW |161630 |1495 |33631 |
-ROW |161631 |1495 |33632 |
-ROW |161632 |1495 |33633 |
-ROW |161633 |1495 |33634 |
-ROW |161634 |1495 |33635 |
-ROW |161635 |1495 |33636 |
-ROW |161636 |1495 |33640 |
-ROW |161637 |1495 |33641 |
-ROW |161638 |1495 |33642 |
-ROW |161639 |1495 |33643 |
-ROW |161640 |1495 |33644 |
-ROW |161641 |1495 |33645 |
-ROW |161642 |1495 |33646 |
-ROW |161643 |1494 |34084 |
-ROW |161644 |1495 |33653 |
-ROW |161645 |1495 |33654 |
-ROW |161646 |1495 |33655 |
-ROW |161647 |1495 |33656 |
-ROW |161648 |1495 |33657 |
-ROW |161649 |1494 |33658 |
-ROW |161650 |1495 |33659 |
-ROW |161651 |1495 |33660 |
-ROW |161652 |1495 |33661 |
-ROW |161653 |1495 |33662 |
-ROW |161654 |1495 |33663 |
-ROW |161655 |1495 |33664 |
-ROW |161656 |1495 |33665 |
-ROW |161657 |1495 |33666 |
-ROW |161658 |1495 |33667 |
-ROW |161659 |1495 |33668 |
-ROW |161660 |1495 |33669 |
-ROW |161661 |1497 |33670 |
-ROW |161662 |1497 |33671 |
-ROW |161663 |1497 |33672 |
-ROW |161664 |1496 |33673 |
-ROW |161665 |1496 |33674 |
-ROW |161666 |1496 |33676 |
-ROW |161667 |1496 |33677 |
-ROW |161668 |1496 |33678 |
-ROW |161669 |1496 |33679 |
-ROW |161670 |1496 |33680 |
-ROW |161671 |1497 |33681 |
-ROW |161672 |1497 |33682 |
-ROW |161673 |1497 |33683 |
-ROW |161674 |1497 |33684 |
-ROW |161675 |1497 |33685 |
-ROW |161676 |1497 |33686 |
-ROW |161677 |1497 |33687 |
-ROW |161678 |1497 |33691 |
-ROW |161679 |1497 |33692 |
-ROW |161680 |1497 |33693 |
-ROW |161681 |1497 |33694 |
-ROW |161682 |1497 |33695 |
-ROW |161683 |1497 |33696 |
-ROW |161684 |1497 |33697 |
-ROW |161685 |1496 |34085 |
-ROW |161686 |1497 |33704 |
-ROW |161687 |1497 |33705 |
-ROW |161688 |1497 |33706 |
-ROW |161689 |1497 |33707 |
-ROW |161690 |1497 |33708 |
-ROW |161691 |1496 |33709 |
-ROW |161692 |1497 |33710 |
-ROW |161693 |1497 |33711 |
-ROW |161694 |1497 |33712 |
-ROW |161695 |1497 |33713 |
-ROW |161696 |1497 |33714 |
-ROW |161697 |1497 |33715 |
-ROW |161698 |1497 |33716 |
-ROW |161699 |1497 |33717 |
-ROW |161700 |1497 |33718 |
-ROW |161701 |1497 |33719 |
-ROW |161702 |1497 |33720 |
-ROW |161703 |1499 |33721 |
-ROW |161704 |1499 |33722 |
-ROW |161705 |1499 |33723 |
-ROW |161706 |1498 |33724 |
-ROW |161707 |1498 |33725 |
-ROW |161708 |1498 |33727 |
-ROW |161709 |1498 |33728 |
-ROW |161710 |1498 |33729 |
-ROW |161711 |1498 |33730 |
-ROW |161712 |1498 |33731 |
-ROW |161713 |1499 |33732 |
-ROW |161714 |1499 |33733 |
-ROW |161715 |1499 |33734 |
-ROW |161716 |1499 |33735 |
-ROW |161717 |1499 |33736 |
-ROW |161718 |1499 |33737 |
-ROW |161719 |1499 |33738 |
-ROW |161720 |1499 |33742 |
-ROW |161721 |1499 |33743 |
-ROW |161722 |1499 |33744 |
-ROW |161723 |1499 |33745 |
-ROW |161724 |1499 |33746 |
-ROW |161725 |1499 |33747 |
-ROW |161726 |1499 |33748 |
-ROW |161727 |1498 |34086 |
-ROW |161728 |1499 |33755 |
-ROW |161729 |1499 |33756 |
-ROW |161730 |1499 |33757 |
-ROW |161731 |1499 |33758 |
-ROW |161732 |1499 |33759 |
-ROW |161733 |1498 |33760 |
-ROW |161734 |1499 |33761 |
-ROW |161735 |1499 |33762 |
-ROW |161736 |1499 |33763 |
-ROW |161737 |1499 |33764 |
-ROW |161738 |1499 |33765 |
-ROW |161739 |1499 |33766 |
-ROW |161740 |1499 |33767 |
-ROW |161741 |1499 |33768 |
-ROW |161742 |1499 |33769 |
-ROW |161743 |1499 |33770 |
-ROW |161744 |1499 |33771 |
-ROW |161745 |1501 |33772 |
-ROW |161746 |1501 |33773 |
-ROW |161747 |1501 |33774 |
-ROW |161748 |1500 |33775 |
-ROW |161749 |1500 |33776 |
-ROW |161750 |1500 |33778 |
-ROW |161751 |1500 |33779 |
-ROW |161752 |1500 |33780 |
-ROW |161753 |1500 |33781 |
-ROW |161754 |1500 |33782 |
-ROW |161755 |1501 |33783 |
-ROW |161756 |1501 |33784 |
-ROW |161757 |1501 |33785 |
-ROW |161758 |1501 |33786 |
-ROW |161759 |1501 |33787 |
-ROW |161760 |1501 |33788 |
-ROW |161761 |1501 |33789 |
-ROW |161762 |1501 |33793 |
-ROW |161763 |1501 |33794 |
-ROW |161764 |1501 |33795 |
-ROW |161765 |1501 |33796 |
-ROW |161766 |1501 |33797 |
-ROW |161767 |1501 |33798 |
-ROW |161768 |1501 |33799 |
-ROW |161769 |1500 |34087 |
-ROW |161770 |1501 |33806 |
-ROW |161771 |1501 |33807 |
-ROW |161772 |1501 |33808 |
-ROW |161773 |1501 |33809 |
-ROW |161774 |1501 |33810 |
-ROW |161775 |1500 |33811 |
-ROW |161776 |1501 |33812 |
-ROW |161777 |1501 |33813 |
-ROW |161778 |1501 |33814 |
-ROW |161779 |1501 |33815 |
-ROW |161780 |1501 |33816 |
-ROW |161781 |1501 |33817 |
-ROW |161782 |1501 |33818 |
-ROW |161783 |1501 |33819 |
-ROW |161784 |1501 |33820 |
-ROW |161785 |1501 |33821 |
-ROW |161786 |1501 |33822 |
-ROW |161787 |1503 |33823 |
-ROW |161788 |1503 |33824 |
-ROW |161789 |1503 |33825 |
-ROW |161790 |1502 |33826 |
-ROW |161791 |1502 |33827 |
-ROW |161792 |1502 |33829 |
-ROW |161793 |1502 |33830 |
-ROW |161794 |1502 |33831 |
-ROW |161795 |1502 |33832 |
-ROW |161796 |1502 |33833 |
-ROW |161797 |1503 |33834 |
-ROW |161798 |1503 |33835 |
-ROW |161799 |1503 |33836 |
-ROW |161800 |1503 |33837 |
-ROW |161801 |1503 |33838 |
-ROW |161802 |1503 |33839 |
-ROW |161803 |1503 |33840 |
-ROW |161804 |1503 |33844 |
-ROW |161805 |1503 |33845 |
-ROW |161806 |1503 |33846 |
-ROW |161807 |1503 |33847 |
-ROW |161808 |1503 |33848 |
-ROW |161809 |1503 |33849 |
-ROW |161810 |1503 |33850 |
-ROW |161811 |1502 |34088 |
-ROW |161812 |1503 |33857 |
-ROW |161813 |1503 |33858 |
-ROW |161814 |1503 |33859 |
-ROW |161815 |1503 |33860 |
-ROW |161816 |1503 |33861 |
-ROW |161817 |1502 |33862 |
-ROW |161818 |1503 |33863 |
-ROW |161819 |1503 |33864 |
-ROW |161820 |1503 |33865 |
-ROW |161821 |1503 |33866 |
-ROW |161822 |1503 |33867 |
-ROW |161823 |1503 |33868 |
-ROW |161824 |1503 |33869 |
-ROW |161825 |1503 |33870 |
-ROW |161826 |1503 |33871 |
-ROW |161827 |1503 |33872 |
-ROW |161828 |1503 |33873 |
-ROW |161829 |1505 |33874 |
-ROW |161830 |1505 |33875 |
-ROW |161831 |1505 |33876 |
-ROW |161832 |1504 |33877 |
-ROW |161833 |1504 |33878 |
-ROW |161834 |1504 |33880 |
-ROW |161835 |1504 |33881 |
-ROW |161836 |1504 |33882 |
-ROW |161837 |1504 |33883 |
-ROW |161838 |1504 |33884 |
-ROW |161839 |1505 |33885 |
-ROW |161840 |1505 |33886 |
-ROW |161841 |1505 |33887 |
-ROW |161842 |1505 |33888 |
-ROW |161843 |1505 |33889 |
-ROW |161844 |1505 |33890 |
-ROW |161845 |1505 |33891 |
-ROW |161846 |1505 |33895 |
-ROW |161847 |1505 |33896 |
-ROW |161848 |1505 |33897 |
-ROW |161849 |1505 |33898 |
-ROW |161850 |1505 |33899 |
-ROW |161851 |1505 |33900 |
-ROW |161852 |1505 |33901 |
-ROW |161853 |1504 |34089 |
-ROW |161854 |1505 |33908 |
-ROW |161855 |1505 |33909 |
-ROW |161856 |1505 |33910 |
-ROW |161857 |1505 |33911 |
-ROW |161858 |1505 |33912 |
-ROW |161859 |1504 |33913 |
-ROW |161860 |1505 |33914 |
-ROW |161861 |1505 |33915 |
-ROW |161862 |1505 |33916 |
-ROW |161863 |1505 |33917 |
-ROW |161864 |1505 |33918 |
-ROW |161865 |1505 |33919 |
-ROW |161866 |1505 |33920 |
-ROW |161867 |1505 |33921 |
-ROW |161868 |1505 |33922 |
-ROW |161869 |1505 |33923 |
-ROW |161870 |1505 |33924 |
-ROW |161871 |1489 |33433 |
-ROW |161872 |1489 |33434 |
-ROW |161873 |1488 |33435 |
-ROW |161874 |1488 |33436 |
-ROW |161875 |1488 |33438 |
-ROW |161876 |1488 |33439 |
-ROW |161877 |1488 |33440 |
-ROW |161878 |1488 |33441 |
-ROW |161879 |1488 |33442 |
-ROW |161880 |1489 |33443 |
-ROW |161881 |1489 |33444 |
-ROW |161882 |1489 |33445 |
-ROW |161883 |1489 |33446 |
-ROW |161884 |1489 |33447 |
-ROW |161885 |1489 |33448 |
-ROW |161886 |1489 |33449 |
-ROW |161887 |1489 |33453 |
-ROW |161888 |1489 |33454 |
-ROW |161889 |1489 |33455 |
-ROW |161890 |1489 |33456 |
-ROW |161891 |1489 |33457 |
-ROW |161892 |1489 |33458 |
-ROW |161893 |1489 |33459 |
-ROW |161894 |1489 |33925 |
-ROW |161895 |1488 |34090 |
-ROW |161896 |1489 |33465 |
-ROW |161897 |1489 |33466 |
-ROW |161898 |1489 |33467 |
-ROW |161899 |1489 |33468 |
-ROW |161900 |1489 |33469 |
-ROW |161901 |1488 |33470 |
-ROW |161902 |1489 |33471 |
-ROW |161903 |1489 |33472 |
-ROW |161904 |1489 |33473 |
-ROW |161905 |1489 |33474 |
-ROW |161906 |1489 |33475 |
-ROW |161907 |1489 |33476 |
-ROW |161908 |1489 |33477 |
-ROW |161909 |1489 |33478 |
-ROW |161910 |1489 |33927 |
-ROW |161911 |1489 |33928 |
-ROW |161912 |1489 |33929 |
-ROW |161913 |1507 |33930 |
-ROW |161914 |1507 |33931 |
-ROW |161915 |1507 |33932 |
-ROW |161916 |1506 |33933 |
-ROW |161917 |1506 |33934 |
-ROW |161918 |1506 |33936 |
-ROW |161919 |1506 |33937 |
-ROW |161920 |1506 |33938 |
-ROW |161921 |1506 |33939 |
-ROW |161922 |1506 |33940 |
-ROW |161923 |1507 |33941 |
-ROW |161924 |1507 |33942 |
-ROW |161925 |1507 |33943 |
-ROW |161926 |1507 |33944 |
-ROW |161927 |1507 |33945 |
-ROW |161928 |1507 |33946 |
-ROW |161929 |1507 |33947 |
-ROW |161930 |1507 |33951 |
-ROW |161931 |1507 |33952 |
-ROW |161932 |1507 |33953 |
-ROW |161933 |1507 |33954 |
-ROW |161934 |1507 |33955 |
-ROW |161935 |1507 |33956 |
-ROW |161936 |1507 |33957 |
-ROW |161937 |1506 |34091 |
-ROW |161938 |1507 |33964 |
-ROW |161939 |1507 |33965 |
-ROW |161940 |1507 |33966 |
-ROW |161941 |1507 |33967 |
-ROW |161942 |1507 |33968 |
-ROW |161943 |1506 |33969 |
-ROW |161944 |1507 |33970 |
-ROW |161945 |1507 |33971 |
-ROW |161946 |1507 |33972 |
-ROW |161947 |1507 |33973 |
-ROW |161948 |1507 |33974 |
-ROW |161949 |1507 |33975 |
-ROW |161950 |1507 |33976 |
-ROW |161951 |1507 |33977 |
-ROW |161952 |1507 |33978 |
-ROW |161953 |1507 |33979 |
-ROW |161954 |1507 |33980 |
-ROW |161955 |1509 |33981 |
-ROW |161956 |1509 |33982 |
-ROW |161957 |1509 |33983 |
-ROW |161958 |1508 |33984 |
-ROW |161959 |1508 |33985 |
-ROW |161960 |1508 |33987 |
-ROW |161961 |1508 |33988 |
-ROW |161962 |1508 |33989 |
-ROW |161963 |1508 |33990 |
-ROW |161964 |1508 |33991 |
-ROW |161965 |1509 |33992 |
-ROW |161966 |1509 |33993 |
-ROW |161967 |1509 |33994 |
-ROW |161968 |1509 |33995 |
-ROW |161969 |1509 |33996 |
-ROW |161970 |1509 |33997 |
-ROW |161971 |1509 |33998 |
-ROW |161972 |1509 |34002 |
-ROW |161973 |1509 |34003 |
-ROW |161974 |1509 |34004 |
-ROW |161975 |1509 |34005 |
-ROW |161976 |1509 |34006 |
-ROW |161977 |1509 |34007 |
-ROW |161978 |1509 |34008 |
-ROW |161979 |1508 |34092 |
-ROW |161980 |1509 |34015 |
-ROW |161981 |1509 |34016 |
-ROW |161982 |1509 |34017 |
-ROW |161983 |1509 |34018 |
-ROW |161984 |1509 |34019 |
-ROW |161985 |1508 |34020 |
-ROW |161986 |1509 |34021 |
-ROW |161987 |1509 |34022 |
-ROW |161988 |1509 |34023 |
-ROW |161989 |1509 |34024 |
-ROW |161990 |1509 |34025 |
-ROW |161991 |1509 |34026 |
-ROW |161992 |1509 |34027 |
-ROW |161993 |1509 |34028 |
-ROW |161994 |1509 |34029 |
-ROW |161995 |1509 |34030 |
-ROW |161996 |1509 |34031 |
-ROW |161997 |1511 |34032 |
-ROW |161998 |1511 |34033 |
-ROW |161999 |1511 |34034 |
-ROW |162000 |1510 |34035 |
-ROW |162001 |1510 |34036 |
-ROW |162002 |1510 |34038 |
-ROW |162003 |1510 |34039 |
-ROW |162004 |1510 |34040 |
-ROW |162005 |1510 |34041 |
-ROW |162006 |1510 |34042 |
-ROW |162007 |1511 |34043 |
-ROW |162008 |1511 |34044 |
-ROW |162009 |1511 |34045 |
-ROW |162010 |1511 |34046 |
-ROW |162011 |1511 |34047 |
-ROW |162012 |1511 |34048 |
-ROW |162013 |1511 |34049 |
-ROW |162014 |1511 |34053 |
-ROW |162015 |1511 |34054 |
-ROW |162016 |1511 |34055 |
-ROW |162017 |1511 |34056 |
-ROW |162018 |1511 |34057 |
-ROW |162019 |1511 |34058 |
-ROW |162020 |1511 |34059 |
-ROW |162021 |1510 |34093 |
-ROW |162022 |1511 |34066 |
-ROW |162023 |1511 |34067 |
-ROW |162024 |1511 |34068 |
-ROW |162025 |1511 |34069 |
-ROW |162026 |1511 |34070 |
-ROW |162027 |1510 |34071 |
-ROW |162028 |1511 |34072 |
-ROW |162029 |1511 |34073 |
-ROW |162030 |1511 |34074 |
-ROW |162031 |1511 |34075 |
-ROW |162032 |1511 |34076 |
-ROW |162033 |1511 |34077 |
-ROW |162034 |1511 |34078 |
-ROW |162035 |1511 |34079 |
-ROW |162036 |1511 |34080 |
-ROW |162037 |1511 |34081 |
-ROW |162038 |1511 |34082 |
-ROW |162039 |1424 |32776 |
-ROW |162040 |1424 |32777 |
-ROW |162041 |1424 |32778 |
-ROW |162042 |1424 |32779 |
-ROW |162043 |1491 |33479 |
-ROW |162044 |1490 |33480 |
-ROW |162045 |1491 |33481 |
-ROW |162046 |1491 |33482 |
-ROW |162047 |1491 |33483 |
-ROW |162048 |1491 |33484 |
-ROW |162049 |1491 |33485 |
-ROW |162050 |1491 |33486 |
-ROW |162051 |1491 |33487 |
-ROW |162052 |1490 |33488 |
-ROW |162053 |1490 |33489 |
-ROW |162054 |1491 |33490 |
-ROW |162055 |1490 |33491 |
-ROW |162056 |1491 |33492 |
-ROW |162057 |1490 |33493 |
-ROW |162058 |1490 |33494 |
-ROW |162059 |1490 |33495 |
-ROW |162060 |1491 |33496 |
-ROW |162061 |1491 |33497 |
-ROW |162062 |1491 |33498 |
-ROW |162063 |1491 |33499 |
-ROW |162064 |1490 |33500 |
-ROW |162065 |1490 |33501 |
-ROW |162066 |1491 |33502 |
-ROW |162067 |1491 |33503 |
-ROW |162068 |1490 |33504 |
-ROW |162069 |1490 |33505 |
-ROW |162070 |1490 |33506 |
-ROW |162071 |1490 |33507 |
-ROW |162072 |1490 |33508 |
-ROW |162073 |1490 |33509 |
-ROW |162074 |1491 |33510 |
-ROW |162075 |1491 |33511 |
-ROW |162076 |1490 |33512 |
-ROW |162077 |1491 |33545 |
-ROW |162078 |1491 |33551 |
-ROW |162079 |1491 |33552 |
-ROW |162080 |1491 |33553 |
-ROW |162081 |1491 |33559 |
-ROW |162082 |1491 |33560 |
-ROW |162083 |1491 |33561 |
-ROW |162084 |1491 |33562 |
-ROW |162085 |1416 |32612 |
-ROW |162086 |1416 |32613 |
-ROW |162087 |1416 |32614 |
-ROW |162088 |1416 |32615 |
-ROW |162089 |1325 |30685 |
-ROW |162090 |1616 |34946 |
-ROW |162091 |1616 |34947 |
-ROW |162092 |1616 |34948 |
-ROW |162093 |1616 |34949 |
-ROW |162094 |1616 |34950 |
-ROW |162095 |1621 |34951 |
-ROW |162096 |1616 |34952 |
-ROW |162097 |1621 |34953 |
-ROW |162098 |1614 |34964 |
-ROW |162099 |1614 |34965 |
-ROW |162100 |1614 |34966 |
-ROW |162101 |1615 |34967 |
-ROW |162102 |1619 |34982 |
-ROW |162103 |1619 |34983 |
-ROW |162104 |1619 |34984 |
-ROW |162105 |1619 |34985 |
-ROW |162106 |1619 |34986 |
-ROW |162107 |1620 |34987 |
-ROW |162108 |1622 |34988 |
-ROW |162109 |1622 |34989 |
-ROW |162110 |1622 |34990 |
-ROW |162111 |1622 |34991 |
-ROW |162112 |1622 |34992 |
-ROW |162113 |1617 |34993 |
-ROW |162114 |1617 |34994 |
-ROW |162115 |1621 |34995 |
-ROW |162116 |1623 |34996 |
-ROW |162117 |1623 |34997 |
-ROW |162118 |1623 |34998 |
-ROW |162119 |1277 |30066 |
-ROW |162120 |1277 |30067 |
-ROW |162121 |1277 |30068 |
-ROW |162122 |1277 |30069 |
-ROW |162123 |1277 |30070 |
-ROW |162124 |1276 |30071 |
-ROW |162125 |1271 |30072 |
-ROW |162126 |1274 |30073 |
-ROW |162127 |1274 |30074 |
-ROW |162128 |1273 |30075 |
-ROW |162129 |1275 |30076 |
-ROW |162130 |1275 |30077 |
-ROW |162131 |1275 |30078 |
-ROW |162132 |1275 |30079 |
-ROW |162133 |1278 |30080 |
-ROW |162134 |1278 |30081 |
-ROW |162135 |1278 |30082 |
-ROW |162136 |1272 |30083 |
-ROW |162137 |1272 |30084 |
-ROW |162138 |1272 |30085 |
-ROW |162139 |1635 |35041 |
-ROW |162140 |1635 |35042 |
-ROW |162141 |1636 |35043 |
-ROW |162142 |1636 |35044 |
-ROW |162143 |1636 |35045 |
-ROW |162144 |1635 |35046 |
-ROW |162145 |1635 |35047 |
-ROW |162146 |1635 |35048 |
-ROW |162147 |1639 |35049 |
-ROW |162148 |1636 |35050 |
-ROW |162149 |1639 |35051 |
-ROW |162150 |1635 |35052 |
-ROW |162151 |1639 |35053 |
-ROW |162152 |1633 |35061 |
-ROW |162153 |1633 |35062 |
-ROW |162154 |1633 |35063 |
-ROW |162155 |1634 |35064 |
-ROW |162156 |1634 |35065 |
-ROW |162157 |1637 |35066 |
-ROW |162158 |1637 |35067 |
-ROW |162159 |1637 |35068 |
-ROW |162160 |1637 |35069 |
-ROW |162161 |1637 |35070 |
-ROW |162162 |1637 |35071 |
-ROW |162163 |1638 |35072 |
-ROW |162164 |1640 |35073 |
-ROW |162165 |1640 |35074 |
-ROW |162166 |1641 |35075 |
-ROW |162167 |1641 |35076 |
-ROW |162168 |1641 |35077 |
-ROW |162169 |1641 |35078 |
-ROW |162170 |1641 |35079 |
-ROW |162171 |1641 |35080 |
-ROW |162172 |1653 |35123 |
-ROW |162173 |1653 |35124 |
-ROW |162174 |1654 |35125 |
-ROW |162175 |1654 |35126 |
-ROW |162176 |1654 |35127 |
-ROW |162177 |1653 |35128 |
-ROW |162178 |1653 |35129 |
-ROW |162179 |1653 |35130 |
-ROW |162180 |1657 |35131 |
-ROW |162181 |1654 |35132 |
-ROW |162182 |1657 |35133 |
-ROW |162183 |1653 |35134 |
-ROW |162184 |1657 |35135 |
-ROW |162185 |1651 |35143 |
-ROW |162186 |1651 |35144 |
-ROW |162187 |1651 |35145 |
-ROW |162188 |1652 |35146 |
-ROW |162189 |1652 |35147 |
-ROW |162190 |1655 |35148 |
-ROW |162191 |1655 |35149 |
-ROW |162192 |1655 |35150 |
-ROW |162193 |1655 |35151 |
-ROW |162194 |1655 |35152 |
-ROW |162195 |1655 |35153 |
-ROW |162196 |1656 |35154 |
-ROW |162197 |1658 |35155 |
-ROW |162198 |1658 |35156 |
-ROW |162199 |1659 |35157 |
-ROW |162200 |1659 |35158 |
-ROW |162201 |1659 |35159 |
-ROW |162202 |1659 |35160 |
-ROW |162203 |1659 |35161 |
-ROW |162204 |1659 |35162 |
-ROW |162205 |1671 |35205 |
-ROW |162206 |1671 |35206 |
-ROW |162207 |1672 |35207 |
-ROW |162208 |1672 |35208 |
-ROW |162209 |1672 |35209 |
-ROW |162210 |1671 |35210 |
-ROW |162211 |1671 |35211 |
-ROW |162212 |1671 |35212 |
-ROW |162213 |1675 |35213 |
-ROW |162214 |1672 |35214 |
-ROW |162215 |1675 |35215 |
-ROW |162216 |1671 |35216 |
-ROW |162217 |1675 |35217 |
-ROW |162218 |1669 |35225 |
-ROW |162219 |1669 |35226 |
-ROW |162220 |1669 |35227 |
-ROW |162221 |1670 |35228 |
-ROW |162222 |1670 |35229 |
-ROW |162223 |1673 |35230 |
-ROW |162224 |1673 |35231 |
-ROW |162225 |1673 |35232 |
-ROW |162226 |1673 |35233 |
-ROW |162227 |1673 |35234 |
-ROW |162228 |1673 |35235 |
-ROW |162229 |1674 |35236 |
-ROW |162230 |1676 |35237 |
-ROW |162231 |1676 |35238 |
-ROW |162232 |1677 |35239 |
-ROW |162233 |1677 |35240 |
-ROW |162234 |1677 |35241 |
-ROW |162235 |1677 |35242 |
-ROW |162236 |1677 |35243 |
-ROW |162237 |1677 |35244 |
-ROW |162238 |1689 |35287 |
-ROW |162239 |1689 |35288 |
-ROW |162240 |1690 |35289 |
-ROW |162241 |1690 |35290 |
-ROW |162242 |1690 |35291 |
-ROW |162243 |1689 |35292 |
-ROW |162244 |1689 |35293 |
-ROW |162245 |1689 |35294 |
-ROW |162246 |1693 |35295 |
-ROW |162247 |1690 |35296 |
-ROW |162248 |1693 |35297 |
-ROW |162249 |1689 |35298 |
-ROW |162250 |1693 |35299 |
-ROW |162251 |1687 |35307 |
-ROW |162252 |1687 |35308 |
-ROW |162253 |1687 |35309 |
-ROW |162254 |1688 |35310 |
-ROW |162255 |1688 |35311 |
-ROW |162256 |1691 |35312 |
-ROW |162257 |1691 |35313 |
-ROW |162258 |1691 |35314 |
-ROW |162259 |1691 |35315 |
-ROW |162260 |1691 |35316 |
-ROW |162261 |1691 |35317 |
-ROW |162262 |1692 |35318 |
-ROW |162263 |1694 |35319 |
-ROW |162264 |1694 |35320 |
-ROW |162265 |1695 |35321 |
-ROW |162266 |1695 |35322 |
-ROW |162267 |1695 |35323 |
-ROW |162268 |1695 |35324 |
-ROW |162269 |1695 |35325 |
-ROW |162270 |1695 |35326 |
-ROW |162271 |1070 |28341 |
-ROW |162272 |1073 |28342 |
-ROW |162273 |1073 |28344 |
-ROW |162274 |1073 |28345 |
-ROW |162275 |1073 |30141 |
-ROW |162276 |1076 |28354 |
-ROW |162277 |1076 |28355 |
-ROW |162278 |1076 |28356 |
-ROW |162279 |1076 |28357 |
-ROW |162280 |1075 |28358 |
-ROW |162281 |1072 |28359 |
-ROW |162282 |1072 |28360 |
-ROW |162283 |1074 |28361 |
-ROW |162284 |1074 |28362 |
-ROW |162285 |1074 |28363 |
-ROW |162286 |1074 |28364 |
-ROW |162287 |1074 |28365 |
-ROW |162288 |1074 |28366 |
-ROW |162289 |1074 |28367 |
-ROW |162290 |1077 |28368 |
-ROW |162291 |1077 |28369 |
-ROW |162292 |1077 |28370 |
-ROW |162293 |1077 |28371 |
-ROW |162294 |1077 |28372 |
-ROW |162295 |1077 |28373 |
-ROW |162296 |1071 |28374 |
-ROW |162297 |1071 |28375 |
-ROW |162298 |1071 |28376 |
-ROW |162299 |1698 |35327 |
-ROW |162300 |1698 |35328 |
-ROW |162301 |1699 |35329 |
-ROW |162302 |1699 |35330 |
-ROW |162303 |1698 |35331 |
-ROW |162304 |1698 |35332 |
-ROW |162305 |1698 |35333 |
-ROW |162306 |1704 |35334 |
-ROW |162307 |1703 |35335 |
-ROW |162308 |1703 |35336 |
-ROW |162309 |1698 |35337 |
-ROW |162310 |1703 |35338 |
-ROW |162311 |1696 |35353 |
-ROW |162312 |1696 |35354 |
-ROW |162313 |1696 |35355 |
-ROW |162314 |1696 |35356 |
-ROW |162315 |1697 |35357 |
-ROW |162316 |1700 |35358 |
-ROW |162317 |1701 |35359 |
-ROW |162318 |1701 |35360 |
-ROW |162319 |1701 |35361 |
-ROW |162320 |1701 |35362 |
-ROW |162321 |1701 |35363 |
-ROW |162322 |1701 |35364 |
-ROW |162323 |1702 |35365 |
-ROW |162324 |1704 |35366 |
-ROW |162325 |1704 |35367 |
-ROW |162326 |1704 |35368 |
-ROW |162327 |1704 |35369 |
-ROW |162328 |1704 |35370 |
-ROW |162329 |1704 |35371 |
-ROW |162330 |1704 |35372 |
-ROW |162331 |1704 |35373 |
-ROW |162332 |1704 |35374 |
-ROW |162333 |1704 |35375 |
-ROW |162334 |1704 |35376 |
-ROW |162335 |1704 |35377 |
-ROW |162336 |1704 |35378 |
-ROW |162337 |1704 |35379 |
-ROW |162338 |1704 |35380 |
-ROW |162339 |1705 |35381 |
-ROW |162340 |1705 |35382 |
-ROW |162341 |1705 |35383 |
-ROW |162342 |1708 |35384 |
-ROW |162343 |1708 |35385 |
-ROW |162344 |1709 |35386 |
-ROW |162345 |1709 |35387 |
-ROW |162346 |1708 |35388 |
-ROW |162347 |1708 |35389 |
-ROW |162348 |1708 |35390 |
-ROW |162349 |1714 |35391 |
-ROW |162350 |1713 |35392 |
-ROW |162351 |1713 |35393 |
-ROW |162352 |1708 |35394 |
-ROW |162353 |1713 |35395 |
-ROW |162354 |1706 |35410 |
-ROW |162355 |1706 |35411 |
-ROW |162356 |1706 |35412 |
-ROW |162357 |1706 |35413 |
-ROW |162358 |1707 |35414 |
-ROW |162359 |1710 |35415 |
-ROW |162360 |1711 |35416 |
-ROW |162361 |1711 |35417 |
-ROW |162362 |1711 |35418 |
-ROW |162363 |1711 |35419 |
-ROW |162364 |1711 |35420 |
-ROW |162365 |1711 |35421 |
-ROW |162366 |1712 |35422 |
-ROW |162367 |1714 |35423 |
-ROW |162368 |1714 |35424 |
-ROW |162369 |1714 |35425 |
-ROW |162370 |1714 |35426 |
-ROW |162371 |1714 |35427 |
-ROW |162372 |1714 |35428 |
-ROW |162373 |1714 |35429 |
-ROW |162374 |1714 |35430 |
-ROW |162375 |1714 |35431 |
-ROW |162376 |1714 |35432 |
-ROW |162377 |1714 |35433 |
-ROW |162378 |1714 |35434 |
-ROW |162379 |1714 |35435 |
-ROW |162380 |1714 |35436 |
-ROW |162381 |1714 |35437 |
-ROW |162382 |1715 |35438 |
-ROW |162383 |1715 |35439 |
-ROW |162384 |1715 |35440 |
-ROW |162385 |1718 |35441 |
-ROW |162386 |1718 |35442 |
-ROW |162387 |1719 |35443 |
-ROW |162388 |1719 |35444 |
-ROW |162389 |1718 |35445 |
-ROW |162390 |1718 |35446 |
-ROW |162391 |1718 |35447 |
-ROW |162392 |1724 |35448 |
-ROW |162393 |1723 |35449 |
-ROW |162394 |1723 |35450 |
-ROW |162395 |1718 |35451 |
-ROW |162396 |1723 |35452 |
-ROW |162397 |1716 |35467 |
-ROW |162398 |1716 |35468 |
-ROW |162399 |1716 |35469 |
-ROW |162400 |1716 |35470 |
-ROW |162401 |1717 |35471 |
-ROW |162402 |1720 |35472 |
-ROW |162403 |1721 |35473 |
-ROW |162404 |1721 |35474 |
-ROW |162405 |1721 |35475 |
-ROW |162406 |1721 |35476 |
-ROW |162407 |1721 |35477 |
-ROW |162408 |1721 |35478 |
-ROW |162409 |1722 |35479 |
-ROW |162410 |1724 |35480 |
-ROW |162411 |1724 |35481 |
-ROW |162412 |1724 |35482 |
-ROW |162413 |1724 |35483 |
-ROW |162414 |1724 |35484 |
-ROW |162415 |1724 |35485 |
-ROW |162416 |1724 |35486 |
-ROW |162417 |1724 |35487 |
-ROW |162418 |1724 |35488 |
-ROW |162419 |1724 |35489 |
-ROW |162420 |1724 |35490 |
-ROW |162421 |1724 |35491 |
-ROW |162422 |1724 |35492 |
-ROW |162423 |1724 |35493 |
-ROW |162424 |1724 |35494 |
-ROW |162425 |1725 |35495 |
-ROW |162426 |1725 |35496 |
-ROW |162427 |1725 |35497 |
-ROW |162428 |1728 |35498 |
-ROW |162429 |1728 |35499 |
-ROW |162430 |1729 |35500 |
-ROW |162431 |1729 |35501 |
-ROW |162432 |1728 |35502 |
-ROW |162433 |1728 |35503 |
-ROW |162434 |1728 |35504 |
-ROW |162435 |1734 |35505 |
-ROW |162436 |1733 |35506 |
-ROW |162437 |1733 |35507 |
-ROW |162438 |1728 |35508 |
-ROW |162439 |1733 |35509 |
-ROW |162440 |1726 |35524 |
-ROW |162441 |1726 |35525 |
-ROW |162442 |1726 |35526 |
-ROW |162443 |1726 |35527 |
-ROW |162444 |1727 |35528 |
-ROW |162445 |1730 |35529 |
-ROW |162446 |1731 |35530 |
-ROW |162447 |1731 |35531 |
-ROW |162448 |1731 |35532 |
-ROW |162449 |1731 |35533 |
-ROW |162450 |1731 |35534 |
-ROW |162451 |1731 |35535 |
-ROW |162452 |1732 |35536 |
-ROW |162453 |1734 |35537 |
-ROW |162454 |1734 |35538 |
-ROW |162455 |1734 |35539 |
-ROW |162456 |1734 |35540 |
-ROW |162457 |1734 |35541 |
-ROW |162458 |1734 |35542 |
-ROW |162459 |1734 |35543 |
-ROW |162460 |1734 |35544 |
-ROW |162461 |1734 |35545 |
-ROW |162462 |1734 |35546 |
-ROW |162463 |1734 |35547 |
-ROW |162464 |1734 |35548 |
-ROW |162465 |1734 |35549 |
-ROW |162466 |1734 |35550 |
-ROW |162467 |1734 |35551 |
-ROW |162468 |1735 |35552 |
-ROW |162469 |1735 |35553 |
-ROW |162470 |1735 |35554 |
-ROW |162471 |1085 |28388 |
-ROW |162472 |1082 |28390 |
-ROW |162473 |1082 |28391 |
-ROW |162474 |1079 |29994 |
-ROW |162475 |1085 |28404 |
-ROW |162476 |1085 |28405 |
-ROW |162477 |1085 |28406 |
-ROW |162478 |1085 |28407 |
-ROW |162479 |1085 |28408 |
-ROW |162480 |1085 |28409 |
-ROW |162481 |1084 |28411 |
-ROW |162482 |1081 |28412 |
-ROW |162483 |1080 |28413 |
-ROW |162484 |1080 |28414 |
-ROW |162485 |1080 |28415 |
-ROW |162486 |1080 |28416 |
-ROW |162487 |1083 |28417 |
-ROW |162488 |1083 |28418 |
-ROW |162489 |1083 |28419 |
-ROW |162490 |1083 |28420 |
-ROW |162491 |1083 |28421 |
-ROW |162492 |1083 |28422 |
-ROW |162493 |1086 |28423 |
-ROW |162494 |1086 |28424 |
-ROW |162495 |1086 |28425 |
-ROW |162496 |1085 |32732 |
-ROW |162497 |1085 |32733 |
-ROW |162498 |1085 |32734 |
-ROW |162499 |1085 |32735 |
-ROW |162500 |1085 |32736 |
-ROW |162501 |1085 |32737 |
-ROW |162502 |1085 |32738 |
-ROW |162503 |1085 |32739 |
-ROW |162504 |1085 |32740 |
-ROW |162505 |1095 |28465 |
-ROW |162506 |1097 |28466 |
-ROW |162507 |1097 |28467 |
-ROW |162508 |1100 |28474 |
-ROW |162509 |1100 |28475 |
-ROW |162510 |1100 |28476 |
-ROW |162511 |1099 |28477 |
-ROW |162512 |1096 |28478 |
-ROW |162513 |1096 |28479 |
-ROW |162514 |1098 |28480 |
-ROW |162515 |1098 |28481 |
-ROW |162516 |1104 |28495 |
-ROW |162517 |1103 |28496 |
+ROW |162518 |1116 |28743 |
+ROW |162519 |1116 |28744 |
+ROW |162520 |1116 |28745 |
+ROW |162521 |1116 |28746 |
+ROW |162522 |1116 |28747 |
+ROW |162523 |1116 |28748 |
+ROW |162524 |1117 |30896 |
+ROW |162525 |1116 |30897 |
+ROW |162526 |1116 |30898 |
+ROW |162527 |1116 |30899 |
+ROW |162528 |1116 |30900 |
+ROW |162529 |1116 |30901 |
+ROW |162530 |1116 |30902 |
+ROW |162531 |1116 |30903 |
+ROW |162532 |1116 |30904 |
+ROW |162533 |1116 |30905 |
+ROW |162534 |1116 |30906 |
+ROW |162535 |1116 |30907 |
+ROW |162536 |1116 |30908 |
+ROW |162537 |1116 |30909 |
+ROW |162538 |1116 |30910 |
+ROW |162539 |1116 |30911 |
+ROW |162540 |1116 |30912 |
+ROW |162541 |1116 |30913 |
+ROW |162542 |1116 |30914 |
+ROW |162543 |1116 |30915 |
+ROW |162544 |1116 |30917 |
+ROW |162545 |1116 |30918 |
+ROW |162546 |1116 |30919 |
+ROW |162547 |1116 |30920 |
+ROW |162548 |1116 |30921 |
+ROW |162549 |1116 |30922 |
+ROW |162550 |1119 |28775 |
+ROW |162551 |1118 |28776 |
+ROW |162552 |1118 |28777 |
+ROW |162553 |1118 |28778 |
+ROW |162554 |1118 |28779 |
+ROW |162555 |1118 |28780 |
+ROW |162556 |1118 |28781 |
+ROW |162557 |1118 |28782 |
+ROW |162558 |1118 |28783 |
+ROW |162559 |1118 |28784 |
+ROW |162560 |1118 |28785 |
+ROW |162561 |1118 |28786 |
+ROW |162562 |1118 |28787 |
+ROW |162563 |1118 |28788 |
+ROW |162564 |1118 |28789 |
+ROW |162565 |1118 |28790 |
+ROW |162566 |1118 |28791 |
+ROW |162567 |1118 |28792 |
+ROW |162568 |1118 |28793 |
+ROW |162569 |1118 |28794 |
+ROW |162570 |1118 |28795 |
+ROW |162571 |1118 |28796 |
+ROW |162572 |1118 |28798 |
+ROW |162573 |1118 |28799 |
+ROW |162574 |1118 |28800 |
+ROW |162575 |1118 |28801 |
+ROW |162576 |1118 |28802 |
+ROW |162577 |1118 |28803 |
+ROW |162578 |1349 |31800 |
+ROW |162579 |1349 |31801 |
+ROW |162580 |1349 |31802 |
+ROW |162581 |1348 |31803 |
+ROW |162582 |1349 |31804 |
+ROW |162583 |1348 |31805 |
+ROW |162584 |1348 |31806 |
+ROW |162585 |1348 |31807 |
+ROW |162586 |1348 |31808 |
+ROW |162587 |1348 |31809 |
+ROW |162588 |1348 |31810 |
+ROW |162589 |1348 |31811 |
+ROW |162590 |1348 |31812 |
+ROW |162591 |1348 |31813 |
+ROW |162592 |1348 |31814 |
+ROW |162593 |1348 |31815 |
+ROW |162594 |1348 |31816 |
+ROW |162595 |1348 |31817 |
+ROW |162596 |1348 |31818 |
+ROW |162597 |1348 |31819 |
+ROW |162598 |1348 |31820 |
+ROW |162599 |1348 |31821 |
+ROW |162600 |1348 |31822 |
+ROW |162601 |1348 |31823 |
+ROW |162602 |1348 |31824 |
+ROW |162603 |1348 |31825 |
+ROW |162604 |1348 |31826 |
+ROW |162605 |1348 |31827 |
+ROW |162606 |1348 |31828 |
+ROW |162607 |1348 |31829 |
+ROW |162608 |1348 |31830 |
+ROW |162609 |1348 |31831 |
+ROW |162610 |1348 |31832 |
+ROW |162611 |1348 |31833 |
+ROW |162612 |1348 |31834 |
+ROW |162613 |1348 |31835 |
+ROW |162614 |1348 |31836 |
+ROW |162615 |1348 |31837 |
+ROW |162616 |1348 |31838 |
+ROW |162617 |1348 |31839 |
+ROW |162618 |1348 |31840 |
+ROW |162619 |1348 |31841 |
+ROW |162620 |1348 |31842 |
+ROW |162621 |1348 |31843 |
+ROW |162622 |1348 |31844 |
+ROW |162623 |1348 |31845 |
+ROW |162624 |1348 |31846 |
+ROW |162625 |1348 |31847 |
+ROW |162626 |1348 |31848 |
+ROW |162627 |1348 |31849 |
+ROW |162628 |1348 |31850 |
+ROW |162629 |1753 |35772 |
+ROW |162630 |1752 |35773 |
+ROW |162631 |1752 |35774 |
+ROW |162632 |1752 |35775 |
+ROW |162633 |1752 |35776 |
+ROW |162634 |1752 |35777 |
+ROW |162635 |1752 |35778 |
+ROW |162636 |1752 |35779 |
+ROW |162637 |1752 |35780 |
+ROW |162638 |1752 |35781 |
+ROW |162639 |1752 |35782 |
+ROW |162640 |1752 |35783 |
+ROW |162641 |1752 |35784 |
+ROW |162642 |1319 |30527 |
+ROW |162643 |1319 |30528 |
+ROW |162644 |1319 |30529 |
+ROW |162645 |1318 |30530 |
+ROW |162646 |1319 |30531 |
+ROW |162647 |1318 |30532 |
+ROW |162648 |1318 |30533 |
+ROW |162649 |1318 |30534 |
+ROW |162650 |1318 |30535 |
+ROW |162651 |1318 |30536 |
+ROW |162652 |1318 |30537 |
+ROW |162653 |1318 |30538 |
+ROW |162654 |1318 |30539 |
+ROW |162655 |1318 |30540 |
+ROW |162656 |1318 |30541 |
+ROW |162657 |1318 |30542 |
+ROW |162658 |1318 |30543 |
+ROW |162659 |1318 |30544 |
+ROW |162660 |1318 |30545 |
+ROW |162661 |1318 |30546 |
+ROW |162662 |1318 |30547 |
+ROW |162663 |1318 |30548 |
+ROW |162664 |1318 |30549 |
+ROW |162665 |1318 |30550 |
+ROW |162666 |1318 |30551 |
+ROW |162667 |1318 |30552 |
+ROW |162668 |1318 |30553 |
+ROW |162669 |1318 |30554 |
+ROW |162670 |1318 |30555 |
+ROW |162671 |1318 |30556 |
+ROW |162672 |1318 |30557 |
+ROW |162673 |1318 |30558 |
+ROW |162674 |1318 |30559 |
+ROW |162675 |1318 |30560 |
+ROW |162676 |1318 |30561 |
+ROW |162677 |1318 |30562 |
+ROW |162678 |1318 |30563 |
+ROW |162679 |1318 |30564 |
+ROW |162680 |1318 |30565 |
+ROW |162681 |1318 |30566 |
+ROW |162682 |1318 |30567 |
+ROW |162683 |1318 |30568 |
+ROW |162684 |1318 |30569 |
+ROW |162685 |1318 |30570 |
+ROW |162686 |1326 |37005 |
+ROW |162687 |1326 |30690 |
+ROW |162688 |1327 |30691 |
+ROW |162689 |1326 |30692 |
+ROW |162690 |1327 |30693 |
+ROW |162691 |1327 |30694 |
+ROW |162692 |1326 |30695 |
+ROW |162693 |1326 |30697 |
+ROW |162694 |1326 |30698 |
+ROW |162695 |1326 |30699 |
+ROW |162696 |1326 |30700 |
+ROW |162697 |1326 |30701 |
+ROW |162698 |1326 |30702 |
+ROW |162699 |1326 |30703 |
+ROW |162700 |1326 |30704 |
+ROW |162701 |1326 |30705 |
+ROW |162702 |1326 |30706 |
+ROW |162703 |1326 |30707 |
+ROW |162704 |1326 |30708 |
+ROW |162705 |1326 |30709 |
+ROW |162706 |1326 |30710 |
+ROW |162707 |1326 |30711 |
+ROW |162708 |1326 |30712 |
+ROW |162709 |1327 |30719 |
+ROW |162710 |1327 |30739 |
+ROW |162711 |1327 |30743 |
+ROW |162712 |1327 |30744 |
+ROW |162713 |1327 |30746 |
+ROW |162714 |1327 |30747 |
+ROW |162715 |1327 |30754 |
+ROW |162716 |1327 |30756 |
+ROW |162717 |1331 |30923 |
+ROW |162718 |1331 |30924 |
+ROW |162719 |1332 |30925 |
+ROW |162720 |1332 |30926 |
+ROW |162721 |1331 |30927 |
+ROW |162722 |1331 |30928 |
+ROW |162723 |1331 |30929 |
+ROW |162724 |1331 |30930 |
+ROW |162725 |1331 |30931 |
+ROW |162726 |1331 |30932 |
+ROW |162727 |1331 |30933 |
+ROW |162728 |1331 |30934 |
+ROW |162729 |1331 |30935 |
+ROW |162730 |1331 |30936 |
+ROW |162731 |1331 |30937 |
+ROW |162732 |1331 |30938 |
+ROW |162733 |1331 |30939 |
+ROW |162734 |1331 |30940 |
+ROW |162735 |1331 |30941 |
+ROW |162736 |1331 |30942 |
+ROW |162737 |1331 |30943 |
+ROW |162738 |1331 |30944 |
+ROW |162739 |1331 |30945 |
+ROW |162740 |1331 |30946 |
+ROW |162741 |1331 |30947 |
+ROW |162742 |1331 |30948 |
+ROW |162743 |1331 |30949 |
+ROW |162744 |1331 |30950 |
+ROW |162745 |1331 |30951 |
+ROW |162746 |1331 |30952 |
+ROW |162747 |1331 |30953 |
+ROW |162748 |1331 |30954 |
+ROW |162749 |1331 |30955 |
+ROW |162750 |1331 |30956 |
+ROW |162751 |1331 |30957 |
+ROW |162752 |1331 |30958 |
+ROW |162753 |1331 |30959 |
+ROW |162754 |1331 |30960 |
+ROW |162755 |1331 |30963 |
+ROW |162756 |1411 |32486 |
+ROW |162757 |1411 |32487 |
+ROW |162758 |1411 |32488 |
+ROW |162759 |1411 |32489 |
+ROW |162760 |1411 |32490 |
+ROW |162761 |1411 |32491 |
+ROW |162762 |1411 |32492 |
+ROW |162763 |1411 |32493 |
+ROW |162764 |1411 |32494 |
+ROW |162765 |1411 |32498 |
+ROW |162766 |1411 |32499 |
+ROW |162767 |1411 |32500 |
+ROW |162768 |1412 |32516 |
+ROW |162769 |1412 |32517 |
+ROW |162770 |1412 |32518 |
+ROW |162771 |1412 |32519 |
+ROW |162772 |1412 |32520 |
+ROW |162773 |1412 |32521 |
+ROW |162774 |1412 |32522 |
+ROW |162775 |1412 |32523 |
+ROW |162776 |1412 |32524 |
+ROW |162777 |1412 |32528 |
+ROW |162778 |1412 |32529 |
+ROW |162779 |1412 |32530 |
+ROW |162780 |1341 |31499 |
+ROW |162781 |1341 |31500 |
+ROW |162782 |1341 |31501 |
+ROW |162783 |1341 |31502 |
+ROW |162784 |1341 |31503 |
+ROW |162785 |1341 |31504 |
+ROW |162786 |1341 |31505 |
+ROW |162787 |1341 |31506 |
+ROW |162788 |1341 |31507 |
+ROW |162789 |1341 |31508 |
+ROW |162790 |1341 |31509 |
+ROW |162791 |1341 |31510 |
+ROW |162792 |1341 |31511 |
+ROW |162793 |1341 |31512 |
+ROW |162794 |1341 |31513 |
+ROW |162795 |1341 |31514 |
+ROW |162796 |1341 |31515 |
+ROW |162797 |1341 |31516 |
+ROW |162798 |1341 |31517 |
+ROW |162799 |1341 |31518 |
+ROW |162800 |1341 |31519 |
+ROW |162801 |1341 |31520 |
+ROW |162802 |1341 |31521 |
+ROW |162803 |1341 |31522 |
+ROW |162804 |1341 |31523 |
+ROW |162805 |1341 |31524 |
+ROW |162806 |1341 |31525 |
+ROW |162807 |1341 |31526 |
+ROW |162808 |1341 |31527 |
+ROW |162809 |1341 |31528 |
+ROW |162810 |1341 |31529 |
+ROW |162811 |1341 |31530 |
+ROW |162812 |1341 |31531 |
+ROW |162813 |1341 |31532 |
+ROW |162814 |1341 |31533 |
+ROW |162815 |1341 |31534 |
+ROW |162816 |1341 |31535 |
+ROW |162817 |1341 |31536 |
+ROW |162818 |1341 |31537 |
+ROW |162819 |1341 |31538 |
+ROW |162820 |1341 |31539 |
+ROW |162821 |1341 |31540 |
+ROW |162822 |1341 |31541 |
+ROW |162823 |1341 |31542 |
+ROW |162824 |1341 |31543 |
+ROW |162825 |1341 |31544 |
+ROW |162826 |1341 |31545 |
+ROW |162827 |1341 |31546 |
+ROW |162828 |1341 |31547 |
+ROW |162829 |1341 |31548 |
+ROW |162830 |1341 |31549 |
+ROW |162831 |1341 |31550 |
+ROW |162832 |1341 |31551 |
+ROW |162833 |1341 |31552 |
+ROW |162834 |1341 |31553 |
+ROW |162835 |1358 |32012 |
+ROW |162836 |1358 |32013 |
+ROW |162837 |1357 |32014 |
+ROW |162838 |1357 |32015 |
+ROW |162839 |1357 |32016 |
+ROW |162840 |1358 |32017 |
+ROW |162841 |1357 |32018 |
+ROW |162842 |1358 |32019 |
+ROW |162843 |1357 |32020 |
+ROW |162844 |1357 |32021 |
+ROW |162845 |1357 |32022 |
+ROW |162846 |1357 |32023 |
+ROW |162847 |1357 |32024 |
+ROW |162848 |1357 |32025 |
+ROW |162849 |1357 |32026 |
+ROW |162850 |1357 |32027 |
+ROW |162851 |1357 |32028 |
+ROW |162852 |1357 |32029 |
+ROW |162853 |1357 |32030 |
+ROW |162854 |1357 |32031 |
+ROW |162855 |1357 |32032 |
+ROW |162856 |1357 |32033 |
+ROW |162857 |1357 |32034 |
+ROW |162858 |1357 |32035 |
+ROW |162859 |1357 |32036 |
+ROW |162860 |1357 |32037 |
+ROW |162861 |1357 |32038 |
+ROW |162862 |1357 |32039 |
+ROW |162863 |1357 |32040 |
+ROW |162864 |1357 |32041 |
+ROW |162865 |1357 |32042 |
+ROW |162866 |1357 |32043 |
+ROW |162867 |1357 |32044 |
+ROW |162868 |1357 |32045 |
+ROW |162869 |1358 |32048 |
+ROW |162870 |1358 |32049 |
+ROW |162871 |1298 |30187 |
+ROW |162872 |1298 |30188 |
+ROW |162873 |1299 |30189 |
+ROW |162874 |1299 |30190 |
+ROW |162875 |1298 |30191 |
+ROW |162876 |1298 |30192 |
+ROW |162877 |1299 |35785 |
+ROW |162878 |1301 |30230 |
+ROW |162879 |1301 |30231 |
+ROW |162880 |1300 |30789 |
+ROW |162881 |1300 |30790 |
+ROW |162882 |1300 |30234 |
+ROW |162883 |1300 |30235 |
+ROW |162884 |1301 |35844 |
+ROW |162885 |1333 |30968 |
+ROW |162886 |1333 |30969 |
+ROW |162887 |1333 |30970 |
+ROW |162888 |1333 |30971 |
+ROW |162889 |1333 |30972 |
+ROW |162890 |1333 |30973 |
+ROW |162891 |1333 |30974 |
+ROW |162892 |1333 |30975 |
+ROW |162893 |1333 |30976 |
+ROW |162894 |1333 |30977 |
+ROW |162895 |1333 |30978 |
+ROW |162896 |1333 |30979 |
+ROW |162897 |1333 |30980 |
+ROW |162898 |1333 |30981 |
+ROW |162899 |1333 |30982 |
+ROW |162900 |1333 |30983 |
+ROW |162901 |1333 |30984 |
+ROW |162902 |1333 |30985 |
+ROW |162903 |1333 |30986 |
+ROW |162904 |1333 |30987 |
+ROW |162905 |1333 |30988 |
+ROW |162906 |1333 |30989 |
+ROW |162907 |1333 |30990 |
+ROW |162908 |1333 |30991 |
+ROW |162909 |1333 |30992 |
+ROW |162910 |1333 |30993 |
+ROW |162911 |1333 |30994 |
+ROW |162912 |1333 |30995 |
+ROW |162913 |1333 |30996 |
+ROW |162914 |1333 |30997 |
+ROW |162915 |1333 |30998 |
+ROW |162916 |1333 |30999 |
+ROW |162917 |1333 |31000 |
+ROW |162918 |1333 |31001 |
+ROW |162919 |1333 |31002 |
+ROW |162920 |1333 |31003 |
+ROW |162921 |1333 |31004 |
+ROW |162922 |1334 |31010 |
+ROW |162923 |1334 |31011 |
+ROW |162924 |1334 |31012 |
+ROW |162925 |1334 |31013 |
+ROW |162926 |1334 |31014 |
+ROW |162927 |1334 |31015 |
+ROW |162928 |1334 |31016 |
+ROW |162929 |1334 |31017 |
+ROW |162930 |1334 |31018 |
+ROW |162931 |1334 |31019 |
+ROW |162932 |1334 |31020 |
+ROW |162933 |1334 |31021 |
+ROW |162934 |1334 |31022 |
+ROW |162935 |1334 |31023 |
+ROW |162936 |1334 |31024 |
+ROW |162937 |1334 |31025 |
+ROW |162938 |1334 |31026 |
+ROW |162939 |1334 |31027 |
+ROW |162940 |1334 |31028 |
+ROW |162941 |1334 |31029 |
+ROW |162942 |1334 |31030 |
+ROW |162943 |1334 |31031 |
+ROW |162944 |1334 |31032 |
+ROW |162945 |1334 |31033 |
+ROW |162946 |1334 |31034 |
+ROW |162947 |1334 |31035 |
+ROW |162948 |1334 |31036 |
+ROW |162949 |1334 |31037 |
+ROW |162950 |1334 |31038 |
+ROW |162951 |1334 |31039 |
+ROW |162952 |1334 |31040 |
+ROW |162953 |1334 |31041 |
+ROW |162954 |1334 |31042 |
+ROW |162955 |1334 |31043 |
+ROW |162956 |1334 |31044 |
+ROW |162957 |1334 |31045 |
+ROW |162958 |1334 |31046 |
+ROW |162959 |1359 |32071 |
+ROW |162960 |1359 |32072 |
+ROW |162961 |1359 |32073 |
+ROW |162962 |1359 |32074 |
+ROW |162963 |1359 |32075 |
+ROW |162964 |1359 |32076 |
+ROW |162965 |1359 |32077 |
+ROW |162966 |1359 |32078 |
+ROW |162967 |1359 |32079 |
+ROW |162968 |1359 |32080 |
+ROW |162969 |1359 |32081 |
+ROW |162970 |1359 |32082 |
+ROW |162971 |1359 |32083 |
+ROW |162972 |1359 |32084 |
+ROW |162973 |1359 |32085 |
+ROW |162974 |1359 |32086 |
+ROW |162975 |1359 |32087 |
+ROW |162976 |1359 |32088 |
+ROW |162977 |1359 |32089 |
+ROW |162978 |1359 |32090 |
+ROW |162979 |1359 |32091 |
+ROW |162980 |1359 |32092 |
+ROW |162981 |1359 |32093 |
+ROW |162982 |1359 |32094 |
+ROW |162983 |1359 |32095 |
+ROW |162984 |1359 |32096 |
+ROW |162985 |1359 |32097 |
+ROW |162986 |1359 |32098 |
+ROW |162987 |1359 |32099 |
+ROW |162988 |1359 |32100 |
+ROW |162989 |1359 |32101 |
+ROW |162990 |1359 |32102 |
+ROW |162991 |1359 |32103 |
+ROW |162992 |1359 |32104 |
+ROW |162993 |1359 |32105 |
+ROW |162994 |1359 |32106 |
+ROW |162995 |1359 |32107 |
+ROW |162996 |1359 |32108 |
+ROW |162997 |1359 |32109 |
+ROW |162998 |1359 |32110 |
+ROW |162999 |1359 |32111 |
+ROW |163000 |1359 |32112 |
+ROW |163001 |1359 |32113 |
+ROW |163002 |1359 |32114 |
+ROW |163003 |1359 |32115 |
+ROW |163004 |1359 |32116 |
+ROW |163005 |1359 |32117 |
+ROW |163006 |1359 |32118 |
+ROW |163007 |1359 |32119 |
+ROW |163008 |1359 |32120 |
+ROW |163009 |1359 |32121 |
+ROW |163010 |1359 |32122 |
+ROW |163011 |1359 |32123 |
+ROW |163012 |1359 |32124 |
+ROW |163013 |1359 |32125 |
+ROW |163014 |1359 |32126 |
+ROW |163015 |1359 |32127 |
+ROW |163016 |1359 |32128 |
+ROW |163017 |1359 |32129 |
+ROW |163018 |1359 |32130 |
+ROW |163019 |1359 |32131 |
+ROW |163020 |1359 |32132 |
+ROW |163021 |1320 |30611 |
+ROW |163022 |1321 |30612 |
+ROW |163023 |1320 |30613 |
+ROW |163024 |1320 |30614 |
+ROW |163025 |1320 |30615 |
+ROW |163026 |1320 |30616 |
+ROW |163027 |1320 |30617 |
+ROW |163028 |1320 |30618 |
+ROW |163029 |1320 |30619 |
+ROW |163030 |1320 |30620 |
+ROW |163031 |1320 |30621 |
+ROW |163032 |1320 |30622 |
+ROW |163033 |1320 |30623 |
+ROW |163034 |1320 |30624 |
+ROW |163035 |1320 |30625 |
+ROW |163036 |1320 |30626 |
+ROW |163037 |1320 |30627 |
+ROW |163038 |1320 |30628 |
+ROW |163039 |1320 |30629 |
+ROW |163040 |1320 |30630 |
+ROW |163041 |1320 |30631 |
+ROW |163042 |1320 |30632 |
+ROW |163043 |1320 |30633 |
+ROW |163044 |1320 |30634 |
+ROW |163045 |1320 |30635 |
+ROW |163046 |1320 |30636 |
+ROW |163047 |1121 |28804 |
+ROW |163048 |1120 |28805 |
+ROW |163049 |1120 |28806 |
+ROW |163050 |1120 |28807 |
+ROW |163051 |1120 |28808 |
+ROW |163052 |1120 |28809 |
+ROW |163053 |1120 |28810 |
+ROW |163054 |1120 |28811 |
+ROW |163055 |1120 |28812 |
+ROW |163056 |1120 |28813 |
+ROW |163057 |1120 |28814 |
+ROW |163058 |1120 |28815 |
+ROW |163059 |1120 |28816 |
+ROW |163060 |1120 |28817 |
+ROW |163061 |1120 |28818 |
+ROW |163062 |1120 |28819 |
+ROW |163063 |1120 |28820 |
+ROW |163064 |1123 |28821 |
+ROW |163065 |1122 |28822 |
+ROW |163066 |1122 |28823 |
+ROW |163067 |1122 |28824 |
+ROW |163068 |1122 |28825 |
+ROW |163069 |1122 |28826 |
+ROW |163070 |1122 |28827 |
+ROW |163071 |1122 |28828 |
+ROW |163072 |1122 |28829 |
+ROW |163073 |1122 |28830 |
+ROW |163074 |1122 |28831 |
+ROW |163075 |1122 |28832 |
+ROW |163076 |1122 |28833 |
+ROW |163077 |1613 |34835 |
+ROW |163078 |1613 |34836 |
+ROW |163079 |1613 |34837 |
+ROW |163080 |1613 |34838 |
+ROW |163081 |1613 |34839 |
+ROW |163082 |1613 |34840 |
+ROW |163083 |1613 |34841 |
+ROW |163084 |1613 |34842 |
+ROW |163085 |1613 |34843 |
+ROW |163086 |1613 |34844 |
+ROW |163087 |1612 |34845 |
+ROW |163088 |1612 |34846 |
+ROW |163089 |1612 |34847 |
+ROW |163090 |1612 |34848 |
+ROW |163091 |1612 |34849 |
+ROW |163092 |1612 |34850 |
+ROW |163093 |1612 |34851 |
+ROW |163094 |1612 |34852 |
+ROW |163095 |1612 |34853 |
+ROW |163096 |1612 |34854 |
+ROW |163097 |1612 |34855 |
+ROW |163098 |1612 |34856 |
+ROW |163099 |1612 |34857 |
+ROW |163100 |1612 |34858 |
+ROW |163101 |1865 |36802 |
+ROW |163102 |1862 |36803 |
+ROW |163103 |1860 |36804 |
+ROW |163104 |1860 |36805 |
+ROW |163105 |1860 |36806 |
+ROW |163106 |1861 |36807 |
+ROW |163107 |1861 |36808 |
+ROW |163108 |1861 |36809 |
+ROW |163109 |1861 |36810 |
+ROW |163110 |1862 |36811 |
+ROW |163111 |1860 |36812 |
+ROW |163112 |1862 |36813 |
+ROW |163113 |1865 |36814 |
+ROW |163114 |1862 |36815 |
+ROW |163115 |1862 |36816 |
+ROW |163116 |1862 |36817 |
+ROW |163117 |1862 |36818 |
+ROW |163118 |1862 |36819 |
+ROW |163119 |1862 |36820 |
+ROW |163120 |1860 |36821 |
+ROW |163121 |1860 |36822 |
+ROW |163122 |1865 |36823 |
+ROW |163123 |1864 |36824 |
+ROW |163124 |1865 |36825 |
+ROW |163125 |1864 |36826 |
+ROW |163126 |1864 |36827 |
+ROW |163127 |1864 |36828 |
+ROW |163128 |1864 |36829 |
+ROW |163129 |1864 |36830 |
+ROW |163130 |1864 |36831 |
+ROW |163131 |1864 |36832 |
+ROW |163132 |1864 |36833 |
+ROW |163133 |1861 |36834 |
+ROW |163134 |1864 |36835 |
+ROW |163135 |1864 |36836 |
+ROW |163136 |1864 |36837 |
+ROW |163137 |1864 |36838 |
+ROW |163138 |1864 |36839 |
+ROW |163139 |1864 |36840 |
+ROW |163140 |1864 |36841 |
+ROW |163141 |1864 |36842 |
+ROW |163142 |1865 |36843 |
+ROW |163143 |1860 |36848 |
+ROW |163144 |1860 |36849 |
+ROW |163145 |1860 |36850 |
+ROW |163146 |1860 |36851 |
+ROW |163147 |1860 |36852 |
+ROW |163148 |1860 |36853 |
+ROW |163149 |1863 |36854 |
+ROW |163150 |1863 |36855 |
+ROW |163151 |1863 |36856 |
+ROW |163152 |1863 |36857 |
+ROW |163153 |1863 |36858 |
+ROW |163154 |1863 |36859 |
+ROW |163155 |1863 |36860 |
+ROW |163156 |1863 |36861 |
+ROW |163157 |1863 |36862 |
+ROW |163158 |1863 |36863 |
+ROW |163159 |1863 |36864 |
+ROW |163160 |1863 |36865 |
+ROW |163161 |1863 |36866 |
+ROW |163162 |1863 |36867 |
+ROW |163163 |1863 |36868 |
+ROW |163164 |1863 |36869 |
+ROW |163165 |1863 |36870 |
+ROW |163166 |1863 |36871 |
+ROW |163167 |1863 |36872 |
+ROW |163168 |1863 |36873 |
+ROW |163169 |1863 |36874 |
+ROW |163170 |1863 |36875 |
+ROW |163171 |1863 |36876 |
+ROW |163172 |1863 |36877 |
+ROW |163173 |1863 |36878 |
+ROW |163174 |1863 |36879 |
+ROW |163175 |1866 |36880 |
+ROW |163176 |1866 |36881 |
+ROW |163177 |1866 |36882 |
+ROW |163178 |1866 |36883 |
+ROW |163179 |1866 |36884 |
+ROW |163180 |1866 |36885 |
+ROW |163181 |1866 |36886 |
+ROW |163182 |1860 |36887 |
+ROW |163183 |1351 |31868 |
+ROW |163184 |1351 |31869 |
+ROW |163185 |1350 |31870 |
+ROW |163186 |1350 |31871 |
+ROW |163187 |1350 |31872 |
+ROW |163188 |1350 |31873 |
+ROW |163189 |1350 |31874 |
+ROW |163190 |1350 |31875 |
+ROW |163191 |1350 |31876 |
+ROW |163192 |1350 |31877 |
+ROW |163193 |1350 |31878 |
+ROW |163194 |1350 |31879 |
+ROW |163195 |1350 |31880 |
+ROW |163196 |1350 |31881 |
+ROW |163197 |1350 |31882 |
+ROW |163198 |1350 |31883 |
+ROW |163199 |1350 |31884 |
+ROW |163200 |1350 |31885 |
+ROW |163201 |1350 |31886 |
+ROW |163202 |1350 |31887 |
+ROW |163203 |1350 |31888 |
+ROW |163204 |1350 |31889 |
+ROW |163205 |1350 |31890 |
+ROW |163206 |1352 |31891 |
+ROW |163207 |1353 |31892 |
+ROW |163208 |1353 |31893 |
+ROW |163209 |1352 |31894 |
+ROW |163210 |1352 |31895 |
+ROW |163211 |1352 |31896 |
+ROW |163212 |1352 |31897 |
+ROW |163213 |1352 |31898 |
+ROW |163214 |1352 |31899 |
+ROW |163215 |1352 |31900 |
+ROW |163216 |1352 |31901 |
+ROW |163217 |1352 |31902 |
+ROW |163218 |1352 |31903 |
+ROW |163219 |1352 |31904 |
+ROW |163220 |1352 |31905 |
+ROW |163221 |1352 |31906 |
+ROW |163222 |1352 |31907 |
+ROW |163223 |1352 |31908 |
+ROW |163224 |1352 |31909 |
+ROW |163225 |1426 |37006 |
+ROW |163226 |1426 |37007 |
+ROW |163227 |1427 |37008 |
+ROW |163228 |1427 |37009 |
+ROW |163229 |1428 |37010 |
+ROW |163230 |1428 |37011 |
+ROW |163231 |1428 |37012 |
+ROW |163232 |1425 |37013 |
+ROW |163233 |1425 |37014 |
+ROW |163234 |1425 |37015 |
+ROW |163235 |1425 |37016 |
+ROW |163236 |1425 |37017 |
+ROW |163237 |1425 |37018 |
+ROW |163238 |1425 |37019 |
+ROW |163239 |1425 |37020 |
+ROW |163240 |1425 |37021 |
+ROW |163241 |1425 |37022 |
+ROW |163242 |1425 |37023 |
+ROW |163243 |1425 |37024 |
+ROW |163244 |1425 |37025 |
+ROW |163245 |1425 |37026 |
+ROW |163246 |1425 |37027 |
+ROW |163247 |1425 |37028 |
+ROW |163248 |1425 |37029 |
+ROW |163249 |1425 |37030 |
+ROW |163250 |1425 |37031 |
+ROW |163251 |1425 |37032 |
+ROW |163252 |1425 |37033 |
+ROW |163253 |1425 |37034 |
+ROW |163254 |1425 |37035 |
+ROW |163255 |1425 |37036 |
+ROW |163256 |1427 |37037 |
+ROW |163257 |1427 |37038 |
+ROW |163258 |1427 |37039 |
+ROW |163259 |1427 |37040 |
+ROW |163260 |1427 |37041 |
+ROW |163261 |1427 |37042 |
+ROW |163262 |1427 |37043 |
+ROW |163263 |1427 |37044 |
+ROW |163264 |1427 |37045 |
+ROW |163265 |1427 |37046 |
+ROW |163266 |1427 |37047 |
+ROW |163267 |1427 |37048 |
+ROW |163268 |1427 |37049 |
+ROW |163269 |1427 |37050 |
+ROW |163270 |1427 |37051 |
+ROW |163271 |1427 |32836 |
+ROW |163272 |1427 |32837 |
+ROW |163273 |1427 |32838 |
+ROW |163274 |1427 |32839 |
+ROW |163275 |1425 |37057 |
+ROW |163276 |1427 |37058 |
+ROW |163277 |1427 |37059 |
+ROW |163278 |1427 |37060 |
+ROW |163279 |1427 |37061 |
+ROW |163280 |1427 |37062 |
+ROW |163281 |1427 |37063 |
+ROW |163282 |1431 |37098 |
+ROW |163283 |1431 |37099 |
+ROW |163284 |1430 |32925 |
+ROW |163285 |1430 |32926 |
+ROW |163286 |1432 |32928 |
+ROW |163287 |1432 |32929 |
+ROW |163288 |1432 |32930 |
+ROW |163289 |1429 |32932 |
+ROW |163290 |1429 |32933 |
+ROW |163291 |1429 |32934 |
+ROW |163292 |1429 |32935 |
+ROW |163293 |1429 |32936 |
+ROW |163294 |1429 |32937 |
+ROW |163295 |1429 |32938 |
+ROW |163296 |1429 |32939 |
+ROW |163297 |1429 |32940 |
+ROW |163298 |1429 |32941 |
+ROW |163299 |1429 |32942 |
+ROW |163300 |1429 |32943 |
+ROW |163301 |1429 |32944 |
+ROW |163302 |1429 |32945 |
+ROW |163303 |1429 |32946 |
+ROW |163304 |1429 |32947 |
+ROW |163305 |1429 |32948 |
+ROW |163306 |1429 |32949 |
+ROW |163307 |1429 |32950 |
+ROW |163308 |1429 |32951 |
+ROW |163309 |1429 |32952 |
+ROW |163310 |1429 |32953 |
+ROW |163311 |1429 |32954 |
+ROW |163312 |1429 |32955 |
+ROW |163313 |1431 |32956 |
+ROW |163314 |1431 |32957 |
+ROW |163315 |1431 |32958 |
+ROW |163316 |1431 |32959 |
+ROW |163317 |1431 |32960 |
+ROW |163318 |1431 |32961 |
+ROW |163319 |1431 |32962 |
+ROW |163320 |1431 |32963 |
+ROW |163321 |1431 |32964 |
+ROW |163322 |1431 |32965 |
+ROW |163323 |1431 |32966 |
+ROW |163324 |1431 |32967 |
+ROW |163325 |1431 |32968 |
+ROW |163326 |1431 |32969 |
+ROW |163327 |1431 |32970 |
+ROW |163328 |1429 |32976 |
+ROW |163329 |1431 |32977 |
+ROW |163330 |1431 |32978 |
+ROW |163331 |1431 |32979 |
+ROW |163332 |1431 |32980 |
+ROW |163333 |1431 |32981 |
+ROW |163334 |1431 |32982 |
+ROW |163335 |1354 |31910 |
+ROW |163336 |1354 |31911 |
+ROW |163337 |1354 |31912 |
+ROW |163338 |1354 |31913 |
+ROW |163339 |1354 |31914 |
+ROW |163340 |1354 |31915 |
+ROW |163341 |1354 |31916 |
+ROW |163342 |1354 |31917 |
+ROW |163343 |1354 |31918 |
+ROW |163344 |1354 |31919 |
+ROW |163345 |1354 |31920 |
+ROW |163346 |1354 |31921 |
+ROW |163347 |1354 |31922 |
+ROW |163348 |1354 |31923 |
+ROW |163349 |1354 |31924 |
+ROW |163350 |1354 |31925 |
+ROW |163351 |1354 |31926 |
+ROW |163352 |1354 |31927 |
+ROW |163353 |1354 |31928 |
+ROW |163354 |1354 |31929 |
+ROW |163355 |1354 |31930 |
+ROW |163356 |1354 |31931 |
+ROW |163357 |1354 |31932 |
+ROW |163358 |1354 |31933 |
+ROW |163359 |1354 |31934 |
+ROW |163360 |1354 |31935 |
+ROW |163361 |1354 |31936 |
+ROW |163362 |1354 |31937 |
+ROW |163363 |1354 |31938 |
+ROW |163364 |1354 |31939 |
+ROW |163365 |1354 |31940 |
+ROW |163366 |1354 |31941 |
+ROW |163367 |1354 |31942 |
+ROW |163368 |1354 |31943 |
+ROW |163369 |1354 |31944 |
+ROW |163370 |1354 |31945 |
+ROW |163371 |1354 |31946 |
+ROW |163372 |1354 |31947 |
+ROW |163373 |1354 |31948 |
+ROW |163374 |1354 |31949 |
+ROW |163375 |1354 |31950 |
+ROW |163376 |1354 |31951 |
+ROW |163377 |1354 |31952 |
+ROW |163378 |1354 |31953 |
+ROW |163379 |1354 |31954 |
+ROW |163380 |1354 |31955 |
+ROW |163381 |1354 |31956 |
+ROW |163382 |1354 |31957 |
+ROW |163383 |1354 |31958 |
+ROW |163384 |1354 |31959 |
+ROW |163385 |1354 |31960 |
+ROW |163386 |1354 |31961 |
+ROW |163387 |1354 |31962 |
+ROW |163388 |1354 |31963 |
+ROW |163389 |1737 |35560 |
+ROW |163390 |1737 |35561 |
+ROW |163391 |1109 |28511 |
+ROW |163392 |1870 |37100 |
+ROW |163393 |1342 |31554 |
+ROW |163394 |1342 |31555 |
+ROW |163395 |1342 |31556 |
+ROW |163396 |1343 |31557 |
+ROW |163397 |1343 |31558 |
+ROW |163398 |1343 |31559 |
+ROW |163399 |1343 |31560 |
+ROW |163400 |1343 |31561 |
+ROW |163401 |1343 |31562 |
+ROW |163402 |1343 |31563 |
+ROW |163403 |1343 |31564 |
+ROW |163404 |1343 |31565 |
+ROW |163405 |1343 |31566 |
+ROW |163406 |1343 |31567 |
+ROW |163407 |1343 |31568 |
+ROW |163408 |1343 |31569 |
+ROW |163409 |1343 |31570 |
+ROW |163410 |1343 |31571 |
+ROW |163411 |1343 |31572 |
+ROW |163412 |1343 |31573 |
+ROW |163413 |1343 |31574 |
+ROW |163414 |1343 |31575 |
+ROW |163415 |1344 |31576 |
+ROW |163416 |1344 |31577 |
+ROW |163417 |1344 |31578 |
+ROW |163418 |1344 |31579 |
+ROW |163419 |1344 |31580 |
+ROW |163420 |1344 |31582 |
+ROW |163421 |1344 |31583 |
+ROW |163422 |1344 |31584 |
+ROW |163423 |1344 |31585 |
+ROW |163424 |1344 |31586 |
+ROW |163425 |1344 |31587 |
+ROW |163426 |1344 |31588 |
+ROW |163427 |1344 |31589 |
+ROW |163428 |1344 |31590 |
+ROW |163429 |1344 |31591 |
+ROW |163430 |1344 |31592 |
+ROW |163431 |1344 |31593 |
+ROW |163432 |1344 |31594 |
+ROW |163433 |1344 |31595 |
+ROW |163434 |1344 |31596 |
+ROW |163435 |1344 |36888 |
+ROW |163436 |1344 |37102 |
+ROW |163437 |1342 |31605 |
+ROW |163438 |1342 |31606 |
+ROW |163439 |1342 |31607 |
+ROW |163440 |1342 |31608 |
+ROW |163441 |1342 |31609 |
+ROW |163442 |1343 |31610 |
+ROW |163443 |1343 |31611 |
+ROW |163444 |1343 |31612 |
+ROW |163445 |1343 |31613 |
+ROW |163446 |1343 |31614 |
+ROW |163447 |1343 |31615 |
+ROW |163448 |1343 |31616 |
+ROW |163449 |1343 |31617 |
+ROW |163450 |1343 |31618 |
+ROW |163451 |1343 |31619 |
+ROW |163452 |1343 |31620 |
+ROW |163453 |1343 |31621 |
+ROW |163454 |1344 |31622 |
+ROW |163455 |1344 |31623 |
+ROW |163456 |1344 |31624 |
+ROW |163457 |1344 |31625 |
+ROW |163458 |1512 |34094 |
+ROW |163459 |1512 |34095 |
+ROW |163460 |1512 |34096 |
+ROW |163461 |1512 |34097 |
+ROW |163462 |1512 |34098 |
+ROW |163463 |1513 |34106 |
+ROW |163464 |1513 |34107 |
+ROW |163465 |1513 |34108 |
+ROW |163466 |1513 |34109 |
+ROW |163467 |1513 |34110 |
+ROW |163468 |1513 |34111 |
+ROW |163469 |1513 |34112 |
+ROW |163470 |1513 |34113 |
+ROW |163471 |1513 |34114 |
+ROW |163472 |1513 |34115 |
+ROW |163473 |1513 |34116 |
+ROW |163474 |1513 |34117 |
+ROW |163475 |1513 |34118 |
+ROW |163476 |1513 |34119 |
+ROW |163477 |1513 |34120 |
+ROW |163478 |1513 |34121 |
+ROW |163479 |1513 |34122 |
+ROW |163480 |356 |10067 |
+ROW |163481 |356 |10068 |
+ROW |163482 |356 |10069 |
+ROW |163483 |356 |10070 |
+ROW |163484 |356 |10071 |
+ROW |163485 |356 |10072 |
+ROW |163486 |356 |23340 |
+ROW |163487 |356 |23341 |
+ROW |163488 |356 |23342 |
+ROW |163489 |356 |23343 |
+ROW |163490 |356 |23344 |
+ROW |163491 |356 |23345 |
+ROW |163492 |356 |23346 |
+ROW |163493 |356 |23347 |
+ROW |163494 |356 |23348 |
+ROW |163495 |356 |23349 |
+ROW |163496 |356 |23350 |
+ROW |163497 |356 |23351 |
+ROW |163498 |356 |23352 |
+ROW |163499 |356 |23353 |
+ROW |163500 |356 |23354 |
+ROW |163501 |356 |23355 |
+ROW |163502 |356 |23356 |
+ROW |163503 |356 |23357 |
+ROW |163504 |356 |23358 |
+ROW |163505 |356 |23359 |
+ROW |163506 |356 |23360 |
+ROW |163507 |356 |25368 |
+ROW |163508 |356 |25369 |
+ROW |163509 |356 |28250 |
+ROW |163510 |356 |28251 |
+ROW |163511 |356 |28617 |
+ROW |163512 |356 |28618 |
+ROW |163513 |356 |28619 |
+ROW |163514 |356 |36889 |
+ROW |163515 |356 |36890 |
+ROW |163516 |356 |36891 |
+ROW |163517 |356 |36892 |
+ROW |163518 |1867 |36893 |
+ROW |163519 |1111 |36894 |
+ROW |163520 |1111 |36895 |
+ROW |163521 |1111 |36896 |
+ROW |163522 |1111 |36897 |
+ROW |163523 |1111 |36898 |
+ROW |163524 |1111 |36899 |
+ROW |163525 |1111 |36900 |
+ROW |163526 |1111 |36901 |
+ROW |163527 |1111 |36902 |
+ROW |163528 |1111 |36903 |
+ROW |163529 |1111 |36904 |
+ROW |163530 |1111 |36905 |
+ROW |163531 |1111 |36906 |
+ROW |163532 |1111 |36907 |
+ROW |163533 |1111 |36908 |
+ROW |163534 |1111 |36909 |
+ROW |163535 |1111 |36910 |
+ROW |163536 |1111 |36911 |
+ROW |163537 |1111 |36912 |
+ROW |163538 |1111 |36913 |
+ROW |163539 |1111 |36914 |
+ROW |163540 |1111 |36915 |
+ROW |163541 |1111 |36916 |
+ROW |163542 |1111 |36917 |
+ROW |163543 |1111 |36918 |
+ROW |163544 |1111 |36919 |
+ROW |163545 |1111 |36920 |
+ROW |163546 |1111 |36921 |
+ROW |163547 |1111 |36922 |
+ROW |163548 |1111 |36923 |
+ROW |163549 |1111 |36924 |
+ROW |163550 |1111 |36925 |
+ROW |163551 |1111 |36926 |
+ROW |163552 |1111 |36927 |
+ROW |163553 |1111 |36928 |
+ROW |163554 |1111 |36929 |
+ROW |163555 |1111 |36930 |
+ROW |163556 |179 |10061 |
+ROW |163557 |179 |10062 |
+ROW |163558 |179 |10063 |
+ROW |163559 |179 |10064 |
+ROW |163560 |179 |10065 |
+ROW |163561 |179 |10066 |
+ROW |163562 |179 |22183 |
+ROW |163563 |179 |22185 |
+ROW |163564 |179 |22187 |
+ROW |163565 |179 |22189 |
+ROW |163566 |179 |22191 |
+ROW |163567 |179 |22196 |
+ROW |163568 |179 |22199 |
+ROW |163569 |179 |22219 |
+ROW |163570 |179 |22396 |
+ROW |163571 |179 |22399 |
+ROW |163572 |179 |22400 |
+ROW |163573 |179 |22401 |
+ROW |163574 |179 |22402 |
+ROW |163575 |179 |22404 |
+ROW |163576 |179 |22406 |
+ROW |163577 |179 |22408 |
+ROW |163578 |179 |22412 |
+ROW |163579 |179 |22414 |
+ROW |163580 |179 |22416 |
+ROW |163581 |179 |22418 |
+ROW |163582 |179 |22420 |
+ROW |163583 |179 |22422 |
+ROW |163584 |179 |22424 |
+ROW |163585 |179 |22426 |
+ROW |163586 |179 |22430 |
+ROW |163587 |179 |22689 |
+ROW |163588 |179 |23171 |
+ROW |163589 |179 |23251 |
+ROW |163590 |179 |23634 |
+ROW |163591 |179 |23661 |
+ROW |163592 |179 |23663 |
+ROW |163593 |179 |25366 |
+ROW |163594 |179 |25370 |
+ROW |163595 |179 |25665 |
+ROW |163596 |179 |25666 |
+ROW |163597 |179 |28248 |
+ROW |163598 |179 |28533 |
+ROW |163599 |179 |28535 |
+ROW |163600 |179 |28537 |
+ROW |163601 |179 |29822 |
+ROW |163602 |179 |34189 |
+ROW |163603 |345 |10073 |
+ROW |163604 |345 |10074 |
+ROW |163605 |345 |10075 |
+ROW |163606 |345 |10076 |
+ROW |163607 |345 |10077 |
+ROW |163608 |345 |10078 |
+ROW |163609 |345 |23252 |
+ROW |163610 |345 |23253 |
+ROW |163611 |345 |23255 |
+ROW |163612 |345 |23256 |
+ROW |163613 |345 |23257 |
+ROW |163614 |345 |23258 |
+ROW |163615 |345 |23259 |
+ROW |163616 |345 |23260 |
+ROW |163617 |345 |23261 |
+ROW |163618 |345 |23262 |
+ROW |163619 |345 |23264 |
+ROW |163620 |345 |23265 |
+ROW |163621 |345 |23266 |
+ROW |163622 |345 |23267 |
+ROW |163623 |345 |23268 |
+ROW |163624 |345 |23269 |
+ROW |163625 |345 |23270 |
+ROW |163626 |345 |23271 |
+ROW |163627 |345 |23272 |
+ROW |163628 |345 |23273 |
+ROW |163629 |345 |23274 |
+ROW |163630 |345 |23275 |
+ROW |163631 |345 |23276 |
+ROW |163632 |345 |23277 |
+ROW |163633 |345 |23328 |
+ROW |163634 |345 |23620 |
+ROW |163635 |345 |23625 |
+ROW |163636 |345 |23628 |
+ROW |163637 |345 |23635 |
+ROW |163638 |345 |23662 |
+ROW |163639 |345 |23664 |
+ROW |163640 |345 |25367 |
+ROW |163641 |345 |25371 |
+ROW |163642 |345 |25667 |
+ROW |163643 |345 |25668 |
+ROW |163644 |345 |28249 |
+ROW |163645 |345 |28534 |
+ROW |163646 |345 |28536 |
+ROW |163647 |345 |28538 |
+ROW |163648 |345 |29823 |
+ROW |163649 |345 |34196 |
+ROW |163650 |1514 |28539 |
+ROW |163651 |1110 |28540 |
+ROW |163652 |1110 |28541 |
+ROW |163653 |1110 |28542 |
+ROW |163654 |1110 |28543 |
+ROW |163655 |1110 |28544 |
+ROW |163656 |1110 |28545 |
+ROW |163657 |1110 |28546 |
+ROW |163658 |1110 |28547 |
+ROW |163659 |1110 |28548 |
+ROW |163660 |1110 |28549 |
+ROW |163661 |1110 |28550 |
+ROW |163662 |1110 |28551 |
+ROW |163663 |1110 |28552 |
+ROW |163664 |1110 |28553 |
+ROW |163665 |1110 |28554 |
+ROW |163666 |1110 |28555 |
+ROW |163667 |1110 |28556 |
+ROW |163668 |1110 |28557 |
+ROW |163669 |1110 |28558 |
+ROW |163670 |1110 |28559 |
+ROW |163671 |1110 |28560 |
+ROW |163672 |1110 |28561 |
+ROW |163673 |1110 |28562 |
+ROW |163674 |1110 |28563 |
+ROW |163675 |1110 |28564 |
+ROW |163676 |1110 |28565 |
+ROW |163677 |1110 |28566 |
+ROW |163678 |1110 |28567 |
+ROW |163679 |1110 |28568 |
+ROW |163680 |1110 |28569 |
+ROW |163681 |1110 |28570 |
+ROW |163682 |1110 |28571 |
+ROW |163683 |1110 |28572 |
+ROW |163684 |1110 |28573 |
+ROW |163685 |1110 |28574 |
+ROW |163686 |1110 |28575 |
+ROW |163687 |1110 |28576 |
+ROW |163688 |1110 |28577 |
+ROW |163689 |1110 |28578 |
+ROW |163690 |1110 |28579 |
+ROW |163691 |1110 |28580 |
+ROW |163692 |1110 |28581 |
+ROW |163693 |1110 |28582 |
+ROW |163694 |1110 |28583 |
+ROW |163695 |1110 |28584 |
+ROW |163696 |1110 |29821 |
+ROW |163697 |1110 |31053 |
+ROW |163698 |1360 |32158 |
+ROW |163699 |1360 |32159 |
+ROW |163700 |1361 |32160 |
+ROW |163701 |1361 |32161 |
+ROW |163702 |1361 |32162 |
+ROW |163703 |1361 |32163 |
+ROW |163704 |1361 |32164 |
+ROW |163705 |1361 |32165 |
+ROW |163706 |1361 |32166 |
+ROW |163707 |1361 |32167 |
+ROW |163708 |1361 |32168 |
+ROW |163709 |1361 |32169 |
+ROW |163710 |1361 |32170 |
+ROW |163711 |1361 |32171 |
+ROW |163712 |1361 |32172 |
+ROW |163713 |1361 |32173 |
+ROW |163714 |1361 |32174 |
+ROW |163715 |1361 |32175 |
+ROW |163716 |1361 |32176 |
+ROW |163717 |1361 |32177 |
+ROW |163718 |1361 |32178 |
+ROW |163719 |1361 |32179 |
+ROW |163720 |1361 |32180 |
+ROW |163721 |1361 |32181 |
+ROW |163722 |1361 |32182 |
+ROW |163723 |1361 |32183 |
+ROW |163724 |1361 |32184 |
+ROW |163725 |1361 |32185 |
+ROW |163726 |1361 |32186 |
+ROW |163727 |1361 |32187 |
+ROW |163728 |1361 |32188 |
+ROW |163729 |1361 |32189 |
+ROW |163730 |1361 |32190 |
+ROW |163731 |1361 |32191 |
+ROW |163732 |1361 |32192 |
+ROW |163733 |1361 |32201 |
+ROW |163734 |1361 |32202 |
+ROW |163735 |1361 |32203 |
+ROW |163736 |1361 |32204 |
+ROW |163737 |1361 |32205 |
+ROW |163738 |1361 |32206 |
+ROW |163739 |446 |23644 |
+ROW |163740 |447 |23645 |
+ROW |163741 |448 |23646 |
+ROW |163742 |449 |23647 |
+ROW |163743 |450 |23648 |
+ROW |163744 |451 |23649 |
+ROW |163745 |452 |23650 |
+ROW |163746 |453 |23651 |
+ROW |163747 |454 |23652 |
+ROW |163748 |455 |23653 |
+ROW |163749 |456 |23654 |
+ROW |163750 |280 |22917 |
+ROW |163751 |280 |22918 |
+ROW |163752 |273 |22920 |
+ROW |163753 |279 |22920 |
+ROW |163754 |273 |22921 |
+ROW |163755 |279 |22921 |
+ROW |163756 |273 |22922 |
+ROW |163757 |279 |22922 |
+ROW |163758 |273 |22923 |
+ROW |163759 |279 |22923 |
+ROW |163760 |273 |22924 |
+ROW |163761 |279 |22924 |
+ROW |163762 |275 |22933 |
+ROW |163763 |278 |22933 |
+ROW |163764 |275 |22934 |
+ROW |163765 |278 |22934 |
+ROW |163766 |275 |22938 |
+ROW |163767 |278 |22938 |
+ROW |163768 |275 |22939 |
+ROW |163769 |278 |22939 |
+ROW |163770 |278 |22940 |
+ROW |163771 |281 |22940 |
+ROW |163772 |281 |22941 |
+ROW |163773 |276 |22942 |
+ROW |163774 |276 |22943 |
+ROW |163775 |273 |23108 |
+ROW |163776 |331 |23108 |
+ROW |163777 |279 |23108 |
+ROW |163778 |273 |23109 |
+ROW |163779 |331 |23109 |
+ROW |163780 |279 |23109 |
+ROW |163781 |273 |23110 |
+ROW |163782 |279 |23110 |
+ROW |163783 |273 |23111 |
+ROW |163784 |331 |23111 |
+ROW |163785 |279 |23111 |
+ROW |163786 |273 |23112 |
+ROW |163787 |331 |23112 |
+ROW |163788 |279 |23112 |
+ROW |163789 |273 |23113 |
+ROW |163790 |279 |23113 |
+ROW |163791 |273 |23114 |
+ROW |163792 |279 |23114 |
+ROW |163793 |273 |23115 |
+ROW |163794 |279 |23115 |
+ROW |163795 |274 |23116 |
+ROW |163796 |279 |23116 |
+ROW |163797 |274 |23117 |
+ROW |163798 |279 |23117 |
+ROW |163799 |273 |23118 |
+ROW |163800 |331 |23118 |
+ROW |163801 |273 |23119 |
+ROW |163802 |279 |23119 |
+ROW |163803 |273 |23120 |
+ROW |163804 |279 |23120 |
+ROW |163805 |273 |23121 |
+ROW |163806 |279 |23121 |
+ROW |163807 |276 |23122 |
+ROW |163808 |279 |23122 |
+ROW |163809 |273 |23123 |
+ROW |163810 |279 |23123 |
+ROW |163811 |276 |23124 |
+ROW |163812 |276 |23125 |
+ROW |163813 |276 |23126 |
+ROW |163814 |276 |23127 |
+ROW |163815 |276 |23128 |
+ROW |163816 |276 |23129 |
+ROW |163817 |276 |23130 |
+ROW |163818 |276 |23131 |
+ROW |163819 |277 |22945 |
+ROW |163820 |277 |22946 |
+ROW |163821 |274 |22948 |
+ROW |163822 |274 |22949 |
+ROW |163823 |274 |22950 |
+ROW |163824 |274 |22951 |
+ROW |163825 |274 |22952 |
+ROW |163826 |268 |22875 |
+ROW |163827 |268 |22876 |
+ROW |163828 |270 |22877 |
+ROW |163829 |270 |22878 |
+ROW |163830 |265 |22879 |
+ROW |163831 |268 |22879 |
+ROW |163832 |263 |22880 |
+ROW |163833 |269 |22880 |
+ROW |163834 |263 |22881 |
+ROW |163835 |269 |22881 |
+ROW |163836 |263 |22882 |
+ROW |163837 |269 |22882 |
+ROW |163838 |263 |22883 |
+ROW |163839 |269 |22883 |
+ROW |163840 |263 |22884 |
+ROW |163841 |269 |22884 |
+ROW |163842 |263 |22885 |
+ROW |163843 |269 |22885 |
+ROW |163844 |263 |22886 |
+ROW |163845 |269 |22886 |
+ROW |163846 |263 |22888 |
+ROW |163847 |269 |22888 |
+ROW |163848 |263 |22891 |
+ROW |163849 |269 |22891 |
+ROW |163850 |263 |22892 |
+ROW |163851 |269 |22892 |
+ROW |163852 |265 |22893 |
+ROW |163853 |268 |22893 |
+ROW |163854 |265 |22894 |
+ROW |163855 |268 |22894 |
+ROW |163856 |266 |22895 |
+ROW |163857 |266 |22896 |
+ROW |163858 |266 |22897 |
+ROW |163859 |265 |22898 |
+ROW |163860 |268 |22898 |
+ROW |163861 |265 |22899 |
+ROW |163862 |268 |22899 |
+ROW |163863 |268 |22900 |
+ROW |163864 |271 |22900 |
+ROW |163865 |271 |22901 |
+ROW |163866 |266 |22902 |
+ROW |163867 |266 |22903 |
+ROW |163868 |264 |22908 |
+ROW |163869 |264 |22909 |
+ROW |163870 |264 |22910 |
+ROW |163871 |264 |22911 |
+ROW |163872 |264 |22912 |
+ROW |163873 |267 |23073 |
+ROW |163874 |267 |23074 |
+ROW |163875 |283 |22961 |
+ROW |163876 |289 |22961 |
+ROW |163877 |283 |22962 |
+ROW |163878 |289 |22962 |
+ROW |163879 |283 |22963 |
+ROW |163880 |289 |22963 |
+ROW |163881 |283 |22965 |
+ROW |163882 |289 |22965 |
+ROW |163883 |283 |22968 |
+ROW |163884 |289 |22968 |
+ROW |163885 |283 |22971 |
+ROW |163886 |289 |22971 |
+ROW |163887 |283 |22972 |
+ROW |163888 |289 |22972 |
+ROW |163889 |285 |22973 |
+ROW |163890 |288 |22973 |
+ROW |163891 |285 |22974 |
+ROW |163892 |288 |22974 |
+ROW |163893 |285 |22978 |
+ROW |163894 |288 |22978 |
+ROW |163895 |288 |22980 |
+ROW |163896 |291 |22980 |
+ROW |163897 |291 |22981 |
+ROW |163898 |286 |22982 |
+ROW |163899 |286 |22983 |
+ROW |163900 |287 |22985 |
+ROW |163901 |287 |22986 |
+ROW |163902 |284 |22988 |
+ROW |163903 |284 |22989 |
+ROW |163904 |284 |22990 |
+ROW |163905 |284 |22991 |
+ROW |163906 |284 |22992 |
+ROW |163907 |308 |23035 |
+ROW |163908 |308 |23036 |
+ROW |163909 |305 |23039 |
+ROW |163910 |308 |23039 |
+ROW |163911 |303 |23041 |
+ROW |163912 |309 |23041 |
+ROW |163913 |303 |23042 |
+ROW |163914 |309 |23042 |
+ROW |163915 |303 |23043 |
+ROW |163916 |309 |23043 |
+ROW |163917 |305 |23053 |
+ROW |163918 |308 |23053 |
+ROW |163919 |305 |23054 |
+ROW |163920 |308 |23054 |
+ROW |163921 |305 |23058 |
+ROW |163922 |308 |23058 |
+ROW |163923 |305 |23059 |
+ROW |163924 |308 |23059 |
+ROW |163925 |308 |23060 |
+ROW |163926 |311 |23060 |
+ROW |163927 |311 |23061 |
+ROW |163928 |306 |23062 |
+ROW |163929 |306 |23063 |
+ROW |163930 |307 |23077 |
+ROW |163931 |307 |23078 |
+ROW |163932 |304 |23068 |
+ROW |163933 |304 |23069 |
+ROW |163934 |304 |23070 |
+ROW |163935 |304 |23071 |
+ROW |163936 |304 |23072 |
+ROW |163937 |258 |22835 |
+ROW |163938 |258 |22836 |
+ROW |163939 |260 |22837 |
+ROW |163940 |260 |22838 |
+ROW |163941 |255 |22839 |
+ROW |163942 |258 |22839 |
+ROW |163943 |253 |22840 |
+ROW |163944 |259 |22840 |
+ROW |163945 |253 |22841 |
+ROW |163946 |259 |22841 |
+ROW |163947 |253 |22842 |
+ROW |163948 |259 |22842 |
+ROW |163949 |253 |22843 |
+ROW |163950 |259 |22843 |
+ROW |163951 |253 |22844 |
+ROW |163952 |259 |22844 |
+ROW |163953 |253 |22845 |
+ROW |163954 |259 |22845 |
+ROW |163955 |253 |22846 |
+ROW |163956 |259 |22846 |
+ROW |163957 |253 |22848 |
+ROW |163958 |259 |22848 |
+ROW |163959 |253 |22851 |
+ROW |163960 |259 |22851 |
+ROW |163961 |253 |22852 |
+ROW |163962 |259 |22852 |
+ROW |163963 |255 |22853 |
+ROW |163964 |258 |22853 |
+ROW |163965 |255 |22854 |
+ROW |163966 |258 |22854 |
+ROW |163967 |256 |22855 |
+ROW |163968 |256 |22856 |
+ROW |163969 |256 |22857 |
+ROW |163970 |255 |22858 |
+ROW |163971 |258 |22858 |
+ROW |163972 |255 |22859 |
+ROW |163973 |258 |22859 |
+ROW |163974 |258 |22860 |
+ROW |163975 |261 |22860 |
+ROW |163976 |261 |22861 |
+ROW |163977 |256 |22862 |
+ROW |163978 |256 |22863 |
+ROW |163979 |254 |22868 |
+ROW |163980 |254 |22869 |
+ROW |163981 |254 |22870 |
+ROW |163982 |254 |22871 |
+ROW |163983 |254 |22872 |
+ROW |163984 |257 |23075 |
+ROW |163985 |257 |23076 |
+ROW |163986 |298 |22996 |
+ROW |163987 |300 |22997 |
+ROW |163988 |300 |22998 |
+ROW |163989 |295 |22999 |
+ROW |163990 |298 |22999 |
+ROW |163991 |293 |23000 |
+ROW |163992 |299 |23000 |
+ROW |163993 |293 |23001 |
+ROW |163994 |299 |23001 |
+ROW |163995 |293 |23002 |
+ROW |163996 |299 |23002 |
+ROW |163997 |293 |23003 |
+ROW |163998 |299 |23003 |
+ROW |163999 |293 |23004 |
+ROW |164000 |299 |23004 |
+ROW |164001 |293 |23005 |
+ROW |164002 |299 |23005 |
+ROW |164003 |293 |23007 |
+ROW |164004 |299 |23007 |
+ROW |164005 |293 |23011 |
+ROW |164006 |299 |23011 |
+ROW |164007 |293 |23012 |
+ROW |164008 |299 |23012 |
+ROW |164009 |295 |23013 |
+ROW |164010 |298 |23013 |
+ROW |164011 |295 |23014 |
+ROW |164012 |298 |23014 |
+ROW |164013 |296 |23015 |
+ROW |164014 |296 |23016 |
+ROW |164015 |296 |23017 |
+ROW |164016 |295 |23018 |
+ROW |164017 |298 |23018 |
+ROW |164018 |295 |23019 |
+ROW |164019 |298 |23019 |
+ROW |164020 |298 |23020 |
+ROW |164021 |301 |23020 |
+ROW |164022 |301 |23021 |
+ROW |164023 |296 |23022 |
+ROW |164024 |296 |23023 |
+ROW |164025 |297 |23025 |
+ROW |164026 |297 |23026 |
+ROW |164027 |294 |23028 |
+ROW |164028 |294 |23029 |
+ROW |164029 |294 |23030 |
+ROW |164030 |294 |23031 |
+ROW |164031 |294 |23032 |
+ROW |164032 |743 |26925 |
+ROW |164033 |743 |26926 |
+ROW |164034 |741 |26927 |
+ROW |164035 |742 |26928 |
+ROW |164036 |743 |26929 |
+ROW |164037 |743 |26930 |
+ROW |164038 |743 |26931 |
+ROW |164039 |743 |26932 |
+ROW |164040 |745 |26933 |
+ROW |164041 |746 |26934 |
+ROW |164042 |744 |26935 |
+ROW |164043 |744 |26936 |
+ROW |164044 |746 |26937 |
+ROW |164045 |746 |26938 |
+ROW |164046 |746 |26939 |
+ROW |164047 |746 |26940 |
+ROW |164048 |746 |26941 |
+ROW |164049 |746 |26942 |
+ROW |164050 |745 |26943 |
+ROW |164051 |1362 |32207 |
+ROW |164052 |1362 |32208 |
+ROW |164053 |1362 |32209 |
+ROW |164054 |1362 |32210 |
+ROW |164055 |1362 |32211 |
+ROW |164056 |1362 |32212 |
+ROW |164057 |1362 |32213 |
+ROW |164058 |1362 |32214 |
+ROW |164059 |1362 |32215 |
+ROW |164060 |1362 |32216 |
+ROW |164061 |1362 |32217 |
+ROW |164062 |1362 |32218 |
+ROW |164063 |1362 |32219 |
+ROW |164064 |1362 |32220 |
+ROW |164065 |1362 |32221 |
+ROW |164066 |1362 |32222 |
+ROW |164067 |1362 |32223 |
+ROW |164068 |1362 |32224 |
+ROW |164069 |1362 |32225 |
+ROW |164070 |1362 |32226 |
+ROW |164071 |1362 |32227 |
+ROW |164072 |1362 |32228 |
+ROW |164073 |1362 |32229 |
+ROW |164074 |1362 |32230 |
+ROW |164075 |1362 |32231 |
+ROW |164076 |1362 |32232 |
+ROW |164077 |1362 |32233 |
+ROW |164078 |1362 |32234 |
+ROW |164079 |1362 |32235 |
+ROW |164080 |1362 |32236 |
+ROW |164081 |1362 |32237 |
+ROW |164082 |1362 |32238 |
+ROW |164083 |1362 |32239 |
+ROW |164084 |1362 |32240 |
+ROW |164085 |1362 |32241 |
+ROW |164086 |1362 |32242 |
+ROW |164087 |1362 |32243 |
+ROW |164088 |1362 |32244 |
+ROW |164089 |1362 |32245 |
+ROW |164090 |1362 |32246 |
+ROW |164091 |1362 |32247 |
+ROW |164092 |1362 |32248 |
+ROW |164093 |1362 |32249 |
+ROW |164094 |1362 |32250 |
+ROW |164095 |1362 |32251 |
+ROW |164096 |1362 |32252 |
+ROW |164097 |1362 |32253 |
+ROW |164098 |1362 |32254 |
+ROW |164099 |1362 |32255 |
+ROW |164100 |1362 |32256 |
+ROW |164101 |1362 |32257 |
+ROW |164102 |1362 |32258 |
+ROW |164103 |1362 |32259 |
+ROW |164104 |1362 |32260 |
+ROW |164105 |1362 |32261 |
+ROW |164106 |1362 |32262 |
+ROW |164107 |1362 |32263 |
+ROW |164108 |1362 |32264 |
+ROW |164109 |1362 |32265 |
+ROW |164110 |1362 |32266 |
+ROW |164111 |1362 |32267 |
+ROW |164112 |1362 |32268 |
+ROW |164113 |1362 |32269 |
+ROW |164114 |1362 |32270 |
+ROW |164115 |1362 |32271 |
+ROW |164116 |1362 |32272 |
+ROW |164117 |1362 |32273 |
+ROW |164118 |1328 |30821 |
+ROW |164119 |1328 |30822 |
+ROW |164120 |1330 |30823 |
+ROW |164121 |1330 |30824 |
+ROW |164122 |1330 |30825 |
+ROW |164123 |1330 |30826 |
+ROW |164124 |1328 |30827 |
+ROW |164125 |1330 |30828 |
+ROW |164126 |1330 |30829 |
+ROW |164127 |1330 |30830 |
+ROW |164128 |1328 |31054 |
+ROW |164129 |1328 |30831 |
+ROW |164130 |1328 |30832 |
+ROW |164131 |1328 |30833 |
+ROW |164132 |1328 |30834 |
+ROW |164133 |1328 |30835 |
+ROW |164134 |1329 |30836 |
+ROW |164135 |1328 |30837 |
+ROW |164136 |1328 |30838 |
+ROW |164137 |1328 |30839 |
+ROW |164138 |1328 |30841 |
+ROW |164139 |1329 |30843 |
+ROW |164140 |1329 |30844 |
+ROW |164141 |1328 |30846 |
+ROW |164142 |1328 |30847 |
+ROW |164143 |1328 |30848 |
+ROW |164144 |1328 |30849 |
+ROW |164145 |1328 |30850 |
+ROW |164146 |1328 |30851 |
+ROW |164147 |1328 |30852 |
+ROW |164148 |1328 |30853 |
+ROW |164149 |1328 |30854 |
+ROW |164150 |1328 |30855 |
+ROW |164151 |1328 |30856 |
+ROW |164152 |1328 |30857 |
+ROW |164153 |1328 |30858 |
+ROW |164154 |1328 |30859 |
+ROW |164155 |1328 |30860 |
+ROW |164156 |1328 |30861 |
+ROW |164157 |1328 |30862 |
+ROW |164158 |1328 |30863 |
+ROW |164159 |1328 |30864 |
+ROW |164160 |1328 |30865 |
+ROW |164161 |1328 |30866 |
+ROW |164162 |1328 |30867 |
+ROW |164163 |1328 |30868 |
+ROW |164164 |1328 |30869 |
+ROW |164165 |1328 |30870 |
+ROW |164166 |1328 |30871 |
+ROW |164167 |1328 |30872 |
+ROW |164168 |1329 |30873 |
+ROW |164169 |1329 |36931 |
+ROW |164170 |1329 |36932 |
+ROW |164171 |1329 |36933 |
+ROW |164172 |1434 |33017 |
+ROW |164173 |1434 |33018 |
+ROW |164174 |1433 |33019 |
+ROW |164175 |1434 |33020 |
+ROW |164176 |1434 |33021 |
+ROW |164177 |1433 |33022 |
+ROW |164178 |1433 |33023 |
+ROW |164179 |1433 |33024 |
+ROW |164180 |1433 |33025 |
+ROW |164181 |1433 |33026 |
+ROW |164182 |1433 |33027 |
+ROW |164183 |1433 |33028 |
+ROW |164184 |1433 |33029 |
+ROW |164185 |1433 |33030 |
+ROW |164186 |1433 |33031 |
+ROW |164187 |1433 |33032 |
+ROW |164188 |1433 |33033 |
+ROW |164189 |1433 |33034 |
+ROW |164190 |1433 |33035 |
+ROW |164191 |1433 |33036 |
+ROW |164192 |1433 |33037 |
+ROW |164193 |1433 |33038 |
+ROW |164194 |1433 |33039 |
+ROW |164195 |1433 |33040 |
+ROW |164196 |1433 |33041 |
+ROW |164197 |1433 |33042 |
+ROW |164198 |1433 |33043 |
+ROW |164199 |1433 |33044 |
+ROW |164200 |1433 |33045 |
+ROW |164201 |1433 |33046 |
+ROW |164202 |1433 |33047 |
+ROW |164203 |1433 |33048 |
+ROW |164204 |1433 |33049 |
+ROW |164205 |1433 |33050 |
+ROW |164206 |1433 |33051 |
+ROW |164207 |1433 |33052 |
+ROW |164208 |1433 |33053 |
+ROW |164209 |1433 |33054 |
+ROW |164210 |1433 |33055 |
+ROW |164211 |1433 |33056 |
+ROW |164212 |1433 |33057 |
+ROW |164213 |1433 |33058 |
+ROW |164214 |1433 |33059 |
+ROW |164215 |1433 |33060 |
+ROW |164216 |1434 |33065 |
+ROW |164217 |1434 |33066 |
+ROW |164218 |1433 |33122 |
+ROW |164219 |1433 |33123 |
+ROW |164220 |1433 |33124 |
+ROW |164221 |1433 |33125 |
+ROW |164222 |1433 |33126 |
+ROW |164223 |1433 |33127 |
+ROW |164224 |1433 |33128 |
+ROW |164225 |1433 |33129 |
+ROW |164226 |1433 |33130 |
+ROW |164227 |1433 |33131 |
+ROW |164228 |1433 |33132 |
+ROW |164229 |1433 |33133 |
+ROW |164230 |1433 |33134 |
+ROW |164231 |1433 |33135 |
+ROW |164232 |1433 |33136 |
+ROW |164233 |1433 |33137 |
+ROW |164234 |1433 |33138 |
+ROW |164235 |1435 |33139 |
+ROW |164236 |1436 |33140 |
+ROW |164237 |1435 |33141 |
+ROW |164238 |1436 |33142 |
+ROW |164239 |1435 |33144 |
+ROW |164240 |1435 |33145 |
+ROW |164241 |1435 |33146 |
+ROW |164242 |1435 |33147 |
+ROW |164243 |1435 |33148 |
+ROW |164244 |1435 |33149 |
+ROW |164245 |1435 |33150 |
+ROW |164246 |1435 |33151 |
+ROW |164247 |1435 |33152 |
+ROW |164248 |1435 |33153 |
+ROW |164249 |1435 |33154 |
+ROW |164250 |1435 |33155 |
+ROW |164251 |1435 |33156 |
+ROW |164252 |1435 |33157 |
+ROW |164253 |1435 |33158 |
+ROW |164254 |1435 |33159 |
+ROW |164255 |1435 |33160 |
+ROW |164256 |1435 |33161 |
+ROW |164257 |1435 |33162 |
+ROW |164258 |1435 |33163 |
+ROW |164259 |1435 |33164 |
+ROW |164260 |1435 |33165 |
+ROW |164261 |1435 |33166 |
+ROW |164262 |1435 |33167 |
+ROW |164263 |1435 |33168 |
+ROW |164264 |1435 |33169 |
+ROW |164265 |1435 |33170 |
+ROW |164266 |1435 |33171 |
+ROW |164267 |1435 |33172 |
+ROW |164268 |1435 |33567 |
+ROW |164269 |1436 |33177 |
+ROW |164270 |1436 |33178 |
+ROW |164271 |1336 |31055 |
+ROW |164272 |1335 |31056 |
+ROW |164273 |1335 |31057 |
+ROW |164274 |1335 |31058 |
+ROW |164275 |1335 |31626 |
+ROW |164276 |1335 |31627 |
+ROW |164277 |1335 |31628 |
+ROW |164278 |1336 |34173 |
+ROW |164279 |1336 |34174 |
+ROW |164280 |1336 |31059 |
+ROW |164281 |1335 |31060 |
+ROW |164282 |1335 |31061 |
+ROW |164283 |1335 |31062 |
+ROW |164284 |1335 |31063 |
+ROW |164285 |1335 |31064 |
+ROW |164286 |1335 |31065 |
+ROW |164287 |1335 |31066 |
+ROW |164288 |1335 |31067 |
+ROW |164289 |1335 |31068 |
+ROW |164290 |1335 |31069 |
+ROW |164291 |1335 |31070 |
+ROW |164292 |1335 |31071 |
+ROW |164293 |1335 |31072 |
+ROW |164294 |1335 |31073 |
+ROW |164295 |1335 |31074 |
+ROW |164296 |1335 |31075 |
+ROW |164297 |1335 |31076 |
+ROW |164298 |1335 |31077 |
+ROW |164299 |1335 |31078 |
+ROW |164300 |1335 |31079 |
+ROW |164301 |1335 |31080 |
+ROW |164302 |1335 |31081 |
+ROW |164303 |1335 |31082 |
+ROW |164304 |1335 |31083 |
+ROW |164305 |1335 |31084 |
+ROW |164306 |1335 |31085 |
+ROW |164307 |1335 |31086 |
+ROW |164308 |1335 |31087 |
+ROW |164309 |1335 |31088 |
+ROW |164310 |1335 |31089 |
+ROW |164311 |1335 |31090 |
+ROW |164312 |1336 |31091 |
+ROW |164313 |1335 |31092 |
+ROW |164314 |1336 |31093 |
+ROW |164315 |1336 |31094 |
+ROW |164316 |1335 |31095 |
+ROW |164317 |1335 |31096 |
+ROW |164318 |1335 |31097 |
+ROW |164319 |1335 |31098 |
+ROW |164320 |1335 |31099 |
+ROW |164321 |1335 |31100 |
+ROW |164322 |1335 |31101 |
+ROW |164323 |1335 |31102 |
+ROW |164324 |1335 |31103 |
+ROW |164325 |1335 |31104 |
+ROW |164326 |1335 |31105 |
+ROW |164327 |1335 |31106 |
+ROW |164328 |1335 |31107 |
+ROW |164329 |1335 |31108 |
+ROW |164330 |1335 |31109 |
+ROW |164331 |1335 |31110 |
+ROW |164332 |1335 |31111 |
+ROW |164333 |1335 |31112 |
+ROW |164334 |1335 |31113 |
+ROW |164335 |1335 |31114 |
+ROW |164336 |1335 |31115 |
+ROW |164337 |1335 |31116 |
+ROW |164338 |1335 |31117 |
+ROW |164339 |1335 |31118 |
+ROW |164340 |1335 |31119 |
+ROW |164341 |1335 |31120 |
+ROW |164342 |1335 |31121 |
+ROW |164343 |1336 |31128 |
+ROW |164344 |1336 |31129 |
+ROW |164345 |1336 |31130 |
+ROW |164346 |1336 |31132 |
+ROW |164347 |1336 |33194 |
+ROW |164348 |1314 |30431 |
+ROW |164349 |1314 |30432 |
+ROW |164350 |1315 |30433 |
+ROW |164351 |1314 |30434 |
+ROW |164352 |1314 |30435 |
+ROW |164353 |1314 |32546 |
+ROW |164354 |1315 |30436 |
+ROW |164355 |1314 |30437 |
+ROW |164356 |1314 |30438 |
+ROW |164357 |1314 |30439 |
+ROW |164358 |1314 |30440 |
+ROW |164359 |1314 |30441 |
+ROW |164360 |1314 |30442 |
+ROW |164361 |1315 |30443 |
+ROW |164362 |1314 |30444 |
+ROW |164363 |1314 |30445 |
+ROW |164364 |1314 |30446 |
+ROW |164365 |1314 |30447 |
+ROW |164366 |1314 |30449 |
+ROW |164367 |1314 |30450 |
+ROW |164368 |1314 |30451 |
+ROW |164369 |1314 |30452 |
+ROW |164370 |1314 |30453 |
+ROW |164371 |1314 |30454 |
+ROW |164372 |1314 |30455 |
+ROW |164373 |1314 |30456 |
+ROW |164374 |1314 |30457 |
+ROW |164375 |1314 |30458 |
+ROW |164376 |1314 |30459 |
+ROW |164377 |1314 |30460 |
+ROW |164378 |1314 |30461 |
+ROW |164379 |1314 |30462 |
+ROW |164380 |1314 |30463 |
+ROW |164381 |1314 |30464 |
+ROW |164382 |1314 |30465 |
+ROW |164383 |1314 |30466 |
+ROW |164384 |1314 |30470 |
+ROW |164385 |1314 |30471 |
+ROW |164386 |1314 |31168 |
+ROW |164387 |1314 |31169 |
+ROW |164388 |1314 |31170 |
+ROW |164389 |1314 |31171 |
+ROW |164390 |1314 |32547 |
+ROW |164391 |1314 |32548 |
+ROW |164392 |1314 |32549 |
+ROW |164393 |1314 |32550 |
+ROW |164394 |1314 |32551 |
+ROW |164395 |1314 |32552 |
+ROW |164396 |1314 |30474 |
+ROW |164397 |1315 |30475 |
+ROW |164398 |1314 |30476 |
+ROW |164399 |1314 |30477 |
+ROW |164400 |1314 |30478 |
+ROW |164401 |1314 |32554 |
+ROW |164402 |1314 |32555 |
+ROW |164403 |1314 |32556 |
+ROW |164404 |1314 |32557 |
+ROW |164405 |1314 |32558 |
+ROW |164406 |1314 |32559 |
+ROW |164407 |1322 |30637 |
+ROW |164408 |1322 |30638 |
+ROW |164409 |1323 |30639 |
+ROW |164410 |1322 |30640 |
+ROW |164411 |1322 |30641 |
+ROW |164412 |1322 |32560 |
+ROW |164413 |1323 |30642 |
+ROW |164414 |1322 |30643 |
+ROW |164415 |1322 |30644 |
+ROW |164416 |1322 |30645 |
+ROW |164417 |1322 |30646 |
+ROW |164418 |1322 |30647 |
+ROW |164419 |1322 |30648 |
+ROW |164420 |1323 |30649 |
+ROW |164421 |1322 |30650 |
+ROW |164422 |1322 |30651 |
+ROW |164423 |1322 |30652 |
+ROW |164424 |1322 |30653 |
+ROW |164425 |1322 |30655 |
+ROW |164426 |1322 |30656 |
+ROW |164427 |1322 |30657 |
+ROW |164428 |1322 |30658 |
+ROW |164429 |1322 |30659 |
+ROW |164430 |1322 |30660 |
+ROW |164431 |1322 |30661 |
+ROW |164432 |1322 |30662 |
+ROW |164433 |1322 |30663 |
+ROW |164434 |1322 |30664 |
+ROW |164435 |1322 |30665 |
+ROW |164436 |1322 |30666 |
+ROW |164437 |1322 |30667 |
+ROW |164438 |1322 |30668 |
+ROW |164439 |1322 |30669 |
+ROW |164440 |1322 |30670 |
+ROW |164441 |1322 |30671 |
+ROW |164442 |1322 |30672 |
+ROW |164443 |1322 |30676 |
+ROW |164444 |1322 |30677 |
+ROW |164445 |1322 |31172 |
+ROW |164446 |1322 |31173 |
+ROW |164447 |1322 |31174 |
+ROW |164448 |1322 |31175 |
+ROW |164449 |1322 |32561 |
+ROW |164450 |1322 |32562 |
+ROW |164451 |1322 |32563 |
+ROW |164452 |1322 |32564 |
+ROW |164453 |1322 |32565 |
+ROW |164454 |1322 |32566 |
+ROW |164455 |1322 |30680 |
+ROW |164456 |1323 |30681 |
+ROW |164457 |1322 |30682 |
+ROW |164458 |1322 |30683 |
+ROW |164459 |1322 |30684 |
+ROW |164460 |1322 |32568 |
+ROW |164461 |1322 |32569 |
+ROW |164462 |1322 |32570 |
+ROW |164463 |1322 |32571 |
+ROW |164464 |1322 |32572 |
+ROW |164465 |1322 |32573 |
+ROW |164466 |1317 |30479 |
+ROW |164467 |1316 |30480 |
+ROW |164468 |1316 |30481 |
+ROW |164469 |1316 |30482 |
+ROW |164470 |1316 |30483 |
+ROW |164471 |1316 |32574 |
+ROW |164472 |1316 |30484 |
+ROW |164473 |1317 |30485 |
+ROW |164474 |1316 |30486 |
+ROW |164475 |1317 |30487 |
+ROW |164476 |1316 |30488 |
+ROW |164477 |1316 |30489 |
+ROW |164478 |1316 |30490 |
+ROW |164479 |1316 |30491 |
+ROW |164480 |1316 |30492 |
+ROW |164481 |1316 |30493 |
+ROW |164482 |1316 |30494 |
+ROW |164483 |1316 |30495 |
+ROW |164484 |1316 |30496 |
+ROW |164485 |1316 |30497 |
+ROW |164486 |1316 |30499 |
+ROW |164487 |1316 |30500 |
+ROW |164488 |1316 |30503 |
+ROW |164489 |1316 |30504 |
+ROW |164490 |1316 |30505 |
+ROW |164491 |1316 |30506 |
+ROW |164492 |1316 |30507 |
+ROW |164493 |1316 |30508 |
+ROW |164494 |1316 |30509 |
+ROW |164495 |1316 |30510 |
+ROW |164496 |1316 |30512 |
+ROW |164497 |1316 |30513 |
+ROW |164498 |1316 |30514 |
+ROW |164499 |1316 |30515 |
+ROW |164500 |1316 |30516 |
+ROW |164501 |1316 |30517 |
+ROW |164502 |1316 |30518 |
+ROW |164503 |1316 |30519 |
+ROW |164504 |1316 |31176 |
+ROW |164505 |1316 |31177 |
+ROW |164506 |1316 |31178 |
+ROW |164507 |1316 |31179 |
+ROW |164508 |1316 |32575 |
+ROW |164509 |1316 |32576 |
+ROW |164510 |1316 |32577 |
+ROW |164511 |1316 |32578 |
+ROW |164512 |1316 |32579 |
+ROW |164513 |1316 |32580 |
+ROW |164514 |1316 |30522 |
+ROW |164515 |1317 |30523 |
+ROW |164516 |1316 |30524 |
+ROW |164517 |1316 |30525 |
+ROW |164518 |1316 |30526 |
+ROW |164519 |1316 |32582 |
+ROW |164520 |1316 |32583 |
+ROW |164521 |1316 |32584 |
+ROW |164522 |1316 |32585 |
+ROW |164523 |1316 |32586 |
+ROW |164524 |1316 |32587 |
+ROW |164525 |1345 |31629 |
+ROW |164526 |1345 |31630 |
+ROW |164527 |1346 |31631 |
+ROW |164528 |1345 |31632 |
+ROW |164529 |1346 |31633 |
+ROW |164530 |1346 |31634 |
+ROW |164531 |1346 |31635 |
+ROW |164532 |1346 |31636 |
+ROW |164533 |1346 |31637 |
+ROW |164534 |1346 |31638 |
+ROW |164535 |1346 |31639 |
+ROW |164536 |1345 |31640 |
+ROW |164537 |1345 |31641 |
+ROW |164538 |1346 |31642 |
+ROW |164539 |1346 |31643 |
+ROW |164540 |1346 |31644 |
+ROW |164541 |1346 |31645 |
+ROW |164542 |1345 |31646 |
+ROW |164543 |1345 |31647 |
+ROW |164544 |1345 |31648 |
+ROW |164545 |1345 |31649 |
+ROW |164546 |1345 |31650 |
+ROW |164547 |1345 |31651 |
+ROW |164548 |1345 |31652 |
+ROW |164549 |1345 |31653 |
+ROW |164550 |1345 |31654 |
+ROW |164551 |1345 |31655 |
+ROW |164552 |1345 |31656 |
+ROW |164553 |1345 |31657 |
+ROW |164554 |1345 |31658 |
+ROW |164555 |1345 |31659 |
+ROW |164556 |1345 |31660 |
+ROW |164557 |1345 |31661 |
+ROW |164558 |1345 |31662 |
+ROW |164559 |1345 |31663 |
+ROW |164560 |1345 |31664 |
+ROW |164561 |1345 |31665 |
+ROW |164562 |1345 |31666 |
+ROW |164563 |1345 |31667 |
+ROW |164564 |1345 |31668 |
+ROW |164565 |1345 |31669 |
+ROW |164566 |1345 |31670 |
+ROW |164567 |1345 |31671 |
+ROW |164568 |1345 |31672 |
+ROW |164569 |1345 |31673 |
+ROW |164570 |1345 |31674 |
+ROW |164571 |1345 |31675 |
+ROW |164572 |1345 |31676 |
+ROW |164573 |1345 |31677 |
+ROW |164574 |1345 |31678 |
+ROW |164575 |1345 |31679 |
+ROW |164576 |1345 |31680 |
+ROW |164577 |1345 |31681 |
+ROW |164578 |1345 |31682 |
+ROW |164579 |1345 |31683 |
+ROW |164580 |1345 |31684 |
+ROW |164581 |1345 |31685 |
+ROW |164582 |1345 |31686 |
+ROW |164583 |1345 |31687 |
+ROW |164584 |1345 |31688 |
+ROW |164585 |1345 |31689 |
+ROW |164586 |1345 |31690 |
+ROW |164587 |1345 |31691 |
+ROW |164588 |1345 |31692 |
+ROW |164589 |1345 |31693 |
+ROW |164590 |1345 |31694 |
+ROW |164591 |1345 |31695 |
+ROW |164592 |1345 |31696 |
+ROW |164593 |1345 |31697 |
+ROW |164594 |1345 |31698 |
+ROW |164595 |1345 |31699 |
+ROW |164596 |1345 |31700 |
+ROW |164597 |1345 |31701 |
+ROW |164598 |1345 |31702 |
+ROW |164599 |1345 |31703 |
+ROW |164600 |1345 |31704 |
+ROW |164601 |1345 |31705 |
+ROW |164602 |1857 |36934 |
+ROW |164603 |1857 |36935 |
+ROW |164604 |1856 |36936 |
+ROW |164605 |1856 |36937 |
+ROW |164606 |1857 |36938 |
+ROW |164607 |1856 |36939 |
+ROW |164608 |1856 |36940 |
+ROW |164609 |1856 |36941 |
+ROW |164610 |1856 |36942 |
+ROW |164611 |1856 |36943 |
+ROW |164612 |1856 |36944 |
+ROW |164613 |1857 |36945 |
+ROW |164614 |1857 |36946 |
+ROW |164615 |1856 |36947 |
+ROW |164616 |1856 |36948 |
+ROW |164617 |1857 |36949 |
+ROW |164618 |1857 |36950 |
+ROW |164619 |1856 |36951 |
+ROW |164620 |1856 |36952 |
+ROW |164621 |1856 |36953 |
+ROW |164622 |1856 |36954 |
+ROW |164623 |1856 |36955 |
+ROW |164624 |1856 |36956 |
+ROW |164625 |1856 |36957 |
+ROW |164626 |1856 |36958 |
+ROW |164627 |1856 |36959 |
+ROW |164628 |1856 |36960 |
+ROW |164629 |1856 |36961 |
+ROW |164630 |1856 |36962 |
+ROW |164631 |1856 |36963 |
+ROW |164632 |1856 |36964 |
+ROW |164633 |1856 |36965 |
+ROW |164634 |1856 |36966 |
+ROW |164635 |1856 |36967 |
+ROW |164636 |1856 |36968 |
+ROW |164637 |1856 |36969 |
+ROW |164638 |1856 |36970 |
+ROW |164639 |1856 |36971 |
+ROW |164640 |1856 |36972 |
+ROW |164641 |1856 |36973 |
+ROW |164642 |1857 |36976 |
+ROW |164643 |1857 |36977 |
+ROW |164644 |1858 |36705 |
+ROW |164645 |1858 |36706 |
+ROW |164646 |1859 |36707 |
+ROW |164647 |1858 |36708 |
+ROW |164648 |1859 |36709 |
+ROW |164649 |1859 |36710 |
+ROW |164650 |1859 |36711 |
+ROW |164651 |1859 |36712 |
+ROW |164652 |1858 |36713 |
+ROW |164653 |1858 |36714 |
+ROW |164654 |1858 |36715 |
+ROW |164655 |1858 |36716 |
+ROW |164656 |1859 |36717 |
+ROW |164657 |1858 |36718 |
+ROW |164658 |1858 |36719 |
+ROW |164659 |1858 |36720 |
+ROW |164660 |1858 |36721 |
+ROW |164661 |1859 |36722 |
+ROW |164662 |1859 |36723 |
+ROW |164663 |1858 |36724 |
+ROW |164664 |1858 |36725 |
+ROW |164665 |1858 |36726 |
+ROW |164666 |1858 |36728 |
+ROW |164667 |1858 |36729 |
+ROW |164668 |1858 |36730 |
+ROW |164669 |1858 |36731 |
+ROW |164670 |1858 |36732 |
+ROW |164671 |1858 |36733 |
+ROW |164672 |1858 |36734 |
+ROW |164673 |1858 |36735 |
+ROW |164674 |1858 |36736 |
+ROW |164675 |1858 |36737 |
+ROW |164676 |1858 |36738 |
+ROW |164677 |1858 |36739 |
+ROW |164678 |1858 |36740 |
+ROW |164679 |1858 |36741 |
+ROW |164680 |1858 |36742 |
+ROW |164681 |1858 |36743 |
+ROW |164682 |1858 |36744 |
+ROW |164683 |1858 |36745 |
+ROW |164684 |1858 |36746 |
+ROW |164685 |1858 |36747 |
+ROW |164686 |1858 |36748 |
+ROW |164687 |1858 |36749 |
+ROW |164688 |1858 |36750 |
+ROW |164689 |1858 |36751 |
+ROW |164690 |1858 |36752 |
+ROW |164691 |1858 |36753 |
+ROW |164692 |1858 |36754 |
+ROW |164693 |1858 |36755 |
+ROW |164694 |1858 |36756 |
+ROW |164695 |1858 |36757 |
+ROW |164696 |1858 |36758 |
+ROW |164697 |1858 |36759 |
+ROW |164698 |1858 |36760 |
+ROW |164699 |1858 |36761 |
+ROW |164700 |1858 |36762 |
+ROW |164701 |1858 |36763 |
+ROW |164702 |1858 |36764 |
+ROW |164703 |1858 |36765 |
+ROW |164704 |1858 |36766 |
+ROW |164705 |1858 |36767 |
+ROW |164706 |1302 |30273 |
+ROW |164707 |1302 |30274 |
+ROW |164708 |1303 |30275 |
+ROW |164709 |1303 |30276 |
+ROW |164710 |1302 |30277 |
+ROW |164711 |1302 |30278 |
+ROW |164712 |1302 |30279 |
+ROW |164713 |1302 |30280 |
+ROW |164714 |1302 |30281 |
+ROW |164715 |1302 |30282 |
+ROW |164716 |1302 |30283 |
+ROW |164717 |1302 |30284 |
+ROW |164718 |1302 |30285 |
+ROW |164719 |1302 |30286 |
+ROW |164720 |1302 |30287 |
+ROW |164721 |1302 |30288 |
+ROW |164722 |1302 |30289 |
+ROW |164723 |1302 |30290 |
+ROW |164724 |1302 |30291 |
+ROW |164725 |1302 |30292 |
+ROW |164726 |1302 |30293 |
+ROW |164727 |1302 |30294 |
+ROW |164728 |1302 |30295 |
+ROW |164729 |1302 |30296 |
+ROW |164730 |1302 |30297 |
+ROW |164731 |1302 |30298 |
+ROW |164732 |1302 |30299 |
+ROW |164733 |1302 |30300 |
+ROW |164734 |1302 |30301 |
+ROW |164735 |1302 |30302 |
+ROW |164736 |1302 |30303 |
+ROW |164737 |1302 |30304 |
+ROW |164738 |1302 |30305 |
+ROW |164739 |1302 |30306 |
+ROW |164740 |1302 |30307 |
+ROW |164741 |1302 |30308 |
+ROW |164742 |1302 |30309 |
+ROW |164743 |1302 |30310 |
+ROW |164744 |1302 |30311 |
+ROW |164745 |1302 |30312 |
+ROW |164746 |1302 |30313 |
+ROW |164747 |1302 |30314 |
+ROW |164748 |1302 |30315 |
+ROW |164749 |1302 |30316 |
+ROW |164750 |1302 |30317 |
+ROW |164751 |1302 |30318 |
+ROW |164752 |1302 |30319 |
+ROW |164753 |1302 |30320 |
+ROW |164754 |1302 |30321 |
+ROW |164755 |1302 |30322 |
+ROW |164756 |1302 |30323 |
+ROW |164757 |1302 |30324 |
+ROW |164758 |1302 |30325 |
+ROW |164759 |1302 |30326 |
+ROW |164760 |1302 |30327 |
+ROW |164761 |1302 |30328 |
+ROW |164762 |1302 |30329 |
+ROW |164763 |1302 |30330 |
+ROW |164764 |1302 |30331 |
+ROW |164765 |1302 |30332 |
+ROW |164766 |1302 |30333 |
+ROW |164767 |1302 |30334 |
+ROW |164768 |1302 |30335 |
+ROW |164769 |1302 |30336 |
+ROW |164770 |1302 |30344 |
+ROW |164771 |1302 |30345 |
+ROW |164772 |1302 |30346 |
+ROW |164773 |1302 |30347 |
+ROW |164774 |1302 |30351 |
+ROW |164775 |1302 |30352 |
+ROW |164776 |1302 |30353 |
+ROW |164777 |1302 |30354 |
+ROW |164778 |1302 |30355 |
+ROW |164779 |1302 |30356 |
+ROW |164780 |1302 |30357 |
+ROW |164781 |1302 |30358 |
+ROW |164782 |1302 |30359 |
+ROW |164783 |1302 |30360 |
+ROW |164784 |1302 |30361 |
+ROW |164785 |1302 |30362 |
+ROW |164786 |1302 |30363 |
+ROW |164787 |1302 |30364 |
+ROW |164788 |1302 |30365 |
+ROW |164789 |1302 |30366 |
+ROW |164790 |1302 |30367 |
+ROW |164791 |1302 |30368 |
+ROW |164792 |1302 |30369 |
+ROW |164793 |1302 |30370 |
+ROW |164794 |1302 |30371 |
+ROW |164795 |1302 |30372 |
+ROW |164796 |1302 |30373 |
+ROW |164797 |1302 |30374 |
+ROW |164798 |1302 |30375 |
+ROW |164799 |1302 |30376 |
+ROW |164800 |1302 |30377 |
+ROW |164801 |1302 |30378 |
+ROW |164802 |1302 |30379 |
+ROW |164803 |1302 |30380 |
+ROW |164804 |1302 |30381 |
+ROW |164805 |1302 |30382 |
+ROW |164806 |1302 |30383 |
+ROW |164807 |1302 |30384 |
+ROW |164808 |1302 |30385 |
+ROW |164809 |1302 |30386 |
+ROW |164810 |1302 |30387 |
+ROW |164811 |1302 |30388 |
+ROW |164812 |1302 |30389 |
+ROW |164813 |1302 |30390 |
+ROW |164814 |1302 |30391 |
+ROW |164815 |1302 |30392 |
+ROW |164816 |1302 |30393 |
+ROW |164817 |1302 |30394 |
+ROW |164818 |1302 |30395 |
+ROW |164819 |1302 |30397 |
+ROW |164820 |1302 |30398 |
+ROW |164821 |1302 |30399 |
+ROW |164822 |1302 |30400 |
+ROW |164823 |1302 |30401 |
+ROW |164824 |1302 |30402 |
+ROW |164825 |1302 |30403 |
+ROW |164826 |1302 |30404 |
+ROW |164827 |780 |27065 |
+ROW |164828 |780 |27066 |
+ROW |164829 |780 |27067 |
+ROW |164830 |799 |27149 |
+ROW |164831 |799 |27150 |
+ROW |164832 |799 |27151 |
+ROW |164833 |805 |27192 |
+ROW |164834 |805 |27193 |
+ROW |164835 |805 |27194 |
+ROW |164836 |813 |27225 |
+ROW |164837 |813 |27226 |
+ROW |164838 |813 |27227 |
+ROW |164839 |822 |27261 |
+ROW |164840 |822 |27262 |
+ROW |164841 |822 |27263 |
+ROW |164842 |825 |27282 |
+ROW |164843 |825 |27283 |
+ROW |164844 |825 |27284 |
+ROW |164845 |842 |27333 |
+ROW |164846 |842 |27334 |
+ROW |164847 |842 |27335 |
+ROW |164848 |847 |27365 |
+ROW |164849 |847 |27366 |
+ROW |164850 |847 |27367 |
+ROW |164851 |876 |27462 |
+ROW |164852 |876 |27463 |
+ROW |164853 |876 |27464 |
+ROW |164854 |885 |27496 |
+ROW |164855 |885 |27497 |
+ROW |164856 |885 |27498 |
+ROW |164857 |894 |27532 |
+ROW |164858 |894 |27533 |
+ROW |164859 |894 |27534 |
+ROW |164860 |903 |27568 |
+ROW |164861 |903 |27569 |
+ROW |164862 |903 |27570 |
+ROW |164863 |915 |27631 |
+ROW |164864 |915 |27632 |
+ROW |164865 |915 |27633 |
+ROW |164866 |918 |27654 |
+ROW |164867 |918 |27655 |
+ROW |164868 |918 |27656 |
+ROW |164869 |936 |27734 |
+ROW |164870 |936 |27735 |
+ROW |164871 |936 |27736 |
+ROW |164872 |944 |27766 |
+ROW |164873 |944 |27767 |
+ROW |164874 |944 |27768 |
+ROW |164875 |951 |27800 |
+ROW |164876 |951 |27801 |
+ROW |164877 |951 |27802 |
+ROW |164878 |971 |27882 |
+ROW |164879 |971 |27883 |
+ROW |164880 |971 |27884 |
+ROW |164881 |979 |27919 |
+ROW |164882 |979 |27920 |
+ROW |164883 |979 |27921 |
+ROW |164884 |988 |27956 |
+ROW |164885 |988 |27957 |
+ROW |164886 |988 |27958 |
+ROW |164887 |994 |27986 |
+ROW |164888 |994 |27987 |
+ROW |164889 |994 |27988 |
+ROW |164890 |1000 |28015 |
+ROW |164891 |1000 |28016 |
+ROW |164892 |1000 |28017 |
+ROW |164893 |1030 |28130 |
+ROW |164894 |1030 |28131 |
+ROW |164895 |1030 |28132 |
+ROW |164896 |1055 |28233 |
+ROW |164897 |1055 |28234 |
+ROW |164898 |1055 |28235 |
+ROW |164899 |1060 |28282 |
+ROW |164900 |1060 |28283 |
+ROW |164901 |1060 |28284 |
+ROW |164902 |1070 |28330 |
+ROW |164903 |1070 |28331 |
+ROW |164904 |1070 |28332 |
+ROW |164905 |1079 |28377 |
+ROW |164906 |1079 |28378 |
+ROW |164907 |1079 |28379 |
+ROW |164908 |1095 |28454 |
+ROW |164909 |1095 |28455 |
+ROW |164910 |1095 |28456 |
+ROW |164911 |1102 |28482 |
+ROW |164912 |1102 |28483 |
+ROW |164913 |1102 |28484 |
+ROW |164914 |1127 |28957 |
+ROW |164915 |1127 |28958 |
+ROW |164916 |1127 |28959 |
+ROW |164917 |1136 |29050 |
+ROW |164918 |1136 |29051 |
+ROW |164919 |1136 |29052 |
+ROW |164920 |1271 |30046 |
+ROW |164921 |1271 |30047 |
+ROW |164922 |1271 |30048 |
+ROW |164923 |1414 |32601 |
+ROW |164924 |1414 |32602 |
+ROW |164925 |1414 |32603 |
+ROW |164926 |1422 |32765 |
+ROW |164927 |1422 |32766 |
+ROW |164928 |1422 |32767 |
+ROW |164929 |800 |27152 |
+ROW |164930 |799 |27154 |
+ROW |164931 |800 |27157 |
+ROW |164932 |799 |29844 |
+ROW |164933 |800 |29845 |
+ROW |164934 |800 |29846 |
+ROW |164935 |800 |29847 |
+ROW |164936 |800 |29848 |
+ROW |164937 |804 |27195 |
+ROW |164938 |804 |27199 |
+ROW |164939 |805 |27202 |
+ROW |164940 |812 |27228 |
+ROW |164941 |812 |27232 |
+ROW |164942 |813 |27235 |
+ROW |164943 |821 |27264 |
+ROW |164944 |821 |27268 |
+ROW |164945 |822 |27271 |
+ROW |164946 |824 |27285 |
+ROW |164947 |824 |27289 |
+ROW |164948 |825 |27292 |
+ROW |164949 |841 |27336 |
+ROW |164950 |841 |27340 |
+ROW |164951 |842 |27343 |
+ROW |164952 |846 |27368 |
+ROW |164953 |846 |27372 |
+ROW |164954 |847 |27375 |
+ROW |164955 |875 |27465 |
+ROW |164956 |875 |27469 |
+ROW |164957 |876 |27472 |
+ROW |164958 |884 |27499 |
+ROW |164959 |884 |27503 |
+ROW |164960 |885 |27506 |
+ROW |164961 |893 |27535 |
+ROW |164962 |893 |27539 |
+ROW |164963 |894 |27542 |
+ROW |164964 |902 |27571 |
+ROW |164965 |902 |27575 |
+ROW |164966 |903 |27578 |
+ROW |164967 |914 |27634 |
+ROW |164968 |914 |27638 |
+ROW |164969 |915 |27641 |
+ROW |164970 |917 |27657 |
+ROW |164971 |917 |27661 |
+ROW |164972 |918 |27664 |
+ROW |164973 |935 |27737 |
+ROW |164974 |935 |27741 |
+ROW |164975 |936 |27744 |
+ROW |164976 |943 |27769 |
+ROW |164977 |943 |27773 |
+ROW |164978 |944 |27776 |
+ROW |164979 |950 |27803 |
+ROW |164980 |950 |27807 |
+ROW |164981 |951 |27810 |
+ROW |164982 |970 |27885 |
+ROW |164983 |970 |27889 |
+ROW |164984 |971 |27892 |
+ROW |164985 |978 |27922 |
+ROW |164986 |978 |27926 |
+ROW |164987 |979 |27929 |
+ROW |164988 |987 |27959 |
+ROW |164989 |987 |27963 |
+ROW |164990 |988 |27966 |
+ROW |164991 |993 |27989 |
+ROW |164992 |993 |27993 |
+ROW |164993 |994 |27996 |
+ROW |164994 |999 |28018 |
+ROW |164995 |999 |28022 |
+ROW |164996 |1000 |28025 |
+ROW |164997 |1029 |28133 |
+ROW |164998 |1029 |28137 |
+ROW |164999 |1030 |28140 |
+ROW |165000 |1054 |28236 |
+ROW |165001 |1054 |28240 |
+ROW |165002 |1055 |28243 |
+ROW |165003 |1059 |28285 |
+ROW |165004 |1059 |28289 |
+ROW |165005 |1060 |28292 |
+ROW |165006 |1069 |28333 |
+ROW |165007 |1069 |28337 |
+ROW |165008 |1070 |28340 |
+ROW |165009 |1078 |28380 |
+ROW |165010 |1078 |28384 |
+ROW |165011 |1079 |28387 |
+ROW |165012 |1094 |28457 |
+ROW |165013 |1094 |28461 |
+ROW |165014 |1095 |28464 |
+ROW |165015 |1101 |28485 |
+ROW |165016 |1101 |28489 |
+ROW |165017 |1102 |28492 |
+ROW |165018 |1126 |28960 |
+ROW |165019 |1126 |28964 |
+ROW |165020 |1127 |28967 |
+ROW |165021 |1135 |29053 |
+ROW |165022 |1135 |29057 |
+ROW |165023 |1136 |29060 |
+ROW |165024 |1000 |29834 |
+ROW |165025 |999 |29835 |
+ROW |165026 |999 |29836 |
+ROW |165027 |999 |29837 |
+ROW |165028 |999 |29838 |
+ROW |165029 |805 |29849 |
+ROW |165030 |804 |29850 |
+ROW |165031 |804 |29851 |
+ROW |165032 |804 |29852 |
+ROW |165033 |804 |29853 |
+ROW |165034 |813 |29854 |
+ROW |165035 |812 |29855 |
+ROW |165036 |812 |29856 |
+ROW |165037 |812 |29857 |
+ROW |165038 |812 |29858 |
+ROW |165039 |822 |29859 |
+ROW |165040 |821 |29860 |
+ROW |165041 |821 |29861 |
+ROW |165042 |821 |29862 |
+ROW |165043 |821 |29863 |
+ROW |165044 |825 |29864 |
+ROW |165045 |824 |29865 |
+ROW |165046 |824 |29866 |
+ROW |165047 |824 |29867 |
+ROW |165048 |824 |29868 |
+ROW |165049 |842 |29869 |
+ROW |165050 |841 |29870 |
+ROW |165051 |841 |29871 |
+ROW |165052 |841 |29872 |
+ROW |165053 |841 |29873 |
+ROW |165054 |847 |29874 |
+ROW |165055 |846 |29875 |
+ROW |165056 |846 |29876 |
+ROW |165057 |846 |29877 |
+ROW |165058 |846 |29878 |
+ROW |165059 |876 |29879 |
+ROW |165060 |875 |29880 |
+ROW |165061 |875 |29881 |
+ROW |165062 |875 |29882 |
+ROW |165063 |875 |29883 |
+ROW |165064 |885 |29884 |
+ROW |165065 |884 |29885 |
+ROW |165066 |884 |29886 |
+ROW |165067 |884 |29887 |
+ROW |165068 |884 |29888 |
+ROW |165069 |894 |29889 |
+ROW |165070 |893 |29890 |
+ROW |165071 |893 |29891 |
+ROW |165072 |893 |29892 |
+ROW |165073 |893 |29893 |
+ROW |165074 |903 |29894 |
+ROW |165075 |902 |29895 |
+ROW |165076 |902 |29896 |
+ROW |165077 |902 |29897 |
+ROW |165078 |902 |29898 |
+ROW |165079 |915 |29899 |
+ROW |165080 |914 |29900 |
+ROW |165081 |914 |29901 |
+ROW |165082 |914 |29902 |
+ROW |165083 |914 |29903 |
+ROW |165084 |918 |29904 |
+ROW |165085 |917 |29905 |
+ROW |165086 |917 |29906 |
+ROW |165087 |917 |29907 |
+ROW |165088 |917 |29908 |
+ROW |165089 |936 |29909 |
+ROW |165090 |935 |29910 |
+ROW |165091 |935 |29911 |
+ROW |165092 |935 |29912 |
+ROW |165093 |935 |29913 |
+ROW |165094 |944 |29914 |
+ROW |165095 |943 |29915 |
+ROW |165096 |943 |29916 |
+ROW |165097 |943 |29917 |
+ROW |165098 |943 |29918 |
+ROW |165099 |951 |29919 |
+ROW |165100 |950 |29920 |
+ROW |165101 |950 |29921 |
+ROW |165102 |950 |29922 |
+ROW |165103 |950 |29923 |
+ROW |165104 |971 |29924 |
+ROW |165105 |970 |29925 |
+ROW |165106 |970 |29926 |
+ROW |165107 |970 |29927 |
+ROW |165108 |970 |29928 |
+ROW |165109 |979 |29929 |
+ROW |165110 |978 |29930 |
+ROW |165111 |978 |29931 |
+ROW |165112 |978 |29932 |
+ROW |165113 |978 |29933 |
+ROW |165114 |988 |29934 |
+ROW |165115 |987 |29935 |
+ROW |165116 |987 |29936 |
+ROW |165117 |987 |29937 |
+ROW |165118 |987 |29938 |
+ROW |165119 |994 |29939 |
+ROW |165120 |993 |29940 |
+ROW |165121 |993 |29941 |
+ROW |165122 |993 |29942 |
+ROW |165123 |993 |29943 |
+ROW |165124 |1030 |29944 |
+ROW |165125 |1029 |29945 |
+ROW |165126 |1029 |29946 |
+ROW |165127 |1029 |29947 |
+ROW |165128 |1029 |29948 |
+ROW |165129 |1055 |29954 |
+ROW |165130 |1054 |29955 |
+ROW |165131 |1054 |29956 |
+ROW |165132 |1054 |29957 |
+ROW |165133 |1054 |29958 |
+ROW |165134 |1060 |29959 |
+ROW |165135 |1059 |29960 |
+ROW |165136 |1059 |29961 |
+ROW |165137 |1059 |29962 |
+ROW |165138 |1059 |29963 |
+ROW |165139 |1070 |29964 |
+ROW |165140 |1069 |29965 |
+ROW |165141 |1069 |29966 |
+ROW |165142 |1069 |29967 |
+ROW |165143 |1069 |29968 |
+ROW |165144 |1079 |29969 |
+ROW |165145 |1078 |29970 |
+ROW |165146 |1078 |29971 |
+ROW |165147 |1078 |29972 |
+ROW |165148 |1078 |29973 |
+ROW |165149 |1095 |29974 |
+ROW |165150 |1094 |29975 |
+ROW |165151 |1094 |29976 |
+ROW |165152 |1094 |29977 |
+ROW |165153 |1094 |29978 |
+ROW |165154 |1102 |29979 |
+ROW |165155 |1101 |29980 |
+ROW |165156 |1101 |29981 |
+ROW |165157 |1101 |29982 |
+ROW |165158 |1101 |29983 |
+ROW |165159 |1127 |29984 |
+ROW |165160 |1126 |29985 |
+ROW |165161 |1126 |29986 |
+ROW |165162 |1126 |29987 |
+ROW |165163 |1126 |29988 |
+ROW |165164 |1136 |29989 |
+ROW |165165 |1135 |29990 |
+ROW |165166 |1135 |29991 |
+ROW |165167 |1135 |29992 |
+ROW |165168 |1135 |29993 |
+ROW |165169 |1270 |30049 |
+ROW |165170 |1270 |30050 |
+ROW |165171 |1270 |30051 |
+ROW |165172 |1270 |30052 |
+ROW |165173 |1270 |30053 |
+ROW |165174 |1270 |30054 |
+ROW |165175 |1271 |30055 |
+ROW |165176 |1271 |30056 |
+ROW |165177 |1413 |32604 |
+ROW |165178 |1413 |32605 |
+ROW |165179 |1413 |32606 |
+ROW |165180 |1413 |32607 |
+ROW |165181 |1413 |32608 |
+ROW |165182 |1413 |32609 |
+ROW |165183 |1414 |32610 |
+ROW |165184 |1414 |32611 |
+ROW |165185 |1421 |32768 |
+ROW |165186 |1421 |32769 |
+ROW |165187 |1421 |32770 |
+ROW |165188 |1421 |32771 |
+ROW |165189 |1421 |32772 |
+ROW |165190 |1421 |32773 |
+ROW |165191 |1422 |32774 |
+ROW |165192 |1422 |32775 |
+ROW |165193 |1283 |30142 |
+ROW |165194 |1286 |30143 |
+ROW |165195 |1292 |30145 |
+ROW |165196 |1295 |30146 |
+ROW |165197 |1284 |30157 |
+ROW |165198 |1284 |30158 |
+ROW |165199 |1284 |30159 |
+ROW |165200 |1287 |30163 |
+ROW |165201 |1287 |30164 |
+ROW |165202 |1287 |30165 |
+ROW |165203 |1293 |30175 |
+ROW |165204 |1293 |30176 |
+ROW |165205 |1293 |30177 |
+ROW |165206 |1296 |30181 |
+ROW |165207 |1296 |30182 |
+ROW |165208 |1296 |30183 |
+ROW |165209 |1419 |32741 |
+ROW |165210 |1420 |32753 |
+ROW |165211 |1221 |22231 |
+ROW |165212 |1221 |22232 |
+ROW |165213 |1221 |23318 |
+ROW |165214 |1222 |29544 |
+ROW |165215 |1223 |29545 |
+ROW |165216 |1223 |29546 |
+ROW |165217 |1224 |29547 |
+ROW |165218 |1225 |10020 |
+ROW |165219 |1225 |10059 |
+ROW |165220 |1226 |22833 |
+ROW |165221 |1226 |22834 |
+ROW |165222 |1228 |22873 |
+ROW |165223 |1228 |22874 |
+ROW |165224 |1230 |22913 |
+ROW |165225 |1230 |22914 |
+ROW |165226 |1232 |22953 |
+ROW |165227 |1232 |22954 |
+ROW |165228 |1234 |22993 |
+ROW |165229 |1234 |22994 |
+ROW |165230 |1236 |23033 |
+ROW |165231 |1236 |23034 |
+ROW |165232 |1238 |23160 |
+ROW |165233 |1238 |23161 |
+ROW |165234 |1225 |23319 |
+ROW |165235 |1226 |23320 |
+ROW |165236 |1228 |23321 |
+ROW |165237 |1230 |23322 |
+ROW |165238 |1232 |23323 |
+ROW |165239 |1234 |23324 |
+ROW |165240 |1236 |23325 |
+ROW |165241 |1238 |23326 |
+ROW |165242 |1161 |29548 |
+ROW |165243 |1227 |29549 |
+ROW |165244 |1229 |29550 |
+ROW |165245 |1231 |29551 |
+ROW |165246 |1233 |29552 |
+ROW |165247 |1235 |29553 |
+ROW |165248 |1237 |29554 |
+ROW |165249 |1219 |29555 |
+ROW |165250 |1241 |29558 |
+ROW |165251 |1242 |29559 |
+ROW |165252 |1241 |29560 |
+ROW |165253 |1269 |29995 |
+ROW |165254 |1192 |29996 |
+ROW |165255 |1269 |29997 |
+ROW |165256 |1240 |23287 |
+ROW |165257 |1240 |23288 |
+ROW |165258 |1240 |23327 |
+ROW |165259 |1171 |29557 |
+ROW |165260 |810 |27203 |
+ROW |165261 |807 |27207 |
+ROW |165262 |806 |27208 |
+ROW |165263 |810 |30086 |
+ROW |165264 |807 |30087 |
+ROW |165265 |807 |30088 |
+ROW |165266 |807 |30089 |
+ROW |165267 |808 |27212 |
+ROW |165268 |809 |27213 |
+ROW |165269 |810 |27214 |
+ROW |165270 |1279 |30091 |
+ROW |165271 |1279 |30092 |
+ROW |165272 |1364 |28305 |
+ROW |165273 |1068 |28323 |
+ROW |165274 |1068 |28324 |
+ROW |165275 |1062 |28325 |
+ROW |165276 |1062 |28326 |
+ROW |165277 |1064 |28327 |
+ROW |165278 |1064 |28328 |
+ROW |165279 |1066 |28329 |
+ROW |165280 |1363 |32307 |
+ROW |165281 |819 |27236 |
+ROW |165282 |819 |27237 |
+ROW |165283 |813 |27238 |
+ROW |165284 |814 |27240 |
+ROW |165285 |815 |30093 |
+ROW |165286 |816 |27246 |
+ROW |165287 |816 |27247 |
+ROW |165288 |817 |27248 |
+ROW |165289 |818 |27249 |
+ROW |165290 |818 |27250 |
+ROW |165291 |826 |27294 |
+ROW |165292 |831 |27295 |
+ROW |165293 |831 |27296 |
+ROW |165294 |835 |27297 |
+ROW |165295 |827 |30094 |
+ROW |165296 |836 |27299 |
+ROW |165297 |838 |27301 |
+ROW |165298 |837 |30095 |
+ROW |165299 |839 |30096 |
+ROW |165300 |829 |27312 |
+ROW |165301 |830 |27313 |
+ROW |165302 |828 |27314 |
+ROW |165303 |828 |27315 |
+ROW |165304 |833 |27316 |
+ROW |165305 |834 |27317 |
+ROW |165306 |832 |27318 |
+ROW |165307 |835 |27319 |
+ROW |165308 |835 |27320 |
+ROW |165309 |1755 |35903 |
+ROW |165310 |1755 |35904 |
+ROW |165311 |1755 |35905 |
+ROW |165312 |1755 |35906 |
+ROW |165313 |1757 |35907 |
+ROW |165314 |1757 |35908 |
+ROW |165315 |1754 |35914 |
+ROW |165316 |1756 |35915 |
+ROW |165317 |1756 |35916 |
+ROW |165318 |1756 |35917 |
+ROW |165319 |1444 |33197 |
+ROW |165320 |1444 |33198 |
+ROW |165321 |1444 |33199 |
+ROW |165322 |1439 |33200 |
+ROW |165323 |1439 |33201 |
+ROW |165324 |1439 |33202 |
+ROW |165325 |1440 |33203 |
+ROW |165326 |1440 |33204 |
+ROW |165327 |1439 |33205 |
+ROW |165328 |1439 |33206 |
+ROW |165329 |1439 |33207 |
+ROW |165330 |1440 |33208 |
+ROW |165331 |1444 |33209 |
+ROW |165332 |1444 |33210 |
+ROW |165333 |1437 |33219 |
+ROW |165334 |1440 |33220 |
+ROW |165335 |1438 |33221 |
+ROW |165336 |1441 |33222 |
+ROW |165337 |1441 |33223 |
+ROW |165338 |1441 |33224 |
+ROW |165339 |1443 |33235 |
+ROW |165340 |1445 |33236 |
+ROW |165341 |1445 |33237 |
+ROW |165342 |1453 |33238 |
+ROW |165343 |1453 |33239 |
+ROW |165344 |1453 |33240 |
+ROW |165345 |1448 |33241 |
+ROW |165346 |1448 |33242 |
+ROW |165347 |1448 |33243 |
+ROW |165348 |1449 |33244 |
+ROW |165349 |1449 |33245 |
+ROW |165350 |1448 |33246 |
+ROW |165351 |1448 |33247 |
+ROW |165352 |1448 |33248 |
+ROW |165353 |1449 |33249 |
+ROW |165354 |1453 |33250 |
+ROW |165355 |1453 |33251 |
+ROW |165356 |1446 |33260 |
+ROW |165357 |1449 |33261 |
+ROW |165358 |1447 |33262 |
+ROW |165359 |1450 |33263 |
+ROW |165360 |1450 |33264 |
+ROW |165361 |1450 |33265 |
+ROW |165362 |1452 |33276 |
+ROW |165363 |1454 |33277 |
+ROW |165364 |1454 |33278 |
+ROW |165365 |1462 |33279 |
+ROW |165366 |1462 |33280 |
+ROW |165367 |1462 |33281 |
+ROW |165368 |1457 |33282 |
+ROW |165369 |1457 |33283 |
+ROW |165370 |1457 |33284 |
+ROW |165371 |1458 |33285 |
+ROW |165372 |1458 |33286 |
+ROW |165373 |1457 |33287 |
+ROW |165374 |1457 |33288 |
+ROW |165375 |1457 |33289 |
+ROW |165376 |1458 |33290 |
+ROW |165377 |1462 |33291 |
+ROW |165378 |1462 |33292 |
+ROW |165379 |1455 |33301 |
+ROW |165380 |1458 |33302 |
+ROW |165381 |1456 |33303 |
+ROW |165382 |1459 |33304 |
+ROW |165383 |1459 |33305 |
+ROW |165384 |1459 |33306 |
+ROW |165385 |1461 |33317 |
+ROW |165386 |1463 |33318 |
+ROW |165387 |1463 |33319 |
+ROW |165388 |1471 |33320 |
+ROW |165389 |1471 |33321 |
+ROW |165390 |1471 |33322 |
+ROW |165391 |1466 |33323 |
+ROW |165392 |1466 |33324 |
+ROW |165393 |1466 |33325 |
+ROW |165394 |1467 |33326 |
+ROW |165395 |1467 |33327 |
+ROW |165396 |1466 |33328 |
+ROW |165397 |1466 |33329 |
+ROW |165398 |1466 |33330 |
+ROW |165399 |1467 |33331 |
+ROW |165400 |1471 |33332 |
+ROW |165401 |1471 |33333 |
+ROW |165402 |1464 |33342 |
+ROW |165403 |1467 |33343 |
+ROW |165404 |1465 |33344 |
+ROW |165405 |1468 |33345 |
+ROW |165406 |1468 |33346 |
+ROW |165407 |1468 |33347 |
+ROW |165408 |1470 |33358 |
+ROW |165409 |1472 |33359 |
+ROW |165410 |1472 |33360 |
+ROW |165411 |1480 |33361 |
+ROW |165412 |1480 |33362 |
+ROW |165413 |1480 |33363 |
+ROW |165414 |1475 |33364 |
+ROW |165415 |1475 |33365 |
+ROW |165416 |1475 |33366 |
+ROW |165417 |1476 |33367 |
+ROW |165418 |1476 |33368 |
+ROW |165419 |1475 |33369 |
+ROW |165420 |1475 |33370 |
+ROW |165421 |1475 |33371 |
+ROW |165422 |1476 |33372 |
+ROW |165423 |1480 |33373 |
+ROW |165424 |1480 |33374 |
+ROW |165425 |1473 |33383 |
+ROW |165426 |1476 |33384 |
+ROW |165427 |1474 |33385 |
+ROW |165428 |1477 |33386 |
+ROW |165429 |1477 |33387 |
+ROW |165430 |1477 |33388 |
+ROW |165431 |1479 |33399 |
+ROW |165432 |1481 |33400 |
+ROW |165433 |1481 |33401 |
+ROW |165434 |851 |27376 |
+ROW |165435 |852 |27378 |
+ROW |165436 |852 |27379 |
+ROW |165437 |852 |30097 |
+ROW |165438 |869 |27380 |
+ROW |165439 |870 |27382 |
+ROW |165440 |870 |27383 |
+ROW |165441 |858 |27385 |
+ROW |165442 |858 |27386 |
+ROW |165443 |1048 |28209 |
+ROW |165444 |1048 |28210 |
+ROW |165445 |858 |30098 |
+ROW |165446 |870 |30099 |
+ROW |165447 |1048 |30100 |
+ROW |165448 |848 |27415 |
+ROW |165449 |848 |27416 |
+ROW |165450 |849 |27417 |
+ROW |165451 |852 |27419 |
+ROW |165452 |853 |27420 |
+ROW |165453 |853 |27421 |
+ROW |165454 |854 |27422 |
+ROW |165455 |855 |27423 |
+ROW |165456 |1056 |28246 |
+ROW |165457 |848 |30101 |
+ROW |165458 |856 |27425 |
+ROW |165459 |856 |27426 |
+ROW |165460 |857 |27427 |
+ROW |165461 |858 |27428 |
+ROW |165462 |859 |27429 |
+ROW |165463 |859 |27430 |
+ROW |165464 |860 |27431 |
+ROW |165465 |861 |27432 |
+ROW |165466 |868 |27443 |
+ROW |165467 |868 |27444 |
+ROW |165468 |870 |27445 |
+ROW |165469 |871 |27446 |
+ROW |165470 |871 |27447 |
+ROW |165471 |872 |27448 |
+ROW |165472 |873 |27449 |
+ROW |165473 |1048 |28208 |
+ROW |165474 |1049 |28215 |
+ROW |165475 |1050 |28216 |
+ROW |165476 |1051 |28217 |
+ROW |165477 |1051 |28218 |
+ROW |165478 |1052 |28220 |
+ROW |165479 |1052 |28222 |
+ROW |165480 |1057 |28247 |
+ROW |165481 |856 |30102 |
+ROW |165482 |868 |30103 |
+ROW |165483 |1052 |30104 |
+ROW |165484 |877 |27478 |
+ROW |165485 |880 |27479 |
+ROW |165486 |881 |27480 |
+ROW |165487 |882 |27481 |
+ROW |165488 |882 |27482 |
+ROW |165489 |882 |27483 |
+ROW |165490 |882 |27484 |
+ROW |165491 |879 |27485 |
+ROW |165492 |878 |30105 |
+ROW |165493 |891 |27508 |
+ROW |165494 |891 |27509 |
+ROW |165495 |891 |27510 |
+ROW |165496 |886 |27511 |
+ROW |165497 |891 |30106 |
+ROW |165498 |888 |27517 |
+ROW |165499 |890 |27518 |
+ROW |165500 |889 |27519 |
+ROW |165501 |887 |30107 |
+ROW |165502 |900 |27543 |
+ROW |165503 |900 |27544 |
+ROW |165504 |900 |27545 |
+ROW |165505 |900 |27546 |
+ROW |165506 |895 |27547 |
+ROW |165507 |897 |27553 |
+ROW |165508 |899 |27554 |
+ROW |165509 |898 |27555 |
+ROW |165510 |896 |30108 |
+ROW |165511 |909 |27579 |
+ROW |165512 |909 |27580 |
+ROW |165513 |909 |27582 |
+ROW |165514 |909 |27583 |
+ROW |165515 |906 |27584 |
+ROW |165516 |906 |27585 |
+ROW |165517 |904 |27586 |
+ROW |165518 |909 |30109 |
+ROW |165519 |905 |27591 |
+ROW |165520 |907 |27593 |
+ROW |165521 |908 |27594 |
+ROW |165522 |908 |27595 |
+ROW |165523 |905 |30110 |
+ROW |165524 |905 |30111 |
+ROW |165525 |1742 |35646 |
+ROW |165526 |1749 |35647 |
+ROW |165527 |1748 |35648 |
+ROW |165528 |1749 |35649 |
+ROW |165529 |1749 |35650 |
+ROW |165530 |1749 |35651 |
+ROW |165531 |1749 |35652 |
+ROW |165532 |1749 |35653 |
+ROW |165533 |1742 |35654 |
+ROW |165534 |1742 |35655 |
+ROW |165535 |1742 |35656 |
+ROW |165536 |1742 |35657 |
+ROW |165537 |1742 |35658 |
+ROW |165538 |1742 |35659 |
+ROW |165539 |1742 |35660 |
+ROW |165540 |1742 |35661 |
+ROW |165541 |1742 |35662 |
+ROW |165542 |1748 |35663 |
+ROW |165543 |1855 |36626 |
+ROW |165544 |1855 |36627 |
+ROW |165545 |1750 |35679 |
+ROW |165546 |1751 |35680 |
+ROW |165547 |1751 |35681 |
+ROW |165548 |1747 |35682 |
+ROW |165549 |1740 |35683 |
+ROW |165550 |1740 |35684 |
+ROW |165551 |1746 |35685 |
+ROW |165552 |1750 |35686 |
+ROW |165553 |1739 |35687 |
+ROW |165554 |1739 |35688 |
+ROW |165555 |1739 |35689 |
+ROW |165556 |1739 |35690 |
+ROW |165557 |1739 |35691 |
+ROW |165558 |1739 |35692 |
+ROW |165559 |1739 |35693 |
+ROW |165560 |1739 |35694 |
+ROW |165561 |1739 |35695 |
+ROW |165562 |1739 |35696 |
+ROW |165563 |1739 |35697 |
+ROW |165564 |1739 |35698 |
+ROW |165565 |1739 |35699 |
+ROW |165566 |1739 |35700 |
+ROW |165567 |1739 |35701 |
+ROW |165568 |1739 |35702 |
+ROW |165569 |1739 |35703 |
+ROW |165570 |1739 |35704 |
+ROW |165571 |1739 |35705 |
+ROW |165572 |1739 |35706 |
+ROW |165573 |1739 |35707 |
+ROW |165574 |1739 |35708 |
+ROW |165575 |1739 |35709 |
+ROW |165576 |1739 |35710 |
+ROW |165577 |1739 |35711 |
+ROW |165578 |1739 |35712 |
+ROW |165579 |1739 |35713 |
+ROW |165580 |1739 |35714 |
+ROW |165581 |1739 |35715 |
+ROW |165582 |1739 |35716 |
+ROW |165583 |1743 |35722 |
+ROW |165584 |1743 |35723 |
+ROW |165585 |1743 |35724 |
+ROW |165586 |1743 |35725 |
+ROW |165587 |1743 |35726 |
+ROW |165588 |1743 |35727 |
+ROW |165589 |1744 |35728 |
+ROW |165590 |1744 |35729 |
+ROW |165591 |1744 |35730 |
+ROW |165592 |1744 |35731 |
+ROW |165593 |919 |27671 |
+ROW |165594 |921 |27672 |
+ROW |165595 |922 |27673 |
+ROW |165596 |923 |27674 |
+ROW |165597 |924 |27675 |
+ROW |165598 |924 |27676 |
+ROW |165599 |924 |27677 |
+ROW |165600 |924 |27678 |
+ROW |165601 |924 |27679 |
+ROW |165602 |920 |30112 |
+ROW |165603 |1036 |28141 |
+ROW |165604 |1036 |28142 |
+ROW |165605 |1031 |28143 |
+ROW |165606 |1033 |28150 |
+ROW |165607 |1032 |28153 |
+ROW |165608 |1034 |28154 |
+ROW |165609 |1035 |28155 |
+ROW |165610 |1033 |28156 |
+ROW |165611 |1036 |28157 |
+ROW |165612 |1036 |28158 |
+ROW |165613 |1032 |30113 |
+ROW |165614 |1032 |30114 |
+ROW |165615 |1032 |30115 |
+ROW |165616 |941 |27748 |
+ROW |165617 |941 |27749 |
+ROW |165618 |941 |27750 |
+ROW |165619 |939 |27751 |
+ROW |165620 |937 |27753 |
+ROW |165621 |941 |27754 |
+ROW |165622 |940 |27755 |
+ROW |165623 |938 |30116 |
+ROW |165624 |948 |27777 |
+ROW |165625 |948 |27778 |
+ROW |165626 |945 |27783 |
+ROW |165627 |945 |27784 |
+ROW |165628 |948 |27785 |
+ROW |165629 |946 |27786 |
+ROW |165630 |947 |27787 |
+ROW |165631 |957 |27812 |
+ROW |165632 |957 |27813 |
+ROW |165633 |951 |27814 |
+ROW |165634 |957 |30117 |
+ROW |165635 |954 |27821 |
+ROW |165636 |956 |27822 |
+ROW |165637 |955 |27823 |
+ROW |165638 |952 |28894 |
+ROW |165639 |953 |30118 |
+ROW |165640 |1486 |33402 |
+ROW |165641 |1486 |33403 |
+ROW |165642 |1486 |33404 |
+ROW |165643 |1483 |33405 |
+ROW |165644 |1483 |33406 |
+ROW |165645 |1482 |33407 |
+ROW |165646 |1483 |33408 |
+ROW |165647 |1483 |33409 |
+ROW |165648 |1483 |33410 |
+ROW |165649 |1483 |33411 |
+ROW |165650 |1486 |33412 |
+ROW |165651 |1486 |33413 |
+ROW |165652 |1044 |28200 |
+ROW |165653 |1044 |28201 |
+ROW |165654 |1045 |28202 |
+ROW |165655 |1045 |28203 |
+ROW |165656 |1047 |28204 |
+ROW |165657 |1047 |28205 |
+ROW |165658 |1046 |28206 |
+ROW |165659 |1484 |33429 |
+ROW |165660 |1484 |33430 |
+ROW |165661 |1484 |33431 |
+ROW |165662 |976 |27893 |
+ROW |165663 |976 |27894 |
+ROW |165664 |976 |27895 |
+ROW |165665 |973 |27898 |
+ROW |165666 |973 |27900 |
+ROW |165667 |976 |30119 |
+ROW |165668 |973 |30120 |
+ROW |165669 |972 |27904 |
+ROW |165670 |974 |27905 |
+ROW |165671 |975 |27906 |
+ROW |165672 |975 |27907 |
+ROW |165673 |975 |27908 |
+ROW |165674 |974 |31790 |
+ROW |165675 |1365 |32308 |
+ROW |165676 |1368 |32309 |
+ROW |165677 |1370 |32310 |
+ROW |165678 |1370 |32311 |
+ROW |165679 |1366 |32312 |
+ROW |165680 |1369 |32313 |
+ROW |165681 |1369 |32314 |
+ROW |165682 |1369 |32315 |
+ROW |165683 |1369 |32316 |
+ROW |165684 |1368 |32317 |
+ROW |165685 |1368 |32318 |
+ROW |165686 |1365 |32319 |
+ROW |165687 |1367 |32320 |
+ROW |165688 |1367 |32321 |
+ROW |165689 |1367 |32322 |
+ROW |165690 |1366 |32323 |
+ROW |165691 |1366 |32324 |
+ROW |165692 |1371 |32325 |
+ROW |165693 |1365 |32326 |
+ROW |165694 |1365 |32327 |
+ROW |165695 |1370 |32328 |
+ROW |165696 |1366 |32330 |
+ROW |165697 |1372 |32331 |
+ROW |165698 |1376 |32332 |
+ROW |165699 |1377 |32333 |
+ROW |165700 |1377 |32334 |
+ROW |165701 |1373 |32335 |
+ROW |165702 |1376 |32336 |
+ROW |165703 |1376 |32337 |
+ROW |165704 |1376 |32338 |
+ROW |165705 |1375 |32339 |
+ROW |165706 |1378 |32340 |
+ROW |165707 |1375 |32341 |
+ROW |165708 |1375 |32342 |
+ROW |165709 |1374 |32343 |
+ROW |165710 |1374 |32344 |
+ROW |165711 |1374 |32345 |
+ROW |165712 |1373 |32346 |
+ROW |165713 |1373 |32347 |
+ROW |165714 |1377 |32348 |
+ROW |165715 |1373 |32350 |
+ROW |165716 |1379 |32351 |
+ROW |165717 |1382 |32352 |
+ROW |165718 |1384 |32353 |
+ROW |165719 |1384 |32354 |
+ROW |165720 |1380 |32355 |
+ROW |165721 |1383 |32356 |
+ROW |165722 |1383 |32357 |
+ROW |165723 |1383 |32358 |
+ROW |165724 |1383 |32359 |
+ROW |165725 |1382 |32360 |
+ROW |165726 |1382 |32361 |
+ROW |165727 |1379 |32362 |
+ROW |165728 |1381 |32363 |
+ROW |165729 |1381 |32364 |
+ROW |165730 |1381 |32365 |
+ROW |165731 |1380 |32366 |
+ROW |165732 |1380 |32367 |
+ROW |165733 |1385 |32368 |
+ROW |165734 |1379 |32369 |
+ROW |165735 |1379 |32370 |
+ROW |165736 |1384 |32371 |
+ROW |165737 |1380 |32373 |
+ROW |165738 |1390 |32374 |
+ROW |165739 |1387 |32375 |
+ROW |165740 |1387 |32376 |
+ROW |165741 |1388 |32377 |
+ROW |165742 |1388 |32378 |
+ROW |165743 |1388 |32379 |
+ROW |165744 |1389 |32380 |
+ROW |165745 |1386 |32382 |
+ROW |165746 |1391 |32383 |
+ROW |165747 |1393 |32384 |
+ROW |165748 |1395 |32385 |
+ROW |165749 |1392 |32386 |
+ROW |165750 |1394 |32387 |
+ROW |165751 |1394 |32388 |
+ROW |165752 |1394 |32389 |
+ROW |165753 |1393 |32390 |
+ROW |165754 |1392 |32391 |
+ROW |165755 |1391 |32392 |
+ROW |165756 |1392 |32393 |
+ROW |165757 |1392 |32394 |
+ROW |165758 |1396 |32395 |
+ROW |165759 |1391 |32396 |
+ROW |165760 |1391 |32397 |
+ROW |165761 |1391 |32398 |
+ROW |165762 |1395 |32399 |
+ROW |165763 |1392 |32401 |
+ROW |165764 |1397 |32402 |
+ROW |165765 |1399 |32403 |
+ROW |165766 |1401 |32404 |
+ROW |165767 |1398 |32405 |
+ROW |165768 |1400 |32406 |
+ROW |165769 |1400 |32407 |
+ROW |165770 |1400 |32408 |
+ROW |165771 |1399 |32409 |
+ROW |165772 |1398 |32410 |
+ROW |165773 |1397 |32411 |
+ROW |165774 |1398 |32412 |
+ROW |165775 |1398 |32413 |
+ROW |165776 |1402 |32414 |
+ROW |165777 |1397 |32415 |
+ROW |165778 |1397 |32416 |
+ROW |165779 |1397 |32417 |
+ROW |165780 |1401 |32418 |
+ROW |165781 |1398 |32420 |
+ROW |165782 |1409 |32421 |
+ROW |165783 |1407 |32422 |
+ROW |165784 |1405 |32423 |
+ROW |165785 |1405 |32424 |
+ROW |165786 |1407 |32425 |
+ROW |165787 |1407 |32426 |
+ROW |165788 |1407 |32427 |
+ROW |165789 |1408 |32428 |
+ROW |165790 |1408 |32429 |
+ROW |165791 |1404 |32436 |
+ROW |165792 |1404 |32437 |
+ROW |165793 |1404 |32438 |
+ROW |165794 |1403 |32439 |
+ROW |165795 |1404 |32440 |
+ROW |165796 |1406 |32441 |
+ROW |165797 |1406 |32442 |
+ROW |165798 |1406 |32443 |
+ROW |165799 |1406 |32444 |
+ROW |165800 |985 |27930 |
+ROW |165801 |985 |27931 |
+ROW |165802 |981 |27935 |
+ROW |165803 |980 |27936 |
+ROW |165804 |985 |30121 |
+ROW |165805 |981 |30122 |
+ROW |165806 |981 |30123 |
+ROW |165807 |982 |27940 |
+ROW |165808 |982 |27941 |
+ROW |165809 |984 |27942 |
+ROW |165810 |983 |27943 |
+ROW |165811 |991 |27967 |
+ROW |165812 |991 |27968 |
+ROW |165813 |991 |27970 |
+ROW |165814 |991 |27971 |
+ROW |165815 |990 |27972 |
+ROW |165816 |990 |27973 |
+ROW |165817 |989 |27975 |
+ROW |165818 |1282 |30124 |
+ROW |165819 |991 |30125 |
+ROW |165820 |990 |30126 |
+ROW |165821 |1280 |30129 |
+ROW |165822 |1281 |30130 |
+ROW |165823 |997 |27997 |
+ROW |165824 |997 |27998 |
+ROW |165825 |997 |27999 |
+ROW |165826 |997 |28000 |
+ROW |165827 |995 |28003 |
+ROW |165828 |996 |30131 |
+ROW |165829 |1003 |28026 |
+ROW |165830 |1003 |28027 |
+ROW |165831 |1001 |28031 |
+ROW |165832 |1002 |30132 |
+ROW |165833 |1002 |30133 |
+ROW |165834 |1002 |30134 |
+ROW |165835 |1002 |30135 |
+ROW |165836 |1002 |30136 |
+ROW |165837 |1761 |35951 |
+ROW |165838 |1758 |35952 |
+ROW |165839 |1758 |35953 |
+ROW |165840 |1758 |35954 |
+ROW |165841 |1758 |35955 |
+ROW |165842 |1758 |35956 |
+ROW |165843 |1758 |35957 |
+ROW |165844 |1758 |35958 |
+ROW |165845 |1761 |35959 |
+ROW |165846 |1761 |35960 |
+ROW |165847 |1762 |35981 |
+ROW |165848 |1760 |35982 |
+ROW |165849 |1768 |35983 |
+ROW |165850 |1764 |35984 |
+ROW |165851 |1763 |35985 |
+ROW |165852 |1764 |35986 |
+ROW |165853 |1764 |35987 |
+ROW |165854 |1764 |35988 |
+ROW |165855 |1764 |35989 |
+ROW |165856 |1764 |35990 |
+ROW |165857 |1764 |35991 |
+ROW |165858 |1768 |35992 |
+ROW |165859 |1765 |35999 |
+ROW |165860 |1769 |36025 |
+ROW |165861 |1767 |36026 |
+ROW |165862 |1775 |36027 |
+ROW |165863 |1772 |36028 |
+ROW |165864 |1770 |36029 |
+ROW |165865 |1772 |36030 |
+ROW |165866 |1772 |36031 |
+ROW |165867 |1772 |36032 |
+ROW |165868 |1772 |36033 |
+ROW |165869 |1772 |36034 |
+ROW |165870 |1772 |36035 |
+ROW |165871 |1775 |36036 |
+ROW |165872 |1771 |36041 |
+ROW |165873 |1776 |36059 |
+ROW |165874 |1774 |36060 |
+ROW |165875 |1783 |36061 |
+ROW |165876 |1779 |36062 |
+ROW |165877 |1779 |36063 |
+ROW |165878 |1779 |36064 |
+ROW |165879 |1779 |36065 |
+ROW |165880 |1779 |36066 |
+ROW |165881 |1783 |36067 |
+ROW |165882 |1778 |36079 |
+ROW |165883 |1791 |36128 |
+ROW |165884 |1787 |36129 |
+ROW |165885 |1787 |36130 |
+ROW |165886 |1787 |36131 |
+ROW |165887 |1787 |36132 |
+ROW |165888 |1787 |36133 |
+ROW |165889 |1791 |36134 |
+ROW |165890 |1786 |36146 |
+ROW |165891 |1797 |36195 |
+ROW |165892 |1794 |36196 |
+ROW |165893 |1794 |36197 |
+ROW |165894 |1794 |36198 |
+ROW |165895 |1794 |36199 |
+ROW |165896 |1794 |36200 |
+ROW |165897 |1794 |36201 |
+ROW |165898 |1794 |36202 |
+ROW |165899 |1797 |36203 |
+ROW |165900 |1797 |36204 |
+ROW |165901 |1793 |36210 |
+ROW |165902 |1798 |36227 |
+ROW |165903 |1796 |36228 |
+ROW |165904 |1802 |36229 |
+ROW |165905 |1800 |36230 |
+ROW |165906 |1799 |36231 |
+ROW |165907 |1800 |36232 |
+ROW |165908 |1800 |36233 |
+ROW |165909 |1800 |36234 |
+ROW |165910 |1800 |36235 |
+ROW |165911 |1800 |36236 |
+ROW |165912 |1800 |36237 |
+ROW |165913 |1802 |36238 |
+ROW |165914 |1808 |36267 |
+ROW |165915 |1804 |36268 |
+ROW |165916 |1803 |36269 |
+ROW |165917 |1804 |36270 |
+ROW |165918 |1804 |36271 |
+ROW |165919 |1804 |36272 |
+ROW |165920 |1804 |36273 |
+ROW |165921 |1804 |36274 |
+ROW |165922 |1804 |36275 |
+ROW |165923 |1808 |36276 |
+ROW |165924 |1805 |36283 |
+ROW |165925 |1809 |36309 |
+ROW |165926 |1807 |36310 |
+ROW |165927 |1815 |36311 |
+ROW |165928 |1811 |36312 |
+ROW |165929 |1810 |36313 |
+ROW |165930 |1811 |36314 |
+ROW |165931 |1811 |36315 |
+ROW |165932 |1811 |36316 |
+ROW |165933 |1811 |36317 |
+ROW |165934 |1811 |36318 |
+ROW |165935 |1811 |36319 |
+ROW |165936 |1815 |36320 |
+ROW |165937 |1812 |36327 |
+ROW |165938 |1816 |36353 |
+ROW |165939 |1814 |36354 |
+ROW |165940 |1822 |36355 |
+ROW |165941 |1819 |36356 |
+ROW |165942 |1817 |36357 |
+ROW |165943 |1819 |36358 |
+ROW |165944 |1819 |36359 |
+ROW |165945 |1819 |36360 |
+ROW |165946 |1819 |36361 |
+ROW |165947 |1819 |36362 |
+ROW |165948 |1819 |36363 |
+ROW |165949 |1822 |36364 |
+ROW |165950 |1818 |36371 |
+ROW |165951 |1823 |36397 |
+ROW |165952 |1821 |36398 |
+ROW |165953 |1829 |36399 |
+ROW |165954 |1826 |36400 |
+ROW |165955 |1824 |36401 |
+ROW |165956 |1826 |36402 |
+ROW |165957 |1826 |36403 |
+ROW |165958 |1826 |36404 |
+ROW |165959 |1826 |36405 |
+ROW |165960 |1826 |36406 |
+ROW |165961 |1826 |36407 |
+ROW |165962 |1829 |36408 |
+ROW |165963 |1825 |36415 |
+ROW |165964 |1830 |36441 |
+ROW |165965 |1828 |36442 |
+ROW |165966 |1837 |36443 |
+ROW |165967 |1833 |36444 |
+ROW |165968 |1831 |36445 |
+ROW |165969 |1833 |36446 |
+ROW |165970 |1833 |36447 |
+ROW |165971 |1833 |36448 |
+ROW |165972 |1834 |36449 |
+ROW |165973 |1833 |36450 |
+ROW |165974 |1833 |36451 |
+ROW |165975 |1833 |36452 |
+ROW |165976 |1837 |36453 |
+ROW |165977 |1832 |36460 |
+ROW |165978 |1838 |36486 |
+ROW |165979 |1836 |36487 |
+ROW |165980 |1845 |36488 |
+ROW |165981 |1841 |36489 |
+ROW |165982 |1839 |36490 |
+ROW |165983 |1841 |36491 |
+ROW |165984 |1841 |36492 |
+ROW |165985 |1841 |36493 |
+ROW |165986 |1842 |36494 |
+ROW |165987 |1841 |36495 |
+ROW |165988 |1841 |36496 |
+ROW |165989 |1841 |36497 |
+ROW |165990 |1845 |36498 |
+ROW |165991 |1840 |36505 |
+ROW |165992 |1846 |36531 |
+ROW |165993 |1844 |36532 |
+ROW |165994 |1853 |36533 |
+ROW |165995 |1849 |36534 |
+ROW |165996 |1847 |36535 |
+ROW |165997 |1849 |36536 |
+ROW |165998 |1849 |36537 |
+ROW |165999 |1849 |36538 |
+ROW |166000 |1849 |36539 |
+ROW |166001 |1849 |36540 |
+ROW |166002 |1849 |36541 |
+ROW |166003 |1853 |36542 |
+ROW |166004 |1848 |36550 |
+ROW |166005 |1850 |36551 |
+ROW |166006 |1854 |36577 |
+ROW |166007 |1852 |36578 |
+ROW |166008 |1142 |29087 |
+ROW |166009 |1142 |29088 |
+ROW |166010 |1142 |29089 |
+ROW |166011 |1142 |29090 |
+ROW |166012 |1142 |29091 |
+ROW |166013 |1142 |29092 |
+ROW |166014 |1142 |29093 |
+ROW |166015 |1142 |29094 |
+ROW |166016 |1142 |29095 |
+ROW |166017 |1142 |29096 |
+ROW |166018 |1142 |29097 |
+ROW |166019 |1142 |29098 |
+ROW |166020 |1142 |29099 |
+ROW |166021 |1142 |29100 |
+ROW |166022 |1142 |29101 |
+ROW |166023 |1142 |29102 |
+ROW |166024 |1144 |29103 |
+ROW |166025 |1144 |29104 |
+ROW |166026 |1144 |29105 |
+ROW |166027 |1144 |29106 |
+ROW |166028 |1144 |29107 |
+ROW |166029 |1144 |29108 |
+ROW |166030 |1151 |29110 |
+ROW |166031 |1148 |29111 |
+ROW |166032 |1148 |29112 |
+ROW |166033 |1148 |29113 |
+ROW |166034 |1148 |29114 |
+ROW |166035 |1148 |29115 |
+ROW |166036 |1148 |29116 |
+ROW |166037 |1148 |29117 |
+ROW |166038 |1148 |29118 |
+ROW |166039 |1148 |29119 |
+ROW |166040 |1150 |29120 |
+ROW |166041 |1149 |29121 |
+ROW |166042 |1149 |29122 |
+ROW |166043 |1149 |29123 |
+ROW |166044 |1152 |29124 |
+ROW |166045 |1152 |29125 |
+ROW |166046 |1152 |29126 |
+ROW |166047 |1152 |29127 |
+ROW |166048 |1152 |29128 |
+ROW |166049 |1152 |29129 |
+ROW |166050 |1152 |29130 |
+ROW |166051 |1152 |29131 |
+ROW |166052 |1152 |29132 |
+ROW |166053 |1152 |29133 |
+ROW |166054 |1152 |29134 |
+ROW |166055 |1152 |29135 |
+ROW |166056 |1152 |29136 |
+ROW |166057 |1152 |29137 |
+ROW |166058 |1152 |29138 |
+ROW |166059 |1152 |29139 |
+ROW |166060 |1154 |29140 |
+ROW |166061 |1154 |29141 |
+ROW |166062 |1154 |29142 |
+ROW |166063 |1154 |29143 |
+ROW |166064 |1154 |29144 |
+ROW |166065 |1154 |29145 |
+ROW |166066 |1161 |29147 |
+ROW |166067 |1158 |29148 |
+ROW |166068 |1158 |29149 |
+ROW |166069 |1158 |29150 |
+ROW |166070 |1158 |29151 |
+ROW |166071 |1158 |29152 |
+ROW |166072 |1158 |29153 |
+ROW |166073 |1158 |29154 |
+ROW |166074 |1158 |29155 |
+ROW |166075 |1158 |29156 |
+ROW |166076 |1160 |29157 |
+ROW |166077 |1159 |29158 |
+ROW |166078 |1159 |29159 |
+ROW |166079 |1159 |29160 |
+ROW |166080 |1162 |29161 |
+ROW |166081 |1162 |29162 |
+ROW |166082 |1162 |29163 |
+ROW |166083 |1162 |29164 |
+ROW |166084 |1162 |29165 |
+ROW |166085 |1162 |29166 |
+ROW |166086 |1162 |29167 |
+ROW |166087 |1162 |29168 |
+ROW |166088 |1162 |29169 |
+ROW |166089 |1162 |29170 |
+ROW |166090 |1162 |29171 |
+ROW |166091 |1162 |29172 |
+ROW |166092 |1162 |29173 |
+ROW |166093 |1162 |29174 |
+ROW |166094 |1162 |29175 |
+ROW |166095 |1162 |29176 |
+ROW |166096 |1164 |29177 |
+ROW |166097 |1164 |29178 |
+ROW |166098 |1164 |29179 |
+ROW |166099 |1164 |29180 |
+ROW |166100 |1164 |29181 |
+ROW |166101 |1164 |29182 |
+ROW |166102 |1171 |29184 |
+ROW |166103 |1168 |29185 |
+ROW |166104 |1168 |29186 |
+ROW |166105 |1168 |29187 |
+ROW |166106 |1168 |29188 |
+ROW |166107 |1168 |29189 |
+ROW |166108 |1168 |29190 |
+ROW |166109 |1168 |29191 |
+ROW |166110 |1168 |29192 |
+ROW |166111 |1168 |29193 |
+ROW |166112 |1170 |29194 |
+ROW |166113 |1169 |29195 |
+ROW |166114 |1169 |29196 |
+ROW |166115 |1169 |29197 |
+ROW |166116 |1142 |29198 |
+ROW |166117 |1144 |31270 |
+ROW |166118 |1152 |29199 |
+ROW |166119 |1154 |31271 |
+ROW |166120 |1162 |29200 |
+ROW |166121 |1164 |31272 |
+ROW |166122 |1146 |31278 |
+ROW |166123 |1156 |31281 |
+ROW |166124 |1166 |31284 |
+ROW |166125 |1146 |31287 |
+ROW |166126 |1146 |31290 |
+ROW |166127 |1156 |31293 |
+ROW |166128 |1156 |31296 |
+ROW |166129 |1166 |31299 |
+ROW |166130 |1166 |31302 |
+ROW |166131 |1173 |29273 |
+ROW |166132 |1173 |29274 |
+ROW |166133 |1173 |29275 |
+ROW |166134 |1173 |29276 |
+ROW |166135 |1173 |29277 |
+ROW |166136 |1173 |29278 |
+ROW |166137 |1173 |29279 |
+ROW |166138 |1173 |29280 |
+ROW |166139 |1173 |29281 |
+ROW |166140 |1173 |29282 |
+ROW |166141 |1173 |29283 |
+ROW |166142 |1173 |29284 |
+ROW |166143 |1173 |29285 |
+ROW |166144 |1173 |29286 |
+ROW |166145 |1173 |29287 |
+ROW |166146 |1173 |29288 |
+ROW |166147 |1175 |29289 |
+ROW |166148 |1175 |29290 |
+ROW |166149 |1175 |29291 |
+ROW |166150 |1175 |29292 |
+ROW |166151 |1175 |29293 |
+ROW |166152 |1175 |29294 |
+ROW |166153 |1182 |29296 |
+ROW |166154 |1179 |29297 |
+ROW |166155 |1179 |29298 |
+ROW |166156 |1179 |29299 |
+ROW |166157 |1179 |29300 |
+ROW |166158 |1179 |29301 |
+ROW |166159 |1179 |29302 |
+ROW |166160 |1179 |29303 |
+ROW |166161 |1179 |29304 |
+ROW |166162 |1179 |29305 |
+ROW |166163 |1181 |29306 |
+ROW |166164 |1180 |29307 |
+ROW |166165 |1180 |29308 |
+ROW |166166 |1180 |29309 |
+ROW |166167 |1183 |29310 |
+ROW |166168 |1183 |29311 |
+ROW |166169 |1183 |29312 |
+ROW |166170 |1183 |29313 |
+ROW |166171 |1183 |29314 |
+ROW |166172 |1183 |29315 |
+ROW |166173 |1183 |29316 |
+ROW |166174 |1183 |29317 |
+ROW |166175 |1183 |29318 |
+ROW |166176 |1183 |29319 |
+ROW |166177 |1183 |29320 |
+ROW |166178 |1183 |29321 |
+ROW |166179 |1183 |29322 |
+ROW |166180 |1183 |29323 |
+ROW |166181 |1183 |29324 |
+ROW |166182 |1183 |29325 |
+ROW |166183 |1185 |29326 |
+ROW |166184 |1185 |29327 |
+ROW |166185 |1185 |29328 |
+ROW |166186 |1185 |29329 |
+ROW |166187 |1185 |29330 |
+ROW |166188 |1185 |29331 |
+ROW |166189 |1192 |29333 |
+ROW |166190 |1189 |29334 |
+ROW |166191 |1189 |29335 |
+ROW |166192 |1189 |29336 |
+ROW |166193 |1189 |29337 |
+ROW |166194 |1189 |29338 |
+ROW |166195 |1189 |29339 |
+ROW |166196 |1189 |29340 |
+ROW |166197 |1189 |29341 |
+ROW |166198 |1189 |29342 |
+ROW |166199 |1191 |29343 |
+ROW |166200 |1190 |29344 |
+ROW |166201 |1190 |29345 |
+ROW |166202 |1190 |29346 |
+ROW |166203 |1173 |29347 |
+ROW |166204 |1175 |31303 |
+ROW |166205 |1183 |29348 |
+ROW |166206 |1185 |31304 |
+ROW |166207 |1177 |31309 |
+ROW |166208 |1187 |31312 |
+ROW |166209 |1177 |31315 |
+ROW |166210 |1177 |31318 |
+ROW |166211 |1187 |31321 |
+ROW |166212 |1187 |31324 |
+ROW |166213 |1201 |29395 |
+ROW |166214 |1196 |29396 |
+ROW |166215 |1196 |29397 |
+ROW |166216 |1194 |29398 |
+ROW |166217 |1193 |29399 |
+ROW |166218 |1196 |29400 |
+ROW |166219 |1196 |29401 |
+ROW |166220 |1196 |29402 |
+ROW |166221 |1196 |29403 |
+ROW |166222 |1194 |29404 |
+ROW |166223 |1193 |29405 |
+ROW |166224 |1193 |29406 |
+ROW |166225 |1193 |29407 |
+ROW |166226 |1193 |29408 |
+ROW |166227 |1193 |29409 |
+ROW |166228 |1193 |29410 |
+ROW |166229 |1193 |29411 |
+ROW |166230 |1193 |29412 |
+ROW |166231 |1193 |29413 |
+ROW |166232 |1194 |29414 |
+ROW |166233 |1197 |29415 |
+ROW |166234 |1193 |29416 |
+ROW |166235 |1193 |29417 |
+ROW |166236 |1193 |29418 |
+ROW |166237 |1193 |29419 |
+ROW |166238 |1193 |29420 |
+ROW |166239 |1199 |29421 |
+ROW |166240 |1195 |29422 |
+ROW |166241 |1194 |29423 |
+ROW |166242 |1194 |29424 |
+ROW |166243 |1194 |29425 |
+ROW |166244 |1193 |29426 |
+ROW |166245 |1193 |29427 |
+ROW |166246 |1195 |29428 |
+ROW |166247 |1201 |29450 |
+ROW |166248 |1201 |29451 |
+ROW |166249 |1128 |28978 |
+ROW |166250 |1128 |28979 |
+ROW |166251 |1128 |28980 |
+ROW |166252 |1128 |28981 |
+ROW |166253 |1128 |28982 |
+ROW |166254 |1128 |28983 |
+ROW |166255 |1128 |28984 |
+ROW |166256 |1128 |28985 |
+ROW |166257 |1128 |28986 |
+ROW |166258 |1130 |28987 |
+ROW |166259 |1130 |28988 |
+ROW |166260 |1130 |28989 |
+ROW |166261 |1130 |28990 |
+ROW |166262 |1130 |28991 |
+ROW |166263 |1130 |28992 |
+ROW |166264 |1132 |28993 |
+ROW |166265 |1132 |28994 |
+ROW |166266 |1132 |28995 |
+ROW |166267 |1132 |28996 |
+ROW |166268 |1132 |28997 |
+ROW |166269 |1132 |28998 |
+ROW |166270 |1132 |28999 |
+ROW |166271 |1132 |29000 |
+ROW |166272 |1132 |29001 |
+ROW |166273 |1134 |29002 |
+ROW |166274 |1134 |29003 |
+ROW |166275 |1134 |29004 |
+ROW |166276 |1134 |29005 |
+ROW |166277 |1134 |29006 |
+ROW |166278 |1134 |29007 |
+ROW |166279 |1130 |29017 |
+ROW |166280 |1130 |29018 |
+ROW |166281 |1130 |29019 |
+ROW |166282 |1130 |29020 |
+ROW |166283 |1130 |29021 |
+ROW |166284 |1130 |29022 |
+ROW |166285 |1130 |29023 |
+ROW |166286 |1130 |29024 |
+ROW |166287 |1130 |29025 |
+ROW |166288 |1130 |29026 |
+ROW |166289 |1134 |29034 |
+ROW |166290 |1134 |29035 |
+ROW |166291 |1134 |29036 |
+ROW |166292 |1134 |29037 |
+ROW |166293 |1134 |29038 |
+ROW |166294 |1134 |29039 |
+ROW |166295 |1134 |29040 |
+ROW |166296 |1134 |29041 |
+ROW |166297 |1134 |29042 |
+ROW |166298 |1134 |29043 |
+ROW |166299 |1130 |29048 |
+ROW |166300 |1134 |29049 |
+ROW |166301 |1202 |29454 |
+ROW |166302 |1202 |29455 |
+ROW |166303 |1202 |29456 |
+ROW |166304 |1202 |29457 |
+ROW |166305 |1202 |29458 |
+ROW |166306 |1202 |29459 |
+ROW |166307 |1203 |29460 |
+ROW |166308 |1203 |29461 |
+ROW |166309 |1203 |29462 |
+ROW |166310 |1203 |29463 |
+ROW |166311 |1203 |29466 |
+ROW |166312 |1203 |29467 |
+ROW |166313 |1203 |29468 |
+ROW |166314 |1203 |29469 |
+ROW |166315 |1203 |29470 |
+ROW |166316 |1209 |29472 |
+ROW |166317 |1207 |29473 |
+ROW |166318 |1207 |29474 |
+ROW |166319 |1207 |29475 |
+ROW |166320 |1207 |29476 |
+ROW |166321 |1207 |29477 |
+ROW |166322 |1208 |29478 |
+ROW |166323 |1202 |30137 |
+ROW |166324 |1202 |31325 |
+ROW |166325 |1203 |31326 |
+ROW |166326 |1203 |31327 |
+ROW |166327 |1211 |36579 |
+ROW |166328 |1212 |29480 |
+ROW |166329 |1212 |29481 |
+ROW |166330 |1212 |29482 |
+ROW |166331 |1212 |29483 |
+ROW |166332 |1212 |29484 |
+ROW |166333 |1212 |29485 |
+ROW |166334 |1213 |29486 |
+ROW |166335 |1213 |29487 |
+ROW |166336 |1213 |29488 |
+ROW |166337 |1213 |29489 |
+ROW |166338 |1213 |29492 |
+ROW |166339 |1213 |29493 |
+ROW |166340 |1213 |29494 |
+ROW |166341 |1213 |29495 |
+ROW |166342 |1213 |29496 |
+ROW |166343 |1219 |29498 |
+ROW |166344 |1217 |29499 |
+ROW |166345 |1217 |29500 |
+ROW |166346 |1217 |29501 |
+ROW |166347 |1217 |29502 |
+ROW |166348 |1217 |29503 |
+ROW |166349 |1218 |29504 |
+ROW |166350 |1212 |30138 |
+ROW |166351 |1212 |31328 |
+ROW |166352 |1213 |31329 |
+ROW |166353 |1213 |31330 |
+ROW |166354 |1216 |36580 |
+ROW |166355 |1203 |31331 |
+ROW |166356 |1213 |31332 |
+ROW |166357 |1310 |30425 |
+ROW |166358 |1311 |30426 |
+ROW |166359 |1243 |29561 |
+ROW |166360 |1243 |29562 |
+ROW |166361 |1243 |29563 |
+ROW |166362 |1243 |29564 |
+ROW |166363 |1243 |29565 |
+ROW |166364 |1243 |29566 |
+ROW |166365 |1244 |29567 |
+ROW |166366 |1244 |29568 |
+ROW |166367 |1244 |29569 |
+ROW |166368 |1244 |29570 |
+ROW |166369 |1244 |29573 |
+ROW |166370 |1244 |29574 |
+ROW |166371 |1244 |29575 |
+ROW |166372 |1244 |29576 |
+ROW |166373 |1244 |29577 |
+ROW |166374 |1250 |29579 |
+ROW |166375 |1248 |29580 |
+ROW |166376 |1248 |29581 |
+ROW |166377 |1248 |29582 |
+ROW |166378 |1248 |29583 |
+ROW |166379 |1248 |29584 |
+ROW |166380 |1249 |29585 |
+ROW |166381 |1243 |30139 |
+ROW |166382 |1243 |31343 |
+ROW |166383 |1244 |31344 |
+ROW |166384 |1244 |31345 |
+ROW |166385 |1252 |36601 |
+ROW |166386 |1253 |29587 |
+ROW |166387 |1253 |29588 |
+ROW |166388 |1253 |29589 |
+ROW |166389 |1253 |29590 |
+ROW |166390 |1253 |29591 |
+ROW |166391 |1253 |29592 |
+ROW |166392 |1254 |29593 |
+ROW |166393 |1254 |29594 |
+ROW |166394 |1254 |29595 |
+ROW |166395 |1254 |29596 |
+ROW |166396 |1254 |29599 |
+ROW |166397 |1254 |29600 |
+ROW |166398 |1254 |29601 |
+ROW |166399 |1254 |29602 |
+ROW |166400 |1254 |29603 |
+ROW |166401 |1242 |29605 |
+ROW |166402 |1258 |29606 |
+ROW |166403 |1258 |29607 |
+ROW |166404 |1258 |29608 |
+ROW |166405 |1258 |29609 |
+ROW |166406 |1258 |29610 |
+ROW |166407 |1259 |29611 |
+ROW |166408 |1253 |30140 |
+ROW |166409 |1253 |31346 |
+ROW |166410 |1254 |31347 |
+ROW |166411 |1254 |31348 |
+ROW |166412 |1257 |36602 |
+ROW |166413 |1244 |31349 |
+ROW |166414 |1254 |31350 |
+ROW |166415 |1312 |30429 |
+ROW |166416 |1313 |30430 |
+ROW |166417 |1493 |33568 |
+ROW |166418 |1493 |33569 |
+ROW |166419 |1493 |33570 |
+ROW |166420 |1492 |33571 |
+ROW |166421 |1492 |33572 |
+ROW |166422 |1492 |33574 |
+ROW |166423 |1492 |33575 |
+ROW |166424 |1492 |33576 |
+ROW |166425 |1492 |33577 |
+ROW |166426 |1492 |33578 |
+ROW |166427 |1493 |33579 |
+ROW |166428 |1493 |33580 |
+ROW |166429 |1493 |33581 |
+ROW |166430 |1493 |33582 |
+ROW |166431 |1493 |33583 |
+ROW |166432 |1493 |33584 |
+ROW |166433 |1493 |33585 |
+ROW |166434 |1493 |33589 |
+ROW |166435 |1493 |33590 |
+ROW |166436 |1493 |33591 |
+ROW |166437 |1493 |33592 |
+ROW |166438 |1493 |33593 |
+ROW |166439 |1493 |33594 |
+ROW |166440 |1493 |33595 |
+ROW |166441 |1492 |34083 |
+ROW |166442 |1493 |33602 |
+ROW |166443 |1493 |33603 |
+ROW |166444 |1493 |33604 |
+ROW |166445 |1493 |33605 |
+ROW |166446 |1493 |33606 |
+ROW |166447 |1492 |33607 |
+ROW |166448 |1493 |33608 |
+ROW |166449 |1493 |33609 |
+ROW |166450 |1493 |33610 |
+ROW |166451 |1493 |33611 |
+ROW |166452 |1493 |33612 |
+ROW |166453 |1493 |33613 |
+ROW |166454 |1493 |33614 |
+ROW |166455 |1493 |33615 |
+ROW |166456 |1493 |33616 |
+ROW |166457 |1493 |33617 |
+ROW |166458 |1493 |33618 |
+ROW |166459 |1495 |33619 |
+ROW |166460 |1495 |33620 |
+ROW |166461 |1495 |33621 |
+ROW |166462 |1494 |33622 |
+ROW |166463 |1494 |33623 |
+ROW |166464 |1494 |33625 |
+ROW |166465 |1494 |33626 |
+ROW |166466 |1494 |33627 |
+ROW |166467 |1494 |33628 |
+ROW |166468 |1494 |33629 |
+ROW |166469 |1495 |33630 |
+ROW |166470 |1495 |33631 |
+ROW |166471 |1495 |33632 |
+ROW |166472 |1495 |33633 |
+ROW |166473 |1495 |33634 |
+ROW |166474 |1495 |33635 |
+ROW |166475 |1495 |33636 |
+ROW |166476 |1495 |33640 |
+ROW |166477 |1495 |33641 |
+ROW |166478 |1495 |33642 |
+ROW |166479 |1495 |33643 |
+ROW |166480 |1495 |33644 |
+ROW |166481 |1495 |33645 |
+ROW |166482 |1495 |33646 |
+ROW |166483 |1494 |34084 |
+ROW |166484 |1495 |33653 |
+ROW |166485 |1495 |33654 |
+ROW |166486 |1495 |33655 |
+ROW |166487 |1495 |33656 |
+ROW |166488 |1495 |33657 |
+ROW |166489 |1494 |33658 |
+ROW |166490 |1495 |33659 |
+ROW |166491 |1495 |33660 |
+ROW |166492 |1495 |33661 |
+ROW |166493 |1495 |33662 |
+ROW |166494 |1495 |33663 |
+ROW |166495 |1495 |33664 |
+ROW |166496 |1495 |33665 |
+ROW |166497 |1495 |33666 |
+ROW |166498 |1495 |33667 |
+ROW |166499 |1495 |33668 |
+ROW |166500 |1495 |33669 |
+ROW |166501 |1497 |33670 |
+ROW |166502 |1497 |33671 |
+ROW |166503 |1497 |33672 |
+ROW |166504 |1496 |33673 |
+ROW |166505 |1496 |33674 |
+ROW |166506 |1496 |33676 |
+ROW |166507 |1496 |33677 |
+ROW |166508 |1496 |33678 |
+ROW |166509 |1496 |33679 |
+ROW |166510 |1496 |33680 |
+ROW |166511 |1497 |33681 |
+ROW |166512 |1497 |33682 |
+ROW |166513 |1497 |33683 |
+ROW |166514 |1497 |33684 |
+ROW |166515 |1497 |33685 |
+ROW |166516 |1497 |33686 |
+ROW |166517 |1497 |33687 |
+ROW |166518 |1497 |33691 |
+ROW |166519 |1497 |33692 |
+ROW |166520 |1497 |33693 |
+ROW |166521 |1497 |33694 |
+ROW |166522 |1497 |33695 |
+ROW |166523 |1497 |33696 |
+ROW |166524 |1497 |33697 |
+ROW |166525 |1496 |34085 |
+ROW |166526 |1497 |33704 |
+ROW |166527 |1497 |33705 |
+ROW |166528 |1497 |33706 |
+ROW |166529 |1497 |33707 |
+ROW |166530 |1497 |33708 |
+ROW |166531 |1496 |33709 |
+ROW |166532 |1497 |33710 |
+ROW |166533 |1497 |33711 |
+ROW |166534 |1497 |33712 |
+ROW |166535 |1497 |33713 |
+ROW |166536 |1497 |33714 |
+ROW |166537 |1497 |33715 |
+ROW |166538 |1497 |33716 |
+ROW |166539 |1497 |33717 |
+ROW |166540 |1497 |33718 |
+ROW |166541 |1497 |33719 |
+ROW |166542 |1497 |33720 |
+ROW |166543 |1499 |33721 |
+ROW |166544 |1499 |33722 |
+ROW |166545 |1499 |33723 |
+ROW |166546 |1498 |33724 |
+ROW |166547 |1498 |33725 |
+ROW |166548 |1498 |33727 |
+ROW |166549 |1498 |33728 |
+ROW |166550 |1498 |33729 |
+ROW |166551 |1498 |33730 |
+ROW |166552 |1498 |33731 |
+ROW |166553 |1499 |33732 |
+ROW |166554 |1499 |33733 |
+ROW |166555 |1499 |33734 |
+ROW |166556 |1499 |33735 |
+ROW |166557 |1499 |33736 |
+ROW |166558 |1499 |33737 |
+ROW |166559 |1499 |33738 |
+ROW |166560 |1499 |33742 |
+ROW |166561 |1499 |33743 |
+ROW |166562 |1499 |33744 |
+ROW |166563 |1499 |33745 |
+ROW |166564 |1499 |33746 |
+ROW |166565 |1499 |33747 |
+ROW |166566 |1499 |33748 |
+ROW |166567 |1498 |34086 |
+ROW |166568 |1499 |33755 |
+ROW |166569 |1499 |33756 |
+ROW |166570 |1499 |33757 |
+ROW |166571 |1499 |33758 |
+ROW |166572 |1499 |33759 |
+ROW |166573 |1498 |33760 |
+ROW |166574 |1499 |33761 |
+ROW |166575 |1499 |33762 |
+ROW |166576 |1499 |33763 |
+ROW |166577 |1499 |33764 |
+ROW |166578 |1499 |33765 |
+ROW |166579 |1499 |33766 |
+ROW |166580 |1499 |33767 |
+ROW |166581 |1499 |33768 |
+ROW |166582 |1499 |33769 |
+ROW |166583 |1499 |33770 |
+ROW |166584 |1499 |33771 |
+ROW |166585 |1501 |33772 |
+ROW |166586 |1501 |33773 |
+ROW |166587 |1501 |33774 |
+ROW |166588 |1500 |33775 |
+ROW |166589 |1500 |33776 |
+ROW |166590 |1500 |33778 |
+ROW |166591 |1500 |33779 |
+ROW |166592 |1500 |33780 |
+ROW |166593 |1500 |33781 |
+ROW |166594 |1500 |33782 |
+ROW |166595 |1501 |33783 |
+ROW |166596 |1501 |33784 |
+ROW |166597 |1501 |33785 |
+ROW |166598 |1501 |33786 |
+ROW |166599 |1501 |33787 |
+ROW |166600 |1501 |33788 |
+ROW |166601 |1501 |33789 |
+ROW |166602 |1501 |33793 |
+ROW |166603 |1501 |33794 |
+ROW |166604 |1501 |33795 |
+ROW |166605 |1501 |33796 |
+ROW |166606 |1501 |33797 |
+ROW |166607 |1501 |33798 |
+ROW |166608 |1501 |33799 |
+ROW |166609 |1500 |34087 |
+ROW |166610 |1501 |33806 |
+ROW |166611 |1501 |33807 |
+ROW |166612 |1501 |33808 |
+ROW |166613 |1501 |33809 |
+ROW |166614 |1501 |33810 |
+ROW |166615 |1500 |33811 |
+ROW |166616 |1501 |33812 |
+ROW |166617 |1501 |33813 |
+ROW |166618 |1501 |33814 |
+ROW |166619 |1501 |33815 |
+ROW |166620 |1501 |33816 |
+ROW |166621 |1501 |33817 |
+ROW |166622 |1501 |33818 |
+ROW |166623 |1501 |33819 |
+ROW |166624 |1501 |33820 |
+ROW |166625 |1501 |33821 |
+ROW |166626 |1501 |33822 |
+ROW |166627 |1503 |33823 |
+ROW |166628 |1503 |33824 |
+ROW |166629 |1503 |33825 |
+ROW |166630 |1502 |33826 |
+ROW |166631 |1502 |33827 |
+ROW |166632 |1502 |33829 |
+ROW |166633 |1502 |33830 |
+ROW |166634 |1502 |33831 |
+ROW |166635 |1502 |33832 |
+ROW |166636 |1502 |33833 |
+ROW |166637 |1503 |33834 |
+ROW |166638 |1503 |33835 |
+ROW |166639 |1503 |33836 |
+ROW |166640 |1503 |33837 |
+ROW |166641 |1503 |33838 |
+ROW |166642 |1503 |33839 |
+ROW |166643 |1503 |33840 |
+ROW |166644 |1503 |33844 |
+ROW |166645 |1503 |33845 |
+ROW |166646 |1503 |33846 |
+ROW |166647 |1503 |33847 |
+ROW |166648 |1503 |33848 |
+ROW |166649 |1503 |33849 |
+ROW |166650 |1503 |33850 |
+ROW |166651 |1502 |34088 |
+ROW |166652 |1503 |33857 |
+ROW |166653 |1503 |33858 |
+ROW |166654 |1503 |33859 |
+ROW |166655 |1503 |33860 |
+ROW |166656 |1503 |33861 |
+ROW |166657 |1502 |33862 |
+ROW |166658 |1503 |33863 |
+ROW |166659 |1503 |33864 |
+ROW |166660 |1503 |33865 |
+ROW |166661 |1503 |33866 |
+ROW |166662 |1503 |33867 |
+ROW |166663 |1503 |33868 |
+ROW |166664 |1503 |33869 |
+ROW |166665 |1503 |33870 |
+ROW |166666 |1503 |33871 |
+ROW |166667 |1503 |33872 |
+ROW |166668 |1503 |33873 |
+ROW |166669 |1505 |33874 |
+ROW |166670 |1505 |33875 |
+ROW |166671 |1505 |33876 |
+ROW |166672 |1504 |33877 |
+ROW |166673 |1504 |33878 |
+ROW |166674 |1504 |33880 |
+ROW |166675 |1504 |33881 |
+ROW |166676 |1504 |33882 |
+ROW |166677 |1504 |33883 |
+ROW |166678 |1504 |33884 |
+ROW |166679 |1505 |33885 |
+ROW |166680 |1505 |33886 |
+ROW |166681 |1505 |33887 |
+ROW |166682 |1505 |33888 |
+ROW |166683 |1505 |33889 |
+ROW |166684 |1505 |33890 |
+ROW |166685 |1505 |33891 |
+ROW |166686 |1505 |33895 |
+ROW |166687 |1505 |33896 |
+ROW |166688 |1505 |33897 |
+ROW |166689 |1505 |33898 |
+ROW |166690 |1505 |33899 |
+ROW |166691 |1505 |33900 |
+ROW |166692 |1505 |33901 |
+ROW |166693 |1504 |34089 |
+ROW |166694 |1505 |33908 |
+ROW |166695 |1505 |33909 |
+ROW |166696 |1505 |33910 |
+ROW |166697 |1505 |33911 |
+ROW |166698 |1505 |33912 |
+ROW |166699 |1504 |33913 |
+ROW |166700 |1505 |33914 |
+ROW |166701 |1505 |33915 |
+ROW |166702 |1505 |33916 |
+ROW |166703 |1505 |33917 |
+ROW |166704 |1505 |33918 |
+ROW |166705 |1505 |33919 |
+ROW |166706 |1505 |33920 |
+ROW |166707 |1505 |33921 |
+ROW |166708 |1505 |33922 |
+ROW |166709 |1505 |33923 |
+ROW |166710 |1505 |33924 |
+ROW |166711 |1489 |33433 |
+ROW |166712 |1489 |33434 |
+ROW |166713 |1488 |33435 |
+ROW |166714 |1488 |33436 |
+ROW |166715 |1488 |33438 |
+ROW |166716 |1488 |33439 |
+ROW |166717 |1488 |33440 |
+ROW |166718 |1488 |33441 |
+ROW |166719 |1488 |33442 |
+ROW |166720 |1489 |33443 |
+ROW |166721 |1489 |33444 |
+ROW |166722 |1489 |33445 |
+ROW |166723 |1489 |33446 |
+ROW |166724 |1489 |33447 |
+ROW |166725 |1489 |33448 |
+ROW |166726 |1489 |33449 |
+ROW |166727 |1489 |33453 |
+ROW |166728 |1489 |33454 |
+ROW |166729 |1489 |33455 |
+ROW |166730 |1489 |33456 |
+ROW |166731 |1489 |33457 |
+ROW |166732 |1489 |33458 |
+ROW |166733 |1489 |33459 |
+ROW |166734 |1489 |33925 |
+ROW |166735 |1488 |34090 |
+ROW |166736 |1489 |33465 |
+ROW |166737 |1489 |33466 |
+ROW |166738 |1489 |33467 |
+ROW |166739 |1489 |33468 |
+ROW |166740 |1489 |33469 |
+ROW |166741 |1488 |33470 |
+ROW |166742 |1489 |33471 |
+ROW |166743 |1489 |33472 |
+ROW |166744 |1489 |33473 |
+ROW |166745 |1489 |33474 |
+ROW |166746 |1489 |33475 |
+ROW |166747 |1489 |33476 |
+ROW |166748 |1489 |33477 |
+ROW |166749 |1489 |33478 |
+ROW |166750 |1489 |33927 |
+ROW |166751 |1489 |33928 |
+ROW |166752 |1489 |33929 |
+ROW |166753 |1507 |33930 |
+ROW |166754 |1507 |33931 |
+ROW |166755 |1507 |33932 |
+ROW |166756 |1506 |33933 |
+ROW |166757 |1506 |33934 |
+ROW |166758 |1506 |33936 |
+ROW |166759 |1506 |33937 |
+ROW |166760 |1506 |33938 |
+ROW |166761 |1506 |33939 |
+ROW |166762 |1506 |33940 |
+ROW |166763 |1507 |33941 |
+ROW |166764 |1507 |33942 |
+ROW |166765 |1507 |33943 |
+ROW |166766 |1507 |33944 |
+ROW |166767 |1507 |33945 |
+ROW |166768 |1507 |33946 |
+ROW |166769 |1507 |33947 |
+ROW |166770 |1507 |33951 |
+ROW |166771 |1507 |33952 |
+ROW |166772 |1507 |33953 |
+ROW |166773 |1507 |33954 |
+ROW |166774 |1507 |33955 |
+ROW |166775 |1507 |33956 |
+ROW |166776 |1507 |33957 |
+ROW |166777 |1506 |34091 |
+ROW |166778 |1507 |33964 |
+ROW |166779 |1507 |33965 |
+ROW |166780 |1507 |33966 |
+ROW |166781 |1507 |33967 |
+ROW |166782 |1507 |33968 |
+ROW |166783 |1506 |33969 |
+ROW |166784 |1507 |33970 |
+ROW |166785 |1507 |33971 |
+ROW |166786 |1507 |33972 |
+ROW |166787 |1507 |33973 |
+ROW |166788 |1507 |33974 |
+ROW |166789 |1507 |33975 |
+ROW |166790 |1507 |33976 |
+ROW |166791 |1507 |33977 |
+ROW |166792 |1507 |33978 |
+ROW |166793 |1507 |33979 |
+ROW |166794 |1507 |33980 |
+ROW |166795 |1509 |33981 |
+ROW |166796 |1509 |33982 |
+ROW |166797 |1509 |33983 |
+ROW |166798 |1508 |33984 |
+ROW |166799 |1508 |33985 |
+ROW |166800 |1508 |33987 |
+ROW |166801 |1508 |33988 |
+ROW |166802 |1508 |33989 |
+ROW |166803 |1508 |33990 |
+ROW |166804 |1508 |33991 |
+ROW |166805 |1509 |33992 |
+ROW |166806 |1509 |33993 |
+ROW |166807 |1509 |33994 |
+ROW |166808 |1509 |33995 |
+ROW |166809 |1509 |33996 |
+ROW |166810 |1509 |33997 |
+ROW |166811 |1509 |33998 |
+ROW |166812 |1509 |34002 |
+ROW |166813 |1509 |34003 |
+ROW |166814 |1509 |34004 |
+ROW |166815 |1509 |34005 |
+ROW |166816 |1509 |34006 |
+ROW |166817 |1509 |34007 |
+ROW |166818 |1509 |34008 |
+ROW |166819 |1508 |34092 |
+ROW |166820 |1509 |34015 |
+ROW |166821 |1509 |34016 |
+ROW |166822 |1509 |34017 |
+ROW |166823 |1509 |34018 |
+ROW |166824 |1509 |34019 |
+ROW |166825 |1508 |34020 |
+ROW |166826 |1509 |34021 |
+ROW |166827 |1509 |34022 |
+ROW |166828 |1509 |34023 |
+ROW |166829 |1509 |34024 |
+ROW |166830 |1509 |34025 |
+ROW |166831 |1509 |34026 |
+ROW |166832 |1509 |34027 |
+ROW |166833 |1509 |34028 |
+ROW |166834 |1509 |34029 |
+ROW |166835 |1509 |34030 |
+ROW |166836 |1509 |34031 |
+ROW |166837 |1511 |34032 |
+ROW |166838 |1511 |34033 |
+ROW |166839 |1511 |34034 |
+ROW |166840 |1510 |34035 |
+ROW |166841 |1510 |34036 |
+ROW |166842 |1510 |34038 |
+ROW |166843 |1510 |34039 |
+ROW |166844 |1510 |34040 |
+ROW |166845 |1510 |34041 |
+ROW |166846 |1510 |34042 |
+ROW |166847 |1511 |34043 |
+ROW |166848 |1511 |34044 |
+ROW |166849 |1511 |34045 |
+ROW |166850 |1511 |34046 |
+ROW |166851 |1511 |34047 |
+ROW |166852 |1511 |34048 |
+ROW |166853 |1511 |34049 |
+ROW |166854 |1511 |34053 |
+ROW |166855 |1511 |34054 |
+ROW |166856 |1511 |34055 |
+ROW |166857 |1511 |34056 |
+ROW |166858 |1511 |34057 |
+ROW |166859 |1511 |34058 |
+ROW |166860 |1511 |34059 |
+ROW |166861 |1510 |34093 |
+ROW |166862 |1511 |34066 |
+ROW |166863 |1511 |34067 |
+ROW |166864 |1511 |34068 |
+ROW |166865 |1511 |34069 |
+ROW |166866 |1511 |34070 |
+ROW |166867 |1510 |34071 |
+ROW |166868 |1511 |34072 |
+ROW |166869 |1511 |34073 |
+ROW |166870 |1511 |34074 |
+ROW |166871 |1511 |34075 |
+ROW |166872 |1511 |34076 |
+ROW |166873 |1511 |34077 |
+ROW |166874 |1511 |34078 |
+ROW |166875 |1511 |34079 |
+ROW |166876 |1511 |34080 |
+ROW |166877 |1511 |34081 |
+ROW |166878 |1511 |34082 |
+ROW |166879 |1424 |32776 |
+ROW |166880 |1424 |32777 |
+ROW |166881 |1424 |32778 |
+ROW |166882 |1424 |32779 |
+ROW |166883 |1491 |33479 |
+ROW |166884 |1490 |33480 |
+ROW |166885 |1491 |33481 |
+ROW |166886 |1491 |33482 |
+ROW |166887 |1491 |33483 |
+ROW |166888 |1491 |33484 |
+ROW |166889 |1491 |33485 |
+ROW |166890 |1491 |33486 |
+ROW |166891 |1491 |33487 |
+ROW |166892 |1490 |33488 |
+ROW |166893 |1490 |33489 |
+ROW |166894 |1491 |33490 |
+ROW |166895 |1490 |33491 |
+ROW |166896 |1491 |33492 |
+ROW |166897 |1490 |33493 |
+ROW |166898 |1490 |33494 |
+ROW |166899 |1490 |33495 |
+ROW |166900 |1491 |33496 |
+ROW |166901 |1491 |33497 |
+ROW |166902 |1491 |33498 |
+ROW |166903 |1491 |33499 |
+ROW |166904 |1490 |33500 |
+ROW |166905 |1490 |33501 |
+ROW |166906 |1491 |33502 |
+ROW |166907 |1491 |33503 |
+ROW |166908 |1490 |33504 |
+ROW |166909 |1490 |33505 |
+ROW |166910 |1490 |33506 |
+ROW |166911 |1490 |33507 |
+ROW |166912 |1490 |33508 |
+ROW |166913 |1490 |33509 |
+ROW |166914 |1491 |33510 |
+ROW |166915 |1491 |33511 |
+ROW |166916 |1490 |33512 |
+ROW |166917 |1491 |33545 |
+ROW |166918 |1491 |33551 |
+ROW |166919 |1491 |33552 |
+ROW |166920 |1491 |33553 |
+ROW |166921 |1491 |33559 |
+ROW |166922 |1491 |33560 |
+ROW |166923 |1491 |33561 |
+ROW |166924 |1491 |33562 |
+ROW |166925 |1416 |32612 |
+ROW |166926 |1416 |32613 |
+ROW |166927 |1416 |32614 |
+ROW |166928 |1416 |32615 |
+ROW |166929 |1325 |30685 |
+ROW |166930 |1616 |34946 |
+ROW |166931 |1616 |34947 |
+ROW |166932 |1616 |34948 |
+ROW |166933 |1616 |34949 |
+ROW |166934 |1616 |34950 |
+ROW |166935 |1621 |34951 |
+ROW |166936 |1616 |34952 |
+ROW |166937 |1621 |34953 |
+ROW |166938 |1614 |34964 |
+ROW |166939 |1614 |34965 |
+ROW |166940 |1614 |34966 |
+ROW |166941 |1615 |34967 |
+ROW |166942 |1619 |34982 |
+ROW |166943 |1619 |34983 |
+ROW |166944 |1619 |34984 |
+ROW |166945 |1619 |34985 |
+ROW |166946 |1619 |34986 |
+ROW |166947 |1620 |34987 |
+ROW |166948 |1622 |34988 |
+ROW |166949 |1622 |34989 |
+ROW |166950 |1622 |34990 |
+ROW |166951 |1622 |34991 |
+ROW |166952 |1622 |34992 |
+ROW |166953 |1617 |34993 |
+ROW |166954 |1617 |34994 |
+ROW |166955 |1621 |34995 |
+ROW |166956 |1623 |34996 |
+ROW |166957 |1623 |34997 |
+ROW |166958 |1623 |34998 |
+ROW |166959 |1277 |30066 |
+ROW |166960 |1277 |30067 |
+ROW |166961 |1277 |30068 |
+ROW |166962 |1277 |30069 |
+ROW |166963 |1277 |30070 |
+ROW |166964 |1276 |30071 |
+ROW |166965 |1271 |30072 |
+ROW |166966 |1274 |30073 |
+ROW |166967 |1274 |30074 |
+ROW |166968 |1273 |30075 |
+ROW |166969 |1275 |30076 |
+ROW |166970 |1275 |30077 |
+ROW |166971 |1275 |30078 |
+ROW |166972 |1275 |30079 |
+ROW |166973 |1278 |30080 |
+ROW |166974 |1278 |30081 |
+ROW |166975 |1278 |30082 |
+ROW |166976 |1272 |30083 |
+ROW |166977 |1272 |30084 |
+ROW |166978 |1272 |30085 |
+ROW |166979 |1635 |35041 |
+ROW |166980 |1635 |35042 |
+ROW |166981 |1636 |35043 |
+ROW |166982 |1636 |35044 |
+ROW |166983 |1636 |35045 |
+ROW |166984 |1635 |35046 |
+ROW |166985 |1635 |35047 |
+ROW |166986 |1635 |35048 |
+ROW |166987 |1639 |35049 |
+ROW |166988 |1636 |35050 |
+ROW |166989 |1639 |35051 |
+ROW |166990 |1635 |35052 |
+ROW |166991 |1639 |35053 |
+ROW |166992 |1633 |35061 |
+ROW |166993 |1633 |35062 |
+ROW |166994 |1633 |35063 |
+ROW |166995 |1634 |35064 |
+ROW |166996 |1634 |35065 |
+ROW |166997 |1637 |35066 |
+ROW |166998 |1637 |35067 |
+ROW |166999 |1637 |35068 |
+ROW |167000 |1637 |35069 |
+ROW |167001 |1637 |35070 |
+ROW |167002 |1637 |35071 |
+ROW |167003 |1638 |35072 |
+ROW |167004 |1640 |35073 |
+ROW |167005 |1640 |35074 |
+ROW |167006 |1641 |35075 |
+ROW |167007 |1641 |35076 |
+ROW |167008 |1641 |35077 |
+ROW |167009 |1641 |35078 |
+ROW |167010 |1641 |35079 |
+ROW |167011 |1641 |35080 |
+ROW |167012 |1653 |35123 |
+ROW |167013 |1653 |35124 |
+ROW |167014 |1654 |35125 |
+ROW |167015 |1654 |35126 |
+ROW |167016 |1654 |35127 |
+ROW |167017 |1653 |35128 |
+ROW |167018 |1653 |35129 |
+ROW |167019 |1653 |35130 |
+ROW |167020 |1657 |35131 |
+ROW |167021 |1654 |35132 |
+ROW |167022 |1657 |35133 |
+ROW |167023 |1653 |35134 |
+ROW |167024 |1657 |35135 |
+ROW |167025 |1651 |35143 |
+ROW |167026 |1651 |35144 |
+ROW |167027 |1651 |35145 |
+ROW |167028 |1652 |35146 |
+ROW |167029 |1652 |35147 |
+ROW |167030 |1655 |35148 |
+ROW |167031 |1655 |35149 |
+ROW |167032 |1655 |35150 |
+ROW |167033 |1655 |35151 |
+ROW |167034 |1655 |35152 |
+ROW |167035 |1655 |35153 |
+ROW |167036 |1656 |35154 |
+ROW |167037 |1658 |35155 |
+ROW |167038 |1658 |35156 |
+ROW |167039 |1659 |35157 |
+ROW |167040 |1659 |35158 |
+ROW |167041 |1659 |35159 |
+ROW |167042 |1659 |35160 |
+ROW |167043 |1659 |35161 |
+ROW |167044 |1659 |35162 |
+ROW |167045 |1671 |35205 |
+ROW |167046 |1671 |35206 |
+ROW |167047 |1672 |35207 |
+ROW |167048 |1672 |35208 |
+ROW |167049 |1672 |35209 |
+ROW |167050 |1671 |35210 |
+ROW |167051 |1671 |35211 |
+ROW |167052 |1671 |35212 |
+ROW |167053 |1675 |35213 |
+ROW |167054 |1672 |35214 |
+ROW |167055 |1675 |35215 |
+ROW |167056 |1671 |35216 |
+ROW |167057 |1675 |35217 |
+ROW |167058 |1669 |35225 |
+ROW |167059 |1669 |35226 |
+ROW |167060 |1669 |35227 |
+ROW |167061 |1670 |35228 |
+ROW |167062 |1670 |35229 |
+ROW |167063 |1673 |35230 |
+ROW |167064 |1673 |35231 |
+ROW |167065 |1673 |35232 |
+ROW |167066 |1673 |35233 |
+ROW |167067 |1673 |35234 |
+ROW |167068 |1673 |35235 |
+ROW |167069 |1674 |35236 |
+ROW |167070 |1676 |35237 |
+ROW |167071 |1676 |35238 |
+ROW |167072 |1677 |35239 |
+ROW |167073 |1677 |35240 |
+ROW |167074 |1677 |35241 |
+ROW |167075 |1677 |35242 |
+ROW |167076 |1677 |35243 |
+ROW |167077 |1677 |35244 |
+ROW |167078 |1689 |35287 |
+ROW |167079 |1689 |35288 |
+ROW |167080 |1690 |35289 |
+ROW |167081 |1690 |35290 |
+ROW |167082 |1690 |35291 |
+ROW |167083 |1689 |35292 |
+ROW |167084 |1689 |35293 |
+ROW |167085 |1689 |35294 |
+ROW |167086 |1693 |35295 |
+ROW |167087 |1690 |35296 |
+ROW |167088 |1693 |35297 |
+ROW |167089 |1689 |35298 |
+ROW |167090 |1693 |35299 |
+ROW |167091 |1687 |35307 |
+ROW |167092 |1687 |35308 |
+ROW |167093 |1687 |35309 |
+ROW |167094 |1688 |35310 |
+ROW |167095 |1688 |35311 |
+ROW |167096 |1691 |35312 |
+ROW |167097 |1691 |35313 |
+ROW |167098 |1691 |35314 |
+ROW |167099 |1691 |35315 |
+ROW |167100 |1691 |35316 |
+ROW |167101 |1691 |35317 |
+ROW |167102 |1692 |35318 |
+ROW |167103 |1694 |35319 |
+ROW |167104 |1694 |35320 |
+ROW |167105 |1695 |35321 |
+ROW |167106 |1695 |35322 |
+ROW |167107 |1695 |35323 |
+ROW |167108 |1695 |35324 |
+ROW |167109 |1695 |35325 |
+ROW |167110 |1695 |35326 |
+ROW |167111 |1070 |28341 |
+ROW |167112 |1073 |28342 |
+ROW |167113 |1073 |28344 |
+ROW |167114 |1073 |28345 |
+ROW |167115 |1073 |30141 |
+ROW |167116 |1076 |28354 |
+ROW |167117 |1076 |28355 |
+ROW |167118 |1076 |28356 |
+ROW |167119 |1076 |28357 |
+ROW |167120 |1075 |28358 |
+ROW |167121 |1072 |28359 |
+ROW |167122 |1072 |28360 |
+ROW |167123 |1074 |28361 |
+ROW |167124 |1074 |28362 |
+ROW |167125 |1074 |28363 |
+ROW |167126 |1074 |28364 |
+ROW |167127 |1074 |28365 |
+ROW |167128 |1074 |28366 |
+ROW |167129 |1074 |28367 |
+ROW |167130 |1077 |28368 |
+ROW |167131 |1077 |28369 |
+ROW |167132 |1077 |28370 |
+ROW |167133 |1077 |28371 |
+ROW |167134 |1077 |28372 |
+ROW |167135 |1077 |28373 |
+ROW |167136 |1071 |28374 |
+ROW |167137 |1071 |28375 |
+ROW |167138 |1071 |28376 |
+ROW |167139 |1698 |35327 |
+ROW |167140 |1698 |35328 |
+ROW |167141 |1699 |35329 |
+ROW |167142 |1699 |35330 |
+ROW |167143 |1698 |35331 |
+ROW |167144 |1698 |35332 |
+ROW |167145 |1698 |35333 |
+ROW |167146 |1704 |35334 |
+ROW |167147 |1703 |35335 |
+ROW |167148 |1703 |35336 |
+ROW |167149 |1698 |35337 |
+ROW |167150 |1703 |35338 |
+ROW |167151 |1696 |35353 |
+ROW |167152 |1696 |35354 |
+ROW |167153 |1696 |35355 |
+ROW |167154 |1696 |35356 |
+ROW |167155 |1697 |35357 |
+ROW |167156 |1700 |35358 |
+ROW |167157 |1701 |35359 |
+ROW |167158 |1701 |35360 |
+ROW |167159 |1701 |35361 |
+ROW |167160 |1701 |35362 |
+ROW |167161 |1701 |35363 |
+ROW |167162 |1701 |35364 |
+ROW |167163 |1702 |35365 |
+ROW |167164 |1704 |35366 |
+ROW |167165 |1704 |35367 |
+ROW |167166 |1704 |35368 |
+ROW |167167 |1704 |35369 |
+ROW |167168 |1704 |35370 |
+ROW |167169 |1704 |35371 |
+ROW |167170 |1704 |35372 |
+ROW |167171 |1704 |35373 |
+ROW |167172 |1704 |35374 |
+ROW |167173 |1704 |35375 |
+ROW |167174 |1704 |35376 |
+ROW |167175 |1704 |35377 |
+ROW |167176 |1704 |35378 |
+ROW |167177 |1704 |35379 |
+ROW |167178 |1704 |35380 |
+ROW |167179 |1705 |35381 |
+ROW |167180 |1705 |35382 |
+ROW |167181 |1705 |35383 |
+ROW |167182 |1708 |35384 |
+ROW |167183 |1708 |35385 |
+ROW |167184 |1709 |35386 |
+ROW |167185 |1709 |35387 |
+ROW |167186 |1708 |35388 |
+ROW |167187 |1708 |35389 |
+ROW |167188 |1708 |35390 |
+ROW |167189 |1714 |35391 |
+ROW |167190 |1713 |35392 |
+ROW |167191 |1713 |35393 |
+ROW |167192 |1708 |35394 |
+ROW |167193 |1713 |35395 |
+ROW |167194 |1706 |35410 |
+ROW |167195 |1706 |35411 |
+ROW |167196 |1706 |35412 |
+ROW |167197 |1706 |35413 |
+ROW |167198 |1707 |35414 |
+ROW |167199 |1710 |35415 |
+ROW |167200 |1711 |35416 |
+ROW |167201 |1711 |35417 |
+ROW |167202 |1711 |35418 |
+ROW |167203 |1711 |35419 |
+ROW |167204 |1711 |35420 |
+ROW |167205 |1711 |35421 |
+ROW |167206 |1712 |35422 |
+ROW |167207 |1714 |35423 |
+ROW |167208 |1714 |35424 |
+ROW |167209 |1714 |35425 |
+ROW |167210 |1714 |35426 |
+ROW |167211 |1714 |35427 |
+ROW |167212 |1714 |35428 |
+ROW |167213 |1714 |35429 |
+ROW |167214 |1714 |35430 |
+ROW |167215 |1714 |35431 |
+ROW |167216 |1714 |35432 |
+ROW |167217 |1714 |35433 |
+ROW |167218 |1714 |35434 |
+ROW |167219 |1714 |35435 |
+ROW |167220 |1714 |35436 |
+ROW |167221 |1714 |35437 |
+ROW |167222 |1715 |35438 |
+ROW |167223 |1715 |35439 |
+ROW |167224 |1715 |35440 |
+ROW |167225 |1718 |35441 |
+ROW |167226 |1718 |35442 |
+ROW |167227 |1719 |35443 |
+ROW |167228 |1719 |35444 |
+ROW |167229 |1718 |35445 |
+ROW |167230 |1718 |35446 |
+ROW |167231 |1718 |35447 |
+ROW |167232 |1724 |35448 |
+ROW |167233 |1723 |35449 |
+ROW |167234 |1723 |35450 |
+ROW |167235 |1718 |35451 |
+ROW |167236 |1723 |35452 |
+ROW |167237 |1716 |35467 |
+ROW |167238 |1716 |35468 |
+ROW |167239 |1716 |35469 |
+ROW |167240 |1716 |35470 |
+ROW |167241 |1717 |35471 |
+ROW |167242 |1720 |35472 |
+ROW |167243 |1721 |35473 |
+ROW |167244 |1721 |35474 |
+ROW |167245 |1721 |35475 |
+ROW |167246 |1721 |35476 |
+ROW |167247 |1721 |35477 |
+ROW |167248 |1721 |35478 |
+ROW |167249 |1722 |35479 |
+ROW |167250 |1724 |35480 |
+ROW |167251 |1724 |35481 |
+ROW |167252 |1724 |35482 |
+ROW |167253 |1724 |35483 |
+ROW |167254 |1724 |35484 |
+ROW |167255 |1724 |35485 |
+ROW |167256 |1724 |35486 |
+ROW |167257 |1724 |35487 |
+ROW |167258 |1724 |35488 |
+ROW |167259 |1724 |35489 |
+ROW |167260 |1724 |35490 |
+ROW |167261 |1724 |35491 |
+ROW |167262 |1724 |35492 |
+ROW |167263 |1724 |35493 |
+ROW |167264 |1724 |35494 |
+ROW |167265 |1725 |35495 |
+ROW |167266 |1725 |35496 |
+ROW |167267 |1725 |35497 |
+ROW |167268 |1728 |35498 |
+ROW |167269 |1728 |35499 |
+ROW |167270 |1729 |35500 |
+ROW |167271 |1729 |35501 |
+ROW |167272 |1728 |35502 |
+ROW |167273 |1728 |35503 |
+ROW |167274 |1728 |35504 |
+ROW |167275 |1734 |35505 |
+ROW |167276 |1733 |35506 |
+ROW |167277 |1733 |35507 |
+ROW |167278 |1728 |35508 |
+ROW |167279 |1733 |35509 |
+ROW |167280 |1726 |35524 |
+ROW |167281 |1726 |35525 |
+ROW |167282 |1726 |35526 |
+ROW |167283 |1726 |35527 |
+ROW |167284 |1727 |35528 |
+ROW |167285 |1730 |35529 |
+ROW |167286 |1731 |35530 |
+ROW |167287 |1731 |35531 |
+ROW |167288 |1731 |35532 |
+ROW |167289 |1731 |35533 |
+ROW |167290 |1731 |35534 |
+ROW |167291 |1731 |35535 |
+ROW |167292 |1732 |35536 |
+ROW |167293 |1734 |35537 |
+ROW |167294 |1734 |35538 |
+ROW |167295 |1734 |35539 |
+ROW |167296 |1734 |35540 |
+ROW |167297 |1734 |35541 |
+ROW |167298 |1734 |35542 |
+ROW |167299 |1734 |35543 |
+ROW |167300 |1734 |35544 |
+ROW |167301 |1734 |35545 |
+ROW |167302 |1734 |35546 |
+ROW |167303 |1734 |35547 |
+ROW |167304 |1734 |35548 |
+ROW |167305 |1734 |35549 |
+ROW |167306 |1734 |35550 |
+ROW |167307 |1734 |35551 |
+ROW |167308 |1735 |35552 |
+ROW |167309 |1735 |35553 |
+ROW |167310 |1735 |35554 |
+ROW |167311 |1085 |28388 |
+ROW |167312 |1082 |28390 |
+ROW |167313 |1082 |28391 |
+ROW |167314 |1079 |29994 |
+ROW |167315 |1085 |28404 |
+ROW |167316 |1085 |28405 |
+ROW |167317 |1085 |28406 |
+ROW |167318 |1085 |28407 |
+ROW |167319 |1085 |28408 |
+ROW |167320 |1085 |28409 |
+ROW |167321 |1084 |28411 |
+ROW |167322 |1081 |28412 |
+ROW |167323 |1080 |28413 |
+ROW |167324 |1080 |28414 |
+ROW |167325 |1080 |28415 |
+ROW |167326 |1080 |28416 |
+ROW |167327 |1083 |28417 |
+ROW |167328 |1083 |28418 |
+ROW |167329 |1083 |28419 |
+ROW |167330 |1083 |28420 |
+ROW |167331 |1083 |28421 |
+ROW |167332 |1083 |28422 |
+ROW |167333 |1086 |28423 |
+ROW |167334 |1086 |28424 |
+ROW |167335 |1086 |28425 |
+ROW |167336 |1085 |32732 |
+ROW |167337 |1085 |32733 |
+ROW |167338 |1085 |32734 |
+ROW |167339 |1085 |32735 |
+ROW |167340 |1085 |32736 |
+ROW |167341 |1085 |32737 |
+ROW |167342 |1085 |32738 |
+ROW |167343 |1085 |32739 |
+ROW |167344 |1085 |32740 |
+ROW |167345 |1095 |28465 |
+ROW |167346 |1097 |28466 |
+ROW |167347 |1097 |28467 |
+ROW |167348 |1100 |28474 |
+ROW |167349 |1100 |28475 |
+ROW |167350 |1100 |28476 |
+ROW |167351 |1099 |28477 |
+ROW |167352 |1096 |28478 |
+ROW |167353 |1096 |28479 |
+ROW |167354 |1098 |28480 |
+ROW |167355 |1098 |28481 |
+ROW |167356 |1104 |28495 |
+ROW |167357 |1103 |28496 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -35321,47 +35362,6 @@ ROW |2880 |32825 |32787 |
ROW |2881 |32826 |32787 |
ROW |2882 |32827 |32787 |
ROW |2883 |32828 |32787 |
-ROW |2884 |32884 |32880 |
-ROW |2885 |32885 |32881 |
-ROW |2886 |32886 |32882 |
-ROW |2887 |32887 |32882 |
-ROW |2888 |32888 |32882 |
-ROW |2889 |32889 |32882 |
-ROW |2890 |32890 |32882 |
-ROW |2891 |32891 |32879 |
-ROW |2892 |32892 |32879 |
-ROW |2893 |32893 |32879 |
-ROW |2894 |32894 |32879 |
-ROW |2895 |32895 |32879 |
-ROW |2896 |32896 |32879 |
-ROW |2897 |32897 |32879 |
-ROW |2898 |32898 |32879 |
-ROW |2899 |32899 |32879 |
-ROW |2900 |32900 |32879 |
-ROW |2901 |32901 |32879 |
-ROW |2902 |32902 |32879 |
-ROW |2903 |32903 |32879 |
-ROW |2904 |32904 |32879 |
-ROW |2905 |32905 |32879 |
-ROW |2906 |32906 |32879 |
-ROW |2907 |32907 |32883 |
-ROW |2908 |32908 |32883 |
-ROW |2909 |32909 |32883 |
-ROW |2910 |32910 |32883 |
-ROW |2911 |32911 |32883 |
-ROW |2912 |32912 |32883 |
-ROW |2913 |32913 |32883 |
-ROW |2914 |32914 |32883 |
-ROW |2915 |32915 |32883 |
-ROW |2916 |32916 |32883 |
-ROW |2917 |32917 |32883 |
-ROW |2918 |32918 |32883 |
-ROW |2919 |32919 |32883 |
-ROW |2920 |32920 |32883 |
-ROW |2921 |32921 |32883 |
-ROW |2922 |32922 |32883 |
-ROW |2923 |32923 |32883 |
-ROW |2924 |32924 |32883 |
ROW |2925 |32976 |32972 |
ROW |2926 |32977 |32973 |
ROW |2927 |32978 |32974 |
@@ -37502,6 +37502,53 @@ ROW |5205 |37001 |36974 |
ROW |5206 |37002 |36974 |
ROW |5207 |37003 |36974 |
ROW |5208 |37004 |36974 |
+ROW |5209 |37057 |37053 |
+ROW |5210 |37058 |37054 |
+ROW |5211 |37059 |37054 |
+ROW |5212 |37060 |37054 |
+ROW |5213 |37061 |37054 |
+ROW |5214 |37062 |37054 |
+ROW |5215 |37063 |37055 |
+ROW |5216 |37064 |37052 |
+ROW |5217 |37065 |37052 |
+ROW |5218 |37066 |37052 |
+ROW |5219 |37067 |37052 |
+ROW |5220 |37068 |37052 |
+ROW |5221 |37069 |37052 |
+ROW |5222 |37070 |37052 |
+ROW |5223 |37071 |37052 |
+ROW |5224 |37072 |37052 |
+ROW |5225 |37073 |37052 |
+ROW |5226 |37074 |37052 |
+ROW |5227 |37075 |37052 |
+ROW |5228 |37076 |37052 |
+ROW |5229 |37077 |37052 |
+ROW |5230 |37078 |37052 |
+ROW |5231 |37079 |37052 |
+ROW |5232 |37080 |37056 |
+ROW |5233 |37081 |37056 |
+ROW |5234 |37082 |37056 |
+ROW |5235 |37083 |37056 |
+ROW |5236 |37084 |37056 |
+ROW |5237 |37085 |37056 |
+ROW |5238 |37086 |37056 |
+ROW |5239 |37087 |37056 |
+ROW |5240 |37088 |37056 |
+ROW |5241 |37089 |37056 |
+ROW |5242 |37090 |37056 |
+ROW |5243 |37091 |37056 |
+ROW |5244 |37092 |37056 |
+ROW |5245 |37093 |37056 |
+ROW |5246 |37094 |37056 |
+ROW |5247 |37095 |37056 |
+ROW |5248 |37096 |37056 |
+ROW |5249 |37097 |37056 |
+ROW |5250 |37102 |37101 |
+ROW |5251 |37103 |29203 |
+ROW |5252 |37104 |29206 |
+ROW |5253 |37105 |29209 |
+ROW |5254 |37106 |29351 |
+ROW |5255 |37107 |29354 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -37721,6 +37768,7 @@ ROW |443 |1413 |800 |
ROW |444 |1414 |799 |
ROW |445 |1421 |800 |
ROW |446 |1422 |799 |
+ROW |447 |1871 |1870 |
TABLE |item_condition
FIELDS|item_conditionid|itemid|operator|macro |value |
@@ -38404,11 +38452,6 @@ ROW |1132 |32655 |9 |{#JMXNAME} |{$IGNITE.LLD.FI
ROW |1133 |32662 |8 |{#JMXGROUP} |{$IGNITE.LLD.FILTER.CACHE.MATCHES} |
ROW |1134 |32662 |9 |{#JMXGROUP} |{$IGNITE.LLD.FILTER.CACHE.NOT_MATCHES} |
ROW |1135 |32731 |8 |{#SENSOR_LOCALE} |3 |
-ROW |1136 |32879 |8 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES} |
-ROW |1137 |32879 |9 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES} |
-ROW |1138 |32883 |8 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES} |
-ROW |1139 |32883 |9 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES} |
-ROW |1140 |32883 |8 |{#NODE} |{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME} |
ROW |1141 |32971 |8 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES} |
ROW |1142 |32971 |9 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES} |
ROW |1143 |32975 |8 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES} |
@@ -38906,6 +38949,11 @@ ROW |1635 |36847 |9 |{#FSTYPE} |{$VFS.FS.FSTYPE
ROW |1636 |36847 |8 |{#FSNAME} |{$VFS.FS.FSNAME.MATCHES} |
ROW |1637 |36847 |9 |{#FSNAME} |{$VFS.FS.FSNAME.NOT_MATCHES} |
ROW |1638 |36974 |8 |{#DBNAME} |{$PG.LLD.FILTER.DBNAME} |
+ROW |1639 |37052 |8 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES} |
+ROW |1640 |37052 |9 |{#EXCHANGE} |{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES} |
+ROW |1641 |37056 |8 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES} |
+ROW |1642 |37056 |9 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES} |
+ROW |1643 |37056 |8 |{#NODE} |{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME} |
TABLE |item_rtdata
FIELDS|itemid|
@@ -39105,8 +39153,6 @@ ROW |206 |32785 |NULL |LUN {#NAME}
ROW |207 |32786 |NULL |Node {#NODE} |
ROW |208 |32787 |NULL |Pool {#MODEL} |
ROW |209 |32787 |NULL |Pool {#NAME} |
-ROW |210 |32879 |NULL |RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |211 |32883 |NULL |RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
ROW |212 |32971 |NULL |RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
ROW |213 |32975 |NULL |RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
ROW |214 |33061 |NULL |MongoDB: {#DBNAME}.{#COLLECTION} |
@@ -39279,6 +39325,8 @@ ROW |381 |36603 |NULL |Interface {#IFNAME}({#IFALIAS})
ROW |384 |36768 |NULL |PostgreSQL: DB {#DBNAME} |
ROW |385 |36769 |NULL |PostgreSQL: Application {#APPLICATION_NAME} |
ROW |386 |36974 |NULL |PostgreSQL: DB {#DBNAME} |
+ROW |387 |37052 |NULL |RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |388 |37056 |NULL |RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
TABLE |application_prototype
FIELDS|application_prototypeid|itemid|templateid|name |
@@ -40381,40 +40429,6 @@ ROW |1388 |209 |32825 |
ROW |1389 |208 |32826 |
ROW |1390 |208 |32827 |
ROW |1391 |208 |32828 |
-ROW |1392 |210 |32891 |
-ROW |1393 |210 |32892 |
-ROW |1394 |210 |32893 |
-ROW |1395 |210 |32894 |
-ROW |1396 |210 |32895 |
-ROW |1397 |210 |32896 |
-ROW |1398 |210 |32897 |
-ROW |1399 |210 |32898 |
-ROW |1400 |210 |32899 |
-ROW |1401 |210 |32900 |
-ROW |1402 |210 |32901 |
-ROW |1403 |210 |32902 |
-ROW |1404 |210 |32903 |
-ROW |1405 |210 |32904 |
-ROW |1406 |210 |32905 |
-ROW |1407 |210 |32906 |
-ROW |1408 |211 |32907 |
-ROW |1409 |211 |32908 |
-ROW |1410 |211 |32909 |
-ROW |1411 |211 |32910 |
-ROW |1412 |211 |32911 |
-ROW |1413 |211 |32912 |
-ROW |1414 |211 |32913 |
-ROW |1415 |211 |32914 |
-ROW |1416 |211 |32915 |
-ROW |1417 |211 |32916 |
-ROW |1418 |211 |32917 |
-ROW |1419 |211 |32918 |
-ROW |1420 |211 |32919 |
-ROW |1421 |211 |32920 |
-ROW |1422 |211 |32921 |
-ROW |1423 |211 |32922 |
-ROW |1424 |211 |32923 |
-ROW |1425 |211 |32924 |
ROW |1426 |212 |32983 |
ROW |1427 |212 |32984 |
ROW |1428 |212 |32985 |
@@ -41892,6 +41906,45 @@ ROW |2929 |386 |37001 |
ROW |2930 |386 |37002 |
ROW |2931 |386 |37003 |
ROW |2932 |386 |37004 |
+ROW |2933 |387 |37064 |
+ROW |2934 |387 |37065 |
+ROW |2935 |387 |37066 |
+ROW |2936 |387 |37067 |
+ROW |2937 |387 |37068 |
+ROW |2938 |387 |37069 |
+ROW |2939 |387 |37070 |
+ROW |2940 |387 |37071 |
+ROW |2941 |387 |37072 |
+ROW |2942 |387 |37073 |
+ROW |2943 |387 |37074 |
+ROW |2944 |387 |37075 |
+ROW |2945 |387 |37076 |
+ROW |2946 |387 |37077 |
+ROW |2947 |387 |37078 |
+ROW |2948 |387 |37079 |
+ROW |2949 |388 |37080 |
+ROW |2950 |388 |37081 |
+ROW |2951 |388 |37082 |
+ROW |2952 |388 |37083 |
+ROW |2953 |388 |37084 |
+ROW |2954 |388 |37085 |
+ROW |2955 |388 |37086 |
+ROW |2956 |388 |37087 |
+ROW |2957 |388 |37088 |
+ROW |2958 |388 |37089 |
+ROW |2959 |388 |37090 |
+ROW |2960 |388 |37091 |
+ROW |2961 |388 |37092 |
+ROW |2962 |388 |37093 |
+ROW |2963 |388 |37094 |
+ROW |2964 |388 |37095 |
+ROW |2965 |388 |37096 |
+ROW |2966 |388 |37097 |
+ROW |2967 |9 |37103 |
+ROW |2968 |12 |37104 |
+ROW |2969 |15 |37105 |
+ROW |2970 |18 |37106 |
+ROW |2971 |21 |37107 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -42259,8 +42312,6 @@ ROW |61503 |30610 |1 |12 |$[?(@.Id == "{#ID}")].Size.first()
ROW |61504 |30690 |1 |20 |10m |0 | |
ROW |61505 |30695 |1 |12 |$.indices.docs.count |0 | |
ROW |61506 |30695 |2 |20 |1h |0 | |
-ROW |61507 |30696 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
-ROW |61508 |30696 |2 |1 |0.001 |0 | |
ROW |61509 |30697 |1 |12 |$.nodes.fs.total_in_bytes |0 | |
ROW |61510 |30697 |2 |20 |1h |0 | |
ROW |61511 |30698 |1 |12 |$.nodes.fs.available_in_bytes |0 | |
@@ -45715,120 +45766,6 @@ ROW |65475 |32826 |1 |20 |6h
ROW |65476 |32827 |1 |1 |1048576 |0 | |
ROW |65477 |32828 |1 |1 |1048576 |0 | |
ROW |65478 |32828 |2 |20 |10m |0 | |
-ROW |65479 |32829 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65480 |32830 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65481 |32832 |1 |20 |10m |0 | |
-ROW |65482 |32833 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65483 |32834 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65484 |32835 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65485 |32840 |1 |12 |$.message_stats.return_unroutable |2 |0 |
-ROW |65486 |32841 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
-ROW |65487 |32842 |1 |12 |$.queue_totals.messages_ready |0 | |
-ROW |65488 |32843 |1 |12 |$.queue_totals.messages |0 | |
-ROW |65489 |32844 |1 |12 |$.object_totals.queues |0 | |
-ROW |65490 |32845 |1 |12 |$.object_totals.exchanges |0 | |
-ROW |65491 |32846 |1 |12 |$.object_totals.consumers |0 | |
-ROW |65492 |32847 |1 |12 |$.object_totals.connections |0 | |
-ROW |65493 |32848 |1 |12 |$.object_totals.channels |0 | |
-ROW |65494 |32849 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
-ROW |65495 |32850 |1 |12 |$.message_stats.ack |2 |0 |
-ROW |65496 |32851 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
-ROW |65497 |32852 |1 |12 |$.message_stats.redeliver |2 |0 |
-ROW |65498 |32853 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
-ROW |65499 |32854 |1 |12 |$.message_stats.publish_out |2 |0 |
-ROW |65500 |32855 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
-ROW |65501 |32856 |1 |12 |$.message_stats.publish_in |2 |0 |
-ROW |65502 |32857 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
-ROW |65503 |32858 |1 |12 |$.message_stats.publish |2 |0 |
-ROW |65504 |32859 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
-ROW |65505 |32860 |1 |12 |$.message_stats.deliver_get |2 |0 |
-ROW |65506 |32861 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
-ROW |65507 |32862 |1 |12 |$.message_stats.confirm |2 |0 |
-ROW |65508 |32863 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
-ROW |65509 |32864 |1 |12 |$.running |0 | |
-ROW |65510 |32864 |2 |6 | |0 | |
-ROW |65511 |32865 |1 |12 |$.uptime |0 | |
-ROW |65512 |32865 |2 |1 |0.001 |0 | |
-ROW |65513 |32866 |1 |12 |$.sockets_used |0 | |
-ROW |65514 |32867 |1 |12 |$.sockets_total |0 | |
-ROW |65515 |32868 |1 |12 |$.run_queue |0 | |
-ROW |65516 |32869 |1 |12 |$.rabbitmq_version |0 | |
-ROW |65517 |32869 |2 |20 |1d |0 | |
-ROW |65518 |32870 |1 |12 |$.partitions |0 | |
-ROW |65519 |32870 |2 |21 |return JSON.parse(value).length; |0 | |
-ROW |65520 |32871 |1 |12 |$.disk_free |0 | |
-ROW |65521 |32872 |1 |12 |$.management_version |0 | |
-ROW |65522 |32872 |2 |20 |1d |0 | |
-ROW |65523 |32873 |1 |12 |$.mem_limit |0 | |
-ROW |65524 |32874 |1 |12 |$.mem_alarm |0 | |
-ROW |65525 |32874 |2 |6 | |0 | |
-ROW |65526 |32875 |1 |12 |$.fd_used |0 | |
-ROW |65527 |32876 |1 |12 |$.disk_free_limit |0 | |
-ROW |65528 |32877 |1 |12 |$.disk_free_alarm |0 | |
-ROW |65529 |32877 |2 |6 | |0 | |
-ROW |65530 |32878 |1 |12 |$.mem_used |0 | |
-ROW |65531 |32880 |1 |12 |$.management_version |0 | |
-ROW |65532 |32880 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version >= 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |65533 |32881 |1 |12 |$.management_version |0 | |
-ROW |65534 |32881 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version < 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |65535 |32882 |1 |12 |$.management_version |0 | |
-ROW |65536 |32882 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version >= 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
-ROW |65537 |32884 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65538 |32884 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65539 |32884 |3 |20 |3h |0 | |
-ROW |65540 |32885 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
-ROW |65541 |32885 |2 |12 |$.status |0 | |
-ROW |65542 |32885 |3 |6 | |2 |0 |
-ROW |65543 |32886 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65544 |32886 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65545 |32886 |3 |20 |3h |0 | |
-ROW |65546 |32887 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65547 |32887 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65548 |32887 |3 |20 |3h |0 | |
-ROW |65549 |32888 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65550 |32888 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65551 |32888 |3 |20 |3h |0 | |
-ROW |65552 |32889 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65553 |32889 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65554 |32889 |3 |20 |3h |0 | |
-ROW |65555 |32890 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
-ROW |65556 |32890 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
-ROW |65557 |32890 |3 |20 |3h |0 | |
-ROW |65558 |32891 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |65559 |32892 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
-ROW |65560 |32893 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
-ROW |65561 |32894 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
-ROW |65562 |32895 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |65563 |32896 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
-ROW |65564 |32897 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |65565 |32898 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
-ROW |65566 |32899 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
-ROW |65567 |32900 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
-ROW |65568 |32901 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
-ROW |65569 |32902 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
-ROW |65570 |32903 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |65571 |32904 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
-ROW |65572 |32905 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
-ROW |65573 |32906 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
-ROW |65574 |32907 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
-ROW |65575 |32908 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
-ROW |65576 |32909 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
-ROW |65577 |32910 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
-ROW |65578 |32911 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
-ROW |65579 |32912 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
-ROW |65580 |32913 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
-ROW |65581 |32914 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
-ROW |65582 |32915 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
-ROW |65583 |32916 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
-ROW |65584 |32917 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
-ROW |65585 |32918 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
-ROW |65586 |32919 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
-ROW |65587 |32920 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
-ROW |65588 |32921 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
-ROW |65589 |32922 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
-ROW |65590 |32923 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
-ROW |65591 |32924 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
-ROW |65592 |32931 |1 |20 |10m |0 | |
ROW |65593 |32932 |1 |12 |$.queue_totals.messages_ready |0 | |
ROW |65594 |32933 |1 |12 |$.queue_totals.messages |0 | |
ROW |65595 |32934 |1 |12 |$.object_totals.queues |0 | |
@@ -49952,6 +49889,136 @@ ROW |70098 |37002 |2 |10 |
ROW |70099 |37003 |1 |12 |$['{#DBNAME}'].temp_bytes |0 | |
ROW |70100 |37003 |2 |10 | |0 | |
ROW |70101 |37004 |1 |12 |$.prc_before_stop |0 | |
+ROW |70102 |37005 |1 |12 |$.nodes.jvm.max_uptime_in_millis |0 | |
+ROW |70103 |37005 |2 |1 |0.001 |0 | |
+ROW |70104 |37006 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70105 |37007 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70106 |37009 |1 |20 |10m |0 | |
+ROW |70107 |37010 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70108 |37011 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70109 |37012 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70110 |37013 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |70111 |37014 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |70112 |37015 |1 |12 |$.queue_totals.messages_ready |0 | |
+ROW |70113 |37016 |1 |12 |$.queue_totals.messages |0 | |
+ROW |70114 |37017 |1 |12 |$.object_totals.queues |0 | |
+ROW |70115 |37018 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |70116 |37019 |1 |12 |$.object_totals.consumers |0 | |
+ROW |70117 |37020 |1 |12 |$.object_totals.connections |0 | |
+ROW |70118 |37021 |1 |12 |$.object_totals.channels |0 | |
+ROW |70119 |37022 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |70120 |37023 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |70121 |37024 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |70122 |37025 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |70123 |37026 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |70124 |37027 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |70125 |37028 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |70126 |37029 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |70127 |37030 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |70128 |37031 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |70129 |37032 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |70130 |37033 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |70131 |37034 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |70132 |37035 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |70133 |37036 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |70134 |37037 |1 |12 |$.run_queue |0 | |
+ROW |70135 |37038 |1 |12 |$.uptime |0 | |
+ROW |70136 |37038 |2 |1 |0.001 |0 | |
+ROW |70137 |37039 |1 |12 |$.sockets_used |0 | |
+ROW |70138 |37040 |1 |12 |$.sockets_total |0 | |
+ROW |70139 |37041 |1 |12 |$.running |0 | |
+ROW |70140 |37041 |2 |6 | |0 | |
+ROW |70141 |37042 |1 |12 |$.rabbitmq_version |0 | |
+ROW |70142 |37042 |2 |20 |1d |0 | |
+ROW |70143 |37043 |1 |12 |$.partitions |0 | |
+ROW |70144 |37043 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |70145 |37044 |1 |12 |$.disk_free |0 | |
+ROW |70146 |37045 |1 |12 |$.management_version |0 | |
+ROW |70147 |37045 |2 |20 |1d |0 | |
+ROW |70148 |37046 |1 |12 |$.mem_limit |0 | |
+ROW |70149 |37047 |1 |12 |$.mem_alarm |0 | |
+ROW |70150 |37047 |2 |6 | |0 | |
+ROW |70151 |37048 |1 |12 |$.fd_used |0 | |
+ROW |70152 |37049 |1 |12 |$.disk_free_limit |0 | |
+ROW |70153 |37050 |1 |12 |$.disk_free_alarm |0 | |
+ROW |70154 |37050 |2 |6 | |0 | |
+ROW |70155 |37051 |1 |12 |$.mem_used |0 | |
+ROW |70156 |37053 |1 |12 |$.management_version |0 | |
+ROW |70157 |37053 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version >= 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |70158 |37054 |1 |12 |$.management_version |0 | |
+ROW |70159 |37054 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version >= 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |70160 |37055 |1 |12 |$.management_version |0 | |
+ROW |70161 |37055 |2 |21 |var rabbit_version = parseInt(value.split('.')[0]) * 10000 +&bsn; parseInt(value.split('.')[1]) * 100 +&bsn; parseInt(value.split('.')[2]) &bsn;return JSON.stringify(rabbit_version < 30810 ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |70162 |37057 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70163 |37057 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70164 |37057 |3 |20 |3h |0 | |
+ROW |70165 |37058 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70166 |37058 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70167 |37058 |3 |20 |3h |0 | |
+ROW |70168 |37059 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70169 |37059 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70170 |37059 |3 |20 |3h |0 | |
+ROW |70171 |37060 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70172 |37060 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70173 |37060 |3 |20 |3h |0 | |
+ROW |70174 |37061 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70175 |37061 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70176 |37061 |3 |20 |3h |0 | |
+ROW |70177 |37062 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |70178 |37062 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |70179 |37062 |3 |20 |3h |0 | |
+ROW |70180 |37063 |1 |5 |\n\s?\n(.*)&bsn;\1 |0 | |
+ROW |70181 |37063 |2 |12 |$.status |0 | |
+ROW |70182 |37063 |3 |6 | |2 |0 |
+ROW |70183 |37064 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |70184 |37065 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |70185 |37066 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |70186 |37067 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |70187 |37068 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |70188 |37069 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |70189 |37070 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |70190 |37071 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |70191 |37072 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |70192 |37073 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |70193 |37074 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |70194 |37075 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |70195 |37076 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |70196 |37077 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |70197 |37078 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |70198 |37079 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |70199 |37080 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |70200 |37081 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |70201 |37082 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |70202 |37083 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |70203 |37084 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |70204 |37085 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |70205 |37086 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |70206 |37087 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |70207 |37088 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |70208 |37089 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |70209 |37090 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |70210 |37091 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |70211 |37092 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |70212 |37093 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |70213 |37094 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |70214 |37095 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |70215 |37096 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |70216 |37097 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |70217 |37099 |1 |20 |10m |0 | |
+ROW |70218 |37101 |1 |12 |$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")] |2 |[] |
+ROW |70219 |37101 |2 |21 |return JSON.stringify(value != "[]" ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |70220 |37101 |3 |20 |6h |0 | |
+ROW |70221 |37102 |1 |12 |$..HostNumericSensorInfo[?(@.name=="VMware Rollup Health State")].healthState.label.first() |0 | |
+ROW |70222 |37103 |1 |1 |1000000 |0 | |
+ROW |70223 |37103 |2 |20 |1h |0 | |
+ROW |70224 |37104 |1 |1 |1000000 |0 | |
+ROW |70225 |37104 |2 |20 |1h |0 | |
+ROW |70226 |37105 |1 |1 |1000000 |0 | |
+ROW |70227 |37105 |2 |20 |1h |0 | |
+ROW |70228 |37106 |1 |1 |1000000 |0 | |
+ROW |70229 |37106 |2 |20 |1h |0 | |
+ROW |70230 |37107 |1 |1 |1000000 |0 | |
+ROW |70231 |37107 |2 |20 |1h |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|
@@ -50024,12 +50091,6 @@ ROW |107 |30876 |{#TABLE} |$.table
ROW |108 |30962 |{#ETCD.PEER} |$.labels.To |
ROW |109 |31005 |{#APPPOOL} |$.Name |
ROW |110 |31047 |{#APPPOOL} |$.Name |
-ROW |115 |32879 |{#EXCHANGE} |$.name |
-ROW |116 |32879 |{#TYPE} |$.type |
-ROW |117 |32879 |{#VHOST} |$.vhost |
-ROW |118 |32883 |{#QUEUE} |$.name |
-ROW |119 |32883 |{#VHOST} |$.vhost |
-ROW |120 |32883 |{#NODE} |$.node |
ROW |121 |32971 |{#EXCHANGE} |$.name |
ROW |122 |32971 |{#TYPE} |$.type |
ROW |123 |32971 |{#VHOST} |$.vhost |
@@ -50050,6 +50111,12 @@ ROW |137 |34125 |{#HTTP_LISTENER} |$.properties.["http-listen
ROW |138 |34125 |{#JMXOBJ} |$.object |
ROW |139 |34126 |{#DEPLOYMENT} |$.properties.deployment |
ROW |140 |34126 |{#JMXOBJ} |$.object |
+ROW |141 |37052 |{#EXCHANGE} |$.name |
+ROW |142 |37052 |{#TYPE} |$.type |
+ROW |143 |37052 |{#VHOST} |$.vhost |
+ROW |144 |37056 |{#QUEUE} |$.name |
+ROW |145 |37056 |{#VHOST} |$.vhost |
+ROW |146 |37056 |{#NODE} |$.node |
TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
@@ -50089,82 +50156,82 @@ ROW |543 |34756 |Trigger disabled |1 |0
ROW |544 |34756 |Trigger enabled |2 |0 | |0 |
ROW |545 |34801 |Trigger disabled |1 |0 | |0 |
ROW |546 |34801 |Trigger enabled |2 |0 | |0 |
-ROW |1032 |30961 |trigger |1 |0 | |0 |
-ROW |1033 |30193 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1034 |30194 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1035 |30195 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1036 |30236 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1037 |30237 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1038 |30238 |Discard HTTP status codes |1 |0 | |0 |
-ROW |1039 |33063 |Primary metrics |1 |0 | |0 |
-ROW |1040 |33063 |Arbiter metrics |2 |0 | |0 |
-ROW |1041 |32742 |ID filter |1 |0 | |0 |
-ROW |1042 |32743 |Self-test |1 |0 | |0 |
-ROW |1043 |32743 |Not NVMe |2 |0 | |0 |
-ROW |1044 |32754 |ID filter |1 |0 | |0 |
-ROW |1045 |32755 |Self-test |1 |0 | |0 |
-ROW |1046 |32755 |Not NVMe |2 |0 | |0 |
-ROW |1047 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1048 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1049 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1050 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1051 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1052 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1053 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1054 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1055 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |1056 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |1057 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |1058 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |1059 |35911 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1060 |35961 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1061 |35962 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1062 |35994 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1063 |36038 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1064 |36072 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1065 |36073 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1066 |36139 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1067 |36140 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1068 |36206 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1069 |36207 |Trigger disabled |1 |0 | |0 |
-ROW |1070 |36207 |Trigger enabled |2 |0 | |0 |
-ROW |1071 |36239 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1072 |36278 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1073 |36322 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1074 |36366 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1075 |36410 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1076 |36455 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1077 |36500 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1078 |36545 |Don't create triggers for matching interface|1 |0 | |0 |
-ROW |1079 |33598 |Temp |1 |0 | |0 |
-ROW |1080 |33599 |Temp |1 |0 | |0 |
-ROW |1081 |33649 |Temp |1 |0 | |0 |
-ROW |1082 |33650 |Temp |1 |0 | |0 |
-ROW |1083 |33700 |Temp |1 |0 | |0 |
-ROW |1084 |33701 |Temp |1 |0 | |0 |
-ROW |1085 |33751 |Temp |1 |0 | |0 |
-ROW |1086 |33752 |Temp |1 |0 | |0 |
-ROW |1087 |33802 |Temp |1 |0 | |0 |
-ROW |1088 |33803 |Temp |1 |0 | |0 |
-ROW |1089 |33853 |Temp |1 |0 | |0 |
-ROW |1090 |33854 |Temp |1 |0 | |0 |
-ROW |1091 |33904 |Temp |1 |0 | |0 |
-ROW |1092 |33905 |Temp |1 |0 | |0 |
-ROW |1093 |33462 |Temp |1 |0 | |0 |
-ROW |1094 |33463 |Temp |1 |0 | |0 |
-ROW |1095 |33960 |Temp |1 |0 | |0 |
-ROW |1096 |33961 |Temp |1 |0 | |0 |
-ROW |1097 |34011 |Temp |1 |0 | |0 |
-ROW |1098 |34012 |Temp |1 |0 | |0 |
-ROW |1099 |34062 |Temp |1 |0 | |0 |
-ROW |1100 |34063 |Temp |1 |0 | |0 |
-ROW |1101 |32618 |Do not discover aggregate metrics |1 |0 | |0 |
-ROW |1102 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
-ROW |1103 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |1104 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |1105 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |1106 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |1107 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |1108 |30961 |trigger |1 |0 | |0 |
+ROW |1109 |30193 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1110 |30194 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1111 |30195 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1112 |30236 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1113 |30237 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1114 |30238 |Discard HTTP status codes |1 |0 | |0 |
+ROW |1115 |33063 |Primary metrics |1 |0 | |0 |
+ROW |1116 |33063 |Arbiter metrics |2 |0 | |0 |
+ROW |1117 |32742 |ID filter |1 |0 | |0 |
+ROW |1118 |32743 |Self-test |1 |0 | |0 |
+ROW |1119 |32743 |Not NVMe |2 |0 | |0 |
+ROW |1120 |32754 |ID filter |1 |0 | |0 |
+ROW |1121 |32755 |Self-test |1 |0 | |0 |
+ROW |1122 |32755 |Not NVMe |2 |0 | |0 |
+ROW |1123 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1124 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1125 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1126 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1127 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1128 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1129 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1130 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1131 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |1132 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |1133 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |1134 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |1135 |35911 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1136 |35961 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1137 |35962 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1138 |35994 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1139 |36038 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1140 |36072 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1141 |36073 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1142 |36139 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1143 |36140 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1144 |36206 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1145 |36207 |Trigger disabled |1 |0 | |0 |
+ROW |1146 |36207 |Trigger enabled |2 |0 | |0 |
+ROW |1147 |36239 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1148 |36278 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1149 |36322 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1150 |36366 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1151 |36410 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1152 |36455 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1153 |36500 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1154 |36545 |Don't create triggers for matching interface|1 |0 | |0 |
+ROW |1155 |33598 |Temp |1 |0 | |0 |
+ROW |1156 |33599 |Temp |1 |0 | |0 |
+ROW |1157 |33649 |Temp |1 |0 | |0 |
+ROW |1158 |33650 |Temp |1 |0 | |0 |
+ROW |1159 |33700 |Temp |1 |0 | |0 |
+ROW |1160 |33701 |Temp |1 |0 | |0 |
+ROW |1161 |33751 |Temp |1 |0 | |0 |
+ROW |1162 |33752 |Temp |1 |0 | |0 |
+ROW |1163 |33802 |Temp |1 |0 | |0 |
+ROW |1164 |33803 |Temp |1 |0 | |0 |
+ROW |1165 |33853 |Temp |1 |0 | |0 |
+ROW |1166 |33854 |Temp |1 |0 | |0 |
+ROW |1167 |33904 |Temp |1 |0 | |0 |
+ROW |1168 |33905 |Temp |1 |0 | |0 |
+ROW |1169 |33462 |Temp |1 |0 | |0 |
+ROW |1170 |33463 |Temp |1 |0 | |0 |
+ROW |1171 |33960 |Temp |1 |0 | |0 |
+ROW |1172 |33961 |Temp |1 |0 | |0 |
+ROW |1173 |34011 |Temp |1 |0 | |0 |
+ROW |1174 |34012 |Temp |1 |0 | |0 |
+ROW |1175 |34062 |Temp |1 |0 | |0 |
+ROW |1176 |34063 |Temp |1 |0 | |0 |
+ROW |1177 |32618 |Do not discover aggregate metrics |1 |0 | |0 |
+ROW |1178 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |1179 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |1180 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |1181 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |1182 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |1183 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
@@ -50204,78 +50271,78 @@ ROW |473 |543 |8 |{#ZYXEL.IF.NAME}
ROW |474 |544 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
ROW |475 |545 |8 |{#ZYXEL.IF.NAME} |.* |
ROW |476 |546 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |932 |1032 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
-ROW |933 |1033 |8 |{#MODE} |tcp |
-ROW |934 |1034 |8 |{#MODE} |tcp |
-ROW |935 |1035 |8 |{#MODE} |tcp |
-ROW |936 |1036 |8 |{#MODE} |tcp |
-ROW |937 |1037 |8 |{#MODE} |tcp |
-ROW |938 |1038 |8 |{#MODE} |tcp |
-ROW |939 |1039 |8 |{#NODE_STATE} |1 |
-ROW |940 |1040 |8 |{#NODE_STATE} |7 |
-ROW |941 |1041 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |942 |1041 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |943 |1042 |8 |{#DISKTYPE} |nvme |
-ROW |944 |1043 |9 |{#DISKTYPE} |nvme |
-ROW |945 |1044 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |946 |1044 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |947 |1045 |8 |{#DISKTYPE} |nvme |
-ROW |948 |1046 |9 |{#DISKTYPE} |nvme |
-ROW |949 |1047 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |950 |1048 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |951 |1049 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |952 |1050 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |953 |1051 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |954 |1052 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |955 |1053 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |956 |1054 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |957 |1055 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |958 |1056 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |959 |1057 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |960 |1058 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |961 |1059 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |962 |1060 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |963 |1061 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |964 |1062 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |965 |1063 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |966 |1064 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |967 |1065 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |968 |1066 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |969 |1067 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |970 |1068 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |971 |1069 |8 |{#ZYXEL.IF.NAME} |.* |
-ROW |972 |1070 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |973 |1071 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |974 |1072 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |975 |1073 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |976 |1074 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |977 |1075 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |978 |1076 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |979 |1077 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |980 |1078 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
-ROW |981 |1079 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |982 |1080 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |983 |1081 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |984 |1082 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |985 |1083 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |986 |1084 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |987 |1085 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |988 |1086 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |989 |1087 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |990 |1088 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |991 |1089 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |992 |1090 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |993 |1091 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |994 |1092 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |995 |1093 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |996 |1094 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |997 |1095 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |998 |1096 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |999 |1097 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1000 |1098 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1001 |1099 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |1002 |1100 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |1003 |1101 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |1004 |1108 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES} |
+ROW |1005 |1109 |8 |{#MODE} |tcp |
+ROW |1006 |1110 |8 |{#MODE} |tcp |
+ROW |1007 |1111 |8 |{#MODE} |tcp |
+ROW |1008 |1112 |8 |{#MODE} |tcp |
+ROW |1009 |1113 |8 |{#MODE} |tcp |
+ROW |1010 |1114 |8 |{#MODE} |tcp |
+ROW |1011 |1115 |8 |{#NODE_STATE} |1 |
+ROW |1012 |1116 |8 |{#NODE_STATE} |7 |
+ROW |1013 |1117 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |1014 |1117 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |1015 |1118 |8 |{#DISKTYPE} |nvme |
+ROW |1016 |1119 |9 |{#DISKTYPE} |nvme |
+ROW |1017 |1120 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |1018 |1120 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |1019 |1121 |8 |{#DISKTYPE} |nvme |
+ROW |1020 |1122 |9 |{#DISKTYPE} |nvme |
+ROW |1021 |1123 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1022 |1124 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1023 |1125 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1024 |1126 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1025 |1127 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1026 |1128 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1027 |1129 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1028 |1130 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1029 |1131 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |1030 |1132 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |1031 |1133 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |1032 |1134 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |1033 |1135 |9 |{#CISCO.IF.NAME} |{$CISCO.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1034 |1136 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1035 |1137 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1036 |1138 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1037 |1139 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1038 |1140 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1039 |1141 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1040 |1142 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1041 |1143 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1042 |1144 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1043 |1145 |8 |{#ZYXEL.IF.NAME} |.* |
+ROW |1044 |1146 |8 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1045 |1147 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1046 |1148 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1047 |1149 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1048 |1150 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1049 |1151 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1050 |1152 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1051 |1153 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1052 |1154 |9 |{#ZYXEL.IF.NAME} |{$ZYXEL.LLD.FILTER.IF.CONTROL.MATCHES}|
+ROW |1053 |1155 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1054 |1156 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1055 |1157 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1056 |1158 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1057 |1159 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1058 |1160 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1059 |1161 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1060 |1162 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1061 |1163 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1062 |1164 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1063 |1165 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1064 |1166 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1065 |1167 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1066 |1168 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1067 |1169 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1068 |1170 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1069 |1171 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1070 |1172 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1071 |1173 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1072 |1174 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1073 |1175 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |1074 |1176 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |1075 |1177 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
@@ -50315,85 +50382,85 @@ ROW |564 |543 |1 |8 |.*
ROW |565 |544 |1 |8 |.* |
ROW |566 |545 |1 |8 |.* |
ROW |567 |546 |1 |8 |.* |
-ROW |1071 |1032 |1 |2 |Too many failed gRPC requests |
-ROW |1072 |1033 |0 |2 |Number of responses with codes |
-ROW |1073 |1034 |0 |2 |Number of responses with codes |
-ROW |1074 |1035 |0 |2 |Number of responses with codes |
-ROW |1075 |1036 |0 |2 |Number of responses with codes |
-ROW |1076 |1037 |0 |2 |Number of responses with codes |
-ROW |1077 |1038 |0 |2 |Number of responses with codes |
-ROW |1078 |1039 |0 |2 |Number of replicas |
-ROW |1079 |1039 |0 |2 |Unhealthy replicas |
-ROW |1080 |1039 |0 |2 |Number of unhealthy replicas |
-ROW |1081 |1039 |0 |2 |Replication lag |
-ROW |1082 |1040 |0 |2 |Replication lag |
-ROW |1083 |1041 |0 |8 | |
-ROW |1084 |1042 |0 |2 |Self-test |
-ROW |1085 |1043 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |1086 |1044 |0 |8 | |
-ROW |1087 |1045 |0 |2 |Self-test |
-ROW |1088 |1046 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |1089 |1047 |1 |8 |Temperature is below the warning threshold |
-ROW |1090 |1048 |1 |8 |Temperature is below the critical threshold|
-ROW |1091 |1049 |1 |8 |Temperature is above the warning threshold |
-ROW |1092 |1050 |1 |8 |Temperature is above the critical threshold|
-ROW |1093 |1051 |1 |8 |Fan speed is below the warning threshold |
-ROW |1094 |1052 |1 |8 |Fan speed is below the critical threshold |
-ROW |1095 |1053 |1 |8 |Fan speed is above the warning threshold |
-ROW |1096 |1054 |1 |8 |Fan speed is above the critical threshold |
-ROW |1097 |1055 |1 |8 |Voltage is below the warning threshold |
-ROW |1098 |1056 |1 |8 |Voltage is below the critical threshold |
-ROW |1099 |1057 |1 |8 |Voltage is above the warning threshold |
-ROW |1100 |1058 |1 |8 |Voltage is above the critical threshold |
-ROW |1101 |1059 |1 |8 |.* |
-ROW |1102 |1060 |1 |8 |.* |
-ROW |1103 |1061 |1 |8 |.* |
-ROW |1104 |1062 |1 |8 |.* |
-ROW |1105 |1063 |1 |8 |.* |
-ROW |1106 |1064 |1 |8 |.* |
-ROW |1107 |1065 |1 |8 |.* |
-ROW |1108 |1066 |1 |8 |.* |
-ROW |1109 |1067 |1 |8 |.* |
-ROW |1110 |1068 |1 |8 |.* |
-ROW |1111 |1069 |1 |8 |.* |
-ROW |1112 |1070 |1 |8 |.* |
-ROW |1113 |1071 |1 |8 |.* |
-ROW |1114 |1072 |1 |8 |.* |
-ROW |1115 |1073 |1 |8 |.* |
-ROW |1116 |1074 |1 |8 |.* |
-ROW |1117 |1075 |1 |8 |.* |
-ROW |1118 |1076 |1 |8 |.* |
-ROW |1119 |1077 |1 |8 |.* |
-ROW |1120 |1078 |1 |8 |.* |
-ROW |1121 |1079 |0 |2 |Humidity |
-ROW |1122 |1080 |0 |2 |Humidity |
-ROW |1123 |1081 |0 |2 |Humidity |
-ROW |1124 |1082 |0 |2 |Humidity |
-ROW |1125 |1083 |0 |2 |Humidity |
-ROW |1126 |1084 |0 |2 |Humidity |
-ROW |1127 |1085 |0 |2 |Humidity |
-ROW |1128 |1086 |0 |2 |Humidity |
-ROW |1129 |1087 |0 |2 |Humidity |
-ROW |1130 |1088 |0 |2 |Humidity |
-ROW |1131 |1089 |0 |2 |Humidity |
-ROW |1132 |1090 |0 |2 |Humidity |
-ROW |1133 |1091 |0 |2 |Humidity |
-ROW |1134 |1092 |0 |2 |Humidity |
-ROW |1135 |1093 |0 |2 |Humidity |
-ROW |1136 |1094 |0 |2 |Humidity |
-ROW |1137 |1095 |0 |2 |Humidity |
-ROW |1138 |1096 |0 |2 |Humidity |
-ROW |1139 |1097 |0 |2 |Humidity |
-ROW |1140 |1098 |0 |2 |Humidity |
-ROW |1141 |1099 |0 |2 |Humidity |
-ROW |1142 |1100 |0 |2 |Humidity |
-ROW |1143 |1101 |0 |2 |Saved |
-ROW |1144 |1102 |1 |2 |{#SENSOR_LO_WARN} |
-ROW |1145 |1103 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |1146 |1104 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |1147 |1105 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |1148 |1106 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |1149 |1107 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |1150 |1108 |1 |2 |Too many failed gRPC requests |
+ROW |1151 |1109 |0 |2 |Number of responses with codes |
+ROW |1152 |1110 |0 |2 |Number of responses with codes |
+ROW |1153 |1111 |0 |2 |Number of responses with codes |
+ROW |1154 |1112 |0 |2 |Number of responses with codes |
+ROW |1155 |1113 |0 |2 |Number of responses with codes |
+ROW |1156 |1114 |0 |2 |Number of responses with codes |
+ROW |1157 |1115 |0 |2 |Number of replicas |
+ROW |1158 |1115 |0 |2 |Unhealthy replicas |
+ROW |1159 |1115 |0 |2 |Number of unhealthy replicas |
+ROW |1160 |1115 |0 |2 |Replication lag |
+ROW |1161 |1116 |0 |2 |Replication lag |
+ROW |1162 |1117 |0 |8 | |
+ROW |1163 |1118 |0 |2 |Self-test |
+ROW |1164 |1119 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |1165 |1120 |0 |8 | |
+ROW |1166 |1121 |0 |2 |Self-test |
+ROW |1167 |1122 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |1168 |1123 |1 |8 |Temperature is below the warning threshold |
+ROW |1169 |1124 |1 |8 |Temperature is below the critical threshold|
+ROW |1170 |1125 |1 |8 |Temperature is above the warning threshold |
+ROW |1171 |1126 |1 |8 |Temperature is above the critical threshold|
+ROW |1172 |1127 |1 |8 |Fan speed is below the warning threshold |
+ROW |1173 |1128 |1 |8 |Fan speed is below the critical threshold |
+ROW |1174 |1129 |1 |8 |Fan speed is above the warning threshold |
+ROW |1175 |1130 |1 |8 |Fan speed is above the critical threshold |
+ROW |1176 |1131 |1 |8 |Voltage is below the warning threshold |
+ROW |1177 |1132 |1 |8 |Voltage is below the critical threshold |
+ROW |1178 |1133 |1 |8 |Voltage is above the warning threshold |
+ROW |1179 |1134 |1 |8 |Voltage is above the critical threshold |
+ROW |1180 |1135 |1 |8 |.* |
+ROW |1181 |1136 |1 |8 |.* |
+ROW |1182 |1137 |1 |8 |.* |
+ROW |1183 |1138 |1 |8 |.* |
+ROW |1184 |1139 |1 |8 |.* |
+ROW |1185 |1140 |1 |8 |.* |
+ROW |1186 |1141 |1 |8 |.* |
+ROW |1187 |1142 |1 |8 |.* |
+ROW |1188 |1143 |1 |8 |.* |
+ROW |1189 |1144 |1 |8 |.* |
+ROW |1190 |1145 |1 |8 |.* |
+ROW |1191 |1146 |1 |8 |.* |
+ROW |1192 |1147 |1 |8 |.* |
+ROW |1193 |1148 |1 |8 |.* |
+ROW |1194 |1149 |1 |8 |.* |
+ROW |1195 |1150 |1 |8 |.* |
+ROW |1196 |1151 |1 |8 |.* |
+ROW |1197 |1152 |1 |8 |.* |
+ROW |1198 |1153 |1 |8 |.* |
+ROW |1199 |1154 |1 |8 |.* |
+ROW |1200 |1155 |0 |2 |Humidity |
+ROW |1201 |1156 |0 |2 |Humidity |
+ROW |1202 |1157 |0 |2 |Humidity |
+ROW |1203 |1158 |0 |2 |Humidity |
+ROW |1204 |1159 |0 |2 |Humidity |
+ROW |1205 |1160 |0 |2 |Humidity |
+ROW |1206 |1161 |0 |2 |Humidity |
+ROW |1207 |1162 |0 |2 |Humidity |
+ROW |1208 |1163 |0 |2 |Humidity |
+ROW |1209 |1164 |0 |2 |Humidity |
+ROW |1210 |1165 |0 |2 |Humidity |
+ROW |1211 |1166 |0 |2 |Humidity |
+ROW |1212 |1167 |0 |2 |Humidity |
+ROW |1213 |1168 |0 |2 |Humidity |
+ROW |1214 |1169 |0 |2 |Humidity |
+ROW |1215 |1170 |0 |2 |Humidity |
+ROW |1216 |1171 |0 |2 |Humidity |
+ROW |1217 |1172 |0 |2 |Humidity |
+ROW |1218 |1173 |0 |2 |Humidity |
+ROW |1219 |1174 |0 |2 |Humidity |
+ROW |1220 |1175 |0 |2 |Humidity |
+ROW |1221 |1176 |0 |2 |Humidity |
+ROW |1222 |1177 |0 |2 |Saved |
+ROW |1223 |1178 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |1224 |1179 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |1225 |1180 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |1226 |1181 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |1227 |1182 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |1228 |1183 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
@@ -50433,85 +50500,85 @@ ROW |564 |0 |
ROW |565 |0 |
ROW |566 |0 |
ROW |567 |0 |
-ROW |1071 |0 |
-ROW |1072 |0 |
-ROW |1073 |0 |
-ROW |1074 |0 |
-ROW |1075 |0 |
-ROW |1076 |0 |
-ROW |1077 |0 |
-ROW |1078 |0 |
-ROW |1079 |0 |
-ROW |1080 |0 |
-ROW |1081 |0 |
-ROW |1082 |0 |
-ROW |1083 |0 |
-ROW |1084 |0 |
-ROW |1085 |0 |
-ROW |1086 |0 |
-ROW |1087 |0 |
-ROW |1088 |0 |
-ROW |1089 |0 |
-ROW |1090 |0 |
-ROW |1091 |0 |
-ROW |1092 |0 |
-ROW |1093 |0 |
-ROW |1094 |0 |
-ROW |1095 |0 |
-ROW |1096 |0 |
-ROW |1097 |0 |
-ROW |1098 |0 |
-ROW |1099 |0 |
-ROW |1100 |0 |
-ROW |1101 |0 |
-ROW |1102 |0 |
-ROW |1103 |0 |
-ROW |1104 |0 |
-ROW |1105 |0 |
-ROW |1106 |0 |
-ROW |1107 |0 |
-ROW |1108 |0 |
-ROW |1109 |0 |
-ROW |1110 |0 |
-ROW |1111 |0 |
-ROW |1112 |0 |
-ROW |1113 |0 |
-ROW |1114 |0 |
-ROW |1115 |0 |
-ROW |1116 |0 |
-ROW |1117 |0 |
-ROW |1118 |0 |
-ROW |1119 |0 |
-ROW |1120 |0 |
-ROW |1121 |0 |
-ROW |1122 |0 |
-ROW |1123 |0 |
-ROW |1124 |0 |
-ROW |1125 |0 |
-ROW |1126 |0 |
-ROW |1127 |0 |
-ROW |1128 |0 |
-ROW |1129 |0 |
-ROW |1130 |0 |
-ROW |1131 |0 |
-ROW |1132 |0 |
-ROW |1133 |0 |
-ROW |1134 |0 |
-ROW |1135 |0 |
-ROW |1136 |0 |
-ROW |1137 |0 |
-ROW |1138 |0 |
-ROW |1139 |0 |
-ROW |1140 |0 |
-ROW |1141 |0 |
-ROW |1142 |0 |
-ROW |1143 |0 |
-ROW |1144 |0 |
-ROW |1145 |0 |
-ROW |1146 |0 |
-ROW |1147 |0 |
-ROW |1148 |0 |
-ROW |1149 |0 |
+ROW |1150 |0 |
+ROW |1151 |0 |
+ROW |1152 |0 |
+ROW |1153 |0 |
+ROW |1154 |0 |
+ROW |1155 |0 |
+ROW |1156 |0 |
+ROW |1157 |0 |
+ROW |1158 |0 |
+ROW |1159 |0 |
+ROW |1160 |0 |
+ROW |1161 |0 |
+ROW |1162 |0 |
+ROW |1163 |0 |
+ROW |1164 |0 |
+ROW |1165 |0 |
+ROW |1166 |0 |
+ROW |1167 |0 |
+ROW |1168 |0 |
+ROW |1169 |0 |
+ROW |1170 |0 |
+ROW |1171 |0 |
+ROW |1172 |0 |
+ROW |1173 |0 |
+ROW |1174 |0 |
+ROW |1175 |0 |
+ROW |1176 |0 |
+ROW |1177 |0 |
+ROW |1178 |0 |
+ROW |1179 |0 |
+ROW |1180 |0 |
+ROW |1181 |0 |
+ROW |1182 |0 |
+ROW |1183 |0 |
+ROW |1184 |0 |
+ROW |1185 |0 |
+ROW |1186 |0 |
+ROW |1187 |0 |
+ROW |1188 |0 |
+ROW |1189 |0 |
+ROW |1190 |0 |
+ROW |1191 |0 |
+ROW |1192 |0 |
+ROW |1193 |0 |
+ROW |1194 |0 |
+ROW |1195 |0 |
+ROW |1196 |0 |
+ROW |1197 |0 |
+ROW |1198 |0 |
+ROW |1199 |0 |
+ROW |1200 |0 |
+ROW |1201 |0 |
+ROW |1202 |0 |
+ROW |1203 |0 |
+ROW |1204 |0 |
+ROW |1205 |0 |
+ROW |1206 |0 |
+ROW |1207 |0 |
+ROW |1208 |0 |
+ROW |1209 |0 |
+ROW |1210 |0 |
+ROW |1211 |0 |
+ROW |1212 |0 |
+ROW |1213 |0 |
+ROW |1214 |0 |
+ROW |1215 |0 |
+ROW |1216 |0 |
+ROW |1217 |0 |
+ROW |1218 |0 |
+ROW |1219 |0 |
+ROW |1220 |0 |
+ROW |1221 |0 |
+ROW |1222 |0 |
+ROW |1223 |0 |
+ROW |1224 |0 |
+ROW |1225 |0 |
+ROW |1226 |0 |
+ROW |1227 |0 |
+ROW |1228 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
@@ -50551,83 +50618,83 @@ ROW |564 |1 |
ROW |565 |0 |
ROW |566 |1 |
ROW |567 |0 |
-ROW |1071 |0 |
-ROW |1072 |1 |
-ROW |1073 |1 |
-ROW |1074 |1 |
-ROW |1075 |1 |
-ROW |1076 |1 |
-ROW |1077 |1 |
-ROW |1078 |0 |
-ROW |1079 |0 |
-ROW |1080 |0 |
-ROW |1081 |1 |
-ROW |1082 |1 |
-ROW |1083 |1 |
-ROW |1084 |1 |
-ROW |1085 |1 |
-ROW |1086 |1 |
-ROW |1087 |1 |
-ROW |1088 |1 |
-ROW |1089 |1 |
-ROW |1090 |1 |
-ROW |1091 |1 |
-ROW |1092 |1 |
-ROW |1093 |1 |
-ROW |1094 |1 |
-ROW |1095 |1 |
-ROW |1096 |1 |
-ROW |1097 |1 |
-ROW |1098 |1 |
-ROW |1099 |1 |
-ROW |1100 |1 |
-ROW |1101 |1 |
-ROW |1102 |1 |
-ROW |1103 |1 |
-ROW |1104 |1 |
-ROW |1105 |1 |
-ROW |1106 |1 |
-ROW |1107 |1 |
-ROW |1108 |1 |
-ROW |1109 |1 |
-ROW |1110 |1 |
-ROW |1111 |1 |
-ROW |1112 |0 |
-ROW |1113 |1 |
-ROW |1114 |1 |
-ROW |1115 |1 |
-ROW |1116 |1 |
-ROW |1117 |1 |
-ROW |1118 |1 |
-ROW |1119 |1 |
-ROW |1120 |1 |
-ROW |1121 |1 |
-ROW |1122 |1 |
-ROW |1123 |1 |
-ROW |1124 |1 |
-ROW |1125 |1 |
-ROW |1126 |1 |
-ROW |1127 |1 |
-ROW |1128 |1 |
-ROW |1129 |1 |
-ROW |1130 |1 |
-ROW |1131 |1 |
-ROW |1132 |1 |
-ROW |1133 |1 |
-ROW |1134 |1 |
-ROW |1135 |1 |
-ROW |1136 |1 |
-ROW |1137 |1 |
-ROW |1138 |1 |
-ROW |1139 |1 |
-ROW |1140 |1 |
-ROW |1141 |1 |
-ROW |1142 |1 |
-ROW |1143 |1 |
-ROW |1144 |1 |
-ROW |1145 |1 |
-ROW |1146 |1 |
-ROW |1147 |1 |
-ROW |1148 |1 |
-ROW |1149 |1 |
+ROW |1150 |0 |
+ROW |1151 |1 |
+ROW |1152 |1 |
+ROW |1153 |1 |
+ROW |1154 |1 |
+ROW |1155 |1 |
+ROW |1156 |1 |
+ROW |1157 |0 |
+ROW |1158 |0 |
+ROW |1159 |0 |
+ROW |1160 |1 |
+ROW |1161 |1 |
+ROW |1162 |1 |
+ROW |1163 |1 |
+ROW |1164 |1 |
+ROW |1165 |1 |
+ROW |1166 |1 |
+ROW |1167 |1 |
+ROW |1168 |1 |
+ROW |1169 |1 |
+ROW |1170 |1 |
+ROW |1171 |1 |
+ROW |1172 |1 |
+ROW |1173 |1 |
+ROW |1174 |1 |
+ROW |1175 |1 |
+ROW |1176 |1 |
+ROW |1177 |1 |
+ROW |1178 |1 |
+ROW |1179 |1 |
+ROW |1180 |1 |
+ROW |1181 |1 |
+ROW |1182 |1 |
+ROW |1183 |1 |
+ROW |1184 |1 |
+ROW |1185 |1 |
+ROW |1186 |1 |
+ROW |1187 |1 |
+ROW |1188 |1 |
+ROW |1189 |1 |
+ROW |1190 |1 |
+ROW |1191 |0 |
+ROW |1192 |1 |
+ROW |1193 |1 |
+ROW |1194 |1 |
+ROW |1195 |1 |
+ROW |1196 |1 |
+ROW |1197 |1 |
+ROW |1198 |1 |
+ROW |1199 |1 |
+ROW |1200 |1 |
+ROW |1201 |1 |
+ROW |1202 |1 |
+ROW |1203 |1 |
+ROW |1204 |1 |
+ROW |1205 |1 |
+ROW |1206 |1 |
+ROW |1207 |1 |
+ROW |1208 |1 |
+ROW |1209 |1 |
+ROW |1210 |1 |
+ROW |1211 |1 |
+ROW |1212 |1 |
+ROW |1213 |1 |
+ROW |1214 |1 |
+ROW |1215 |1 |
+ROW |1216 |1 |
+ROW |1217 |1 |
+ROW |1218 |1 |
+ROW |1219 |1 |
+ROW |1220 |1 |
+ROW |1221 |1 |
+ROW |1222 |1 |
+ROW |1223 |1 |
+ROW |1224 |1 |
+ROW |1225 |1 |
+ROW |1226 |1 |
+ROW |1227 |1 |
+ROW |1228 |1 |