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>2021-03-22 16:33:17 +0300
committerContinuous Integration <ci@zabbix.com>2021-03-22 16:33:17 +0300
commit3cdb77b6849c69b286a5ae22d80e9ba986dd0f5b (patch)
treec018539e76d5151bb0f4db204b404f121b01b62f
parent88b9e2fc69ccb49268c8f57e1f3437c7ad325cec (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.0.10rc1
-rw-r--r--create/src/data.tmpl285
-rw-r--r--create/src/templates.tmpl28958
2 files changed, 16613 insertions, 12630 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index b953b1e3c93..a2c970c3b95 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -39,6 +39,7 @@ ROW |13 |Templates/Databases |0 |0 |
ROW |14 |Templates/Virtualization |0 |0 |
ROW |15 |Templates/Telephony |0 |0 |
ROW |16 |Templates/SAN |0 |0 |
+ROW |17 |Templates/Power |0 |0 |
TABLE |drules
FIELDS|druleid|proxy_hostid|name |iprange |delay|status|
@@ -77,6 +78,7 @@ ROW |25 |4 |TOPdesk | | |
ROW |26 |4 |iTop | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Itop = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; if (params.log !== 'private_log' && params.log !== 'public_log') {&eol; throw 'Incorrect "itop_log" parameter given: ' + params.log + '\nMust be "private_log" or "public_log".';&eol; }&eol;&eol; Itop.params = params;&eol; if (typeof Itop.params.url === 'string') {&eol; if (!Itop.params.url.endsWith('/')) {&eol; Itop.params.url += '/';&eol; }&eol;&eol; Itop.params.url += 'webservices/rest.php?version=' + encodeURIComponent(Itop.params.api_version);&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Itop.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setCreatePayload: function () {&eol; json_data.operation = 'core/create';&eol; json_data.fields.org_id = Itop.params.organization_id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields.description = params.alert_message.replace('<', '&lt;')&eol; .replace('>', '&gt;')&eol; .replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol; },&eol;&eol; setUpdatePayload: function () {&eol; json_data.operation = 'core/update';&eol; json_data.key = Itop.params.id;&eol; json_data.fields.title = params.alert_subject;&eol; json_data.fields[Itop.params.log] = {&eol; add_item: {&eol; message: params.alert_subject + '\n' + params.alert_message,&eol; format: 'text'&eol; }&eol; };&eol; },&eol;&eol; request: function (data) {&eol; ['url', 'user', 'password', 'organization_id', 'class', 'api_version', 'id'].forEach(function (field) {&eol; if (typeof Itop.params !== 'object' &pipe;&pipe; typeof Itop.params[field] === 'undefined'&eol; &pipe;&pipe; Itop.params[field] === '' ) {&eol; throw 'Required Itop param is not set: "itop_' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Itop.params.url,&eol; request = new CurlHttpRequest(),&eol; object;&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol; request.AddHeader('Authorization: Basic ' + btoa(Itop.params.user + ':' + Itop.params.password));&eol;&eol; if (Itop.HTTPProxy) {&eol; request.SetProxy(Itop.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Sending request: ' + url + '&json_data=' + data);&eol;&eol; response = request.Post(url + '&json_data=' + encodeURIComponent(data));&eol;&eol; Zabbix.Log(4, '[ iTop Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ iTop Webhook ] Failed to parse response received from iTop');&eol; throw 'Failed to parse response received from iTop.\nRequest status code ' +&eol; request.Status() + '. Check debug log for more information.';&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; throw 'Request failed with status code ' + request.Status() + '. Check debug log for more information.';&eol; }&eol; else if (typeof response.code !== 'undefined' && response.code !== 0) {&eol; throw 'Request failed with iTop code ' + response.code + ': ' +&eol; JSON.stringify(response.message) + '. Check debug log for more information.';&eol; }&eol; else {&eol; Object.keys(response.objects)&eol; .forEach(function (key) {&eol; object = response.objects[key];&eol; });&eol;&eol; return {&eol; status: request.Status(),&eol; response: object.fields&eol; };&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; json_data = {},&eol; itop_params = {},&eol; result = {tags: {}},&eol; required_params = [&eol; 'alert_subject', 'summary', 'event_recovery_value',&eol; 'event_source', 'event_value', 'action_name'&eol; ];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('itop_')) {&eol; itop_params[key.substring(5)] = 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; Itop.setParams(itop_params);&eol; Itop.setProxy(params.HTTPProxy);&eol;&eol; json_data.operation = '';&eol; json_data.class = Itop.params.class;&eol; json_data.comment = Itop.params.comment;&eol; json_data.output_fields = 'id, friendlyname';&eol; json_data.fields = {};&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Itop.setCreatePayload();&eol; Itop.request(json_data);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && params.event_update_status === '0'&eol; && Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; Itop.setCreatePayload();&eol;&eol; var response = Itop.request(json_data);&eol;&eol; result.tags.__zbx_itop_id = response.response.id;&eol; result.tags.__zbx_itop_key = response.response.friendlyname;&eol; result.tags.__zbx_itop_link = params.itop_url + (params.itop_url.endsWith('/') ? '' : '/') +&eol; 'pages/UI.php?operation=details&class=' + encodeURIComponent(Itop.params.class) + '&id=' +&eol; encodeURIComponent(response.response.id);&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (Itop.params.id === '{EVENT.TAGS.__zbx_itop_id}') {&eol; throw 'Incorrect iTop ticket ID given: ' + Itop.params.id;&eol; }&eol; Itop.setUpdatePayload();&eol; Itop.request(json_data);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ iTop Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_itop_link} |iTop: {EVENT.TAGS.__zbx_itop_key} | |
ROW |27 |4 |Rocket.Chat | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var RocketChat = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; RocketChat.params = params;&eol; if (RocketChat.params.url && RocketChat.params.api_url) {&eol; if (!RocketChat.params.url.endsWith('/')) {&eol; RocketChat.params.url += '/';&eol; }&eol; if (!RocketChat.params.api_url.endsWith('/')) {&eol; RocketChat.params.api_url += '/';&eol; }&eol; if (RocketChat.params.api_url.startsWith('/')) {&eol; RocketChat.params.api_url = RocketChat.params.api_url.substring(1);&eol; }&eol;&eol; RocketChat.params.url += RocketChat.params.api_url;&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; RocketChat.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = [];&eol;&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[2] === 'undefined'&eol; &pipe;&pipe; (prefix[2] === 'p' && params.event_value === '1')&eol; &pipe;&pipe; (prefix[2] === 'r' && params.event_value === '0')) {&eol; data.push({&eol; title: field.substring(field.indexOf(':') + 1),&eol; value: fields[field],&eol; short: prefix[1] === 'short'&eol; });&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'api_url', 'user_id', 'user_token', 'send_to'].forEach(function (field) {&eol; if (typeof RocketChat.params !== 'object' &pipe;&pipe; typeof RocketChat.params[field] === 'undefined'&eol; &pipe;&pipe; RocketChat.params[field] === '' ) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = RocketChat.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('X-Auth-Token:' + RocketChat.params.user_token);&eol; request.AddHeader('X-User-Id:' + RocketChat.params.user_id);&eol;&eol; if (typeof RocketChat.HTTPProxy !== 'undefined' && RocketChat.HTTPProxy !== '') {&eol; request.SetProxy(RocketChat.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ RocketChat 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, '[ RocketChat Webhook ] Failed to parse response received from RocketChat');&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.message !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.message);&eol; }&eol; else if (response !== null && typeof response.error !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.error);&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; postMessage: function(use_default_message, message, fields) {&eol; var data = {&eol; channel: RocketChat.params.send_to,&eol; attachments: [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject&eol; }]&eol; };&eol;&eol; if (RocketChat.params.title_link) {&eol; data.attachments[0].title_link = RocketChat.params.title_link;&eol; }&eol;&eol; if (use_default_message) {&eol; data.attachments[0].text = message;&eol; }&eol; else {&eol; data.attachments[0].fields = RocketChat.addFields(fields);&eol; }&eol;&eol; var result = RocketChat.request('post', 'chat.postMessage', data);&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.message._id === 'undefined') {&eol; throw 'Cannot send RocketChat message. Check debug log for more information.';&eol; }&eol;&eol; return {&eol; id: result.response.message._id,&eol; rid: result.response.message.rid,&eol; channel: result.response.channel&eol; };&eol; },&eol;&eol; sendMessage: function(update, fields) {&eol;&eol; var data = {&eol; message: {&eol; rid: RocketChat.params.room_id,&eol; tmid: RocketChat.params.msg_id,&eol; tshow: true&eol; }&eol; };&eol;&eol; if (update.status === '0') {&eol; data.message.attachments = [{&eol; collapsed: false,&eol; color: RocketChat.params.color,&eol; title: params.alert_subject,&eol; title_link: RocketChat.params.title_link,&eol; fields: RocketChat.addFields(fields)&eol; }];&eol; }&eol; else {&eol; data.message.alias = update.user;&eol; data.message.msg = update.action;&eol; if (update.message) {&eol; data.message.attachments = [{&eol; color: RocketChat.params.color,&eol; text: update.message&eol; }];&eol; }&eol; }&eol;&eol; RocketChat.request('post', 'chat.sendMessage', data);&eol; },&eol;&eol; getMessageLink: function(rid, id) {&eol; var room = RocketChat.request('get', 'rooms.info?roomId=' + encodeURIComponent(rid)),&eol; link = params.rc_url +&eol; (params.rc_url.endsWith('/') ? '' : '/');&eol;&eol; switch (room.response.room.t) {&eol; case 'c':&eol; link += 'channel/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'p':&eol; link += 'group/' + room.response.room.name + '?msg=' + id;&eol; break;&eol;&eol; case 'd':&eol; link += 'direct/' + rid + '?msg=' + id;&eol; break;&eol;&eol; default:&eol; Zabbix.Log(4, '[ RocketChat Webhook ] Can\'t get room type. Link to message will not be added.');&eol; }&eol;&eol; return link;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; response,&eol; fields = {},&eol; rc = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'alert_message', 'event_source', 'event_value'],&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;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('rc_')) {&eol; rc[key.substring(3)] = params[key];&eol; }&eol; else if (key.startsWith('field_')) {&eol; fields[key.substring(6)] = 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; // Forcing parameters for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; params.rc_title_link = false;&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 ([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; RocketChat.setParams(rc);&eol; RocketChat.setProxy(params.HTTPProxy);&eol; RocketChat.params.color = severities[params.event_nseverity].color;&eol;&eol; // Send default message if use_default_message === true.&eol; if (params.use_default_message.toLowerCase() === 'true') {&eol; response = RocketChat.postMessage(true, params.alert_message);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send message for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0') {&eol; response = RocketChat.postMessage(false, params.alert_message, fields);&eol; result.tags.__zbx_rc_id = response.id;&eol; result.tags.__zbx_rc_rid = response.rid;&eol; result.tags.__zbx_rc_msg_url = RocketChat.getMessageLink(response.rid, response.id);&eol; }&eol; // Send thread message for trigger-based event.&eol; else {&eol; RocketChat.sendMessage(update, fields);&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ RocketChat Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_rc_msg_url} |Rocket.Chat | |
ROW |28 |4 |VictorOps | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var VictorOps = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; VictorOps.params = params;&eol; if (VictorOps.params.endpoint) {&eol; if (!VictorOps.params.endpoint.endsWith('/')) {&eol; VictorOps.params.endpoint += '/';&eol; }&eol;&eol; if (typeof VictorOps.params.routing_key !== 'undefined'&eol; && VictorOps.params.routing_key !== '{ALERT.SENDTO}'&eol; && VictorOps.params.routing_key !== 'Default') {&eol; VictorOps.params.endpoint += VictorOps.params.routing_key;&eol; }&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; VictorOps.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; addFields: function (fields) {&eol; var data = {};&eol;&eol; if (typeof fields === 'object') {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (fields[field] === '') {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Field "' + field +&eol; '" can\'t be empty. The field ignored.');&eol; }&eol; else {&eol; try {&eol; var parts = field.split(':'),&eol; prefix = parts[0].split('_');&eol;&eol; if (typeof prefix[1] === 'undefined'&eol; &pipe;&pipe; (prefix[1] === 'p' && params.event_value === '1'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'r' && params.event_value === '0'&eol; && (params.event_update_status === '0'&eol; &pipe;&pipe; params.event_update_status === '{EVENT.UPDATE.STATUS}'))&eol; &pipe;&pipe; (prefix[1] === 'u' && params.event_update_status === '1')) {&eol; data[field.substring(field.indexOf(':') + 1)] = fields[field];&eol; }&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Can\'t parse field "' + field +&eol; '". The field ignored.');&eol; }&eol; }&eol; });&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (data) {&eol; if (typeof VictorOps.params !== 'object' &pipe;&pipe; typeof VictorOps.params.endpoint === 'undefined'&eol; &pipe;&pipe; VictorOps.params.endpoint === '' ) {&eol; throw 'Required parameter is not set: "vops_endpoint".';&eol; }&eol;&eol; var response,&eol; url = VictorOps.params.endpoint,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol;&eol; if (typeof VictorOps.HTTPProxy !== 'undefined' && VictorOps.HTTPProxy !== '') {&eol; request.SetProxy(VictorOps.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ VictorOps Webhook ] Sending request: ' + url +&eol; ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; response = request.Post(url, data);&eol;&eol; Zabbix.Log(4, '[ VictorOps 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, '[ VictorOps Webhook ] Failed to parse response received from VictorOps');&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.messages !== 'undefined') {&eol; message += ': ' + JSON.stringify(response.messages);&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol;&eol; return response;&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; vops = {},&eol; required_params = ['event_source', 'event_value', 'priority_update'],&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;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('vops_')) {&eol; vops[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('field')) {&eol; fields[key.substring(5)] = 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 ([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; if (params.event_update_status === '1') {&eol; fields[':message_type'] = params.priority_update;&eol; }&eol; else {&eol; fields[':message_type'] = params['priority_' + severities[params.event_nseverity].name]&eol; &pipe;&pipe; 'INFO';&eol; }&eol;&eol; if (params.event_info && params.event_source === '0') {&eol; fields[':event_info'] = params.event_info;&eol; }&eol;&eol; VictorOps.setParams(vops);&eol; VictorOps.setProxy(params.HTTPProxy);&eol; VictorOps.request(VictorOps.addFields(fields));&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ VictorOps Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
+ROW |29 |4 |Brevis.one | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var BrevisOne = {&eol; params: [],&eol;&eol; addParam: function (name, value) {&eol; BrevisOne.params.push(name + '=' + encodeURIComponent(value));&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; BrevisOne.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setPayload: function (params) {&eol; var parts = params.send_to.split(':'),&eol; defaultValues = {&eol; ring: 'true',&eol; flash: 'true',&eol; telauto: 'false'&eol; };&eol;&eol; BrevisOne.addParam('username', params.username);&eol; BrevisOne.addParam('password', params.password);&eol; BrevisOne.addParam('text', params.text);&eol;&eol; if (parts.length > 1) {&eol; BrevisOne.addParam('mode', parts[0]);&eol; BrevisOne.addParam('to', parts[1]);&eol; }&eol; else {&eol; BrevisOne.addParam('to', parts[0]);&eol; }&eol;&eol; Object.keys(defaultValues)&eol; .forEach(function (key) {&eol; if (params[key] && params[key].trim() && params[key].toLowerCase() === defaultValues[key]) {&eol; BrevisOne.addParam(key, defaultValues[key]);&eol; }&eol; });&eol; },&eol;&eol; request: function () {&eol; var response,&eol; request = new CurlHttpRequest(),&eol; data = '?' + BrevisOne.params.join('&');&eol;&eol; request.AddHeader('Content-Type: multipart/form-data');&eol;&eol; if (typeof BrevisOne.HTTPProxy !== 'undefined' && BrevisOne.HTTPProxy !== '') {&eol; request.SetProxy(BrevisOne.HTTPProxy);&eol; }&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Sending request.');&eol;&eol; response = request.Post(params.endpoint + data);&eol;&eol; Zabbix.Log(4, '[ BrevisOne Webhook ] Received response with status code ' +&eol; request.Status() + '\n' + response);&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) {&eol; message += ': ' + response;&eol; }&eol;&eol; throw message + '. Check debug log for more information.';&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; ['endpoint', 'password', 'username', 'text', 'send_to'].forEach(function (field) {&eol; if (typeof params !== 'object' &pipe;&pipe; typeof params[field] === 'undefined'&eol; &pipe;&pipe; !params[field].trim()) {&eol; throw 'Required parameter is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; if (params.send_to === '{ALERT.SENDTO}') {&eol; throw 'Required parameter is not set: "send_to".';&eol; }&eol;&eol; BrevisOne.setProxy(params.HTTPProxy);&eol; BrevisOne.setPayload(params);&eol; BrevisOne.request();&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ BrevisOne Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
TABLE |media_type_param
FIELDS|mediatype_paramid|mediatypeid|name |value |
@@ -580,143 +582,156 @@ ROW |521 |28 |priority_update
ROW |522 |28 |priority_warning |INFO |
ROW |523 |28 |vops_endpoint |<PLACE ENDPOINT URL HERE> |
ROW |524 |28 |vops_routing_key |{ALERT.SENDTO} |
+ROW |525 |29 |endpoint |<PLACE HTTP API URL> |
+ROW |526 |29 |flash |false |
+ROW |527 |29 |password |<PLACE PASSWORD> |
+ROW |528 |29 |ring |false |
+ROW |529 |29 |send_to |{ALERT.SENDTO} |
+ROW |530 |29 |telauto |true |
+ROW |531 |29 |text |{ALERT.MESSAGE} |
+ROW |532 |29 |username |<PLACE USERNAME> |
TABLE |media_type_message
-FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
-ROW |1 |1 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |2 |1 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |3 |1 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |4 |1 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |5 |1 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |6 |3 |0 |0 | |{EVENT.SEVERITY}: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;{EVENT.DATE} {EVENT.TIME} |
-ROW |7 |3 |0 |1 | |Resolved in {EVENT.DURATION}: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;{EVENT.DATE} {EVENT.TIME} |
-ROW |8 |3 |0 |2 | |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem in {EVENT.AGE} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME} |
-ROW |9 |3 |1 |0 | |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS} |
-ROW |10 |3 |2 |0 | |Autoregistration: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |11 |4 |0 |0 |Problem: {EVENT.NAME} |<b>Problem started</b> at {EVENT.TIME} on {EVENT.DATE}<br><b>Problem name:</b> {EVENT.NAME}<br><b>Host:</b> {HOST.NAME}<br><b>Severity:</b> {EVENT.SEVERITY}<br><b>Operational data:</b> {EVENT.OPDATA}<br><b>Original problem ID:</b> {EVENT.ID}<br>{TRIGGER.URL} |
-ROW |12 |4 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |<b>Problem has been resolved</b> at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}<br><b>Problem name:</b> {EVENT.NAME}<br><b>Problem duration:</b> {EVENT.DURATION}<br><b>Host:</b> {HOST.NAME}<br><b>Severity:</b> {EVENT.SEVERITY}<br><b>Original problem ID:</b> {EVENT.ID}<br>{TRIGGER.URL} |
-ROW |13 |4 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |<b>{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem</b> at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.<br>{EVENT.UPDATE.MESSAGE}<br><br><b>Current problem status:</b> {EVENT.STATUS}<br><b>Age:</b> {EVENT.AGE}<br><b>Acknowledged:</b> {EVENT.ACK.STATUS}. |
-ROW |14 |4 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|<b>Discovery rule:</b> {DISCOVERY.RULE.NAME}<br><br><b>Device IP:</b> {DISCOVERY.DEVICE.IPADDRESS}<br><b>Device DNS:</b> {DISCOVERY.DEVICE.DNS}<br><b>Device status:</b> {DISCOVERY.DEVICE.STATUS}<br><b>Device uptime:</b> {DISCOVERY.DEVICE.UPTIME}<br><br><b>Device service name:</b> {DISCOVERY.SERVICE.NAME}<br><b>Device service port:</b> {DISCOVERY.SERVICE.PORT}<br><b>Device service status:</b> {DISCOVERY.SERVICE.STATUS}<br><b>Device service uptime:</b> {DISCOVERY.SERVICE.UPTIME}|
-ROW |15 |4 |2 |0 |Autoregistration: {HOST.HOST} |<b>Host name:</b> {HOST.HOST}<br><b>Host IP:</b> {HOST.IP}<br><b>Agent port:</b> {HOST.PORT} |
-ROW |16 |11 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |17 |11 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |18 |11 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |19 |11 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |20 |11 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |21 |12 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |22 |12 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |23 |12 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |24 |12 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |25 |12 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |26 |13 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |27 |13 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |28 |13 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |29 |13 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |30 |13 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |31 |14 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |32 |14 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |33 |14 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |34 |14 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |35 |14 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |36 |15 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |37 |15 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |38 |15 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |39 |15 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |40 |15 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |41 |16 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |42 |16 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |43 |16 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |44 |16 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |45 |16 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |46 |17 |0 |0 |{EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |47 |17 |0 |1 |{EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |48 |17 |0 |2 |{EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |49 |17 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |50 |17 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |51 |17 |3 |0 |Internal problem: {EVENT.NAME} |Internal problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID} |
-ROW |52 |18 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |53 |18 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |54 |18 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |55 |18 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |56 |18 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |57 |19 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |58 |19 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |59 |19 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |60 |19 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |61 |19 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |62 |20 |0 |0 |{EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |63 |20 |0 |1 |{EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |64 |20 |0 |2 |{EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |65 |20 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |66 |20 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |67 |21 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |68 |21 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |69 |21 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |70 |21 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |71 |21 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |72 |10 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |73 |10 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |74 |10 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |75 |10 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |76 |10 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |77 |22 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |78 |22 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |79 |22 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |80 |5 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |81 |5 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |82 |5 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |83 |5 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |84 |5 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |85 |6 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |86 |6 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |87 |6 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |88 |6 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |89 |6 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |90 |7 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |91 |7 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |92 |7 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |93 |7 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |94 |7 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |95 |8 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |96 |8 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |97 |8 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |98 |8 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |99 |8 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |100 |9 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |101 |9 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |102 |9 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |103 |9 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |104 |9 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |105 |23 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;&eol;Trigger description: {TRIGGER.DESCRIPTION} |
-ROW |106 |23 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |107 |23 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |108 |23 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |109 |23 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |110 |24 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |111 |24 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |112 |24 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |113 |24 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |114 |24 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |115 |25 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |116 |25 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |117 |25 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |118 |25 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |119 |25 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |120 |26 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |121 |26 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |122 |26 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |123 |26 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |124 |26 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |125 |27 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |126 |27 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |127 |27 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |128 |27 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |129 |27 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
-ROW |130 |28 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |131 |28 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
-ROW |132 |28 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
-ROW |133 |28 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
-ROW |134 |28 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
+ROW |1 |1 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |2 |1 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |3 |1 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |4 |1 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |5 |1 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |6 |3 |0 |0 | |{EVENT.SEVERITY}: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;{EVENT.DATE} {EVENT.TIME} |
+ROW |7 |3 |0 |1 | |Resolved in {EVENT.DURATION}: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;{EVENT.DATE} {EVENT.TIME} |
+ROW |8 |3 |0 |2 | |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem in {EVENT.AGE} at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME} |
+ROW |9 |3 |1 |0 | |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS} |
+ROW |10 |3 |2 |0 | |Autoregistration: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |11 |4 |0 |0 |Problem: {EVENT.NAME} |<b>Problem started</b> at {EVENT.TIME} on {EVENT.DATE}<br><b>Problem name:</b> {EVENT.NAME}<br><b>Host:</b> {HOST.NAME}<br><b>Severity:</b> {EVENT.SEVERITY}<br><b>Operational data:</b> {EVENT.OPDATA}<br><b>Original problem ID:</b> {EVENT.ID}<br>{TRIGGER.URL} |
+ROW |12 |4 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |<b>Problem has been resolved</b> at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}<br><b>Problem name:</b> {EVENT.NAME}<br><b>Problem duration:</b> {EVENT.DURATION}<br><b>Host:</b> {HOST.NAME}<br><b>Severity:</b> {EVENT.SEVERITY}<br><b>Original problem ID:</b> {EVENT.ID}<br>{TRIGGER.URL} |
+ROW |13 |4 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |<b>{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem</b> at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.<br>{EVENT.UPDATE.MESSAGE}<br><br><b>Current problem status:</b> {EVENT.STATUS}<br><b>Age:</b> {EVENT.AGE}<br><b>Acknowledged:</b> {EVENT.ACK.STATUS}. |
+ROW |14 |4 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|<b>Discovery rule:</b> {DISCOVERY.RULE.NAME}<br><br><b>Device IP:</b> {DISCOVERY.DEVICE.IPADDRESS}<br><b>Device DNS:</b> {DISCOVERY.DEVICE.DNS}<br><b>Device status:</b> {DISCOVERY.DEVICE.STATUS}<br><b>Device uptime:</b> {DISCOVERY.DEVICE.UPTIME}<br><br><b>Device service name:</b> {DISCOVERY.SERVICE.NAME}<br><b>Device service port:</b> {DISCOVERY.SERVICE.PORT}<br><b>Device service status:</b> {DISCOVERY.SERVICE.STATUS}<br><b>Device service uptime:</b> {DISCOVERY.SERVICE.UPTIME} |
+ROW |15 |4 |2 |0 |Autoregistration: {HOST.HOST} |<b>Host name:</b> {HOST.HOST}<br><b>Host IP:</b> {HOST.IP}<br><b>Agent port:</b> {HOST.PORT} |
+ROW |16 |11 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |17 |11 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |18 |11 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |19 |11 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |20 |11 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |21 |12 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |22 |12 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |23 |12 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |24 |12 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |25 |12 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |26 |13 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |27 |13 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |28 |13 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |29 |13 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |30 |13 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |31 |14 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |32 |14 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |33 |14 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |34 |14 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |35 |14 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |36 |15 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |37 |15 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |38 |15 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |39 |15 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |40 |15 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |41 |16 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |42 |16 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |43 |16 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |44 |16 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |45 |16 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |46 |17 |0 |0 |{EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |47 |17 |0 |1 |{EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |48 |17 |0 |2 |{EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |49 |17 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |50 |17 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |51 |17 |3 |0 |Internal problem: {EVENT.NAME} |Internal problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID} |
+ROW |52 |18 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |53 |18 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |54 |18 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |55 |18 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |56 |18 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |57 |19 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |58 |19 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |59 |19 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |60 |19 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |61 |19 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |62 |20 |0 |0 |{EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |63 |20 |0 |1 |{EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |64 |20 |0 |2 |{EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |65 |20 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |66 |20 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |67 |21 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |68 |21 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |69 |21 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |70 |21 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |71 |21 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |72 |10 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |73 |10 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |74 |10 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |75 |10 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |76 |10 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |77 |22 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |78 |22 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |79 |22 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |80 |5 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |81 |5 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |82 |5 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |83 |5 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |84 |5 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |85 |6 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |86 |6 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |87 |6 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |88 |6 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |89 |6 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |90 |7 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |91 |7 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |92 |7 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |93 |7 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |94 |7 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |95 |8 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |96 |8 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |97 |8 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |98 |8 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |99 |8 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |100 |9 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |101 |9 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |102 |9 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |103 |9 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |104 |9 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |105 |23 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;&eol;Trigger description: {TRIGGER.DESCRIPTION} |
+ROW |106 |23 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |107 |23 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |108 |23 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |109 |23 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |110 |24 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |111 |24 |0 |1 |Resolved: {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |112 |24 |0 |2 |Updated problem: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |113 |24 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |114 |24 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |115 |25 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |116 |25 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |117 |25 |0 |2 |Updated problem in {EVENT.AGE}: {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, age is {EVENT.AGE}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |118 |25 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |119 |25 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |120 |26 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |121 |26 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |122 |26 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |123 |26 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |124 |26 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |125 |27 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |126 |27 |0 |1 |[{EVENT.STATUS}] {EVENT.NAME} |Problem has been resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |127 |27 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |128 |27 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |129 |27 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |130 |28 |0 |0 |Problem: {EVENT.NAME} |Problem started at {EVENT.TIME} on {EVENT.DATE}&eol;Problem name: {EVENT.NAME}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |131 |28 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |Problem has been resolved at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Problem name: {EVENT.NAME}&eol;Problem duration: {EVENT.DURATION}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Original problem ID: {EVENT.ID}&eol;{TRIGGER.URL} |
+ROW |132 |28 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE}&eol;&eol;Current problem status is {EVENT.STATUS}, acknowledged: {EVENT.ACK.STATUS}. |
+ROW |133 |28 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME} |
+ROW |134 |28 |2 |0 |Autoregistration: {HOST.HOST} |Host name: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
+ROW |135 |29 |0 |0 |[{EVENT.STATUS}] {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;Started at {EVENT.TIME} on {EVENT.DATE}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Operational data: {EVENT.OPDATA}&eol;Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID} |
+ROW |136 |29 |0 |1 |Resolved in {EVENT.DURATION}: {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;Resolved in {EVENT.DURATION} at {EVENT.RECOVERY.TIME} on {EVENT.RECOVERY.DATE}&eol;Host: {HOST.NAME}&eol;Severity: {EVENT.SEVERITY}&eol;Event info: {$ZABBIX.URL}/tr_events.php?triggerid={TRIGGER.ID}&eventid={EVENT.ID} |
+ROW |137 |29 |0 |2 |[{EVENT.STATUS}] {EVENT.NAME} |[{EVENT.STATUS}] {EVENT.NAME}&eol;&eol;{USER.FULLNAME} {EVENT.UPDATE.ACTION} problem at {EVENT.UPDATE.DATE} {EVENT.UPDATE.TIME}.&eol;{EVENT.UPDATE.MESSAGE} |
+ROW |138 |29 |1 |0 |Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}|Discovery: {DISCOVERY.DEVICE.STATUS} {DISCOVERY.DEVICE.IPADDRESS}&eol;Discovery rule: {DISCOVERY.RULE.NAME}&eol;&eol;Device IP: {DISCOVERY.DEVICE.IPADDRESS}&eol;Device DNS: {DISCOVERY.DEVICE.DNS}&eol;Device status: {DISCOVERY.DEVICE.STATUS}&eol;Device uptime: {DISCOVERY.DEVICE.UPTIME}&eol;&eol;Device service name: {DISCOVERY.SERVICE.NAME}&eol;Device service port: {DISCOVERY.SERVICE.PORT}&eol;Device service status: {DISCOVERY.SERVICE.STATUS}&eol;Device service uptime: {DISCOVERY.SERVICE.UPTIME}|
+ROW |139 |29 |2 |0 |Autoregistration: {HOST.HOST} |Autoregistration: {HOST.HOST}&eol;Host IP: {HOST.IP}&eol;Agent port: {HOST.PORT} |
TABLE |usrgrp
FIELDS|usrgrpid|name |gui_access|users_status|debug_mode|
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index a70ba6435a9..b6153d7a65e 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -85,7 +85,7 @@ ROW |10237 |NULL |Template Net Ubiquiti AirOS SNMP
ROW |10248 |NULL |Template OS Linux SNMP |3 |-1 |2 | | |Template OS Linux SNMP |0 |NULL |Template OS Linux&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387225-discussion-thread-for-official-zabbix-template-for-linux&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10249 |NULL |Template OS Windows SNMP |3 |-1 |2 | | |Template OS Windows SNMP |0 |NULL |Official Windows SNMP template. Requires Zabbix server 4.0.14, 4.2.8, 4.4.0 or newer (JSONPath function avg() used with types autoconversion).&eol;&eol;&eol;Known Issues:&eol;&eol; Description: Doesn't support In/Out 64 bit counters even though IfxTable is present:&eol;Currently, Windows gets it’s interface status from MIB-2. Since these 64bit SNMP counters (ifHCInOctets, ifHCOutOctets, etc.) are defined as an extension to IF-MIB, Microsoft has not implemented it.&eol;https://social.technet.microsoft.com/Forums/windowsserver/en-US/07b62ff0-94f6-40ca-a99d-d129c1b33d70/windows-2008-r2-snmp-64bit-counters-support?forum=winservergen&eol;&eol; Version: Win2008, Win2012R2.&eol;&eol; Description: Doesn't support ifXTable at all&eol; Version: WindowsXP&eol;&eol; Description: EtherLike MIB is not supported&eol; Version: *&eol; Device: *&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
ROW |10250 |NULL |Template Net HP Enterprise Switch SNMP |3 |-1 |2 | | |Template Net HP Enterprise Switch SNMP |0 |NULL |Template Net HP Enterprise Switch&eol;&eol;MIBs used:&eol;SEMI-MIB&eol;NETSWITCH-MIB&eol;HP-ICF-CHASSIS&eol;ENTITY-SENSORS-MIB&eol;ENTITY-MIB&eol;STATISTICS-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
-ROW |10251 |NULL |Template Net Mellanox SNMP |3 |-1 |2 | | |Template Net Mellanox SNMP |0 |NULL |Template Net Mellanox&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.36 |1 |1 | | | | | |1 |0 |
+ROW |10251 |NULL |Template Net Mellanox SNMP |3 |-1 |2 | | |Template Net Mellanox SNMP |0 |NULL |The updated template for monitoring the Mellanox network switches over SNMP agent. All items collected in one template without any linked templates.&eol;&eol;MIBs used:&eol;HOST-RESOURCES-MIB&eol;SNMPv2-MIB&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;IF-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10252 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|3 |-1 |2 | | |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5 SNMP|0 |NULL |Template Module Cisco CISCO-PROCESS-MIB IOS versions 12.0_3_T-12.2_3.5&eol;&eol;MIBs used:&eol;CISCO-PROCESS-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10253 |NULL |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |3 |-1 |2 | | |Template Net Cisco IOS versions 12.0_3_T-12.2_3.5 SNMP |0 |NULL |Cisco IOS Software releases later to 12.0(3)T and prior to 12.2(3.5)&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10254 |NULL |Template Net Arista SNMP |3 |-1 |2 | | |Template Net Arista SNMP |0 |NULL |Template Net Arista&eol;&eol;MIBs used:&eol;ENTITY-SENSORS-MIB&eol;ENTITY-STATE-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
@@ -188,16 +188,35 @@ ROW |10354 |NULL |Template DB Ignite by JMX
ROW |10355 |NULL |Template Module SMART by Zabbix agent 2 |3 |-1 |2 | | |Template Module SMART by Zabbix agent 2 |0 |NULL |The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule finds all Vendor Specific Attributes for each disk. If you want to skip some attributes, please set regular expressions with disk names in {$SMART.DISK.NAME.MATCHES} and with attribute IDs in {$SMART.ATTRIBUTE.ID.MATCHES} macros on the host level.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10356 |NULL |Template Module SMART by Zabbix agent active 2 |3 |-1 |2 | | |Template Module SMART by Zabbix agent active 2 |0 |NULL |The template for monitoring S.M.A.R.T. attributes of physical disk that works without any external scripts. It collects metrics by Zabbix agent active 2 version 5.0 and later with Smartmontools version 7.1 and later. Disk discovery LLD rule finds all HDD, SSD, NVMe disks with S.M.A.R.T. enabled. Attribute discovery LLD rule finds all Vendor Specific Attributes for each disk. If you want to skip some attributes, please set regular expressions with disk names in {$SMART.DISK.NAME.MATCHES} and with attribute IDs in {$SMART.ATTRIBUTE.ID.MATCHES} macros on the host level.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/415662-discussion-thread-for-official-zabbix-smart-disk-monitoring&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
ROW |10357 |NULL |Template SAN Huawei OceanStor 5300 V5 SNMP |3 |-1 |2 | | |Template SAN Huawei OceanStor 5300 V5 SNMP |0 |NULL |The template to monitor SAN Huawei OceanStor 5300 V5 by Zabbix SNMP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/418855-discussion-thread-for-official-zabbix-template-huawei-oceanstor&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10358 |NULL |RabbitMQ cluster by Zabbix agent |3 |-1 |2 | | |RabbitMQ cluster by Zabbix agent |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10359 |NULL |RabbitMQ node by Zabbix agent |3 |-1 |2 | | |RabbitMQ node by Zabbix agent |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using Zabbix agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10360 |NULL |RabbitMQ cluster by HTTP |3 |-1 |2 | | |RabbitMQ cluster by HTTP |0 |NULL |Get cluster metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10361 |NULL |RabbitMQ node by HTTP |3 |-1 |2 | | |RabbitMQ node by HTTP |0 |NULL |Get node metrics from RabbitMQ management plugin provided an HTTP-based API using HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/387226-discussion-thread-for-official-zabbix-template-rabbitmq&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10362 |NULL |Template DB MongoDB node by Zabbix Agent 2 |3 |-1 |2 | | |Template DB MongoDB node by Zabbix Agent 2 |0 |NULL |Get MongoDB metrics from plugin for the zabbix-agent2.&eol; 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin.&eol; 2. Set the {$MONGODB.CONNSTRING} such as <protocol(host:port)> or named session.&eol; 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10363 |NULL |Template DB MongoDB cluster by Zabbix Agent 2 |3 |-1 |2 | | |Template DB MongoDB cluster by Zabbix Agent 2 |0 |NULL |Get MongoDB metrics from plugin for the zabbix-agent2.&eol; 1. Setup and configure zabbix-agent2 compiled with the MongoDB monitoring plugin.&eol; 2. Set the {$MONGODB.CONNSTRING} such as <protocol(host:port)> or named session.&eol; 3. Set the user name and password in host macros ({$MONGODB.USER}, {$MONGODB.PASSWORD}) if you want to override parameters from the Zabbix agent configuration file.&eol;&eol; All sharded Mongodb nodes (mongod) will be discovered with attached template "MongoDB node".&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420659-discussion-thread-for-official-zabbix-template-db-mongodb&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10364 |NULL |{#HOSTNAME} |0 |-1 |2 | | |{#HOSTNAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10365 |NULL |{#HOSTNAME} |0 |-1 |2 | | |{#HOSTNAME} |2 |NULL | |1 |1 | | | | | |1 |0 |
+ROW |10366 |NULL |Cisco Catalyst 3750V2-24FS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24FS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24FS&bsn;&bsn;MIBs used:&bsn;CISCO-MEMORY-POOL-MIB&bsn;IF-MIB&bsn;EtherLike-MIB&bsn;SNMPv2-MIB&bsn;CISCO-PROCESS-MIB&bsn;CISCO-ENVMON-MIB&bsn;ENTITY-MIB&bsn;&bsn;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10367 |NULL |Cisco Catalyst 3750V2-24PS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24PS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24PS&bsn;&bsn;MIBs used:&bsn;CISCO-MEMORY-POOL-MIB&bsn;IF-MIB&bsn;EtherLike-MIB&bsn;SNMPv2-MIB&bsn;CISCO-PROCESS-MIB&bsn;CISCO-ENVMON-MIB&bsn;ENTITY-MIB&bsn;&bsn;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10368 |NULL |Cisco Catalyst 3750V2-24TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-24TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-24TS&bsn;&bsn;MIBs used:&bsn;CISCO-MEMORY-POOL-MIB&bsn;IF-MIB&bsn;EtherLike-MIB&bsn;SNMPv2-MIB&bsn;CISCO-PROCESS-MIB&bsn;CISCO-ENVMON-MIB&bsn;ENTITY-MIB&bsn;&bsn;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10369 |NULL |Cisco Catalyst 3750V2-48PS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48PS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48PS&bsn;&bsn;MIBs used:&bsn;CISCO-MEMORY-POOL-MIB&bsn;IF-MIB&bsn;EtherLike-MIB&bsn;SNMPv2-MIB&bsn;CISCO-PROCESS-MIB&bsn;CISCO-ENVMON-MIB&bsn;ENTITY-MIB&bsn;&bsn;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10370 |NULL |Cisco Catalyst 3750V2-48TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48TS&bsn;&bsn;MIBs used:&bsn;CISCO-MEMORY-POOL-MIB&bsn;IF-MIB&bsn;EtherLike-MIB&bsn;SNMPv2-MIB&bsn;CISCO-PROCESS-MIB&bsn;CISCO-ENVMON-MIB&bsn;ENTITY-MIB&bsn;&bsn;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10371 |NULL |Template Power APC UPS SNMP |3 |-1 |2 | | |Template Power APC UPS SNMP |0 |NULL |Template Power APC UPS&eol;&eol;MIBs used:&eol;PowerNet-MIB&eol;SNMPv2-MIB&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/420730-discussion-thread-for-official-zabbix-template-apc-ups&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
+ROW |10372 |NULL |Template SAN NetApp AFF A700 by HTTP |3 |-1 |2 | | |Template SAN NetApp AFF A700 by HTTP |0 |NULL |The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent.&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |
TABLE |group_prototype
-FIELDS|group_prototypeid|hostid|name |groupid|templateid|
-ROW |1 |10331 |{#CLUSTER.NAME} |NULL |NULL |
-ROW |2 |10331 |{#DATACENTER.NAME} |NULL |NULL |
-ROW |4 |10332 |{#CLUSTER.NAME} (vm) |NULL |NULL |
-ROW |5 |10332 |{#DATACENTER.NAME} (vm)|NULL |NULL |
-ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
-ROW |20 |10331 | |12 |NULL |
-ROW |21 |10332 | |12 |NULL |
+FIELDS|group_prototypeid|hostid|name |groupid|templateid|
+ROW |1 |10331 |{#CLUSTER.NAME} |NULL |NULL |
+ROW |2 |10331 |{#DATACENTER.NAME} |NULL |NULL |
+ROW |4 |10332 |{#CLUSTER.NAME} (vm) |NULL |NULL |
+ROW |5 |10332 |{#DATACENTER.NAME} (vm) |NULL |NULL |
+ROW |6 |10332 |{#HV.NAME} |NULL |NULL |
+ROW |22 |10331 | |12 |NULL |
+ROW |23 |10332 | |12 |NULL |
+ROW |24 |10364 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
+ROW |25 |10364 | |13 |NULL |
+ROW |26 |10365 |MongoDB sharded cluster/{#ID} |NULL |NULL |
+ROW |27 |10365 | |13 |NULL |
TABLE |screens
FIELDS|screenid|name |hsize|vsize|templateid|userid|private|
@@ -251,6 +270,13 @@ ROW |58 |MySQL performance |2 |3 |10317 |NULL |1
ROW |59 |Docker overview |2 |5 |10318 |NULL |1 |
ROW |60 |MySQL performance |2 |3 |10320 |NULL |1 |
ROW |61 |PostgreSQL databases |2 |5 |10328 |NULL |1 |
+ROW |62 |RabbitMQ overview |2 |3 |10358 |NULL |1 |
+ROW |63 |RabbitMQ node status |2 |3 |10359 |NULL |1 |
+ROW |64 |RabbitMQ overview |2 |3 |10360 |NULL |1 |
+ROW |65 |RabbitMQ node status |2 |3 |10361 |NULL |1 |
+ROW |66 |Network interfaces |1 |1 |10251 |NULL |1 |
+ROW |67 |System performance |2 |3 |10251 |NULL |1 |
+ROW |68 |UPS Summary |3 |4 |10371 |NULL |1 |
TABLE |screens_items
FIELDS|screenitemid|screenid|resourcetype|resourceid|width|height|x |y |colspan|rowspan|elements|valign|halign|style|url |dynamic|sort_triggers|application|max_columns|
@@ -261,39 +287,6 @@ ROW |1956 |20 |0 |860 |750 |200 |0 |1 |1
ROW |1957 |20 |0 |859 |750 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
ROW |1958 |20 |0 |861 |750 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
ROW |1959 |20 |0 |864 |750 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5493 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5494 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5495 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5496 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5497 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5498 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5499 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5500 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5501 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5502 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5503 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5504 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5505 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5506 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5507 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5508 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5509 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5510 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5511 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5512 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5513 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5514 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5515 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5516 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5517 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5518 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5519 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5520 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5521 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5522 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5523 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5524 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5525 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5526 |38 |0 |1029 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5527 |38 |0 |1027 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5528 |38 |0 |1030 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
@@ -316,780 +309,909 @@ ROW |5544 |41 |0 |1022 |500 |100 |0 |1 |1
ROW |5545 |41 |0 |1023 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5546 |41 |0 |1021 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
ROW |5547 |41 |0 |1024 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5548 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5549 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5550 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5551 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5552 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5553 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5554 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5555 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5556 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5557 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5558 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5559 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5560 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5561 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5562 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5563 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5564 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5565 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5566 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5567 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5568 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5569 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5570 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5571 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5572 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5573 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5574 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5575 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5576 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5577 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5578 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5579 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5580 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5581 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5582 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5583 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5584 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5585 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5586 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5587 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5588 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
-ROW |5589 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5590 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5591 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5592 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5593 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5594 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5595 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5596 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5597 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5598 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5599 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5600 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5601 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5602 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5603 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5604 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5605 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5606 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5607 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5608 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5609 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5610 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5611 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5612 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5613 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5614 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5615 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5616 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5617 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5618 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5619 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5620 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5621 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5622 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5623 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5624 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5625 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5626 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
-ROW |5627 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5628 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5629 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5630 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5631 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5632 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5633 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5634 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5635 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5636 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5637 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5638 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5639 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5640 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5641 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5642 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5643 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5644 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5645 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5646 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5647 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5648 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5649 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5650 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5651 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5652 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5653 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5654 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5655 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5656 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5657 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5658 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5659 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5660 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5661 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5662 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5663 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5664 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5665 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5666 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5667 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5668 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5669 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5670 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5671 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5672 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5673 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5674 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5675 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5676 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5677 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5678 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5679 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5680 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5681 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5682 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5683 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5684 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5685 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5686 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5687 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5688 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5689 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5690 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5691 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5692 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5693 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5694 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5695 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5696 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5697 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5698 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5699 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5700 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5701 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5702 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5703 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5704 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
-ROW |5705 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5706 |25 |0 |1174 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5707 |25 |0 |1176 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5708 |25 |20 |1172 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5709 |25 |20 |1173 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5710 |25 |0 |1175 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5711 |26 |0 |838 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5712 |26 |0 |839 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5713 |26 |20 |836 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5714 |26 |20 |837 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5715 |26 |0 |840 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5716 |59 |0 |1125 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5717 |59 |0 |1129 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5718 |59 |0 |1128 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5719 |59 |0 |1126 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5720 |59 |0 |1127 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5721 |48 |20 |1075 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5722 |49 |20 |1078 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5723 |49 |20 |1076 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5724 |49 |20 |1079 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5725 |49 |20 |1077 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5726 |50 |20 |1080 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5727 |51 |20 |1081 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5728 |52 |20 |1084 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5729 |52 |20 |1082 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5730 |52 |20 |1085 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5731 |52 |20 |1083 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5732 |53 |20 |1086 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5733 |27 |0 |841 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5734 |27 |0 |843 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5735 |27 |0 |842 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5736 |28 |0 |845 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5737 |28 |0 |847 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5738 |28 |0 |846 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5739 |62 |0 |1419 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5740 |62 |0 |1414 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5741 |62 |0 |1421 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5742 |62 |0 |1423 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5743 |62 |0 |1420 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5744 |63 |0 |1422 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5745 |63 |0 |1425 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5746 |63 |0 |1415 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5747 |63 |0 |1418 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5748 |63 |0 |1416 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5749 |63 |0 |1424 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5750 |64 |0 |1432 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5751 |64 |0 |1428 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5752 |64 |0 |1434 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5753 |64 |0 |1436 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5754 |64 |0 |1433 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5755 |65 |0 |1435 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5756 |65 |0 |1438 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5757 |65 |0 |1429 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5758 |65 |0 |1431 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5759 |65 |0 |1430 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5760 |65 |0 |1437 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5761 |22 |0 |806 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5762 |22 |0 |804 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5763 |22 |0 |805 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5764 |22 |0 |803 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5765 |21 |0 |802 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5766 |21 |0 |799 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5767 |21 |0 |800 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5768 |21 |0 |798 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5769 |21 |0 |797 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5770 |21 |0 |801 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5771 |17 |0 |532 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5772 |17 |0 |530 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5773 |17 |0 |531 |500 |100 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5774 |17 |0 |529 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5775 |4 |0 |392 |500 |212 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5776 |4 |0 |404 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5777 |4 |0 |406 |500 |114 |0 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5778 |4 |0 |410 |500 |128 |1 |1 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5779 |4 |0 |527 |500 |160 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5780 |4 |0 |788 |500 |160 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5781 |5 |0 |469 |500 |148 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5782 |5 |0 |471 |500 |100 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5783 |5 |0 |498 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5784 |5 |0 |540 |500 |100 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5785 |7 |0 |463 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5786 |7 |0 |462 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5787 |7 |0 |541 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5788 |7 |0 |464 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5789 |6 |0 |475 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5790 |6 |0 |474 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5791 |6 |0 |542 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5792 |18 |0 |487 |750 |100 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5793 |18 |0 |543 |750 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5794 |9 |0 |457 |500 |120 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5795 |9 |0 |456 |500 |106 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5796 |9 |0 |544 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5797 |9 |0 |458 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5798 |9 |1 |22838 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5799 |9 |1 |22837 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5800 |10 |0 |481 |500 |114 |0 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5801 |10 |0 |480 |500 |100 |1 |0 |1 |1 |0 |1 |0 |0 | |0 |0 | |3 |
+ROW |5802 |10 |0 |545 |500 |100 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5803 |10 |0 |482 |500 |300 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5804 |10 |1 |22998 |500 |100 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5805 |10 |1 |22997 |500 |100 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5806 |57 |0 |1112 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5807 |57 |0 |1113 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5808 |57 |0 |1110 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5809 |57 |0 |1109 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5810 |57 |0 |1111 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5811 |57 |0 |1114 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5812 |60 |0 |1139 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5813 |60 |0 |1140 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5814 |60 |0 |1137 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5815 |60 |0 |1136 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5816 |60 |0 |1138 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5817 |60 |0 |1141 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5818 |58 |0 |1118 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5819 |58 |0 |1119 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5820 |58 |0 |1116 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5821 |58 |0 |1115 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5822 |58 |0 |1117 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5823 |58 |0 |1120 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5824 |23 |20 |821 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5825 |23 |20 |816 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5826 |23 |20 |814 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5827 |23 |20 |820 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5828 |23 |20 |817 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5829 |23 |20 |815 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5830 |23 |20 |818 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5831 |23 |20 |819 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5832 |24 |0 |824 |500 |200 |0 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5833 |24 |0 |827 |500 |200 |1 |0 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5834 |24 |0 |825 |500 |200 |0 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5835 |24 |0 |828 |500 |200 |1 |1 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5836 |24 |0 |826 |500 |200 |0 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5837 |24 |0 |829 |500 |200 |1 |2 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5838 |24 |0 |822 |500 |200 |0 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5839 |24 |0 |823 |500 |200 |1 |3 |1 |1 |0 |0 |0 |0 | |0 |0 | |3 |
+ROW |5840 |61 |20 |1212 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5841 |61 |20 |1210 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5842 |61 |20 |1213 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5843 |61 |20 |1211 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5844 |54 |0 |1091 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5845 |54 |0 |1095 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5846 |54 |0 |1092 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5847 |54 |0 |1094 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5848 |54 |0 |1099 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5849 |54 |0 |1100 |500 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5850 |54 |0 |1101 |500 |100 |0 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5851 |54 |0 |1102 |500 |100 |1 |3 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5852 |54 |20 |1090 |500 |100 |0 |4 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5853 |55 |0 |1093 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5854 |55 |0 |1098 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5855 |55 |0 |1096 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5856 |55 |0 |1097 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5857 |47 |0 |1071 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5858 |47 |20 |1061 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5859 |47 |20 |1066 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5860 |45 |20 |741 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5861 |43 |20 |745 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5862 |46 |20 |766 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5863 |66 |20 |1476 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5864 |67 |0 |1479 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5865 |67 |20 |1478 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5866 |67 |20 |1477 |500 |100 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5867 |3 |0 |903 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5868 |3 |0 |909 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5869 |3 |0 |918 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5870 |3 |0 |921 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5871 |3 |20 |888 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5872 |3 |20 |1218 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5873 |3 |20 |1215 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5874 |3 |20 |1221 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5875 |3 |20 |900 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5876 |30 |20 |899 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5877 |31 |20 |934 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5878 |32 |0 |937 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5879 |32 |0 |941 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5880 |32 |0 |947 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5881 |32 |0 |949 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5882 |32 |20 |927 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5883 |32 |20 |1226 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5884 |32 |20 |1224 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5885 |32 |20 |1228 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5886 |32 |20 |935 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5887 |33 |0 |957 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5888 |33 |0 |959 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5889 |33 |0 |962 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5890 |33 |0 |963 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5891 |33 |20 |953 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5892 |33 |20 |954 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5893 |33 |20 |955 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5894 |33 |20 |956 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5895 |33 |20 |952 |500 |100 |0 |6 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5896 |34 |20 |952 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5897 |29 |0 |881 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5898 |29 |20 |869 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5899 |29 |0 |877 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5900 |29 |0 |879 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5901 |29 |20 |873 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5902 |29 |20 |867 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5903 |29 |19 |29033 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5904 |29 |20 |865 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5905 |19 |0 |977 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5906 |19 |1 |29485 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5907 |19 |0 |979 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5908 |19 |0 |981 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5909 |19 |20 |965 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5910 |19 |20 |1230 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5911 |19 |20 |1232 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5912 |19 |20 |1247 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5913 |35 |20 |1246 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5914 |36 |20 |1248 |750 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5915 |37 |0 |995 |500 |100 |0 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5916 |37 |1 |29592 |500 |100 |1 |0 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5917 |37 |0 |997 |500 |100 |0 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5918 |37 |0 |999 |500 |100 |1 |1 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5919 |37 |20 |983 |500 |100 |0 |2 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5920 |37 |20 |1234 |500 |100 |0 |3 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5921 |37 |20 |1236 |500 |100 |0 |4 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5922 |37 |20 |1249 |500 |100 |0 |5 |2 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5923 |68 |3 |33434 |500 |100 |0 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5924 |68 |3 |33449 |500 |100 |1 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5925 |68 |3 |33444 |500 |100 |2 |0 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5926 |68 |3 |33455 |500 |100 |0 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5927 |68 |3 |33456 |500 |100 |1 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5928 |68 |3 |33458 |500 |100 |2 |1 |1 |1 |1 |0 |0 |0 | |0 |0 | |3 |
+ROW |5929 |68 |0 |1480 |300 |300 |0 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5930 |68 |0 |1482 |400 |100 |1 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
+ROW |5931 |68 |0 |1481 |400 |100 |2 |2 |1 |1 |25 |0 |0 |0 | |0 |0 | |3 |
TABLE |applications
-FIELDS|applicationid|hostid|name |flags|
-ROW |179 |10047 |Zabbix server |0 |
-ROW |253 |10074 |CPU |0 |
-ROW |254 |10074 |Filesystems |0 |
-ROW |255 |10074 |General |0 |
-ROW |256 |10074 |Memory |0 |
-ROW |257 |10074 |Network interfaces |0 |
-ROW |258 |10074 |OS |0 |
-ROW |259 |10074 |Performance |0 |
-ROW |260 |10074 |Processes |0 |
-ROW |261 |10074 |Security |0 |
-ROW |263 |10075 |CPU |0 |
-ROW |264 |10075 |Filesystems |0 |
-ROW |265 |10075 |General |0 |
-ROW |266 |10075 |Memory |0 |
-ROW |267 |10075 |Network interfaces |0 |
-ROW |268 |10075 |OS |0 |
-ROW |269 |10075 |Performance |0 |
-ROW |270 |10075 |Processes |0 |
-ROW |271 |10075 |Security |0 |
-ROW |273 |10076 |CPU |0 |
-ROW |274 |10076 |Filesystems |0 |
-ROW |275 |10076 |General |0 |
-ROW |276 |10076 |Memory |0 |
-ROW |277 |10076 |Network interfaces |0 |
-ROW |278 |10076 |OS |0 |
-ROW |279 |10076 |Performance |0 |
-ROW |280 |10076 |Processes |0 |
-ROW |281 |10076 |Security |0 |
-ROW |283 |10077 |CPU |0 |
-ROW |284 |10077 |Filesystems |0 |
-ROW |285 |10077 |General |0 |
-ROW |286 |10077 |Memory |0 |
-ROW |287 |10077 |Network interfaces |0 |
-ROW |288 |10077 |OS |0 |
-ROW |289 |10077 |Performance |0 |
-ROW |290 |10077 |Processes |0 |
-ROW |291 |10077 |Security |0 |
-ROW |293 |10078 |CPU |0 |
-ROW |294 |10078 |Filesystems |0 |
-ROW |295 |10078 |General |0 |
-ROW |296 |10078 |Memory |0 |
-ROW |297 |10078 |Network interfaces |0 |
-ROW |298 |10078 |OS |0 |
-ROW |299 |10078 |Performance |0 |
-ROW |300 |10078 |Processes |0 |
-ROW |301 |10078 |Security |0 |
-ROW |303 |10079 |CPU |0 |
-ROW |304 |10079 |Filesystems |0 |
-ROW |305 |10079 |General |0 |
-ROW |306 |10079 |Memory |0 |
-ROW |307 |10079 |Network interfaces |0 |
-ROW |308 |10079 |OS |0 |
-ROW |309 |10079 |Performance |0 |
-ROW |310 |10079 |Processes |0 |
-ROW |311 |10079 |Security |0 |
-ROW |331 |10076 |Logical partitions |0 |
-ROW |345 |10084 |Zabbix server |0 |
-ROW |356 |10048 |Zabbix proxy |0 |
-ROW |446 |10093 |FTP service |0 |
-ROW |447 |10094 |HTTP service |0 |
-ROW |448 |10095 |HTTPS service |0 |
-ROW |449 |10096 |IMAP service |0 |
-ROW |450 |10097 |LDAP service |0 |
-ROW |451 |10098 |NNTP service |0 |
-ROW |452 |10099 |NTP service |0 |
-ROW |453 |10100 |POP service |0 |
-ROW |454 |10101 |SMTP service |0 |
-ROW |455 |10102 |SSH service |0 |
-ROW |456 |10103 |Telnet service |0 |
-ROW |740 |10170 |MySQL |0 |
-ROW |741 |10171 |Fans |0 |
-ROW |742 |10171 |Temperature |0 |
-ROW |743 |10171 |Voltage |0 |
-ROW |744 |10172 |Fans |0 |
-ROW |745 |10172 |Temperature |0 |
-ROW |746 |10172 |Voltage |0 |
-ROW |771 |10183 |Network interfaces |0 |
-ROW |780 |10186 |Status |0 |
-ROW |782 |10188 |Network interfaces |0 |
-ROW |784 |10190 |Network interfaces |0 |
-ROW |786 |10192 |Network interfaces |0 |
-ROW |799 |10204 |Status |0 |
-ROW |800 |10204 |General |0 |
-ROW |803 |10207 |Network interfaces |0 |
-ROW |804 |10207 |General |0 |
-ROW |805 |10207 |Status |0 |
-ROW |806 |10207 |CPU |0 |
-ROW |807 |10207 |Memory |0 |
-ROW |808 |10207 |Temperature |0 |
-ROW |809 |10207 |Fans |0 |
-ROW |810 |10207 |Inventory |0 |
-ROW |811 |10208 |Network interfaces |0 |
-ROW |812 |10208 |General |0 |
-ROW |813 |10208 |Status |0 |
-ROW |814 |10208 |CPU |0 |
-ROW |815 |10208 |Memory |0 |
-ROW |816 |10208 |Temperature |0 |
-ROW |817 |10208 |Power supply |0 |
-ROW |818 |10208 |Fans |0 |
-ROW |819 |10208 |Inventory |0 |
-ROW |820 |10210 |Network interfaces |0 |
-ROW |821 |10210 |General |0 |
-ROW |822 |10210 |Status |0 |
-ROW |823 |10211 |Network interfaces |0 |
-ROW |824 |10211 |General |0 |
-ROW |825 |10211 |Status |0 |
-ROW |826 |10209 |CPU |0 |
-ROW |827 |10209 |Memory |0 |
-ROW |828 |10210 |Temperature |0 |
-ROW |829 |10210 |Power supply |0 |
-ROW |830 |10210 |Fans |0 |
-ROW |831 |10210 |Inventory |0 |
-ROW |832 |10211 |Temperature |0 |
-ROW |833 |10211 |Power supply |0 |
-ROW |834 |10211 |Fans |0 |
-ROW |835 |10211 |Inventory |0 |
-ROW |836 |10210 |CPU |0 |
-ROW |837 |10210 |Memory |0 |
-ROW |838 |10211 |CPU |0 |
-ROW |839 |10211 |Memory |0 |
-ROW |840 |10218 |Network interfaces |0 |
-ROW |841 |10218 |General |0 |
-ROW |842 |10218 |Status |0 |
-ROW |846 |10220 |General |0 |
-ROW |847 |10220 |Status |0 |
-ROW |848 |10212 |Memory |0 |
-ROW |849 |10213 |CPU |0 |
-ROW |851 |10215 |CPU |0 |
-ROW |852 |10216 |Inventory |0 |
-ROW |853 |10217 |Temperature |0 |
-ROW |854 |10217 |Power supply |0 |
-ROW |855 |10217 |Fans |0 |
-ROW |856 |10218 |Memory |0 |
-ROW |857 |10218 |CPU |0 |
-ROW |858 |10218 |Inventory |0 |
-ROW |859 |10218 |Temperature |0 |
-ROW |860 |10218 |Power supply |0 |
-ROW |861 |10218 |Fans |0 |
-ROW |868 |10220 |Memory |0 |
-ROW |869 |10220 |CPU |0 |
-ROW |870 |10220 |Inventory |0 |
-ROW |871 |10220 |Temperature |0 |
-ROW |872 |10220 |Power supply |0 |
-ROW |873 |10220 |Fans |0 |
-ROW |874 |10221 |Network interfaces |0 |
-ROW |875 |10221 |General |0 |
-ROW |876 |10221 |Status |0 |
-ROW |877 |10221 |CPU |0 |
-ROW |878 |10221 |Memory |0 |
-ROW |879 |10221 |Temperature |0 |
-ROW |880 |10221 |Power supply |0 |
-ROW |881 |10221 |Fans |0 |
-ROW |882 |10221 |Inventory |0 |
-ROW |883 |10222 |Network interfaces |0 |
-ROW |884 |10222 |General |0 |
-ROW |885 |10222 |Status |0 |
-ROW |886 |10222 |CPU |0 |
-ROW |887 |10222 |Memory |0 |
-ROW |888 |10222 |Temperature |0 |
-ROW |889 |10222 |Fans |0 |
-ROW |890 |10222 |Power supply |0 |
-ROW |891 |10222 |Inventory |0 |
-ROW |892 |10223 |Network interfaces |0 |
-ROW |893 |10223 |General |0 |
-ROW |894 |10223 |Status |0 |
-ROW |895 |10223 |CPU |0 |
-ROW |896 |10223 |Memory |0 |
-ROW |897 |10223 |Temperature |0 |
-ROW |898 |10223 |Fans |0 |
-ROW |899 |10223 |Power supply |0 |
-ROW |900 |10223 |Inventory |0 |
-ROW |901 |10224 |Network interfaces |0 |
-ROW |902 |10224 |General |0 |
-ROW |903 |10224 |Status |0 |
-ROW |904 |10224 |CPU |0 |
-ROW |905 |10224 |Memory |0 |
-ROW |906 |10224 |Temperature |0 |
-ROW |907 |10224 |Power supply |0 |
-ROW |908 |10224 |Fans |0 |
-ROW |909 |10224 |Inventory |0 |
-ROW |913 |10226 |Network interfaces |0 |
-ROW |914 |10226 |General |0 |
-ROW |915 |10226 |Status |0 |
-ROW |916 |10227 |Network interfaces |0 |
-ROW |917 |10227 |General |0 |
-ROW |918 |10227 |Status |0 |
-ROW |919 |10227 |CPU |0 |
-ROW |920 |10227 |Memory |0 |
-ROW |921 |10227 |Temperature |0 |
-ROW |922 |10227 |Fans |0 |
-ROW |923 |10227 |Power supply |0 |
-ROW |924 |10227 |Inventory |0 |
-ROW |934 |10229 |Network interfaces |0 |
-ROW |935 |10229 |General |0 |
-ROW |936 |10229 |Status |0 |
-ROW |937 |10229 |CPU |0 |
-ROW |938 |10229 |Memory |0 |
-ROW |939 |10229 |Temperature |0 |
-ROW |940 |10229 |Fans |0 |
-ROW |941 |10229 |Inventory |0 |
-ROW |942 |10230 |Network interfaces |0 |
-ROW |943 |10230 |General |0 |
-ROW |944 |10230 |Status |0 |
-ROW |945 |10230 |Temperature |0 |
-ROW |946 |10230 |Power supply |0 |
-ROW |947 |10230 |Fans |0 |
-ROW |948 |10230 |Inventory |0 |
-ROW |949 |10231 |Network interfaces |0 |
-ROW |950 |10231 |General |0 |
-ROW |951 |10231 |Status |0 |
-ROW |952 |10231 |CPU |0 |
-ROW |953 |10231 |Memory |0 |
-ROW |954 |10231 |Temperature |0 |
-ROW |955 |10231 |Power supply |0 |
-ROW |956 |10231 |Fans |0 |
-ROW |957 |10231 |Inventory |0 |
-ROW |969 |10233 |Network interfaces |0 |
-ROW |970 |10233 |General |0 |
-ROW |971 |10233 |Status |0 |
-ROW |972 |10233 |CPU |0 |
-ROW |973 |10233 |Memory |0 |
-ROW |974 |10233 |Temperature |0 |
-ROW |975 |10233 |Storage |0 |
-ROW |976 |10233 |Inventory |0 |
-ROW |977 |10234 |Network interfaces |0 |
-ROW |978 |10234 |General |0 |
-ROW |979 |10234 |Status |0 |
-ROW |980 |10234 |CPU |0 |
-ROW |981 |10234 |Memory |0 |
-ROW |982 |10234 |Temperature |0 |
-ROW |983 |10234 |Power supply |0 |
-ROW |984 |10234 |Fans |0 |
-ROW |985 |10234 |Inventory |0 |
-ROW |986 |10235 |Network interfaces |0 |
-ROW |987 |10235 |General |0 |
-ROW |988 |10235 |Status |0 |
-ROW |989 |10235 |CPU |0 |
-ROW |990 |10235 |Memory |0 |
-ROW |991 |10235 |Inventory |0 |
-ROW |992 |10236 |Network interfaces |0 |
-ROW |993 |10236 |General |0 |
-ROW |994 |10236 |Status |0 |
-ROW |995 |10236 |CPU |0 |
-ROW |996 |10236 |Memory |0 |
-ROW |997 |10236 |Inventory |0 |
-ROW |998 |10237 |Network interfaces |0 |
-ROW |999 |10237 |General |0 |
-ROW |1000 |10237 |Status |0 |
-ROW |1001 |10237 |CPU |0 |
-ROW |1002 |10237 |Memory |0 |
-ROW |1003 |10237 |Inventory |0 |
-ROW |1028 |10250 |Network interfaces |0 |
-ROW |1029 |10250 |General |0 |
-ROW |1030 |10250 |Status |0 |
-ROW |1031 |10250 |CPU |0 |
-ROW |1032 |10250 |Memory |0 |
-ROW |1033 |10250 |Temperature |0 |
-ROW |1034 |10250 |Fans |0 |
-ROW |1035 |10250 |Power supply |0 |
-ROW |1036 |10250 |Inventory |0 |
-ROW |1041 |10251 |Network interfaces |0 |
-ROW |1042 |10251 |General |0 |
-ROW |1043 |10251 |Status |0 |
-ROW |1044 |10251 |Temperature |0 |
-ROW |1045 |10251 |Fans |0 |
-ROW |1046 |10251 |Power supply |0 |
-ROW |1047 |10251 |Inventory |0 |
-ROW |1048 |10253 |Inventory |0 |
-ROW |1049 |10253 |Fans |0 |
-ROW |1050 |10253 |Power supply |0 |
-ROW |1051 |10253 |Temperature |0 |
-ROW |1052 |10253 |Memory |0 |
-ROW |1053 |10253 |Network interfaces |0 |
-ROW |1054 |10253 |General |0 |
-ROW |1055 |10253 |Status |0 |
-ROW |1056 |10252 |CPU |0 |
-ROW |1057 |10253 |CPU |0 |
-ROW |1058 |10254 |Network interfaces |0 |
-ROW |1059 |10254 |General |0 |
-ROW |1060 |10254 |Status |0 |
-ROW |1062 |10254 |Fans |0 |
-ROW |1064 |10254 |Inventory |0 |
-ROW |1066 |10254 |Power supply |0 |
-ROW |1068 |10254 |Temperature |0 |
-ROW |1069 |10255 |General |0 |
-ROW |1070 |10255 |Status |0 |
-ROW |1071 |10255 |Disk arrays |0 |
-ROW |1072 |10255 |Fans |0 |
-ROW |1073 |10255 |Inventory |0 |
-ROW |1074 |10255 |Physical disks |0 |
-ROW |1075 |10255 |Power supply |0 |
-ROW |1076 |10255 |Temperature |0 |
-ROW |1077 |10255 |Virtual disks |0 |
-ROW |1078 |10256 |General |0 |
-ROW |1079 |10256 |Status |0 |
-ROW |1080 |10256 |Disk arrays |0 |
-ROW |1081 |10256 |Fans |0 |
-ROW |1082 |10256 |Inventory |0 |
-ROW |1083 |10256 |Physical disks |0 |
-ROW |1084 |10256 |Power supply |0 |
-ROW |1085 |10256 |Temperature |0 |
-ROW |1086 |10256 |Virtual disks |0 |
-ROW |1094 |10258 |General |0 |
-ROW |1095 |10258 |Status |0 |
-ROW |1096 |10258 |Fans |0 |
-ROW |1097 |10258 |Inventory |0 |
-ROW |1098 |10258 |Physical disks |0 |
-ROW |1099 |10258 |Power supply |0 |
-ROW |1100 |10258 |Temperature |0 |
-ROW |1101 |10259 |General |0 |
-ROW |1102 |10259 |Status |0 |
-ROW |1103 |10259 |Fans |0 |
-ROW |1104 |10259 |Temperature |0 |
-ROW |1109 |10260 |Tomcat |0 |
-ROW |1110 |10261 |Zabbix server |0 |
-ROW |1111 |10262 |Zabbix proxy |0 |
-ROW |1114 |10263 |PostgreSQL |0 |
-ROW |1115 |10263 |Zabbix raw items |0 |
-ROW |1116 |10264 |Apache |0 |
-ROW |1117 |10264 |Zabbix raw items |0 |
-ROW |1118 |10265 |Apache |0 |
-ROW |1119 |10265 |Zabbix raw items |0 |
-ROW |1120 |10266 |Nginx |0 |
-ROW |1121 |10266 |Zabbix raw items |0 |
-ROW |1122 |10267 |Nginx |0 |
-ROW |1123 |10267 |Zabbix raw items |0 |
-ROW |1124 |10170 |Zabbix raw items |0 |
-ROW |1125 |10248 |Network interfaces |0 |
-ROW |1126 |10248 |General |0 |
-ROW |1127 |10248 |Status |0 |
-ROW |1128 |10268 |Memory |0 |
-ROW |1129 |10269 |Storage |0 |
-ROW |1130 |10270 |CPU |0 |
-ROW |1131 |10271 |Storage |0 |
-ROW |1132 |10248 |Memory |0 |
-ROW |1133 |10248 |Storage |0 |
-ROW |1134 |10248 |CPU |0 |
-ROW |1135 |10249 |General |0 |
-ROW |1136 |10249 |Status |0 |
-ROW |1141 |10249 |Network interfaces |0 |
-ROW |1142 |10272 |CPU |0 |
-ROW |1143 |10273 |Filesystems |0 |
-ROW |1144 |10274 |Memory |0 |
-ROW |1145 |10275 |Storage |0 |
-ROW |1146 |10275 |Zabbix raw items |0 |
-ROW |1147 |10276 |Network interfaces |0 |
-ROW |1148 |10277 |General |0 |
-ROW |1149 |10277 |Inventory |0 |
-ROW |1150 |10277 |Security |0 |
-ROW |1151 |10277 |Status |0 |
-ROW |1152 |10001 |CPU |0 |
-ROW |1153 |10001 |Filesystems |0 |
-ROW |1154 |10001 |Memory |0 |
-ROW |1155 |10001 |Storage |0 |
-ROW |1156 |10001 |Zabbix raw items |0 |
-ROW |1157 |10001 |Network interfaces |0 |
-ROW |1158 |10001 |General |0 |
-ROW |1159 |10001 |Inventory |0 |
-ROW |1160 |10001 |Security |0 |
-ROW |1161 |10001 |Status |0 |
-ROW |1162 |10084 |CPU |0 |
-ROW |1163 |10084 |Filesystems |0 |
-ROW |1164 |10084 |Memory |0 |
-ROW |1165 |10084 |Storage |0 |
-ROW |1166 |10084 |Zabbix raw items |0 |
-ROW |1167 |10084 |Network interfaces |0 |
-ROW |1168 |10084 |General |0 |
-ROW |1169 |10084 |Inventory |0 |
-ROW |1170 |10084 |Security |0 |
-ROW |1171 |10084 |Status |0 |
-ROW |1173 |10278 |CPU |0 |
-ROW |1174 |10279 |Filesystems |0 |
-ROW |1175 |10280 |Memory |0 |
-ROW |1176 |10281 |Storage |0 |
-ROW |1177 |10281 |Zabbix raw items |0 |
-ROW |1178 |10282 |Network interfaces |0 |
-ROW |1179 |10283 |General |0 |
-ROW |1180 |10283 |Inventory |0 |
-ROW |1181 |10283 |Security |0 |
-ROW |1182 |10283 |Status |0 |
-ROW |1183 |10284 |CPU |0 |
-ROW |1184 |10284 |Filesystems |0 |
-ROW |1185 |10284 |Memory |0 |
-ROW |1186 |10284 |Storage |0 |
-ROW |1187 |10284 |Zabbix raw items |0 |
-ROW |1188 |10284 |Network interfaces |0 |
-ROW |1189 |10284 |General |0 |
-ROW |1190 |10284 |Inventory |0 |
-ROW |1191 |10284 |Security |0 |
-ROW |1192 |10284 |Status |0 |
-ROW |1193 |10285 |CPU |0 |
-ROW |1194 |10285 |General |0 |
-ROW |1195 |10285 |Inventory |0 |
-ROW |1196 |10285 |Memory |0 |
-ROW |1197 |10285 |Monitoring agent |0 |
-ROW |1198 |10285 |Network interfaces |0 |
-ROW |1199 |10285 |Status |0 |
-ROW |1200 |10285 |Storage |0 |
-ROW |1201 |10285 |Zabbix raw items |0 |
-ROW |1202 |10286 |CPU |0 |
-ROW |1203 |10287 |Memory |0 |
-ROW |1204 |10288 |Filesystems |0 |
-ROW |1205 |10289 |Storage |0 |
-ROW |1207 |10290 |General |0 |
-ROW |1208 |10290 |Inventory |0 |
-ROW |1209 |10290 |Status |0 |
-ROW |1210 |10291 |Network interfaces |0 |
-ROW |1211 |10291 |Zabbix raw items |0 |
-ROW |1212 |10081 |CPU |0 |
-ROW |1213 |10081 |Memory |0 |
-ROW |1214 |10081 |Filesystems |0 |
-ROW |1215 |10081 |Storage |0 |
-ROW |1216 |10081 |Zabbix raw items |0 |
-ROW |1217 |10081 |General |0 |
-ROW |1218 |10081 |Inventory |0 |
-ROW |1219 |10081 |Status |0 |
-ROW |1220 |10081 |Network interfaces |0 |
-ROW |1221 |10050 |Monitoring agent |0 |
-ROW |1222 |10050 |Status |0 |
-ROW |1223 |10292 |Monitoring agent |0 |
-ROW |1224 |10292 |Status |0 |
-ROW |1225 |10001 |Monitoring agent |0 |
-ROW |1226 |10074 |Monitoring agent |0 |
-ROW |1227 |10074 |Status |0 |
-ROW |1228 |10075 |Monitoring agent |0 |
-ROW |1229 |10075 |Status |0 |
-ROW |1230 |10076 |Monitoring agent |0 |
-ROW |1231 |10076 |Status |0 |
-ROW |1232 |10077 |Monitoring agent |0 |
-ROW |1233 |10077 |Status |0 |
-ROW |1234 |10078 |Monitoring agent |0 |
-ROW |1235 |10078 |Status |0 |
-ROW |1236 |10079 |Monitoring agent |0 |
-ROW |1237 |10079 |Status |0 |
-ROW |1238 |10081 |Monitoring agent |0 |
-ROW |1240 |10084 |Monitoring agent |0 |
-ROW |1241 |10299 |Monitoring agent |0 |
-ROW |1242 |10299 |Status |0 |
-ROW |1243 |10293 |CPU |0 |
-ROW |1244 |10294 |Memory |0 |
-ROW |1245 |10295 |Filesystems |0 |
-ROW |1246 |10296 |Storage |0 |
-ROW |1248 |10297 |General |0 |
-ROW |1249 |10297 |Inventory |0 |
-ROW |1250 |10297 |Status |0 |
-ROW |1251 |10298 |Network interfaces |0 |
-ROW |1252 |10298 |Zabbix raw items |0 |
-ROW |1253 |10299 |CPU |0 |
-ROW |1254 |10299 |Memory |0 |
-ROW |1255 |10299 |Filesystems |0 |
-ROW |1256 |10299 |Storage |0 |
-ROW |1257 |10299 |Zabbix raw items |0 |
-ROW |1258 |10299 |General |0 |
-ROW |1259 |10299 |Inventory |0 |
-ROW |1260 |10299 |Network interfaces |0 |
-ROW |1261 |10300 |RabbitMQ |0 |
-ROW |1262 |10300 |Zabbix raw items |0 |
-ROW |1263 |10301 |RabbitMQ |0 |
-ROW |1264 |10301 |Zabbix raw items |0 |
-ROW |1265 |10302 |RabbitMQ |0 |
-ROW |1266 |10302 |Zabbix raw items |0 |
-ROW |1267 |10303 |RabbitMQ |0 |
-ROW |1268 |10303 |Zabbix raw items |0 |
-ROW |1269 |10284 |Monitoring agent |0 |
-ROW |1270 |10304 |General |0 |
-ROW |1271 |10304 |Status |0 |
-ROW |1272 |10304 |Disk arrays |0 |
-ROW |1273 |10304 |Fans |0 |
-ROW |1274 |10304 |Inventory |0 |
-ROW |1275 |10304 |Physical disks |0 |
-ROW |1276 |10304 |Power supply |0 |
-ROW |1277 |10304 |Temperature |0 |
-ROW |1278 |10304 |Virtual disks |0 |
-ROW |1279 |10207 |Power supply |0 |
-ROW |1280 |10235 |Fans |0 |
-ROW |1281 |10235 |Power supply |0 |
-ROW |1282 |10235 |Temperature |0 |
-ROW |1283 |10305 |CPU |0 |
-ROW |1284 |10306 |Memory |0 |
-ROW |1285 |10307 |Storage |0 |
-ROW |1286 |10185 |CPU |0 |
-ROW |1287 |10185 |Memory |0 |
-ROW |1288 |10185 |Storage |0 |
-ROW |1289 |10251 |CPU |0 |
-ROW |1290 |10251 |Memory |0 |
-ROW |1291 |10251 |Storage |0 |
-ROW |1292 |10249 |CPU |0 |
-ROW |1293 |10249 |Memory |0 |
-ROW |1294 |10249 |Storage |0 |
-ROW |1295 |10254 |CPU |0 |
-ROW |1296 |10254 |Memory |0 |
-ROW |1297 |10254 |Storage |0 |
-ROW |1298 |10308 |HAProxy |0 |
-ROW |1299 |10308 |Zabbix raw items |0 |
-ROW |1300 |10309 |HAProxy |0 |
-ROW |1301 |10309 |Zabbix raw items |0 |
-ROW |1302 |10310 |Redis |0 |
-ROW |1303 |10310 |Zabbix raw items |0 |
-ROW |1310 |10314 |Services |0 |
-ROW |1311 |10081 |Services |0 |
-ROW |1312 |10315 |Services |0 |
-ROW |1313 |10299 |Services |0 |
-ROW |1314 |10316 |MySQL |0 |
-ROW |1315 |10316 |Zabbix raw items |0 |
-ROW |1316 |10317 |MySQL |0 |
-ROW |1317 |10317 |Zabbix raw items |0 |
-ROW |1318 |10318 |Docker |0 |
-ROW |1319 |10318 |Zabbix raw items |0 |
-ROW |1320 |10319 |Memcached |0 |
-ROW |1321 |10319 |Zabbix raw items |0 |
-ROW |1322 |10320 |MySQL |0 |
-ROW |1323 |10320 |Zabbix raw items |0 |
-ROW |1324 |10321 |General |0 |
-ROW |1325 |10321 |Zabbix raw items |0 |
-ROW |1326 |10322 |ES cluster |0 |
-ROW |1327 |10322 |Zabbix raw items |0 |
-ROW |1328 |10323 |ClickHouse |0 |
-ROW |1329 |10323 |ClickHouse ZooKeeper|0 |
-ROW |1330 |10323 |Zabbix raw items |0 |
-ROW |1331 |10324 |Etcd |0 |
-ROW |1332 |10324 |Zabbix raw items |0 |
-ROW |1333 |10325 |IIS |0 |
-ROW |1334 |10326 |IIS |0 |
-ROW |1335 |10327 |MSSQL |0 |
-ROW |1336 |10327 |Zabbix raw items |0 |
-ROW |1337 |10328 |PostgreSQL |0 |
-ROW |1338 |10328 |Zabbix raw items |0 |
-ROW |1339 |10329 |Oracle |0 |
-ROW |1340 |10329 |Zabbix raw items |0 |
-ROW |1341 |10169 |JMX |0 |
-ROW |1342 |10173 |VMware |0 |
-ROW |1343 |10174 |VMware |0 |
-ROW |1344 |10175 |VMware |0 |
-ROW |1345 |10333 |Oracle |0 |
-ROW |1346 |10333 |Zabbix raw items |0 |
-ROW |1347 |10233 |Wireless |0 |
-ROW |1348 |10334 |Ceph |0 |
-ROW |1349 |10334 |Zabbix raw items |0 |
-ROW |1350 |10335 |PHP-FPM |0 |
-ROW |1351 |10335 |Zabbix raw items |0 |
-ROW |1352 |10336 |PHP-FPM |0 |
-ROW |1353 |10336 |Zabbix raw items |0 |
-ROW |1354 |10337 |Squid |0 |
-ROW |1355 |10338 |Asterisk |0 |
-ROW |1356 |10338 |Zabbix raw items |0 |
-ROW |1357 |10339 |Hadoop |0 |
-ROW |1358 |10339 |Zabbix raw items |0 |
-ROW |1359 |10340 |Kafka |0 |
-ROW |1360 |10341 |Zabbix raw items |0 |
-ROW |1361 |10341 |Zookeeper |0 |
-ROW |1362 |10342 |Cassandra |0 |
-ROW |1363 |10254 |Voltage |0 |
-ROW |1364 |10254 |Zabbix raw items |0 |
-ROW |1365 |10343 |Array |0 |
-ROW |1366 |10343 |Battery |0 |
-ROW |1367 |10343 |Counter |0 |
-ROW |1368 |10343 |Load |0 |
-ROW |1369 |10343 |Status |0 |
-ROW |1370 |10343 |Temperature |0 |
-ROW |1371 |10343 |Zabbix raw items |0 |
-ROW |1372 |10344 |Array |0 |
-ROW |1373 |10344 |Battery |0 |
-ROW |1374 |10344 |Counter |0 |
-ROW |1375 |10344 |Load |0 |
-ROW |1376 |10344 |Status |0 |
-ROW |1377 |10344 |Temperature |0 |
-ROW |1378 |10344 |Zabbix raw items |0 |
-ROW |1379 |10345 |Array |0 |
-ROW |1380 |10345 |Battery |0 |
-ROW |1381 |10345 |Counter |0 |
-ROW |1382 |10345 |Load |0 |
-ROW |1383 |10345 |Status |0 |
-ROW |1384 |10345 |Temperature |0 |
-ROW |1385 |10345 |Zabbix raw items |0 |
-ROW |1386 |10346 |Battery |0 |
-ROW |1387 |10346 |Load |0 |
-ROW |1388 |10346 |Status |0 |
-ROW |1389 |10346 |Temperature |0 |
-ROW |1390 |10346 |Zabbix raw items |0 |
-ROW |1391 |10347 |Array |0 |
-ROW |1392 |10347 |Battery |0 |
-ROW |1393 |10347 |Counter |0 |
-ROW |1394 |10347 |Status |0 |
-ROW |1395 |10347 |Temperature |0 |
-ROW |1396 |10347 |Zabbix raw items |0 |
-ROW |1397 |10348 |Array |0 |
-ROW |1398 |10348 |Battery |0 |
-ROW |1399 |10348 |Counter |0 |
-ROW |1400 |10348 |Status |0 |
-ROW |1401 |10348 |Temperature |0 |
-ROW |1402 |10348 |Zabbix raw items |0 |
-ROW |1403 |10349 |Array |0 |
-ROW |1404 |10349 |Battery |0 |
-ROW |1405 |10349 |Counter |0 |
-ROW |1406 |10349 |Load |0 |
-ROW |1407 |10349 |Status |0 |
-ROW |1408 |10349 |Temperature |0 |
-ROW |1409 |10349 |Zabbix raw items |0 |
-ROW |1410 |10350 |ActiveMQ |0 |
-ROW |1411 |10351 |MS Exchange |0 |
-ROW |1412 |10352 |MS Exchange |0 |
-ROW |1413 |10353 |General |0 |
-ROW |1414 |10353 |Status |0 |
-ROW |1415 |10353 |CPU |0 |
-ROW |1416 |10353 |NetApp FAS3220 |0 |
-ROW |1417 |10353 |Network interfaces |0 |
-ROW |1418 |10354 |Ignite |0 |
-ROW |1419 |10355 |Zabbix raw items |0 |
-ROW |1420 |10356 |Zabbix raw items |0 |
-ROW |1421 |10357 |General |0 |
-ROW |1422 |10357 |Status |0 |
-ROW |1423 |10357 |CPU |0 |
-ROW |1424 |10357 |Huawei |0 |
+FIELDS|applicationid|hostid|name |flags|
+ROW |179 |10047 |Zabbix server |0 |
+ROW |253 |10074 |CPU |0 |
+ROW |254 |10074 |Filesystems |0 |
+ROW |255 |10074 |General |0 |
+ROW |256 |10074 |Memory |0 |
+ROW |257 |10074 |Network interfaces |0 |
+ROW |258 |10074 |OS |0 |
+ROW |259 |10074 |Performance |0 |
+ROW |260 |10074 |Processes |0 |
+ROW |261 |10074 |Security |0 |
+ROW |263 |10075 |CPU |0 |
+ROW |264 |10075 |Filesystems |0 |
+ROW |265 |10075 |General |0 |
+ROW |266 |10075 |Memory |0 |
+ROW |267 |10075 |Network interfaces |0 |
+ROW |268 |10075 |OS |0 |
+ROW |269 |10075 |Performance |0 |
+ROW |270 |10075 |Processes |0 |
+ROW |271 |10075 |Security |0 |
+ROW |273 |10076 |CPU |0 |
+ROW |274 |10076 |Filesystems |0 |
+ROW |275 |10076 |General |0 |
+ROW |276 |10076 |Memory |0 |
+ROW |277 |10076 |Network interfaces |0 |
+ROW |278 |10076 |OS |0 |
+ROW |279 |10076 |Performance |0 |
+ROW |280 |10076 |Processes |0 |
+ROW |281 |10076 |Security |0 |
+ROW |283 |10077 |CPU |0 |
+ROW |284 |10077 |Filesystems |0 |
+ROW |285 |10077 |General |0 |
+ROW |286 |10077 |Memory |0 |
+ROW |287 |10077 |Network interfaces |0 |
+ROW |288 |10077 |OS |0 |
+ROW |289 |10077 |Performance |0 |
+ROW |290 |10077 |Processes |0 |
+ROW |291 |10077 |Security |0 |
+ROW |293 |10078 |CPU |0 |
+ROW |294 |10078 |Filesystems |0 |
+ROW |295 |10078 |General |0 |
+ROW |296 |10078 |Memory |0 |
+ROW |297 |10078 |Network interfaces |0 |
+ROW |298 |10078 |OS |0 |
+ROW |299 |10078 |Performance |0 |
+ROW |300 |10078 |Processes |0 |
+ROW |301 |10078 |Security |0 |
+ROW |303 |10079 |CPU |0 |
+ROW |304 |10079 |Filesystems |0 |
+ROW |305 |10079 |General |0 |
+ROW |306 |10079 |Memory |0 |
+ROW |307 |10079 |Network interfaces |0 |
+ROW |308 |10079 |OS |0 |
+ROW |309 |10079 |Performance |0 |
+ROW |310 |10079 |Processes |0 |
+ROW |311 |10079 |Security |0 |
+ROW |331 |10076 |Logical partitions |0 |
+ROW |345 |10084 |Zabbix server |0 |
+ROW |356 |10048 |Zabbix proxy |0 |
+ROW |446 |10093 |FTP service |0 |
+ROW |447 |10094 |HTTP service |0 |
+ROW |448 |10095 |HTTPS service |0 |
+ROW |449 |10096 |IMAP service |0 |
+ROW |450 |10097 |LDAP service |0 |
+ROW |451 |10098 |NNTP service |0 |
+ROW |452 |10099 |NTP service |0 |
+ROW |453 |10100 |POP service |0 |
+ROW |454 |10101 |SMTP service |0 |
+ROW |455 |10102 |SSH service |0 |
+ROW |456 |10103 |Telnet service |0 |
+ROW |740 |10170 |MySQL |0 |
+ROW |741 |10171 |Fans |0 |
+ROW |742 |10171 |Temperature |0 |
+ROW |743 |10171 |Voltage |0 |
+ROW |744 |10172 |Fans |0 |
+ROW |745 |10172 |Temperature |0 |
+ROW |746 |10172 |Voltage |0 |
+ROW |771 |10183 |Network interfaces |0 |
+ROW |780 |10186 |Status |0 |
+ROW |782 |10188 |Network interfaces |0 |
+ROW |784 |10190 |Network interfaces |0 |
+ROW |786 |10192 |Network interfaces |0 |
+ROW |799 |10204 |Status |0 |
+ROW |800 |10204 |General |0 |
+ROW |803 |10207 |Network interfaces |0 |
+ROW |804 |10207 |General |0 |
+ROW |805 |10207 |Status |0 |
+ROW |806 |10207 |CPU |0 |
+ROW |807 |10207 |Memory |0 |
+ROW |808 |10207 |Temperature |0 |
+ROW |809 |10207 |Fans |0 |
+ROW |810 |10207 |Inventory |0 |
+ROW |811 |10208 |Network interfaces |0 |
+ROW |812 |10208 |General |0 |
+ROW |813 |10208 |Status |0 |
+ROW |814 |10208 |CPU |0 |
+ROW |815 |10208 |Memory |0 |
+ROW |816 |10208 |Temperature |0 |
+ROW |817 |10208 |Power supply |0 |
+ROW |818 |10208 |Fans |0 |
+ROW |819 |10208 |Inventory |0 |
+ROW |820 |10210 |Network interfaces |0 |
+ROW |821 |10210 |General |0 |
+ROW |822 |10210 |Status |0 |
+ROW |823 |10211 |Network interfaces |0 |
+ROW |824 |10211 |General |0 |
+ROW |825 |10211 |Status |0 |
+ROW |826 |10209 |CPU |0 |
+ROW |827 |10209 |Memory |0 |
+ROW |828 |10210 |Temperature |0 |
+ROW |829 |10210 |Power supply |0 |
+ROW |830 |10210 |Fans |0 |
+ROW |831 |10210 |Inventory |0 |
+ROW |832 |10211 |Temperature |0 |
+ROW |833 |10211 |Power supply |0 |
+ROW |834 |10211 |Fans |0 |
+ROW |835 |10211 |Inventory |0 |
+ROW |836 |10210 |CPU |0 |
+ROW |837 |10210 |Memory |0 |
+ROW |838 |10211 |CPU |0 |
+ROW |839 |10211 |Memory |0 |
+ROW |840 |10218 |Network interfaces |0 |
+ROW |841 |10218 |General |0 |
+ROW |842 |10218 |Status |0 |
+ROW |846 |10220 |General |0 |
+ROW |847 |10220 |Status |0 |
+ROW |848 |10212 |Memory |0 |
+ROW |849 |10213 |CPU |0 |
+ROW |851 |10215 |CPU |0 |
+ROW |852 |10216 |Inventory |0 |
+ROW |853 |10217 |Temperature |0 |
+ROW |854 |10217 |Power supply |0 |
+ROW |855 |10217 |Fans |0 |
+ROW |856 |10218 |Memory |0 |
+ROW |857 |10218 |CPU |0 |
+ROW |858 |10218 |Inventory |0 |
+ROW |859 |10218 |Temperature |0 |
+ROW |860 |10218 |Power supply |0 |
+ROW |861 |10218 |Fans |0 |
+ROW |868 |10220 |Memory |0 |
+ROW |869 |10220 |CPU |0 |
+ROW |870 |10220 |Inventory |0 |
+ROW |871 |10220 |Temperature |0 |
+ROW |872 |10220 |Power supply |0 |
+ROW |873 |10220 |Fans |0 |
+ROW |874 |10221 |Network interfaces |0 |
+ROW |875 |10221 |General |0 |
+ROW |876 |10221 |Status |0 |
+ROW |877 |10221 |CPU |0 |
+ROW |878 |10221 |Memory |0 |
+ROW |879 |10221 |Temperature |0 |
+ROW |880 |10221 |Power supply |0 |
+ROW |881 |10221 |Fans |0 |
+ROW |882 |10221 |Inventory |0 |
+ROW |883 |10222 |Network interfaces |0 |
+ROW |884 |10222 |General |0 |
+ROW |885 |10222 |Status |0 |
+ROW |886 |10222 |CPU |0 |
+ROW |887 |10222 |Memory |0 |
+ROW |888 |10222 |Temperature |0 |
+ROW |889 |10222 |Fans |0 |
+ROW |890 |10222 |Power supply |0 |
+ROW |891 |10222 |Inventory |0 |
+ROW |892 |10223 |Network interfaces |0 |
+ROW |893 |10223 |General |0 |
+ROW |894 |10223 |Status |0 |
+ROW |895 |10223 |CPU |0 |
+ROW |896 |10223 |Memory |0 |
+ROW |897 |10223 |Temperature |0 |
+ROW |898 |10223 |Fans |0 |
+ROW |899 |10223 |Power supply |0 |
+ROW |900 |10223 |Inventory |0 |
+ROW |901 |10224 |Network interfaces |0 |
+ROW |902 |10224 |General |0 |
+ROW |903 |10224 |Status |0 |
+ROW |904 |10224 |CPU |0 |
+ROW |905 |10224 |Memory |0 |
+ROW |906 |10224 |Temperature |0 |
+ROW |907 |10224 |Power supply |0 |
+ROW |908 |10224 |Fans |0 |
+ROW |909 |10224 |Inventory |0 |
+ROW |913 |10226 |Network interfaces |0 |
+ROW |914 |10226 |General |0 |
+ROW |915 |10226 |Status |0 |
+ROW |916 |10227 |Network interfaces |0 |
+ROW |917 |10227 |General |0 |
+ROW |918 |10227 |Status |0 |
+ROW |919 |10227 |CPU |0 |
+ROW |920 |10227 |Memory |0 |
+ROW |921 |10227 |Temperature |0 |
+ROW |922 |10227 |Fans |0 |
+ROW |923 |10227 |Power supply |0 |
+ROW |924 |10227 |Inventory |0 |
+ROW |934 |10229 |Network interfaces |0 |
+ROW |935 |10229 |General |0 |
+ROW |936 |10229 |Status |0 |
+ROW |937 |10229 |CPU |0 |
+ROW |938 |10229 |Memory |0 |
+ROW |939 |10229 |Temperature |0 |
+ROW |940 |10229 |Fans |0 |
+ROW |941 |10229 |Inventory |0 |
+ROW |942 |10230 |Network interfaces |0 |
+ROW |943 |10230 |General |0 |
+ROW |944 |10230 |Status |0 |
+ROW |945 |10230 |Temperature |0 |
+ROW |946 |10230 |Power supply |0 |
+ROW |947 |10230 |Fans |0 |
+ROW |948 |10230 |Inventory |0 |
+ROW |949 |10231 |Network interfaces |0 |
+ROW |950 |10231 |General |0 |
+ROW |951 |10231 |Status |0 |
+ROW |952 |10231 |CPU |0 |
+ROW |953 |10231 |Memory |0 |
+ROW |954 |10231 |Temperature |0 |
+ROW |955 |10231 |Power supply |0 |
+ROW |956 |10231 |Fans |0 |
+ROW |957 |10231 |Inventory |0 |
+ROW |969 |10233 |Network interfaces |0 |
+ROW |970 |10233 |General |0 |
+ROW |971 |10233 |Status |0 |
+ROW |972 |10233 |CPU |0 |
+ROW |973 |10233 |Memory |0 |
+ROW |974 |10233 |Temperature |0 |
+ROW |975 |10233 |Storage |0 |
+ROW |976 |10233 |Inventory |0 |
+ROW |977 |10234 |Network interfaces |0 |
+ROW |978 |10234 |General |0 |
+ROW |979 |10234 |Status |0 |
+ROW |980 |10234 |CPU |0 |
+ROW |981 |10234 |Memory |0 |
+ROW |982 |10234 |Temperature |0 |
+ROW |983 |10234 |Power supply |0 |
+ROW |984 |10234 |Fans |0 |
+ROW |985 |10234 |Inventory |0 |
+ROW |986 |10235 |Network interfaces |0 |
+ROW |987 |10235 |General |0 |
+ROW |988 |10235 |Status |0 |
+ROW |989 |10235 |CPU |0 |
+ROW |990 |10235 |Memory |0 |
+ROW |991 |10235 |Inventory |0 |
+ROW |992 |10236 |Network interfaces |0 |
+ROW |993 |10236 |General |0 |
+ROW |994 |10236 |Status |0 |
+ROW |995 |10236 |CPU |0 |
+ROW |996 |10236 |Memory |0 |
+ROW |997 |10236 |Inventory |0 |
+ROW |998 |10237 |Network interfaces |0 |
+ROW |999 |10237 |General |0 |
+ROW |1000 |10237 |Status |0 |
+ROW |1001 |10237 |CPU |0 |
+ROW |1002 |10237 |Memory |0 |
+ROW |1003 |10237 |Inventory |0 |
+ROW |1028 |10250 |Network interfaces |0 |
+ROW |1029 |10250 |General |0 |
+ROW |1030 |10250 |Status |0 |
+ROW |1031 |10250 |CPU |0 |
+ROW |1032 |10250 |Memory |0 |
+ROW |1033 |10250 |Temperature |0 |
+ROW |1034 |10250 |Fans |0 |
+ROW |1035 |10250 |Power supply |0 |
+ROW |1036 |10250 |Inventory |0 |
+ROW |1044 |10251 |Temperature |0 |
+ROW |1045 |10251 |Fans |0 |
+ROW |1046 |10251 |Power supply |0 |
+ROW |1047 |10251 |Inventory |0 |
+ROW |1048 |10253 |Inventory |0 |
+ROW |1049 |10253 |Fans |0 |
+ROW |1050 |10253 |Power supply |0 |
+ROW |1051 |10253 |Temperature |0 |
+ROW |1052 |10253 |Memory |0 |
+ROW |1053 |10253 |Network interfaces |0 |
+ROW |1054 |10253 |General |0 |
+ROW |1055 |10253 |Status |0 |
+ROW |1056 |10252 |CPU |0 |
+ROW |1057 |10253 |CPU |0 |
+ROW |1058 |10254 |Network interfaces |0 |
+ROW |1059 |10254 |General |0 |
+ROW |1060 |10254 |Status |0 |
+ROW |1062 |10254 |Fans |0 |
+ROW |1064 |10254 |Inventory |0 |
+ROW |1066 |10254 |Power supply |0 |
+ROW |1068 |10254 |Temperature |0 |
+ROW |1069 |10255 |General |0 |
+ROW |1070 |10255 |Status |0 |
+ROW |1071 |10255 |Disk arrays |0 |
+ROW |1072 |10255 |Fans |0 |
+ROW |1073 |10255 |Inventory |0 |
+ROW |1074 |10255 |Physical disks |0 |
+ROW |1075 |10255 |Power supply |0 |
+ROW |1076 |10255 |Temperature |0 |
+ROW |1077 |10255 |Virtual disks |0 |
+ROW |1078 |10256 |General |0 |
+ROW |1079 |10256 |Status |0 |
+ROW |1080 |10256 |Disk arrays |0 |
+ROW |1081 |10256 |Fans |0 |
+ROW |1082 |10256 |Inventory |0 |
+ROW |1083 |10256 |Physical disks |0 |
+ROW |1084 |10256 |Power supply |0 |
+ROW |1085 |10256 |Temperature |0 |
+ROW |1086 |10256 |Virtual disks |0 |
+ROW |1094 |10258 |General |0 |
+ROW |1095 |10258 |Status |0 |
+ROW |1096 |10258 |Fans |0 |
+ROW |1097 |10258 |Inventory |0 |
+ROW |1098 |10258 |Physical disks |0 |
+ROW |1099 |10258 |Power supply |0 |
+ROW |1100 |10258 |Temperature |0 |
+ROW |1101 |10259 |General |0 |
+ROW |1102 |10259 |Status |0 |
+ROW |1103 |10259 |Fans |0 |
+ROW |1104 |10259 |Temperature |0 |
+ROW |1109 |10260 |Tomcat |0 |
+ROW |1110 |10261 |Zabbix server |0 |
+ROW |1111 |10262 |Zabbix proxy |0 |
+ROW |1114 |10263 |PostgreSQL |0 |
+ROW |1115 |10263 |Zabbix raw items |0 |
+ROW |1116 |10264 |Apache |0 |
+ROW |1117 |10264 |Zabbix raw items |0 |
+ROW |1118 |10265 |Apache |0 |
+ROW |1119 |10265 |Zabbix raw items |0 |
+ROW |1120 |10266 |Nginx |0 |
+ROW |1121 |10266 |Zabbix raw items |0 |
+ROW |1122 |10267 |Nginx |0 |
+ROW |1123 |10267 |Zabbix raw items |0 |
+ROW |1124 |10170 |Zabbix raw items |0 |
+ROW |1125 |10248 |Network interfaces |0 |
+ROW |1126 |10248 |General |0 |
+ROW |1127 |10248 |Status |0 |
+ROW |1128 |10268 |Memory |0 |
+ROW |1129 |10269 |Storage |0 |
+ROW |1130 |10270 |CPU |0 |
+ROW |1131 |10271 |Storage |0 |
+ROW |1132 |10248 |Memory |0 |
+ROW |1133 |10248 |Storage |0 |
+ROW |1134 |10248 |CPU |0 |
+ROW |1135 |10249 |General |0 |
+ROW |1136 |10249 |Status |0 |
+ROW |1141 |10249 |Network interfaces |0 |
+ROW |1142 |10272 |CPU |0 |
+ROW |1143 |10273 |Filesystems |0 |
+ROW |1144 |10274 |Memory |0 |
+ROW |1145 |10275 |Storage |0 |
+ROW |1146 |10275 |Zabbix raw items |0 |
+ROW |1147 |10276 |Network interfaces |0 |
+ROW |1148 |10277 |General |0 |
+ROW |1149 |10277 |Inventory |0 |
+ROW |1150 |10277 |Security |0 |
+ROW |1151 |10277 |Status |0 |
+ROW |1152 |10001 |CPU |0 |
+ROW |1153 |10001 |Filesystems |0 |
+ROW |1154 |10001 |Memory |0 |
+ROW |1155 |10001 |Storage |0 |
+ROW |1156 |10001 |Zabbix raw items |0 |
+ROW |1157 |10001 |Network interfaces |0 |
+ROW |1158 |10001 |General |0 |
+ROW |1159 |10001 |Inventory |0 |
+ROW |1160 |10001 |Security |0 |
+ROW |1161 |10001 |Status |0 |
+ROW |1162 |10084 |CPU |0 |
+ROW |1163 |10084 |Filesystems |0 |
+ROW |1164 |10084 |Memory |0 |
+ROW |1165 |10084 |Storage |0 |
+ROW |1166 |10084 |Zabbix raw items |0 |
+ROW |1167 |10084 |Network interfaces |0 |
+ROW |1168 |10084 |General |0 |
+ROW |1169 |10084 |Inventory |0 |
+ROW |1170 |10084 |Security |0 |
+ROW |1171 |10084 |Status |0 |
+ROW |1173 |10278 |CPU |0 |
+ROW |1174 |10279 |Filesystems |0 |
+ROW |1175 |10280 |Memory |0 |
+ROW |1176 |10281 |Storage |0 |
+ROW |1177 |10281 |Zabbix raw items |0 |
+ROW |1178 |10282 |Network interfaces |0 |
+ROW |1179 |10283 |General |0 |
+ROW |1180 |10283 |Inventory |0 |
+ROW |1181 |10283 |Security |0 |
+ROW |1182 |10283 |Status |0 |
+ROW |1183 |10284 |CPU |0 |
+ROW |1184 |10284 |Filesystems |0 |
+ROW |1185 |10284 |Memory |0 |
+ROW |1186 |10284 |Storage |0 |
+ROW |1187 |10284 |Zabbix raw items |0 |
+ROW |1188 |10284 |Network interfaces |0 |
+ROW |1189 |10284 |General |0 |
+ROW |1190 |10284 |Inventory |0 |
+ROW |1191 |10284 |Security |0 |
+ROW |1192 |10284 |Status |0 |
+ROW |1193 |10285 |CPU |0 |
+ROW |1194 |10285 |General |0 |
+ROW |1195 |10285 |Inventory |0 |
+ROW |1196 |10285 |Memory |0 |
+ROW |1197 |10285 |Monitoring agent |0 |
+ROW |1198 |10285 |Network interfaces |0 |
+ROW |1199 |10285 |Status |0 |
+ROW |1200 |10285 |Storage |0 |
+ROW |1201 |10285 |Zabbix raw items |0 |
+ROW |1202 |10286 |CPU |0 |
+ROW |1203 |10287 |Memory |0 |
+ROW |1204 |10288 |Filesystems |0 |
+ROW |1205 |10289 |Storage |0 |
+ROW |1207 |10290 |General |0 |
+ROW |1208 |10290 |Inventory |0 |
+ROW |1209 |10290 |Status |0 |
+ROW |1210 |10291 |Network interfaces |0 |
+ROW |1211 |10291 |Zabbix raw items |0 |
+ROW |1212 |10081 |CPU |0 |
+ROW |1213 |10081 |Memory |0 |
+ROW |1214 |10081 |Filesystems |0 |
+ROW |1215 |10081 |Storage |0 |
+ROW |1216 |10081 |Zabbix raw items |0 |
+ROW |1217 |10081 |General |0 |
+ROW |1218 |10081 |Inventory |0 |
+ROW |1219 |10081 |Status |0 |
+ROW |1220 |10081 |Network interfaces |0 |
+ROW |1221 |10050 |Monitoring agent |0 |
+ROW |1222 |10050 |Status |0 |
+ROW |1223 |10292 |Monitoring agent |0 |
+ROW |1224 |10292 |Status |0 |
+ROW |1225 |10001 |Monitoring agent |0 |
+ROW |1226 |10074 |Monitoring agent |0 |
+ROW |1227 |10074 |Status |0 |
+ROW |1228 |10075 |Monitoring agent |0 |
+ROW |1229 |10075 |Status |0 |
+ROW |1230 |10076 |Monitoring agent |0 |
+ROW |1231 |10076 |Status |0 |
+ROW |1232 |10077 |Monitoring agent |0 |
+ROW |1233 |10077 |Status |0 |
+ROW |1234 |10078 |Monitoring agent |0 |
+ROW |1235 |10078 |Status |0 |
+ROW |1236 |10079 |Monitoring agent |0 |
+ROW |1237 |10079 |Status |0 |
+ROW |1238 |10081 |Monitoring agent |0 |
+ROW |1240 |10084 |Monitoring agent |0 |
+ROW |1241 |10299 |Monitoring agent |0 |
+ROW |1242 |10299 |Status |0 |
+ROW |1243 |10293 |CPU |0 |
+ROW |1244 |10294 |Memory |0 |
+ROW |1245 |10295 |Filesystems |0 |
+ROW |1246 |10296 |Storage |0 |
+ROW |1248 |10297 |General |0 |
+ROW |1249 |10297 |Inventory |0 |
+ROW |1250 |10297 |Status |0 |
+ROW |1251 |10298 |Network interfaces |0 |
+ROW |1252 |10298 |Zabbix raw items |0 |
+ROW |1253 |10299 |CPU |0 |
+ROW |1254 |10299 |Memory |0 |
+ROW |1255 |10299 |Filesystems |0 |
+ROW |1256 |10299 |Storage |0 |
+ROW |1257 |10299 |Zabbix raw items |0 |
+ROW |1258 |10299 |General |0 |
+ROW |1259 |10299 |Inventory |0 |
+ROW |1260 |10299 |Network interfaces |0 |
+ROW |1261 |10300 |RabbitMQ |0 |
+ROW |1262 |10300 |Zabbix raw items |0 |
+ROW |1263 |10301 |RabbitMQ |0 |
+ROW |1264 |10301 |Zabbix raw items |0 |
+ROW |1265 |10302 |RabbitMQ |0 |
+ROW |1266 |10302 |Zabbix raw items |0 |
+ROW |1267 |10303 |RabbitMQ |0 |
+ROW |1268 |10303 |Zabbix raw items |0 |
+ROW |1269 |10284 |Monitoring agent |0 |
+ROW |1270 |10304 |General |0 |
+ROW |1271 |10304 |Status |0 |
+ROW |1272 |10304 |Disk arrays |0 |
+ROW |1273 |10304 |Fans |0 |
+ROW |1274 |10304 |Inventory |0 |
+ROW |1275 |10304 |Physical disks |0 |
+ROW |1276 |10304 |Power supply |0 |
+ROW |1277 |10304 |Temperature |0 |
+ROW |1278 |10304 |Virtual disks |0 |
+ROW |1279 |10207 |Power supply |0 |
+ROW |1280 |10235 |Fans |0 |
+ROW |1281 |10235 |Power supply |0 |
+ROW |1282 |10235 |Temperature |0 |
+ROW |1283 |10305 |CPU |0 |
+ROW |1284 |10306 |Memory |0 |
+ROW |1285 |10307 |Storage |0 |
+ROW |1286 |10185 |CPU |0 |
+ROW |1287 |10185 |Memory |0 |
+ROW |1288 |10185 |Storage |0 |
+ROW |1292 |10249 |CPU |0 |
+ROW |1293 |10249 |Memory |0 |
+ROW |1294 |10249 |Storage |0 |
+ROW |1295 |10254 |CPU |0 |
+ROW |1296 |10254 |Memory |0 |
+ROW |1297 |10254 |Storage |0 |
+ROW |1298 |10308 |HAProxy |0 |
+ROW |1299 |10308 |Zabbix raw items |0 |
+ROW |1300 |10309 |HAProxy |0 |
+ROW |1301 |10309 |Zabbix raw items |0 |
+ROW |1302 |10310 |Redis |0 |
+ROW |1303 |10310 |Zabbix raw items |0 |
+ROW |1310 |10314 |Services |0 |
+ROW |1311 |10081 |Services |0 |
+ROW |1312 |10315 |Services |0 |
+ROW |1313 |10299 |Services |0 |
+ROW |1314 |10316 |MySQL |0 |
+ROW |1315 |10316 |Zabbix raw items |0 |
+ROW |1316 |10317 |MySQL |0 |
+ROW |1317 |10317 |Zabbix raw items |0 |
+ROW |1318 |10318 |Docker |0 |
+ROW |1319 |10318 |Zabbix raw items |0 |
+ROW |1320 |10319 |Memcached |0 |
+ROW |1321 |10319 |Zabbix raw items |0 |
+ROW |1322 |10320 |MySQL |0 |
+ROW |1323 |10320 |Zabbix raw items |0 |
+ROW |1324 |10321 |General |0 |
+ROW |1325 |10321 |Zabbix raw items |0 |
+ROW |1326 |10322 |ES cluster |0 |
+ROW |1327 |10322 |Zabbix raw items |0 |
+ROW |1328 |10323 |ClickHouse |0 |
+ROW |1329 |10323 |ClickHouse ZooKeeper |0 |
+ROW |1330 |10323 |Zabbix raw items |0 |
+ROW |1331 |10324 |Etcd |0 |
+ROW |1332 |10324 |Zabbix raw items |0 |
+ROW |1333 |10325 |IIS |0 |
+ROW |1334 |10326 |IIS |0 |
+ROW |1335 |10327 |MSSQL |0 |
+ROW |1336 |10327 |Zabbix raw items |0 |
+ROW |1337 |10328 |PostgreSQL |0 |
+ROW |1338 |10328 |Zabbix raw items |0 |
+ROW |1339 |10329 |Oracle |0 |
+ROW |1340 |10329 |Zabbix raw items |0 |
+ROW |1341 |10169 |JMX |0 |
+ROW |1342 |10173 |VMware |0 |
+ROW |1343 |10174 |VMware |0 |
+ROW |1344 |10175 |VMware |0 |
+ROW |1345 |10333 |Oracle |0 |
+ROW |1346 |10333 |Zabbix raw items |0 |
+ROW |1347 |10233 |Wireless |0 |
+ROW |1348 |10334 |Ceph |0 |
+ROW |1349 |10334 |Zabbix raw items |0 |
+ROW |1350 |10335 |PHP-FPM |0 |
+ROW |1351 |10335 |Zabbix raw items |0 |
+ROW |1352 |10336 |PHP-FPM |0 |
+ROW |1353 |10336 |Zabbix raw items |0 |
+ROW |1354 |10337 |Squid |0 |
+ROW |1355 |10338 |Asterisk |0 |
+ROW |1356 |10338 |Zabbix raw items |0 |
+ROW |1357 |10339 |Hadoop |0 |
+ROW |1358 |10339 |Zabbix raw items |0 |
+ROW |1359 |10340 |Kafka |0 |
+ROW |1360 |10341 |Zabbix raw items |0 |
+ROW |1361 |10341 |Zookeeper |0 |
+ROW |1362 |10342 |Cassandra |0 |
+ROW |1363 |10254 |Voltage |0 |
+ROW |1364 |10254 |Zabbix raw items |0 |
+ROW |1365 |10343 |Array |0 |
+ROW |1366 |10343 |Battery |0 |
+ROW |1367 |10343 |Counter |0 |
+ROW |1368 |10343 |Load |0 |
+ROW |1369 |10343 |Status |0 |
+ROW |1370 |10343 |Temperature |0 |
+ROW |1371 |10343 |Zabbix raw items |0 |
+ROW |1372 |10344 |Array |0 |
+ROW |1373 |10344 |Battery |0 |
+ROW |1374 |10344 |Counter |0 |
+ROW |1375 |10344 |Load |0 |
+ROW |1376 |10344 |Status |0 |
+ROW |1377 |10344 |Temperature |0 |
+ROW |1378 |10344 |Zabbix raw items |0 |
+ROW |1379 |10345 |Array |0 |
+ROW |1380 |10345 |Battery |0 |
+ROW |1381 |10345 |Counter |0 |
+ROW |1382 |10345 |Load |0 |
+ROW |1383 |10345 |Status |0 |
+ROW |1384 |10345 |Temperature |0 |
+ROW |1385 |10345 |Zabbix raw items |0 |
+ROW |1386 |10346 |Battery |0 |
+ROW |1387 |10346 |Load |0 |
+ROW |1388 |10346 |Status |0 |
+ROW |1389 |10346 |Temperature |0 |
+ROW |1390 |10346 |Zabbix raw items |0 |
+ROW |1391 |10347 |Array |0 |
+ROW |1392 |10347 |Battery |0 |
+ROW |1393 |10347 |Counter |0 |
+ROW |1394 |10347 |Status |0 |
+ROW |1395 |10347 |Temperature |0 |
+ROW |1396 |10347 |Zabbix raw items |0 |
+ROW |1397 |10348 |Array |0 |
+ROW |1398 |10348 |Battery |0 |
+ROW |1399 |10348 |Counter |0 |
+ROW |1400 |10348 |Status |0 |
+ROW |1401 |10348 |Temperature |0 |
+ROW |1402 |10348 |Zabbix raw items |0 |
+ROW |1403 |10349 |Array |0 |
+ROW |1404 |10349 |Battery |0 |
+ROW |1405 |10349 |Counter |0 |
+ROW |1406 |10349 |Load |0 |
+ROW |1407 |10349 |Status |0 |
+ROW |1408 |10349 |Temperature |0 |
+ROW |1409 |10349 |Zabbix raw items |0 |
+ROW |1410 |10350 |ActiveMQ |0 |
+ROW |1411 |10351 |MS Exchange |0 |
+ROW |1412 |10352 |MS Exchange |0 |
+ROW |1413 |10353 |General |0 |
+ROW |1414 |10353 |Status |0 |
+ROW |1415 |10353 |CPU |0 |
+ROW |1416 |10353 |NetApp FAS3220 |0 |
+ROW |1417 |10353 |Network interfaces |0 |
+ROW |1418 |10354 |Ignite |0 |
+ROW |1419 |10355 |Zabbix raw items |0 |
+ROW |1420 |10356 |Zabbix raw items |0 |
+ROW |1421 |10357 |General |0 |
+ROW |1422 |10357 |Status |0 |
+ROW |1423 |10357 |CPU |0 |
+ROW |1424 |10357 |Huawei |0 |
+ROW |1425 |10358 |RabbitMQ |0 |
+ROW |1426 |10358 |Zabbix raw items |0 |
+ROW |1427 |10359 |RabbitMQ |0 |
+ROW |1428 |10359 |Zabbix raw items |0 |
+ROW |1429 |10360 |RabbitMQ |0 |
+ROW |1430 |10360 |Zabbix raw items |0 |
+ROW |1431 |10361 |RabbitMQ |0 |
+ROW |1432 |10361 |Zabbix raw items |0 |
+ROW |1433 |10362 |MongoDB |0 |
+ROW |1434 |10362 |Zabbix raw items |0 |
+ROW |1435 |10363 |MongoDB sharded cluster|0 |
+ROW |1436 |10363 |Zabbix raw items |0 |
+ROW |1437 |10366 |CPU |0 |
+ROW |1438 |10366 |Fans |0 |
+ROW |1439 |10366 |General |0 |
+ROW |1440 |10366 |Inventory |0 |
+ROW |1441 |10366 |Memory |0 |
+ROW |1442 |10366 |Network interfaces |0 |
+ROW |1443 |10366 |Power supply |0 |
+ROW |1444 |10366 |Status |0 |
+ROW |1445 |10366 |Temperature |0 |
+ROW |1446 |10367 |CPU |0 |
+ROW |1447 |10367 |Fans |0 |
+ROW |1448 |10367 |General |0 |
+ROW |1449 |10367 |Inventory |0 |
+ROW |1450 |10367 |Memory |0 |
+ROW |1451 |10367 |Network interfaces |0 |
+ROW |1452 |10367 |Power supply |0 |
+ROW |1453 |10367 |Status |0 |
+ROW |1454 |10367 |Temperature |0 |
+ROW |1455 |10368 |CPU |0 |
+ROW |1456 |10368 |Fans |0 |
+ROW |1457 |10368 |General |0 |
+ROW |1458 |10368 |Inventory |0 |
+ROW |1459 |10368 |Memory |0 |
+ROW |1460 |10368 |Network interfaces |0 |
+ROW |1461 |10368 |Power supply |0 |
+ROW |1462 |10368 |Status |0 |
+ROW |1463 |10368 |Temperature |0 |
+ROW |1464 |10369 |CPU |0 |
+ROW |1465 |10369 |Fans |0 |
+ROW |1466 |10369 |General |0 |
+ROW |1467 |10369 |Inventory |0 |
+ROW |1468 |10369 |Memory |0 |
+ROW |1469 |10369 |Network interfaces |0 |
+ROW |1470 |10369 |Power supply |0 |
+ROW |1471 |10369 |Status |0 |
+ROW |1472 |10369 |Temperature |0 |
+ROW |1473 |10370 |CPU |0 |
+ROW |1474 |10370 |Fans |0 |
+ROW |1475 |10370 |General |0 |
+ROW |1476 |10370 |Inventory |0 |
+ROW |1477 |10370 |Memory |0 |
+ROW |1478 |10370 |Network interfaces |0 |
+ROW |1479 |10370 |Power supply |0 |
+ROW |1480 |10370 |Status |0 |
+ROW |1481 |10370 |Temperature |0 |
+ROW |1482 |10251 |CPU |0 |
+ROW |1483 |10251 |General |0 |
+ROW |1484 |10251 |Memory |0 |
+ROW |1485 |10251 |Network interfaces |0 |
+ROW |1486 |10251 |Status |0 |
+ROW |1487 |10251 |Storage |0 |
+ROW |1488 |10371 |General |0 |
+ROW |1489 |10371 |Status |0 |
+ROW |1490 |10372 |General |0 |
+ROW |1491 |10372 |Zabbix raw items |0 |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -1249,3891 +1371,4633 @@ ROW |149 |Huawei storage: Controller role
ROW |150 |Huawei storage: Health status |
ROW |151 |Huawei storage: LUN status |
ROW |152 |Huawei storage: Running status |
+ROW |153 |MongoDB flag |
+ROW |154 |ReplicaSet node state |
+ROW |155 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |156 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |157 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |158 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |159 |PowerNet-MIB::upsBasicOutputStatus |
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 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28201 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Temperature |sensor.temp.value[entPhySensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28202 |20 |1.3.6.1.2.1.99.1.1.1.5.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan status |sensor.fan.status[entPhySensorOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |18 | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The operational status of the sensor {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28203 |20 |1.3.6.1.2.1.99.1.1.1.4.{#SNMPINDEX} |10251 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[entPhySensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-SENSORS-MIB&eol;The most recent measurement obtained by the agent for this sensor.&eol;To correctly interpret the value of this object, the associated entPhySensorType,&eol;entPhySensorScale, and entPhySensorPrecision objects must also be examined. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28204 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28205 |20 |1.3.6.1.2.1.47.1.1.1.1.13.{#SNMPINDEX} |10251 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalModelName.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28206 |20 |1.3.6.1.2.1.131.1.1.1.3.{#SNMPINDEX} |10251 |{#ENT_NAME}: Power supply status |sensor.psu.status[entStateOper.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |48 | | |0 | | | | |2 |NULL |MIB: ENTITY-STATE-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10252 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28246 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.5.{#SNMPINDEX} |10252 |{#SNMPVALUE}: CPU utilization |system.cpu.util[cpmCPUTotal5min.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The overall CPU busy percentage in the last 5 minute&eol;period. This object deprecates the avgBusy5 object from&eol;the OLD-CISCO-SYSTEM-MIB. This object is deprecated&eol;by cpmCPUTotal5minRev which has the changed range&eol;of value (0..100)&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28248 |5 | |10047 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
-ROW |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 encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |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;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.&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. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.&eol;&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.&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. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.&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. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.|0 |30d |0 | |NULL |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 LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |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 |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |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 |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 |Databases discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |Databases discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |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 |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 |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 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 the existed 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 |31131 |11 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Get non-local DB states |db.odbc.get["{#GROUP_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 |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 оf 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 |31335 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk 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. |0 |30d |0 | |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 |31353 |7 | |10296 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk 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. |0 |30d |0 | |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 |31361 |11 | |10329 |Oracle: Get archive log info |db.odbc.get[get_archivelog_stat,"{$ORACLE.DSN}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;d.dest_name, DECODE (d.status, 'VALID',3, 'DEFERRED', 2, 'ERROR', 1, 0) AS status,&bsn;d.log_sequence,&bsn;d.error&bsn;FROM v$archive_dest d , v$database db&bsn;WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31362 |11 | |10329 |Oracle: Get tablespaces stats |db.odbc.get[tablespace_stats,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT df.tablespace_name AS TABLESPACE, df.type AS TYPE, NVL(SUM(df.BYTES), 0) AS FILE_BYTES, NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES, NVL(SUM(f.FREE), 0) AS FREE_BYTES, SUM(df.BYTES)-SUM(f.FREE) AS USED_BYTES, ROUND(DECODE(SUM(df.MAX_BYTES), 0, 0, (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(df.BYTES), 0, 0,(SUM(df.BYTES)-SUM(f.FREE))/ SUM(df.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(df.STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT ddf.file_id, dt.contents AS TYPE, dt.STATUS , ddf.file_name, ddf.tablespace_name, TRUNC(ddf.bytes) AS bytes, TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes FROM dba_data_files ddf, dba_tablespaces dt WHERE ddf.tablespace_name = dt.tablespace_name ) df, ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f WHERE df.file_id = f.file_id (+) GROUP BY df.tablespace_name, df.TYPE, df.status UNION ALL SELECT Y.name AS TABLESPACE, Y.type AS TYPE, NVL(SUM(Y.BYTES), 0) AS FILE_BYTES, NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES, NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE, SUM(Y.BYTES)-SUM(Y.FREE_BYTES) AS USED_BYTES, ROUND(DECODE(SUM(Y.MAX_BYTES), 0, 0, (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(Y.BYTES), 0, 0,(SUM(Y.BYTES)-SUM(Y.FREE_BYTES))/ SUM(Y.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(Y.TBS_STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT dtf.tablespace_name AS name, dt.contents AS TYPE, dt.STATUS AS tbs_status, dtf.status AS status, dtf.bytes AS bytes, (SELECT ((f.total_blocks - s.tot_used_blocks)* vp.value) FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) s, ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) f, ( SELECT value FROM v$parameter WHERE name = 'db_block_size') vp WHERE f.tablespace_name = s.tablespace_name AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes, CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes ELSE dtf.maxbytes END AS max_bytes FROM sys.dba_temp_files dtf, sys.dba_tablespaces dt WHERE dtf.tablespace_name = dt.tablespace_name ) Y GROUP BY Y.name, Y.TYPE, Y.tbs_status;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31363 |11 | |10329 |Oracle: Get ASM stats |db.odbc.get[get_asm_stat,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name AS dg_name,&bsn;ROUND(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)*1024*1024) AS size_byte,&bsn;ROUND(usable_file_mb*1024*1024 ) AS free_size_byte,&bsn;ROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)))* 100, 2) AS used_percent&bsn;FROM v$asm_diskgroup ; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31364 |0 | |10329 |Oracle: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$ORACLE.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of Oracle on TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31365 |0 | |10329 |Oracle: Number of LISTENER processes |proc.num[,,,"tnslsnr LISTENER"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of LISTENER processes running |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31367 |11 | |10329 |Oracle: Get CDB and No-CDB info |db.odbc.get[get_cdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode,&bsn;DECODE(database_role, 'SNAPSHOT STANDBY', 1, 'LOGICAL STANDBY', 2, 'PHYSICAL STANDBY', 3, 'PRIMARY', 4, 'FAR SYNC', 5, 0) AS ROLE,&bsn;DECODE(force_logging, 'YES',1,'NO',0,0) AS force_logging,&bsn;DECODE(log_mode, 'MANUAL',2 ,'ARCHIVELOG',1,'NOARCHIVELOG',0,0) AS log_mode&bsn;FROM v$database | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31368 |11 | |10329 |Oracle: Get PDB info |db.odbc.get[get_pdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode&bsn;FROM v$pdbs; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31369 |11 | |10329 |Oracle: Get instance state |db.odbc.get[get_instance_state,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;INSTANCE_NAME,&bsn;HOST_NAME,&bsn;VERSION &pipe;&pipe; '-' &pipe;&pipe; EDITION AS VERSION,&bsn;floor((SYSDATE - startup_time)*60*60*24) AS UPTIME,&bsn;decode(status,'STARTED',1,'MOUNTED',2,'OPEN',3,'OPEN MIGRATE',4, 0) AS STATUS,&bsn;decode(archiver,'STOPPED',1,'STARTED',2,'FAILED',3, 0) AS ARCHIVER,&bsn;decode(instance_role,'PRIMARY_INSTANCE',1,'SECONDARY_INSTANCE',2, 0) AS INSTANCE_ROLE&bsn;FROM v$instance; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |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 |31434 |11 | |10329 |Archive log discovery |db.odbc.discovery[archivelog,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT d.dest_name&bsn;FROM v$archive_dest d , v$database db WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31435 |11 | |10329 |ASM disk groups discovery |db.odbc.discovery[asm,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS dg_name FROM v$asm_diskgroup; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31436 |11 | |10329 |Database discovery |db.odbc.discovery[db_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME, DECODE(CDB, 'YES', 'CDB', 'No-CDB') AS TYPE FROM V$DATABASE; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31437 |11 | |10329 |PDB discovery |db.odbc.discovery[pdb_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME FROM V$PDBS; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31438 |11 | |10329 |Tablespace discovery |db.odbc.discovery[tbsname,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;tablespace_name AS tablespace,&bsn;contents FROM DBA_TABLESPACES; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31455 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus 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 |31459 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31460 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31461 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31462 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31463 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31464 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31477 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus 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 |31481 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31482 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31483 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31484 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31485 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31486 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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 percent. |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 percent. |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 instansce. |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 instansce. |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 |31727 |11 | |10329 |Oracle: Get system metrics (2) |db.odbc.get[get_system_metrics_2,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SGA::' &pipe;&pipe; INITCAP(pool) AS METRIC , SUM(bytes) AS VALUE FROM V$SGASTAT&bsn;WHERE pool IN ( 'java pool', 'large pool' ) GROUP BY pool&bsn;UNION&bsn;SELECT 'SGA::Shared Pool', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool = 'shared pool' AND name NOT IN ('library cache', 'dictionary cache', 'free memory', 'sql area')&bsn;UNION&bsn;SELECT 'SGA::' &pipe;&pipe; INITCAP(name), bytes FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('log_buffer', 'fixed_sga')&bsn;UNION&bsn;SELECT 'SGA::Buffer_Cache', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('buffer_cache', 'db_block_buffers')&bsn;UNION&bsn;SELECT 'REDO::Available', count(*) from v$log t where t.status in ('INACTIVE', 'UNUSED')&bsn;UNION&bsn;SELECT 'USER::Expire password', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before&bsn;FROM dba_users u WHERE username = UPPER('{$ORACLE.USER}')&bsn;UNION&bsn; SELECT 'FRA::Space Limit', space_limit FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Used', space_used FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Reclaimable', space_reclaimable FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Number Of Files', number_of_files FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Usable Pct', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Restore Point', COUNT(*) FROM V$RESTORE_POINT;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31728 |11 | |10329 |Oracle: Get system metrics (1) |db.odbc.get[get_system_metrics_1,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SYS::' &pipe;&pipe; METRIC_NAME AS METRIC, ROUND(VALUE,3) AS VALUE&bsn; FROM V$SYSMETRIC WHERE GROUP_ID = 2&bsn;UNION&bsn; SELECT 'SYSPARAM::' &pipe;&pipe; INITCAP(NAME), to_number(VALUE)&bsn; FROM V$SYSTEM_PARAMETER WHERE NAME IN ('sessions', 'processes', 'db_files')&bsn;UNION&bsn; SELECT 'SESSION::Long time locked' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS='VALID' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}&bsn;UNION&bsn;SELECT 'SESSION::Lock rate' ,(cnt_block / cnt_all)* 100 pct&bsn;FROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session)&bsn;UNION&bsn; SELECT 'SESSION::Total', COUNT(*) FROM V$SESSION&bsn;UNION&bsn;SELECT 'SESSION::' &pipe;&pipe; INITCAP(STATUS)&pipe;&pipe; ' ' &pipe;&pipe; INITCAP(TYPE), COUNT(*) FROM V$SESSION GROUP BY STATUS, TYPE&bsn;UNION&bsn;SELECT 'SESSION::Concurrency rate', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0)&bsn;FROM&bsn;( SELECT DECODE(session_state, 'ON CPU', 'CPU', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt&bsn;FROM v$active_session_history sh&bsn;WHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, 'ON CPU', 'CPU', wait_class) IN('Concurrency')&bsn;GROUP BY DECODE(session_state, 'ON CPU', 'CPU', wait_class)) duty_act,&bsn;( SELECT SUM(value) val FROM v$osstat WHERE stat_name = 'NUM_CPU_CORES') num_cores&bsn;UNION&bsn; SELECT 'PGA::' &pipe;&pipe; INITCAP(NAME), VALUE FROM V$PGASTAT&bsn; UNION&bsn;SELECT 'PROC::Procnum', COUNT(*) FROM v$process&bsn;UNION&bsn;SELECT 'DATAFILE::Count', COUNT(*) FROM v$datafile;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |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 authetncation 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 authetncation 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 |31969 |3 | |10338 |Asterisk: Service status |net.tcp.service["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Asterisk Manager API port avalability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31970 |3 | |10338 |Asterisk: Service response time |net.tcp.service.perf["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk Manager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31971 |19 | |10338 |Asterisk: Get stats |asterisk.get_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk system information in JSON format. |0 |30d |0 | |NULL |3s |{$AMI.URL} |[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}] | |200 |1 |0 | |1 |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 brocker. |0 |30d |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 millseconds 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: Misceleneous 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: Misceleneous 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: Misceleneous 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 Resetable&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 Resetable&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 Resetable&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 Resetable&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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 |32593 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}"] |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 |32594 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}"] |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 |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 messgae |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 |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 |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 |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 |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 that 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 Ccmmunication 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 perfomance 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 |
+FIELDS|itemid|type|snmp_oid |hostid|name |key_ |delay |history|trends|status|value_type|trapper_hosts|units |formula |logtimefmt |templateid|valuemapid|params |ipmi_sensor |authtype|username |password |publickey|privatekey|flags|interfaceid|description |inventory_link|lifetime|evaltype|jmx_endpoint |master_itemid|timeout |url |query_fields |posts|status_codes|follow_redirects|post_type|headers |retrieve_mode|request_method|output_format|verify_peer|verify_host|allow_traps|discover|
+ROW |10061 |5 | |10047 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10062 |5 | |10047 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10063 |5 | |10047 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10064 |5 | |10047 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10065 |5 | |10047 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10066 |5 | |10047 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |10067 |5 | |10048 |Number of processed numeric (float) values per second |zabbix[wcache,values,float] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10068 |5 | |10048 |Number of processed character values per second |zabbix[wcache,values,str] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10069 |5 | |10048 |Number of processed log values per second |zabbix[wcache,values,log] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10070 |5 | |10048 |Number of processed numeric (unsigned) values per second |zabbix[wcache,values,uint] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10071 |5 | |10048 |Number of processed text values per second |zabbix[wcache,values,text] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |10072 |5 | |10048 |Number of processed not supported values per second |zabbix[wcache,values,not supported] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |22183 |5 | |10047 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22185 |5 | |10047 |Zabbix trend write cache, % used |zabbix[wcache,trend,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22187 |5 | |10047 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22189 |5 | |10047 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22191 |5 | |10047 |Zabbix value cache, % used |zabbix[vcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22196 |5 | |10047 |Zabbix value cache hits |zabbix[vcache,cache,hits] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22199 |5 | |10047 |Zabbix value cache misses |zabbix[vcache,cache,misses] |1m |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22219 |5 | |10047 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22231 |0 | |10050 |Version of Zabbix agent running |agent.version |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22232 |0 | |10050 |Zabbix agent ping |agent.ping |1m |7d |365d |0 |3 | | | | |NULL |10 | | |0 | | | | |0 |NULL |The agent always returns 1 for this item. It could be used in combination with nodata() for availability check. |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22396 |5 | |10047 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22399 |5 | |10047 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22400 |5 | |10047 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22401 |5 | |10047 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22402 |5 | |10047 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22404 |5 | |10047 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22406 |5 | |10047 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22408 |5 | |10047 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22412 |5 | |10047 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22414 |5 | |10047 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22416 |5 | |10047 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22418 |5 | |10047 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22420 |5 | |10047 |Utilization of proxy poller data collector processes, in % |zabbix[process,proxy poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22422 |5 | |10047 |Utilization of escalator internal processes, in % |zabbix[process,escalator,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22424 |5 | |10047 |Utilization of alerter internal processes, in % |zabbix[process,alerter,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22426 |5 | |10047 |Utilization of timer internal processes, in % |zabbix[process,timer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22430 |5 | |10047 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22689 |5 | |10047 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22835 |0 | |10074 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22836 |0 | |10074 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22837 |0 | |10074 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22838 |0 | |10074 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22839 |0 | |10074 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22840 |0 | |10074 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22841 |0 | |10074 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22842 |0 | |10074 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22843 |0 | |10074 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22844 |0 | |10074 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22845 |0 | |10074 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22846 |0 | |10074 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22848 |0 | |10074 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22851 |0 | |10074 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22852 |0 | |10074 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22853 |0 | |10074 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22854 |0 | |10074 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22855 |0 | |10074 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22856 |0 | |10074 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22857 |0 | |10074 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22858 |0 | |10074 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22859 |0 | |10074 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22860 |0 | |10074 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22861 |0 | |10074 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22862 |0 | |10074 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22863 |0 | |10074 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22867 |0 | |10074 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22868 |0 | |10074 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22869 |0 | |10074 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22870 |0 | |10074 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22871 |0 | |10074 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22872 |0 | |10074 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22875 |0 | |10075 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22876 |0 | |10075 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22877 |0 | |10075 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22878 |0 | |10075 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22879 |0 | |10075 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22880 |0 | |10075 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22881 |0 | |10075 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22882 |0 | |10075 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22883 |0 | |10075 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22884 |0 | |10075 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22885 |0 | |10075 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22886 |0 | |10075 |CPU interrupt time |system.cpu.util[,interrupt] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22888 |0 | |10075 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22891 |0 | |10075 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22892 |0 | |10075 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22893 |0 | |10075 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22894 |0 | |10075 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22895 |0 | |10075 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22896 |0 | |10075 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22897 |0 | |10075 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22898 |0 | |10075 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22899 |0 | |10075 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22900 |0 | |10075 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22901 |0 | |10075 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22902 |0 | |10075 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22903 |0 | |10075 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22907 |0 | |10075 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22908 |0 | |10075 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22909 |0 | |10075 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22910 |0 | |10075 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22911 |0 | |10075 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22912 |0 | |10075 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22917 |0 | |10076 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22918 |0 | |10076 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22920 |0 | |10076 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22921 |0 | |10076 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22922 |0 | |10076 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22923 |0 | |10076 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22924 |0 | |10076 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22933 |0 | |10076 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22934 |0 | |10076 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22938 |0 | |10076 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22939 |0 | |10076 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22940 |0 | |10076 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22941 |0 | |10076 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22942 |0 | |10076 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22943 |0 | |10076 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22944 |0 | |10076 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22945 |0 | |10076 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22946 |0 | |10076 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22947 |0 | |10076 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22948 |0 | |10076 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22949 |0 | |10076 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22950 |0 | |10076 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22951 |0 | |10076 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22952 |0 | |10076 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22961 |0 | |10077 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22962 |0 | |10077 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22963 |0 | |10077 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22965 |0 | |10077 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22968 |0 | |10077 |CPU nice time |system.cpu.util[,nice] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22971 |0 | |10077 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22972 |0 | |10077 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22973 |0 | |10077 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22974 |0 | |10077 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22978 |0 | |10077 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22980 |0 | |10077 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22981 |0 | |10077 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22982 |0 | |10077 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22983 |0 | |10077 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22984 |0 | |10077 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22985 |0 | |10077 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22986 |0 | |10077 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22987 |0 | |10077 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22988 |0 | |10077 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22989 |0 | |10077 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22990 |0 | |10077 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22991 |0 | |10077 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22992 |0 | |10077 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22996 |0 | |10078 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22997 |0 | |10078 |Number of running processes |proc.num[,,run] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of processes in running state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22998 |0 | |10078 |Number of processes |proc.num[] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of processes in any state. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |22999 |0 | |10078 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23000 |0 | |10078 |Interrupts per second |system.cpu.intr |1m |1w |365d |0 |3 | |ips | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23001 |0 | |10078 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23002 |0 | |10078 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23003 |0 | |10078 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23004 |0 | |10078 |Context switches per second |system.cpu.switches |1m |1w |365d |0 |3 | |sps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23005 |0 | |10078 |CPU idle time |system.cpu.util[,idle] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23007 |0 | |10078 |CPU iowait time |system.cpu.util[,iowait] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23011 |0 | |10078 |CPU system time |system.cpu.util[,system] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23012 |0 | |10078 |CPU user time |system.cpu.util[,user] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23013 |0 | |10078 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23014 |0 | |10078 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23015 |0 | |10078 |Free swap space |system.swap.size[,free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23016 |0 | |10078 |Free swap space in % |system.swap.size[,pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23017 |0 | |10078 |Total swap space |system.swap.size[,total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23018 |0 | |10078 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23019 |0 | |10078 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23020 |0 | |10078 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23021 |0 | |10078 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23022 |0 | |10078 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23023 |0 | |10078 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23024 |0 | |10078 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23025 |0 | |10078 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23026 |0 | |10078 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23027 |0 | |10078 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23028 |0 | |10078 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23029 |0 | |10078 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23030 |0 | |10078 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23031 |0 | |10078 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23032 |0 | |10078 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23035 |0 | |10079 |Maximum number of opened files |kernel.maxfiles |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23036 |0 | |10079 |Maximum number of processes |kernel.maxproc |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23039 |0 | |10079 |Host boot time |system.boottime |10m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23041 |0 | |10079 |Processor load (15 min average per core) |system.cpu.load[percpu,avg15] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23042 |0 | |10079 |Processor load (1 min average per core) |system.cpu.load[percpu,avg1] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23043 |0 | |10079 |Processor load (5 min average per core) |system.cpu.load[percpu,avg5] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The processor load is calculated as system CPU load divided by number of CPU cores. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23053 |0 | |10079 |Host name |system.hostname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23054 |0 | |10079 |Host local time |system.localtime |1m |1w |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23058 |0 | |10079 |System information |system.uname |1h |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23059 |0 | |10079 |System uptime |system.uptime |10m |1w |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23060 |0 | |10079 |Number of logged in users |system.users.num |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23061 |0 | |10079 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |1h |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23062 |0 | |10079 |Available memory |vm.memory.size[available] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory is defined as free+cached+buffers memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23063 |0 | |10079 |Total memory |vm.memory.size[total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23067 |0 | |10079 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of file systems of different types as defined in global regular expression "File systems for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23068 |0 | |10079 |Free disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},free] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23069 |0 | |10079 |Free inodes on {#FSNAME} (percentage) |vfs.fs.inode[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23070 |0 | |10079 |Total disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},total] |1h |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23071 |0 | |10079 |Used disk space on {#FSNAME} |vfs.fs.size[{#FSNAME},used] |1m |1w |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23072 |0 | |10079 |Free disk space on {#FSNAME} (percentage) |vfs.fs.size[{#FSNAME},pfree] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23073 |0 | |10075 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23074 |0 | |10075 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23075 |0 | |10074 |Incoming network traffic on {#IFNAME} |net.if.in[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23076 |0 | |10074 |Outgoing network traffic on {#IFNAME} |net.if.out[{#IFNAME}] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23077 |0 | |10079 |Incoming network traffic on en0 |net.if.in[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23078 |0 | |10079 |Outgoing network traffic on en0 |net.if.out[en0] |1m |1w |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23108 |0 | |10076 |CPU available physical processors in the shared pool |system.stat[cpu,app] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23109 |0 | |10076 |CPU entitled capacity consumed |system.stat[cpu,ec] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23110 |0 | |10076 |CPU idle time |system.stat[cpu,id] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23111 |0 | |10076 |CPU logical processor utilization |system.stat[cpu,lbusy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23112 |0 | |10076 |CPU number of physical processors consumed |system.stat[cpu,pc] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23113 |0 | |10076 |CPU system time |system.stat[cpu,sy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23114 |0 | |10076 |CPU user time |system.stat[cpu,us] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23115 |0 | |10076 |CPU iowait time |system.stat[cpu,wa] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23116 |0 | |10076 |Amount of data transferred |system.stat[disk,bps] |1m |1w |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23117 |0 | |10076 |Number of transfers |system.stat[disk,tps] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23118 |0 | |10076 |Processor units is entitled to receive |system.stat[ent] |1h |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23119 |0 | |10076 |Kernel thread context switches |system.stat[faults,cs] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23120 |0 | |10076 |Device interrupts |system.stat[faults,in] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23121 |0 | |10076 |System calls |system.stat[faults,sy] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23122 |0 | |10076 |Length of the swap queue |system.stat[kthr,b] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23123 |0 | |10076 |Length of the run queue |system.stat[kthr,r] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23124 |0 | |10076 |Active virtual pages |system.stat[memory,avm] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23125 |0 | |10076 |Free real memory |system.stat[memory,fre] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23126 |0 | |10076 |File page-ins per second |system.stat[page,fi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23127 |0 | |10076 |File page-outs per second |system.stat[page,fo] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23128 |0 | |10076 |Pages freed (page replacement) |system.stat[page,fr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23129 |0 | |10076 |Pages paged in from paging space |system.stat[page,pi] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23130 |0 | |10076 |Pages paged out to paging space |system.stat[page,po] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23131 |0 | |10076 |Pages scanned by page-replacement algorithm |system.stat[page,sr] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23171 |5 | |10047 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23251 |5 | |10047 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23318 |0 | |10050 |Host name of Zabbix agent running |agent.hostname |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23329 |0 | |10074 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23340 |5 | |10048 |Number of processed values per second |zabbix[wcache,values] |1m |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23341 |5 | |10048 |Zabbix history index cache, % used |zabbix[wcache,index,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23342 |5 | |10048 |Zabbix history write cache, % used |zabbix[wcache,history,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23343 |5 | |10048 |Utilization of self-monitoring internal processes, in % |zabbix[process,self-monitoring,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23344 |5 | |10048 |Utilization of snmp trapper data collector processes, in % |zabbix[process,snmp trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23345 |5 | |10048 |Utilization of trapper data collector processes, in % |zabbix[process,trapper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23346 |5 | |10048 |Utilization of unreachable poller data collector processes, in % |zabbix[process,unreachable poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23347 |5 | |10048 |Utilization of configuration syncer internal processes, in % |zabbix[process,configuration syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23348 |5 | |10048 |Utilization of poller data collector processes, in % |zabbix[process,poller,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23349 |5 | |10048 |Utilization of java poller data collector processes, in % |zabbix[process,java poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23350 |5 | |10048 |Utilization of history syncer internal processes, in % |zabbix[process,history syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23351 |5 | |10048 |Utilization of heartbeat sender internal processes, in % |zabbix[process,heartbeat sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23352 |5 | |10048 |Utilization of discoverer data collector processes, in % |zabbix[process,discoverer,avg,busy] |1m |1w |365d |0 |0 |localhost |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23353 |5 | |10048 |Utilization of housekeeper internal processes, in % |zabbix[process,housekeeper,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23354 |5 | |10048 |Utilization of http poller data collector processes, in % |zabbix[process,http poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23355 |5 | |10048 |Utilization of ipmi poller data collector processes, in % |zabbix[process,ipmi poller,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23356 |5 | |10048 |Utilization of icmp pinger data collector processes, in % |zabbix[process,icmp pinger,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23357 |5 | |10048 |Zabbix configuration cache, % used |zabbix[rcache,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23358 |5 | |10048 |Zabbix queue |zabbix[queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23359 |5 | |10048 |Zabbix queue over 10 minutes |zabbix[queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23360 |5 | |10048 |Utilization of data sender internal processes, in % |zabbix[process,data sender,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |23540 |0 | |10075 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces as defined in global regular expression "Network interfaces for discovery". |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23634 |5 | |10047 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23644 |3 | |10093 |FTP service is running |net.tcp.service[ftp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23645 |3 | |10094 |HTTP service is running |net.tcp.service[http] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23646 |3 | |10095 |HTTPS service is running |net.tcp.service[https] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23647 |3 | |10096 |IMAP service is running |net.tcp.service[imap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23648 |3 | |10097 |LDAP service is running |net.tcp.service[ldap] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23649 |3 | |10098 |NNTP service is running |net.tcp.service[nntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23650 |3 | |10099 |NTP service is running |net.udp.service[ntp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23651 |3 | |10100 |POP service is running |net.tcp.service[pop] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23652 |3 | |10101 |SMTP service is running |net.tcp.service[smtp] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23653 |3 | |10102 |SSH service is running |net.tcp.service[ssh] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23654 |3 | |10103 |Telnet service is running |net.tcp.service[telnet] |1m |1w |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23661 |5 | |10047 |Zabbix value cache operating mode |zabbix[vcache,cache,mode] |1m |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |23663 |5 | |10047 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25366 |5 | |10047 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25368 |5 | |10048 |Utilization of ipmi manager internal processes, in % |zabbix[process,ipmi manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25369 |5 | |10048 |Utilization of task manager internal processes, in % |zabbix[process,task manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |25370 |5 | |10047 |Utilization of alert manager internal processes, in % |zabbix[process,alert manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25665 |5 | |10047 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |25666 |5 | |10047 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |0 |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27154 |5 | |10204 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27157 |17 | |10204 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|NULL |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27203 |20 |1.3.6.1.2.1.1.1.0 |10207 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27207 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.9.0 |10207 |Used memory |vm.memory.used[sgiKbMemoryUsed.0] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiKbMemoryUsed indicates the total pre-allocated pool memory, in kilobytes, currently in use on the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27208 |20 |1.3.6.1.4.1.6527.3.1.2.1.1.1.0 |10207 |CPU utilization |system.cpu.util[sgiCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The value of sgiCpuUsage indicates the current CPU utilization for the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27209 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#TEMP_SENSOR},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.17] |10207 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27210 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2] |10207 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27211 |20 |discovery[{#ENT_NAME},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.8,{#ENT_CLASS},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.7,{#ENT_SN},1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5] |10207 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27212 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.18.{#SNMPINDEX} |10207 |{#SNMPVALUE}: Temperature |sensor.temp.value[tmnxHwTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;The current temperature reading in degrees celsius from this hardware component's temperature sensor. If this component does not contain a temperature sensor, then the value -1 is returned. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27213 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.4.1.2.{#SNMPINDEX} |10207 |#{#SNMPINDEX}: Fan status |sensor.fan.status[tmnxChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |23 | | |0 | | | | |2 |NULL |MIB: TIMETRA-SYSTEM-MIB&eol;Current status of the Fan tray. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27214 |20 |1.3.6.1.4.1.6527.3.1.2.2.1.8.1.5.{#SNMPINDEX} |10207 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[tmnxHwSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: TIMETRA-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27236 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.6.0 |10208 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27237 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.10.0 |10208 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27238 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.7.0 |10208 |Overall system health status |system.status[swOperStatus.0] |30s |2w |0d |0 |3 | | | | |NULL |25 | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;The current operational status of the switch.The states are as follow:&eol;online(1) means the switch is accessible by an external Fibre Channel port&eol;offline(2) means the switch is not accessible&eol;testing(3) means the switch is in a built-in test mode and is not accessible by an external Fibre Channel port&eol;faulty(4) means the switch is not operational. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27240 |20 |1.3.6.1.4.1.1588.2.1.1.1.26.1.0 |10208 |CPU utilization |system.cpu.util[swCpuUsage.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SW-MIB&eol;System's CPU usage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27242 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27243 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27244 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.1,{#SENSOR_TYPE},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.2,{#SENSOR_INFO},1.3.6.1.4.1.1588.2.1.1.1.1.22.1.5] |10208 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27246 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature status of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27247 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Temperature |sensor.temp.value[swSensorValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;Temperature readings of testpoint: {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27248 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27249 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.4.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan speed |sensor.fan.speed[swSensorValue.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: SW-MIB&eol;The current value (reading) of the sensor.&eol;The value, -2147483648, represents an unknown quantity.&eol;The fan value will be in RPM(revolution per minute) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27250 |20 |1.3.6.1.4.1.1588.2.1.1.1.1.22.1.3.{#SNMPINDEX} |10208 |{#SENSOR_INFO}: Fan status |sensor.fan.status[swSensorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |24 | | |0 | | | | |2 |NULL |MIB: SW-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27294 |20 |1.3.6.1.4.1.1991.1.1.2.1.52.0 |10209 |CPU utilization |system.cpu.util[snAgGblCpuUtil1MinAvg.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The statistics collection of 1 minute CPU utilization. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27295 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10210 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27296 |20 |1.3.6.1.4.1.1991.1.1.1.1.2.0 |10210 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27297 |20 |1.3.6.1.4.1.1991.1.1.2.1.11.0 |10211 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The version of the running software in the form 'major.minor.maintenance[letters]' |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27302 |20 |discovery[{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.1.1.1] |10210 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupplyTable: A table of each power supply information. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27303 |20 |discovery[{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.1.1.1] |10210 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFanTable: A table of each fan information. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27304 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.1.1.3] |10210 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTempTable:Table to list temperatures of the modules in the device. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27306 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.1.18] |10210 |Temperature Discovery Chassis |temp.chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Since temperature of the chassis is not available on all Brocade/Foundry hardware, this LLD is here to avoid unsupported items. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27307 |20 |discovery[{#PSU_UNIT},1.3.6.1.4.1.1991.1.1.1.2.2.1.1,{#PSU_INDEX},1.3.6.1.4.1.1991.1.1.1.2.2.1.2] |10211 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasPwrSupply2Table: A table of each power supply information for each unit. Only installed power supply appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27308 |20 |discovery[{#FAN_UNIT},1.3.6.1.4.1.1991.1.1.1.3.2.1.1,{#FAN_INDEX},1.3.6.1.4.1.1991.1.1.1.3.2.1.2] |10211 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasFan2Table: A table of each fan information for each unit. Only installed fan appears in a table row. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27309 |20 |discovery[{#SENSOR_DESCR},1.3.6.1.4.1.1991.1.1.2.13.3.1.4] |10211 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snAgentTemp2Table:Table to list temperatures of the modules in the device for each unit. This table is applicable to only those modules with temperature sensors. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27310 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5] |10211 |Stack Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering snStackingConfigUnitTable for Model names |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1] |10211 |Chassis Discovery |chassis.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |snChasUnitIndex: The index to chassis table. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27312 |20 |1.3.6.1.4.1.1991.1.1.1.2.1.1.3.{#SNMPINDEX} |10210 |PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27313 |20 |1.3.6.1.4.1.1991.1.1.1.3.1.1.3.{#SNMPINDEX} |10210 |Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27314 |20 |1.3.6.1.4.1.1991.1.1.2.13.1.1.4.{#SNMPINDEX} |10210 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTempValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celcius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |26 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27317 |20 |1.3.6.1.4.1.1991.1.1.1.3.2.1.4.{#SNMPINDEX} |10211 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan status |sensor.fan.status[snChasFan2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |27 | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27318 |20 |1.3.6.1.4.1.1991.1.1.2.13.3.1.5.{#SNMPINDEX} |10211 |{#SENSOR_DESCR}: Temperature |sensor.temp.value[snAgentTemp2Value.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the sensor represented by this row. Each unit is 0.5 degrees Celsius. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27319 |20 |1.3.6.1.4.1.1991.1.1.3.31.2.1.1.5.{#SNMPINDEX} |10211 |Unit {#SNMPINDEX}: Hardware model name |system.hw.model[snStackingConfigUnitType.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-STACKING-MIB&eol;A description of the configured/active system type for each unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27320 |20 |1.3.6.1.4.1.1991.1.1.1.4.1.1.2.{#SNMPINDEX} |10211 |Unit {#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[snChasUnitSerNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;The serial number of the chassis for each unit. If the serial number is unknown or unavailable then the value should be a zero length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27376 |20 |1.3.6.1.4.1.9.2.1.58 |10215 |CPU utilization |system.cpu.util[avgBusy5] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: OLD-CISCO-CPU-MIB&eol;5 minute exponentially-decayed moving average of the CPU busy percentage.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27378 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10216 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27379 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10216 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27390 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.48.1.1.1.2] |10212 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoMemoryPoolTable, a table of memory pool monitoring entries.&eol;http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27391 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.109.1.1.1.1.5] |10213 |CPU Discovery |cpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If your IOS device has several CPUs, you must use CISCO-PROCESS-MIB and its object cpmCPUTotal5minRev from the table called cpmCPUTotalTable ,&eol;indexed with cpmCPUTotalIndex .&eol;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&eol;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&eol;In case of a single CPU, cpmCPUTotalTable has only one entry. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27393 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10216 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27394 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.9.9.13.1.3.1.2] |10217 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of ciscoEnvMonTemperatureTable (ciscoEnvMonTemperatureDescr), a table of ambient temperature status&eol;maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27395 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.5.1.2] |10217 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of power supply status maintained by the environmental monitor card. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27396 |20 |discovery[{#SENSOR_INFO},1.3.6.1.4.1.9.9.13.1.4.1.2] |10217 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The table of fan status maintained by the environmental monitor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27415 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Free memory |vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27416 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10212 |{#SNMPVALUE}: Used memory |vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27417 |20 |1.3.6.1.4.1.9.9.109.1.1.1.1.8.{#SNMPINDEX} |10213 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[cpmCPUTotal5minRev.{#SNMPINDEX}] |5m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-PROCESS-MIB&eol;The cpmCPUTotal5minRev MIB object provides a more accurate view of the performance of the router over time than the MIB objects cpmCPUTotal1minRev and cpmCPUTotal5secRev . These MIB objects are not accurate because they look at CPU at one minute and five second intervals, respectively. These MIBs enable you to monitor the trends and plan the capacity of your network. The recommended baseline rising threshold for cpmCPUTotal5minRev is 90 percent. Depending on the platform, some routers that run at 90 percent, for example, 2500s, can exhibit performance degradation versus a high-end router, for example, the 7500 series, which can operate fine.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15215-collect-cpu-util-snmp.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27419 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10216 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27420 |20 |1.3.6.1.4.1.9.9.13.1.3.1.6.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature status |sensor.temp.status[ciscoEnvMonTemperatureState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current state of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27421 |20 |1.3.6.1.4.1.9.9.13.1.3.1.3.{#SNMPINDEX} |10217 |{#SNMPVALUE}: Temperature |sensor.temp.value[ciscoEnvMonTemperatureValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;The current measurement of the test point being instrumented. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27422 |20 |1.3.6.1.4.1.9.9.13.1.5.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Power supply status |sensor.psu.status[ciscoEnvMonSupplyState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27423 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10217 |{#SENSOR_INFO}: Fan status |sensor.fan.status[ciscoEnvMonFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |28 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27473 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.9.1.1] |10221 |CPU and Memory and Flash Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27474 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.3.1.1] |10221 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A list of power supply residents in the S-series chassis. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27475 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.4.1.1] |10221 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27476 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.6027.3.10.1.2.2.1.2] |10221 |Stack Unit Discovery |stack.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27478 |20 |1.3.6.1.4.1.6027.3.10.1.2.9.1.3.{#SNMPINDEX} |10221 |#{#SNMPINDEX}: CPU utilization |system.cpu.util[chStackUnitCpuUtil1Min.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;CPU utilization in percentage for last 1 minute. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27479 |20 |1.3.6.1.4.1.6027.3.10.1.2.3.1.2.{#SNMPINDEX} |10221 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[chSysPowerSupplyOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |31 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27480 |20 |1.3.6.1.4.1.6027.3.10.1.2.4.1.2.{#SNMPINDEX} |10221 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[chSysFanTrayOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |30 | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The status of the fan tray {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27481 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.10.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Operating system |system.sw.os[chStackUnitCodeVersion.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;Current code version of this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27482 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.21.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware version(revision) |system.hw.version[chStackUnitProductRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit manufacturer's product revision |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27483 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.12.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware serial number |system.hw.serialnumber[chStackUnitSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The unit's serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27484 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.7.{#SNMPINDEX} |10221 |#{#SNMPVALUE}: Hardware model name |system.hw.model[chStackUnitModelID.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The plugged-in model ID for this unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27485 |20 |1.3.6.1.4.1.6027.3.10.1.2.2.1.14.{#SNMPINDEX} |10221 |Device {#SNMPVALUE}: Temperature |sensor.temp.value[chStackUnitTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: F10-S-SERIES-CHASSIS-MIB&eol;The temperature of the unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27508 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10222 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27509 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10222 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27510 |20 |1.3.6.1.2.1.1.1.0 |10222 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27511 |20 |1.3.6.1.4.1.171.10.97.2.36.1.1.3.0 |10222 |CPU utilization |system.cpu.util[myCPUUtilization5Min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MY-PROCESS-MIB&eol;CPU utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27512 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.35.1.1.1.2] |10222 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27513 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.23.1.2] |10222 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27514 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.18.1.3] |10222 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27515 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.10.97.2.1.1.21.1.3] |10222 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27517 |20 |1.3.6.1.4.1.171.10.97.2.1.1.23.1.3.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Temperature |sensor.temp.value[mySystemTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB&eol;Return the current temperature of the FastSwitch.The temperature display is not supported for the current temperature returns to 0. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27518 |20 |1.3.6.1.4.1.171.10.97.2.1.1.18.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Power supply status |sensor.psu.status[mySystemElectricalSourceIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27519 |20 |1.3.6.1.4.1.171.10.97.2.1.1.21.1.2.{#SNMPINDEX} |10222 |{#SNMPVALUE}: Fan status |sensor.fan.status[mySystemFanIsNormal.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |32 | | |0 | | | | |2 |NULL |MIB: MY-SYSTEM-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27543 |20 |1.3.6.1.2.1.47.1.1.1.1.8.1 |10223 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27544 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10223 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27545 |20 |1.3.6.1.4.1.171.12.1.1.12.0 |10223 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;A text string containing the serial number of this device. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27546 |20 |1.3.6.1.2.1.1.1.0 |10223 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27547 |20 |1.3.6.1.4.1.171.12.1.1.6.2.0 |10223 |CPU utilization |system.cpu.util[agentCPUutilizationIn1min.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: DLINK-AGENT-MIB&eol;The unit of time is 1 minute. The value will be between 0% (idle) and 100%(very busy). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27548 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.1.1.9.1.1] |10223 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27549 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.8.1.1] |10223 |Temperature Discovery |temperature.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27550 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.6.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.6.1.3] |10223 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swPowerID of EQUIPMENT-MIB::swPowerTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27551 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.171.12.11.1.7.1.2,{#STATUS},1.3.6.1.4.1.171.12.11.1.7.1.3] |10223 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |swFanID of EQUIPMENT-MIB::swFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27553 |20 |1.3.6.1.4.1.171.12.11.1.8.1.2.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Temperature |sensor.temp.value[swTemperatureCurrent.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;The shelf current temperature. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27554 |20 |1.3.6.1.4.1.171.12.11.1.6.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Power supply status |sensor.psu.status[swPowerStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |34 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current power status.&eol;lowVoltage : The voltage of the power unit is too low.&eol;overCurrent: The current of the power unit is too high.&eol;working : The power unit is working normally.&eol;fail : The power unit has failed.&eol;connect : The power unit is connected but not powered on.&eol;disconnect : The power unit is not connected. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27555 |20 |1.3.6.1.4.1.171.12.11.1.7.1.3.{#SNMPINDEX} |10223 |#{#SNMPVALUE}: Fan status |sensor.fan.status[swFanStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |33 | | |0 | | | | |2 |NULL |MIB: EQUIPMENT-MIB&eol;Indicates the current fan status.&eol;speed-0 : If the fan function is normal and the fan does not spin due to the temperature not reaching the threshold, the status of the fan is speed 0.&eol;speed-low : Fan spin using the lowest speed.&eol;speed-middle: Fan spin using the middle speed.&eol;speed-high : Fan spin using the highest speed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27579 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27580 |20 |1.3.6.1.2.1.47.1.1.1.1.9.1 |10224 |Hardware version(revision) |system.hw.version |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27582 |20 |1.3.6.1.2.1.47.1.1.1.1.11.1 |10224 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27583 |20 |1.3.6.1.2.1.47.1.1.1.1.2.1 |10224 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27584 |20 |1.3.6.1.4.1.1916.1.1.1.8.0 |10224 |Device: Temperature |sensor.temp.value[extremeCurrentTemperature.0] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature readings of testpoint: Device&eol;Reference: https://gtacknowledge.extremenetworks.com/articles/Q_A/Does-EXOS-support-temperature-polling-via-SNMP-on-all-nodes-in-a-stack |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27585 |20 |1.3.6.1.4.1.1916.1.1.1.7.0 |10224 |Device: Temperature status |sensor.temp.status[extremeOverTemperatureAlarm.0] |3m |2w |0d |0 |3 | | | | |NULL |37 | | |0 | | | | |0 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Temperature status of testpoint: Device |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27586 |20 |1.3.6.1.4.1.1916.1.32.1.2.0 |10224 |CPU utilization |system.cpu.util[extremeCpuMonitorTotalUtilization.0] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total CPU utlization (percentage) as of last sampling. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27587 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.32.2.2.1.1] |10224 |Memory Discovery |memory.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27588 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.27.1.1] |10224 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Table of status of all power supplies in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27589 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1916.1.1.1.9.1.1] |10224 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27591 |20 |1.3.6.1.4.1.1916.1.32.2.2.1.2.{#SNMPINDEX} |10224 |#{#SNMPVALUE}: Total memory |vm.memory.total[extremeMemoryMonitorSystemTotal.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SOFTWARE-MONITOR-MIB&eol;Total amount of DRAM in Kbytes in the system. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27593 |20 |1.3.6.1.4.1.1916.1.1.1.27.1.2.{#SNMPINDEX} |10224 |PSU {#SNMPVALUE}: Power supply status |sensor.psu.status[extremePowerSupplyStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |38 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Status of the power supply {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27594 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.4.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan speed |sensor.fan.speed[extremeFanSpeed.{#SNMPINDEX}] |1m |90d |365d |0 |3 | |rpm | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;The speed (RPM) of a cooling fan in the fantray {#SNMPVALUE} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27595 |20 |1.3.6.1.4.1.1916.1.1.1.9.1.2.{#SNMPINDEX} |10224 |Fan {#SNMPVALUE}: Fan status |sensor.fan.status[extremeFanOperational.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |36 | | |0 | | | | |2 |NULL |MIB: EXTREME-SYSTEM-MIB&eol;Operational status of a cooling fan. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27665 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Module Discovery |module.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Filter limits results to 'Module level1' or Fabric Modules |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27666 |20 |discovery[{#SNMPVALUE},1.3.6.1.2.1.47.1.1.1.1.2,{#MODULE_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering modules temperature (same filter as in Module Discovery) plus and temperature sensors |0 |30d |2 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27667 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 7: fan(7) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27668 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_DESCR},1.3.6.1.2.1.47.1.1.1.1.2] |10227 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering all entities of PhysicalClass - 6: powerSupply(6) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27669 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10227 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27671 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.6.{#SNMPINDEX} |10227 |{#MODULE_NAME}: CPU utilization |system.cpu.util[hh3cEntityExtCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage&eol;will calculate the overall CPU usage on the entity, and it&eol;is not sensible with the number of CPU on the entity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27672 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.12.{#SNMPINDEX} |10227 |{#SNMPVALUE}: Temperature |sensor.temp.value[hh3cEntityExtTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27673 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Fan status |sensor.fan.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;fanError(41) means that the fan stops working. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27674 |20 |1.3.6.1.4.1.25506.2.6.1.1.1.1.19.{#SNMPINDEX} |10227 |{#ENT_NAME}: Power supply status |sensor.psu.status[hh3cEntityExtErrorStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |39 | | |0 | | | | |2 |NULL |MIB: HH3C-ENTITY-EXT-MIB&eol;Indicate the error state of this entity object.&eol;psuError(51) means that the Power Supply Unit is in the state of fault.&eol;rpsError(61) means the Redundant Power Supply is in the state of fault. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27675 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10227 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27676 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27677 |20 |1.3.6.1.2.1.47.1.1.1.1.9.{#SNMPINDEX} |10227 |{#ENT_NAME}: Firmware version |system.hw.firmware[entPhysicalFirmwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27678 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27679 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10227 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27745 |20 |discovery[{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |MPU Discovery |mpu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234. Filter limits results to Main Processing Units |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27746 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7] |10229 |Entity Discovery |entity.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27747 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2011.5.25.31.1.1.10.1.1] |10229 |FAN Discovery |discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27748 |20 |1.3.6.1.2.1.47.1.1.1.1.8.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware version(revision) |system.hw.version[entPhysicalHardwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27749 |20 |1.3.6.1.2.1.47.1.1.1.1.10.{#SNMPINDEX} |10229 |{#ENT_NAME}: Operating system |system.sw.os[entPhysicalSoftwareRev.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27750 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27751 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11.{#SNMPINDEX} |10229 |{#ENT_NAME}: Temperature |sensor.temp.value[hwEntityTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The temperature for the {#SNMPVALUE}. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27753 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.{#SNMPINDEX} |10229 |{#ENT_NAME}: CPU utilization |system.cpu.util[hwEntityCpuUsage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB&eol;The CPU usage for this entity. Generally, the CPU usage will calculate the overall CPU usage on the entity, and itis not sensible with the number of CPU on the entity.&eol;Reference: http://support.huawei.com/enterprise/KnowledgebaseReadAction.action?contentId=KB1000090234 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27754 |20 |1.3.6.1.2.1.47.1.1.1.1.2.{#SNMPINDEX} |10229 |{#ENT_NAME}: Hardware model name |system.hw.model[entPhysicalDescr.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27755 |20 |1.3.6.1.4.1.2011.5.25.31.1.1.10.1.7.{#SNMPINDEX} |10229 |#{#SNMPVALUE}: Fan status |sensor.fan.status[hwEntityFanState.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |41 | | |0 | | | | |2 |NULL |MIB: HUAWEI-ENTITY-EXTENT-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27777 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27778 |20 |1.3.6.1.4.1.10222.2.1.1.1.0 |10230 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: ICS-CHASSIS-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27779 |20 |discovery[{#SENSOR_TYPE},1.3.6.1.4.1.10222.2.1.9.8.1.2,{#SENSOR_INFO},1.3.6.1.4.1.10222.2.1.9.8.1.7] |10230 |Temperature Discovery |temp.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovering sensor's table with temperature filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27780 |20 |discovery[{#ENT_CLASS},1.3.6.1.4.1.10222.2.1.1.9.1.3,{#ENT_NAME},1.3.6.1.4.1.10222.2.1.1.9.1.2] |10230 |Unit Discovery |unit.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27781 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.4.7.1.2] |10230 |PSU Discovery |psu.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |A textual description of the power supply, that can be assigned by the administrator. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27782 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.10222.2.1.6.5.1.2] |10230 |FAN Discovery |fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |icsChassisFanDescription of icsChassisFanTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27783 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.3.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature status |sensor.temp.status[icsChassisSensorSlotOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |43 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27784 |20 |1.3.6.1.4.1.10222.2.1.9.8.1.8.{#SNMPINDEX} |10230 |{#SENSOR_INFO}: Temperature |sensor.temp.value[icsChassisSensorSlotValue.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The current value read from the sensor. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27785 |20 |1.3.6.1.4.1.10222.2.1.1.10.1.1.{#SNMPINDEX} |10230 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[icsChassisSystemUnitFruSerialNumber.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The serial number of the FRU. If not available, this value is a zero-length string. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27786 |20 |1.3.6.1.4.1.10222.2.1.4.7.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Power supply status |sensor.psu.status[icsChassisPowerSupplyEntry.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |44 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;Actual status of the power supply:&eol;(1) unknown: status not known.&eol;(2) disabled: power supply is disabled.&eol;(3) failed - power supply is unable to supply power due to failure.&eol;(4) warning - power supply is supplying power, but an output or sensor is bad or warning.&eol;(5) standby - power supply believed usable,but not supplying power.&eol;(6) engaged - power supply is supplying power.&eol;(7) redundant - power supply is supplying power, but not needed.&eol;(8) notPresent - power supply is supplying power is not present. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27787 |20 |1.3.6.1.4.1.10222.2.1.6.5.1.3.{#SNMPINDEX} |10230 |{#SNMPVALUE}: Fan status |sensor.fan.status[icsChassisFanOperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |42 | | |0 | | | | |2 |NULL |MIB: ICS-CHASSIS-MIB&eol;The operational status of the fan unit. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27812 |20 |1.3.6.1.4.1.2636.3.1.2.0 |10231 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The name, model, or detailed description of the box,indicating which product the box is about, for example 'M40'. |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27813 |20 |1.3.6.1.4.1.2636.3.1.3.0 |10231 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: JUNIPER-MIB&eol;The serial number of this subject, blank if unknown or unavailable. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27814 |20 |1.3.6.1.4.1.2636.3.4.2.3.1.0 |10231 |Overall system health status |system.status[jnxRedAlarmState.0] |30s |2w |0d |0 |3 | | | | |NULL |46 | | |0 | | | | |0 |NULL |MIB: JUNIPER-ALARM-MIB&eol;The red alarm indication on the craft interface panel.&eol;The red alarm is on when there is some system&eol;failure or power supply failure or the system&eol;is experiencing a hardware malfunction or some&eol;threshold is being exceeded.&eol;&eol;This red alarm state could be turned off by the&eol;ACO/LT (Alarm Cut Off / Lamp Test) button on the&eol;front panel module. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27815 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |CPU and Memory Discovery |jnxOperatingTable.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for CPU and Memory&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27816 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.7,{#SENSOR_INFO},1.3.6.1.4.1.2636.3.1.13.1.5] |10231 |Temperature discovery |jnxOperatingTable.discovery.temp |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Temperature&eol;http://kb.juniper.net/InfoCenter/index?page=content&id=KB17526&actp=search. Filter limits results to Routing Engines |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27817 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.4] |10231 |FAN Discovery |jnxOperatingTable.discovery.fans |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Fans |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27818 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.2636.3.1.13.1.5.2] |10231 |PSU Discovery |jnxOperatingTable.discovery.psu |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning JUNIPER-MIB::jnxOperatingTable for Power Supplies |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27821 |20 |1.3.6.1.4.1.2636.3.1.13.1.7.{#SNMPINDEX} |10231 |{#SENSOR_INFO}: Temperature |sensor.temp.value[jnxOperatingTemp.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;The temperature in Celsius (degrees C) of {#SENSOR_INFO} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27822 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.4.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Fan status |sensor.fan.status[jnxOperatingState.4.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27823 |20 |1.3.6.1.4.1.2636.3.1.13.1.6.2.{#SNMPINDEX} |10231 |{#SNMPVALUE}: Power supply status |sensor.psu.status[jnxOperatingState.2.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |47 | | |0 | | | | |2 |NULL |MIB: JUNIPER-MIB&eol;If they are using DC power supplies there is a known issue on PR 1064039 where the fans do not detect the temperature correctly and fail to cool the power supply causing the shutdown to occur.&eol;This is fixed in Junos 13.3R7 https://forums.juniper.net/t5/Routing/PEM-0-not-OK-MX104/m-p/289644#M14122 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27893 |20 |1.3.6.1.2.1.1.1.0 |10233 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27894 |20 |1.3.6.1.4.1.14988.1.1.7.3.0 |10233 |Hardware serial number |system.hw.serialnumber |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;RouterBOARD serial number. |8 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |27895 |20 |1.3.6.1.4.1.14988.1.1.7.4.0 |10233 |Firmware version |system.hw.firmware |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: MIKROTIK-MIB&eol;Current firmware version. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28250 |5 | |10048 |Utilization of vmware data collector processes, in % |zabbix[process,vmware collector,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |28251 |5 | |10048 |Zabbix vmware cache, % used |zabbix[vmware,buffer,pused] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |1 |0 |0 |0 |0 |0 |
+ROW |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 encounterd a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |59 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The status of the controller itself without the propagation of any contained component status.&eol;Possible values:&eol;1: Other&eol;2: Unknown&eol;3: OK&eol;4: Non-critical&eol;5: Critical&eol;6: Non-recoverable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28375 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller model |system.hw.diskarray.model[controllerName.{#SNMPINDEX}] |1d |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The controller's name as represented in Storage Management. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28376 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX} |10255 |Battery {#BATTERY_NUM}: Disk array cache controller battery status |system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |64 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;Current state of battery.&eol;Possible values:&eol;1: The current state could not be determined.&eol;2: The battery is operating normally.&eol;3: The battery has failed and needs to be replaced.&eol;4: The battery temperature is high or charge level is depleting.&eol;5: The battery is missing or not detected.&eol;6: The battery is undergoing the re-charge phase.&eol;7: The battery voltage or charge level is below the threshold. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28388 |20 |1.3.6.1.4.1.232.6.2.6.1.0 |10256 |System: Temperature status |sensor.temp.status[cpqHeThermalCondition.0] |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;Cache Module/Operations Status. This describes the status of the cache module and/or cache operations.&eol;Note that for some controller models, a cache module board that physically attaches to the controller or chipset may not be an available option.&eol;&eol;The status can be:&eol;Other (1)&eol; Indicates that the instrument agent does not recognize the status of the cache module. You may need to upgrade the instrument agent.&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. View the cache module board error code object to determine why the write cache operations have been temporarily disabled.&eol;&eol;Permanently Disabled (5)&eol; Indicates that cache operations have been permanently disabled. View the cache module board error code object to determine why the write cache operations have been disabled.&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. View variables cpqDaCacheMemoryDataWidth and cpqDaCacheMemoryTransferRate to obtain the cache module board`s current memory data width and memory transfer rate.&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. This status may be caused by virtual space limitations in certain operating systems and is only applicable to B-Series controllers.|0 |30d |0 | |NULL |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 LLD queue |zabbix[lld_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28535 |5 | |10047 |Utilization of LLD manager internal processes, in % |zabbix[process,lld manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28537 |5 | |10047 |Utilization of LLD worker internal processes, in % |zabbix[process,lld worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28539 |5 | |10261 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix server statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28540 |5 | |10261 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28541 |5 | |10261 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28585 |5 | |10262 |Zabbix stats |zabbix[stats,{$ADDRESS},{$PORT}] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Zabbix proxy statistics master item. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28586 |5 | |10262 |Zabbix stats queue |zabbix[stats,{$ADDRESS},{$PORT},queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28587 |5 | |10262 |Zabbix stats queue over $5 |zabbix[stats,{$ADDRESS},{$PORT},queue,10m] |10m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28617 |5 | |10048 |Zabbix preprocessing queue |zabbix[preprocessing_queue] |1m |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28618 |5 | |10048 |Utilization of preprocessing manager internal processes, in % |zabbix[process,preprocessing manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28619 |5 | |10048 |Utilization of preprocessing worker internal processes, in % |zabbix[process,preprocessing worker,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28671 |0 | |10263 |PostgreSQL: Get connections sum |pgsql.connections.sum["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_activity&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-ACTIVITY-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28672 |0 | |10263 |PostgreSQL: Get locks |pgsql.locks["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_locks per database&eol;https://www.postgresql.org/docs/current/explicit-locking.html#LOCKING-TABLES |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28673 |0 | |10263 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28674 |0 | |10263 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28675 |0 | |10263 |PostgreSQL: Get queries |pgsql.queries["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}","{$PG.QUERY_ETIME.MAX.WARN}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics by query execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28676 |0 | |10263 |Replication: standby count |pgsql.replication.count["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of standby servers |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28677 |0 | |10263 |Replication: lag in seconds |pgsql.replication.lag.sec["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Replication lag with Master in seconds |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28678 |0 | |10263 |Replication: recovery role |pgsql.replication.recovery_role["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |76 | | |0 | | | | |0 |NULL |Replication role: 1 — recovery is still in progress (standby mode), 0 — master mode. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28679 |0 | |10263 |Replication: status |pgsql.replication.status["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |77 | | |0 | | | | |0 |NULL |Replication status: 0 — streaming is down, 1 — streaming is up, 2 — master mode |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28680 |0 | |10263 |Status: Config hash |pgsql.config.hash["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL configuration hash |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28681 |0 | |10263 |Status: Cache hit ratio % |pgsql.cache.hit["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Cache hit ratio |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28682 |0 | |10263 |PostgreSQL: Get bgwriter |pgsql.bgwriter["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Statistics about the background writer process's activity |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28683 |0 | |10263 |PostgreSQL: Get transactions |pgsql.transactions["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect metrics by transaction execution time |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28684 |0 | |10263 |Status: Uptime |pgsql.uptime["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28685 |0 | |10263 |Status: Version |pgsql.version["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |PostgreSQL version |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28686 |0 | |10263 |PostgreSQL: Get WAL |pgsql.wal.stat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |5m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Master item to collect WAL metrics |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28687 |0 | |10263 |PostgreSQL: Get dbstat |pgsql.dbstat["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Collect all metrics from pg_stat_database per database&eol;https://www.postgresql.org/docs/current/monitoring-stats.html#PG-STAT-DATABASE-VIEW |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29104 |0 | |10274 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29105 |0 | |10274 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29106 |0 | |10274 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29107 |0 | |10274 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29108 |0 | |10274 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29110 |0 | |10277 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29111 |0 | |10277 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29112 |0 | |10277 |System local time |system.localtime |1m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29113 |0 | |10277 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29114 |0 | |10277 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29115 |0 | |10277 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29116 |0 | |10277 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29117 |0 | |10277 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29118 |0 | |10277 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29119 |0 | |10277 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29120 |0 | |10277 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29121 |0 | |10277 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29122 |0 | |10277 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29123 |0 | |10277 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29223 |0 | |10276 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29290 |7 | |10280 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29291 |7 | |10280 |Available memory |vm.memory.size[available] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Available memory, in Linux, available = free + buffers + cache. On other platforms calculation may vary. See also: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29292 |7 | |10280 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29293 |7 | |10280 |Free swap space |system.swap.size[,free] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29294 |7 | |10280 |Free swap space in % |system.swap.size[,pfree] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29296 |7 | |10283 |System uptime |system.uptime |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29297 |7 | |10283 |System boot time |system.boottime |15m |7d |365d |0 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29298 |0 | |10283 |System local time |system.localtime |1m |7d |365d |1 |3 | |unixtime | | |NULL |NULL | | |0 | | | | |0 |NULL |System local time of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29299 |7 | |10283 |System name |system.hostname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29300 |7 | |10283 |System description |system.uname |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The information as normally returned by 'uname -a'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29301 |7 | |10283 |Number of logged in users |system.users.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of users who are currently logged in. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29302 |7 | |10283 |Maximum number of open file descriptors |kernel.maxfiles |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29303 |7 | |10283 |Maximum number of processes |kernel.maxproc |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29304 |7 | |10283 |Number of processes |proc.num |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29305 |7 | |10283 |Number of running processes |proc.num[,,run] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29306 |7 | |10283 |Checksum of /etc/passwd |vfs.file.cksum[/etc/passwd] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29307 |7 | |10283 |Operating system |system.sw.os |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29308 |7 | |10283 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29309 |7 | |10283 |Software installed |system.sw.packages |1h |2w |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29368 |7 | |10282 |Interface {#IFNAME}: Interface type |vfs.file.contents["/sys/class/net/{#IFNAME}/type"] |1h |7d |0d |0 |3 | | | | |NULL |78 | | |0 | | | | |2 |NULL |Indicates the interface protocol type as a decimal value.&eol;See include/uapi/linux/if_arp.h for all possible values.&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29476 |0 | |10290 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29477 |0 | |10290 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29478 |0 | |10290 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System description of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29583 |7 | |10297 |Number of processes |proc.num[] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29584 |7 | |10297 |Number of threads |perf_counter_en["\System\Threads"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads used by all running processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29585 |7 | |10297 |Operating system architecture |system.sw.arch |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |Utilization of alert syncer internal processes, in % |zabbix[process,alert syncer,avg,busy] |1m |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29844 |20 |1.3.6.1.2.1.1.3.0 |10204 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29845 |20 |1.3.6.1.2.1.1.6.0 |10204 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29846 |20 |1.3.6.1.2.1.1.4.0 |10204 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29847 |20 |1.3.6.1.2.1.1.2.0 |10204 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29848 |20 |1.3.6.1.2.1.1.1.0 |10204 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29994 |20 |1.3.6.1.4.1.232.6.1.3.0 |10256 |Overall system health status |system.status[cpqHeMibCondition.0] |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 |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30190 |0 | |10308 |HAProxy: Get stats page |web.page.get["{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH}"] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30196 |15 | |10308 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30230 |19 | |10309 |HAProxy: Get stats |haproxy.get |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report in CSV format |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH};csv | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30231 |19 | |10309 |HAProxy: Get stats page |haproxy.get_html |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |1 |{$HAPROXY.USERNAME} |{$HAPROXY.PASSWORD} | | |0 |NULL |HAProxy Statistics Report HTML |0 |30d |0 | |NULL |3s |{$HAPROXY.STATS.SCHEME}://{HOST.CONN}:{$HAPROXY.STATS.PORT}/{$HAPROXY.STATS.PATH} | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30239 |15 | |10309 |HAProxy Frontend {#PXNAME}: Session utilization |haproxy.frontend.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |Databases discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |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 |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 |Databases discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |Databases discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |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 |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 |last(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &bsn;( last(es.node.indices.search.query_total[{#ES.NODE}]) + (last(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.flush.total[{#ES.NODE}]) + (last(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.indexing.index_total[{#ES.NODE}]) + (last(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |last(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( last(es.node.indices.search.fetch_total[{#ES.NODE}]) + (last(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30762 |15 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30794 |15 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session utilization |haproxy.frontend_tcp.sutil[{#PXNAME}:{#SVNAME}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL |last(haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}]) / last(haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}]) * 100 | |0 | | | | |2 |NULL |Percentage of sessions used (scur / slim * 100). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 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 the existed 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 оf 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 |31335 |0 | |10289 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk 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. |0 |30d |0 | |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 |31353 |7 | |10296 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk 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. |0 |30d |0 | |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 |31361 |11 | |10329 |Oracle: Get archive log info |db.odbc.get[get_archivelog_stat,"{$ORACLE.DSN}"] |5m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;d.dest_name, DECODE (d.status, 'VALID',3, 'DEFERRED', 2, 'ERROR', 1, 0) AS status,&bsn;d.log_sequence,&bsn;d.error&bsn;FROM v$archive_dest d , v$database db&bsn;WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31362 |11 | |10329 |Oracle: Get tablespaces stats |db.odbc.get[tablespace_stats,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT df.tablespace_name AS TABLESPACE, df.type AS TYPE, NVL(SUM(df.BYTES), 0) AS FILE_BYTES, NVL(SUM(df.MAX_BYTES), 0) AS MAX_BYTES, NVL(SUM(f.FREE), 0) AS FREE_BYTES, SUM(df.BYTES)-SUM(f.FREE) AS USED_BYTES, ROUND(DECODE(SUM(df.MAX_BYTES), 0, 0, (SUM(df.BYTES) / SUM(df.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(df.BYTES), 0, 0,(SUM(df.BYTES)-SUM(f.FREE))/ SUM(df.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(df.STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT ddf.file_id, dt.contents AS TYPE, dt.STATUS , ddf.file_name, ddf.tablespace_name, TRUNC(ddf.bytes) AS bytes, TRUNC(GREATEST(ddf.bytes, ddf.maxbytes)) AS max_bytes FROM dba_data_files ddf, dba_tablespaces dt WHERE ddf.tablespace_name = dt.tablespace_name ) df, ( SELECT TRUNC(SUM(bytes)) AS FREE, file_id FROM dba_free_space GROUP BY file_id ) f WHERE df.file_id = f.file_id (+) GROUP BY df.tablespace_name, df.TYPE, df.status UNION ALL SELECT Y.name AS TABLESPACE, Y.type AS TYPE, NVL(SUM(Y.BYTES), 0) AS FILE_BYTES, NVL(SUM(Y.MAX_BYTES), 0) AS MAX_BYTES, NVL(MAX(NVL(Y.FREE_BYTES, 0)), 0) AS FREE, SUM(Y.BYTES)-SUM(Y.FREE_BYTES) AS USED_BYTES, ROUND(DECODE(SUM(Y.MAX_BYTES), 0, 0, (SUM(Y.BYTES) / SUM(Y.MAX_BYTES) * 100)), 2) AS USED_PCT_MAX, ROUND(DECODE(SUM(Y.BYTES), 0, 0,(SUM(Y.BYTES)-SUM(Y.FREE_BYTES))/ SUM(Y.BYTES)* 100), 2) AS USED_FILE_PCT, DECODE(Y.TBS_STATUS, 'ONLINE', 1, 'OFFLINE', 2, 'READ ONLY', 3, 0) AS STATUS FROM ( SELECT dtf.tablespace_name AS name, dt.contents AS TYPE, dt.STATUS AS tbs_status, dtf.status AS status, dtf.bytes AS bytes, (SELECT ((f.total_blocks - s.tot_used_blocks)* vp.value) FROM ( SELECT tablespace_name, SUM(used_blocks) tot_used_blocks FROM gv$sort_segment WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) s, ( SELECT tablespace_name, SUM(blocks) total_blocks FROM dba_temp_files WHERE tablespace_name != 'DUMMY' GROUP BY tablespace_name) f, ( SELECT value FROM v$parameter WHERE name = 'db_block_size') vp WHERE f.tablespace_name = s.tablespace_name AND f.tablespace_name = dtf.tablespace_name ) AS free_bytes, CASE WHEN dtf.maxbytes = 0 THEN dtf.bytes ELSE dtf.maxbytes END AS max_bytes FROM sys.dba_temp_files dtf, sys.dba_tablespaces dt WHERE dtf.tablespace_name = dt.tablespace_name ) Y GROUP BY Y.name, Y.TYPE, Y.tbs_status;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get tablespaces stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31363 |11 | |10329 |Oracle: Get ASM stats |db.odbc.get[get_asm_stat,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name AS dg_name,&bsn;ROUND(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)*1024*1024) AS size_byte,&bsn;ROUND(usable_file_mb*1024*1024 ) AS free_size_byte,&bsn;ROUND(100-(usable_file_mb /(total_mb / DECODE(TYPE, 'NORMAL', 2, 'HIGH', 3, 'EXTERN', 1)))* 100, 2) AS used_percent&bsn;FROM v$asm_diskgroup ; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get ASM disk groups stats. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31364 |0 | |10329 |Oracle: Service's TCP port state |net.tcp.service[tcp,{HOST.CONN},{$ORACLE.PORT}] |30s |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Test the availability of Oracle on TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31365 |0 | |10329 |Oracle: Number of LISTENER processes |proc.num[,,,"tnslsnr LISTENER"] |30s |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of LISTENER processes running |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31367 |11 | |10329 |Oracle: Get CDB and No-CDB info |db.odbc.get[get_cdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode,&bsn;DECODE(database_role, 'SNAPSHOT STANDBY', 1, 'LOGICAL STANDBY', 2, 'PHYSICAL STANDBY', 3, 'PRIMARY', 4, 'FAR SYNC', 5, 0) AS ROLE,&bsn;DECODE(force_logging, 'YES',1,'NO',0,0) AS force_logging,&bsn;DECODE(log_mode, 'MANUAL',2 ,'ARCHIVELOG',1,'NOARCHIVELOG',0,0) AS log_mode&bsn;FROM v$database | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about CDB and No-CDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31368 |11 | |10329 |Oracle: Get PDB info |db.odbc.get[get_pdb_info,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;name as DBNAME,&bsn;DECODE(open_mode, 'MOUNTED', 1, 'READ ONLY', 2, 'READ WRITE', 3, 'READ ONLY WITH APPLY', 4, 'MIGRATE', 5, 0) AS open_mode&bsn;FROM v$pdbs; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |Get info about PDB databases on instansce. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31369 |11 | |10329 |Oracle: Get instance state |db.odbc.get[get_instance_state,"{$ORACLE.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;INSTANCE_NAME,&bsn;HOST_NAME,&bsn;VERSION &pipe;&pipe; '-' &pipe;&pipe; EDITION AS VERSION,&bsn;floor((SYSDATE - startup_time)*60*60*24) AS UPTIME,&bsn;decode(status,'STARTED',1,'MOUNTED',2,'OPEN',3,'OPEN MIGRATE',4, 0) AS STATUS,&bsn;decode(archiver,'STOPPED',1,'STARTED',2,'FAILED',3, 0) AS ARCHIVER,&bsn;decode(instance_role,'PRIMARY_INSTANCE',1,'SECONDARY_INSTANCE',2, 0) AS INSTANCE_ROLE&bsn;FROM v$instance; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |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 |31434 |11 | |10329 |Archive log discovery |db.odbc.discovery[archivelog,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT d.dest_name&bsn;FROM v$archive_dest d , v$database db WHERE d.status != 'INACTIVE' AND db.log_mode = 'ARCHIVELOG'; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Log archive destinations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31435 |11 | |10329 |ASM disk groups discovery |db.odbc.discovery[asm,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS dg_name FROM v$asm_diskgroup; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |ASM disk groups |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31436 |11 | |10329 |Database discovery |db.odbc.discovery[db_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME, DECODE(CDB, 'YES', 'CDB', 'No-CDB') AS TYPE FROM V$DATABASE; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31437 |11 | |10329 |PDB discovery |db.odbc.discovery[pdb_list,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as DBNAME FROM V$PDBS; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning PDB in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31438 |11 | |10329 |Tablespace discovery |db.odbc.discovery[tbsname,"{$ORACLE.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT&bsn;tablespace_name AS tablespace,&bsn;contents FROM DBA_TABLESPACES; | |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |1 |NULL |Scanning tablespaces in DBMS. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31455 |0 | |10291 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus 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 |31459 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31460 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31461 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31462 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31463 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31464 |0 | |10291 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31477 |7 | |10298 |Network interfaces WMI get |wmi.getall[root\cimv2,"select Name,Description,NetConnectionID,Speed,AdapterTypeId,NetConnectionStatus 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 |31481 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31482 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of incoming packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31483 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Incoming traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31484 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out["{#IFNAME}",dropped] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets dropped on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31485 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out["{#IFNAME}",errors] |3m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of outgoing packets with errors on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31486 |7 | |10298 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out["{#IFNAME}"] |3m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Outgoing traffic on the network interface. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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] |{$VMWARE_PERF_INTERVAL} |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 percent. |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 percent. |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 instansce. |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 instansce. |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 |31727 |11 | |10329 |Oracle: Get system metrics (2) |db.odbc.get[get_system_metrics_2,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SGA::' &pipe;&pipe; INITCAP(pool) AS METRIC , SUM(bytes) AS VALUE FROM V$SGASTAT&bsn;WHERE pool IN ( 'java pool', 'large pool' ) GROUP BY pool&bsn;UNION&bsn;SELECT 'SGA::Shared Pool', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool = 'shared pool' AND name NOT IN ('library cache', 'dictionary cache', 'free memory', 'sql area')&bsn;UNION&bsn;SELECT 'SGA::' &pipe;&pipe; INITCAP(name), bytes FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('log_buffer', 'fixed_sga')&bsn;UNION&bsn;SELECT 'SGA::Buffer_Cache', SUM(bytes) FROM V$SGASTAT&bsn;WHERE pool IS NULL AND name IN ('buffer_cache', 'db_block_buffers')&bsn;UNION&bsn;SELECT 'REDO::Available', count(*) from v$log t where t.status in ('INACTIVE', 'UNUSED')&bsn;UNION&bsn;SELECT 'USER::Expire password', ROUND(DECODE(SIGN(NVL(u.expiry_date, SYSDATE + 999) - SYSDATE),-1, 0, NVL(u.expiry_date, SYSDATE + 999) - SYSDATE)) exp_passwd_days_before&bsn;FROM dba_users u WHERE username = UPPER('{$ORACLE.USER}')&bsn;UNION&bsn; SELECT 'FRA::Space Limit', space_limit FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Used', space_used FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Space Reclaimable', space_reclaimable FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Number Of Files', number_of_files FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Usable Pct', DECODE(space_limit, 0, 0,(100-(100 *(space_used-space_reclaimable)/ space_limit))) AS VALUE FROM V$RECOVERY_FILE_DEST&bsn;UNION&bsn; SELECT 'FRA::Restore Point', COUNT(*) FROM V$RESTORE_POINT;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31728 |11 | |10329 |Oracle: Get system metrics (1) |db.odbc.get[get_system_metrics_1,"{$ORACLE.DSN}"] |0;m0-59 |0 |0 |0 |4 | | | | |NULL |NULL |SELECT 'SYS::' &pipe;&pipe; METRIC_NAME AS METRIC, ROUND(VALUE,3) AS VALUE&bsn; FROM V$SYSMETRIC WHERE GROUP_ID = 2&bsn;UNION&bsn; SELECT 'SYSPARAM::' &pipe;&pipe; INITCAP(NAME), to_number(VALUE)&bsn; FROM V$SYSTEM_PARAMETER WHERE NAME IN ('sessions', 'processes', 'db_files')&bsn;UNION&bsn; SELECT 'SESSION::Long time locked' ,count(*) FROM V$SESSION s WHERE s.BLOCKING_SESSION IS NOT NULL AND s.BLOCKING_SESSION_STATUS='VALID' AND s.SECONDS_IN_WAIT > {$ORACLE.SESSION.LOCK.MAX.TIME}&bsn;UNION&bsn;SELECT 'SESSION::Lock rate' ,(cnt_block / cnt_all)* 100 pct&bsn;FROM ( SELECT COUNT(*) cnt_block FROM v$session WHERE blocking_session IS NOT NULL), ( SELECT COUNT(*) cnt_all FROM v$session)&bsn;UNION&bsn; SELECT 'SESSION::Total', COUNT(*) FROM V$SESSION&bsn;UNION&bsn;SELECT 'SESSION::' &pipe;&pipe; INITCAP(STATUS)&pipe;&pipe; ' ' &pipe;&pipe; INITCAP(TYPE), COUNT(*) FROM V$SESSION GROUP BY STATUS, TYPE&bsn;UNION&bsn;SELECT 'SESSION::Concurrency rate', NVL(ROUND(SUM(duty_act.cnt*100 / num_cores.val)), 0)&bsn;FROM&bsn;( SELECT DECODE(session_state, 'ON CPU', 'CPU', wait_class) wait_class, ROUND(COUNT(*)/(60 * 15), 1) cnt&bsn;FROM v$active_session_history sh&bsn;WHERE sh.sample_time >= SYSDATE - 15 / 1440 AND DECODE(session_state, 'ON CPU', 'CPU', wait_class) IN('Concurrency')&bsn;GROUP BY DECODE(session_state, 'ON CPU', 'CPU', wait_class)) duty_act,&bsn;( SELECT SUM(value) val FROM v$osstat WHERE stat_name = 'NUM_CPU_CORES') num_cores&bsn;UNION&bsn; SELECT 'PGA::' &pipe;&pipe; INITCAP(NAME), VALUE FROM V$PGASTAT&bsn; UNION&bsn;SELECT 'PROC::Procnum', COUNT(*) FROM v$process&bsn;UNION&bsn;SELECT 'DATAFILE::Count', COUNT(*) FROM v$datafile;| |0 |{$ORACLE.USER} |{$ORACLE.PASSWORD} | | |0 |NULL |The item gets system metric values. |0 |30d |0 | |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 authetncation 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 authetncation 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 |31969 |3 | |10338 |Asterisk: Service status |net.tcp.service["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |0 |NULL |Asterisk Manager API port avalability. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31970 |3 | |10338 |Asterisk: Service response time |net.tcp.service.perf["tcp","{HOST.CONN}","{$AMI.PORT}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk Manager API performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31971 |19 | |10338 |Asterisk: Get stats |asterisk.get_stats |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Asterisk system information in JSON format. |0 |30d |0 | |NULL |3s |{$AMI.URL} |[{"action":"login"},{"username":"{$AMI.USERNAME}"},{"secret":"{$AMI.SECRET}"}] | |200 |1 |0 | |1 |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 brocker. |0 |30d |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 millseconds 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: Misceleneous 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: Misceleneous 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: Misceleneous 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 Resetable&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 Resetable&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 Resetable&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 Resetable&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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 innodb_log_file_size. Innodb_log_file_size is size in bytes of 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 |32593 |0 | |10328 |PostgreSQL: Cache hit |pgsql.cache.hit["{$PG.URI}"] |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 |32594 |0 | |10328 |PostgreSQL: Age of oldest xid |pgsql.oldest.xid["{$PG.URI}","{$PG.USER}"] |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 |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 messgae |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 |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 |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 |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 |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 that 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 Ccmmunication 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 perfomance 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 | | |0 |{$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 | | |0 |{$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 | | |0 |{$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 synchronised 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 | | |0 |{$RABBITMQ.API.USER} |{$RABBITMQ.API.PASSWORD} | | |2 |NULL |Checks if there are classic mirrored queues without synchronised 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 | | |0 |{$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 | | |0 |{$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 synchronised 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 synchronised 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. |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. |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. |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. |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&bsn;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&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;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&bsn;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&bsn;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&bsn;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&bsn;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 ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;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.&bsn;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&bsn;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&bsn;Object name: cpmCPUTotal5minRev&bsn;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.&bsn;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&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolFree&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;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&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;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&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- 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&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- 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&bsn;- 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&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;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&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;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&bsn;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&bsn;Object name: ciscoEnvMonTemperatureState&bsn;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&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;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&bsn;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&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;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&bsn;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&bsn;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&bsn;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&bsn;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 ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;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.&bsn;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&bsn;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&bsn;Object name: cpmCPUTotal5minRev&bsn;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.&bsn;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&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolFree&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;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&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;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&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- 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&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- 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&bsn;- 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&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;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&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;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&bsn;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&bsn;Object name: ciscoEnvMonTemperatureState&bsn;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&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;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&bsn;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&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;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&bsn;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&bsn;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&bsn;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&bsn;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 ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;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.&bsn;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&bsn;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&bsn;Object name: cpmCPUTotal5minRev&bsn;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.&bsn;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&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolFree&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;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&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;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&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- 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&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- 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&bsn;- 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&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;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&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;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&bsn;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&bsn;Object name: ciscoEnvMonTemperatureState&bsn;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&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;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&bsn;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&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;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&bsn;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&bsn;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&bsn;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&bsn;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 ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;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.&bsn;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&bsn;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&bsn;Object name: cpmCPUTotal5minRev&bsn;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.&bsn;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&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolFree&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;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&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;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&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- 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&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- 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&bsn;- 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&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;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&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;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&bsn;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&bsn;Object name: ciscoEnvMonTemperatureState&bsn;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&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;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&bsn;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&bsn;A textual description of the entity. This value should&bsn;include the full name and version identification of the system's hardware type, software operating-system, and&bsn;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&bsn;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&bsn;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&bsn;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&bsn;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 ,&bsn;indexed with cpmCPUTotalIndex .&bsn;This table allows CISCO-PROCESS-MIB to keep CPU statistics for different physical entities in the router,&bsn;like different CPU chips, group of CPUs, or CPUs in different modules/cards.&bsn;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.&bsn;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&bsn;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&bsn;Object name: cpmCPUTotal5minRev&bsn;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.&bsn;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&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolFree&bsn;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&bsn;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&bsn;Object name: ciscoMemoryPoolUsed&bsn;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&bsn;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&bsn;The number of inbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;The number of outbound packets which were chosen to be discarded&bsn;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&bsn;One possible reason for discarding such a packet could be to free up buffer space.&bsn;Discontinuities in the value of this counter can occur at re-initialization of the management system,&bsn;and at other 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&bsn;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&bsn;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&bsn;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&bsn;The current operational state of the interface.&bsn;- The testing(3) state indicates that no operational packet scan be passed&bsn;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&bsn;- 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&bsn;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&bsn;- 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&bsn;- 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&bsn;The type of interface.&bsn;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&bsn;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&bsn;Object name: dot3StatsDuplexStatus&bsn;The current mode of operation of the MAC&bsn;entity. 'unknown' indicates that the current&bsn;duplex mode could not be determined.&bsn;&bsn;Management control of the duplex mode is&bsn;accomplished through the MAU MIB. When&bsn;an interface does not support autonegotiation,&bsn;or when autonegotiation is not enabled, the&bsn;duplex mode is controlled using&bsn;ifMauDefaultType. When autonegotiation is&bsn;supported and enabled, duplex mode is controlled&bsn;using ifMauAutoNegAdvertisedBits. In either&bsn;case, the currently operating duplex mode is&bsn;reflected both in this object and in ifMauType.&bsn;&bsn;Note that this object provides redundant&bsn;information with ifMauType. Normally, redundant&bsn;objects are discouraged. However, in this&bsn;instance, it allows a management application to&bsn;determine the duplex status of an interface&bsn;without having to know every possible value of&bsn;ifMauType. This was felt to be sufficiently&bsn;valuable to justify the redundancy.&bsn;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&bsn;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&bsn;Object name: ciscoEnvMonTemperatureState&bsn;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&bsn;Object name: ciscoEnvMonTemperatureValue&bsn;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 |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] |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 |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] |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 |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 | |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 |33432 |20 |1.3.6.1.4.1.318.1.1.1.2.2.1.0 |10371 |Battery capacity |battery.capacity[upsAdvBatteryCapacity] |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 |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] |1m |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 |33437 |20 |1.3.6.1.2.1.1.5.0 |10371 |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&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 |33438 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10371 |Model |system.model[upsBasicIdentModel] |1m |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] |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 |33441 |20 |1.3.6.1.2.1.1.4.0 |10371 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed&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 |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 |158 | | |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] |1m |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 |33450 |3 | |10371 |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 |33451 |3 | |10371 |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 |33452 |3 | |10371 |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 |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] |1m |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 | |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}] |1m |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}] |1m |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}] |1m |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 ehternet 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. Peformance 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 |
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 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30193 |18 | |10308 |Backend discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30236 |18 | |10309 |Backend discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |30759 |18 | |10308 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30791 |18 | |10309 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31052 |18 | |10262 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31053 |18 | |10261 |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 later 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 optimum 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 could 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 could 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 insufcient 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 moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount of memory available to SQL Server or by 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 that require 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 the 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 should be small. Note that auto-parameterizations are also known as simple parameterizations in later 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 insufcient 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 we are having table / Index page scans. If we see high CPU then we need to investigate this counter, otherwise if the full scans are on small tables we can ignore this counter. |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 lock requests per second that timed out, 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. Total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in 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.&eol;1: Partially healthy. The synchronization health of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization health 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 |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 |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 |The 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 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 |31159 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |31131 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31160 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Redo log queue size |mssql.non-local_db.redo_queue_size["{#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 | |31131 |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 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 |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 |31370 |18 | |10329 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31398 |18 | |10329 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31407 |18 | |10329 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31425 |18 | |10329 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31426 |18 | |10329 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31427 |18 | |10329 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31428 |18 | |10329 |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 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31439 |18 | |10329 |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 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31440 |18 | |10329 |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 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31441 |18 | |10329 |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 - 'Dederred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31442 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31443 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31444 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31445 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31446 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31447 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31448 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31449 |18 | |10329 |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 | |31368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31450 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31451 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31452 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31454 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31457 |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 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31471 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31472 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31473 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31479 |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 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31493 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31494 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31495 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31477 |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 behaviour 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 prolongely 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 - 'Dederred',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 |31729 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31730 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31731 |18 | |10329 |Oracle: Number of processes |oracle.processes_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31732 |18 | |10329 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31733 |18 | |10329 |Oracle: Redo logs available to switch |oracle.redo_logs_available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31734 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31735 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31736 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31737 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31738 |18 | |10329 |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 behaviour 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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31739 |18 | |10329 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31740 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31741 |18 | |10329 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31742 |18 | |10329 |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 prolongely 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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31743 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31744 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31745 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31746 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31747 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31748 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31749 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31750 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31751 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31752 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31753 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31754 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31755 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31756 |18 | |10329 |Oracle: User '{$ORACLE.USER}' expire password |oracle.user_expire_password |0 |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31757 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31758 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31759 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31760 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31761 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31762 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31763 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31764 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31765 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31766 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31767 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31768 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31769 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31770 |18 | |10329 |Oracle: Datafiles count |oracle.db_files_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31771 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31772 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31773 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31774 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31775 |18 | |10329 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31776 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31777 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31778 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31779 |18 | |10329 |Oracle: FRA, Usable space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31780 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31781 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31782 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31783 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31784 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31785 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31786 |18 | |10329 |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 | |31362 |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 |Miniumum 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 |31972 |18 | |10338 |Asterisk: SIP peers |asterisk.sip.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31973 |18 | |10338 |Asterisk: Version |asterisk.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31974 |18 | |10338 |Asterisk: Uptime after reload |asterisk.uptime_reload |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime after a config reload in 'N days, hh:mm:ss' format. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31975 |18 | |10338 |Asterisk: Uptime |asterisk.uptime |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31976 |18 | |10338 |Asterisk: Total queues |asterisk.total_queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of configured queues. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31977 |18 | |10338 |Asterisk: SIP unmonitored online |asterisk.sip.unmonitored_online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored online SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31978 |18 | |10338 |Asterisk: SIP unmonitored offline |asterisk.sip.unmonitored_offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored offline SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31979 |18 | |10338 |Asterisk: Active calls |asterisk.active_calls |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active calls at the moment. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31980 |18 | |10338 |Asterisk: SIP monitored online |asterisk.sip.monitored_online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of monitored online SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31981 |18 | |10338 |Asterisk: Active channels |asterisk.active_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active channels at the moment. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31982 |18 | |10338 |Asterisk: PJSIP unavailable endpoints |asterisk.pjsip.unavailable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unavailable PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31983 |18 | |10338 |Asterisk: PJSIP endpoints |asterisk.pjsip.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31984 |18 | |10338 |Asterisk: IAX unmonitored peers |asterisk.iax.unmonitored |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31985 |18 | |10338 |Asterisk: IAX peers |asterisk.iax.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31986 |18 | |10338 |Asterisk: IAX offline peers |asterisk.iax.offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of offline IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31987 |18 | |10338 |Asterisk: Calls processed per second |asterisk.calls_processed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of calls processed per second. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31988 |18 | |10338 |Asterisk: Calls processed |asterisk.calls_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of calls processed after the last service restart. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31989 |18 | |10338 |Asterisk: SIP monitored offline |asterisk.sip.monitored_offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of monitored offline SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31990 |18 | |10338 |IAX peers discovery |asterisk.iax_peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31991 |18 | |10338 |PJSIP endpoints discovery |asterisk.pjsip_endpoints.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31992 |18 | |10338 |Queues discovery |asterisk.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31993 |18 | |10338 |SIP peers discovery |asterisk.sip_peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31994 |18 | |10338 |IAX trunk "{#OBJECTNAME}": Active channels |asterisk.iax.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active IAX trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31995 |18 | |10338 |IAX trunk "{#OBJECTNAME}": Status |asterisk.iax.trunk.status[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |IAX trunk status. Here are the possible states that a device state may have:&eol;Unmonitored&eol;UNKNOWN&eol;UNREACHABLE&eol;OK |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31996 |18 | |10338 |PJSIP trunk "{#OBJECTNAME}": Active channels |asterisk.pjsip.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active PJSIP trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31997 |18 | |10338 |PJSIP trunk "{#OBJECTNAME}": Device state |asterisk.pjsip.trunk.devicestate[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |PJSIP trunk status. Here are the possible states that a device state may have:&eol;Unavailable&eol;Not in use&eol;In use |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31998 |18 | |10338 |"{#QUEUE}": Available |asterisk.queue.available[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of available queue members. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31999 |18 | |10338 |"{#QUEUE}": Callers |asterisk.queue.callers[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number incomming calls in queue. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32000 |18 | |10338 |"{#QUEUE}": Logged in |asterisk.queue.loggedin[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queue members. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32001 |18 | |10338 |SIP trunk "{#OBJECTNAME}": Active channels |asterisk.sip.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active SIP trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32002 |18 | |10338 |SIP trunk "{#OBJECTNAME}": Status |asterisk.sip.trunk.status[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |SIP trunk status. Here are the possible states that a device state may have:&eol;Unmonitored&eol;UNKNOWN&eol;UNREACHABLE&eol;OK |0 |30d |0 | |31971 |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 |32461 |18 | |10338 |Asterisk: PJSIP available endpoints |asterisk.pjsip.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of available PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32462 |18 | |10338 |Asterisk: IAX online peers |asterisk.iax.online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of online IAX peers. |0 |30d |0 | |31971 |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 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 |The 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 |The 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 which 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 |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 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 |The 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 |The 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 which 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 |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 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 |The 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 |The 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 which 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 |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 |32590 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32591 |18 | |10329 |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 | |31362 |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 | |s | | |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 | |s | | |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 |
+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 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28543 |18 | |10261 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28544 |18 | |10261 |Value cache, % used |vcache.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28545 |18 | |10261 |Value cache hits |vcache.cache.hits |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28546 |18 | |10261 |Value cache misses |vcache.cache.misses |0 |1w |365d |0 |0 | |vps | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28547 |18 | |10261 |Value cache operating mode |vcache.cache.mode |0 |1w |365d |0 |3 | | | | |NULL |15 | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28548 |18 | |10261 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28549 |18 | |10261 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28550 |18 | |10261 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28551 |18 | |10261 |Trend write cache, % used |wcache.trend.pused |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28552 |18 | |10261 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28553 |18 | |10261 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28554 |18 | |10261 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28555 |18 | |10261 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28556 |18 | |10261 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28557 |18 | |10261 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28558 |18 | |10261 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28559 |18 | |10261 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28560 |18 | |10261 |Preprocessing queue |preprocessing_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28561 |18 | |10261 |Utilization of alerter internal processes, in % |process.alerter.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28562 |18 | |10261 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28563 |18 | |10261 |Utilization of alert manager internal processes, in % |process.alert_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28564 |18 | |10261 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28565 |18 | |10261 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28566 |18 | |10261 |Utilization of escalator internal processes, in % |process.escalator.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28567 |18 | |10261 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28568 |18 | |10261 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28569 |18 | |10261 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28570 |18 | |10261 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28571 |18 | |10261 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28572 |18 | |10261 |Utilization of timer internal processes, in % |process.timer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28573 |18 | |10261 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28574 |18 | |10261 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28575 |18 | |10261 |Utilization of preprocessing manager internal processes, in % |process.preprocessing_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28576 |18 | |10261 |Utilization of preprocessing worker internal processes, in % |process.preprocessing_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28577 |18 | |10261 |Utilization of proxy poller data collector processes, in % |process.proxy_poller.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28578 |18 | |10261 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28579 |18 | |10261 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28580 |18 | |10261 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28581 |18 | |10261 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28582 |18 | |10261 |Utilization of LLD manager internal processes, in % |process.lld_manager.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28583 |18 | |10261 |Utilization of LLD worker internal processes, in % |process.lld_worker.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28584 |18 | |10261 |LLD queue |lld_queue |0 |1w |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of values enqueued in the preprocessing queue. |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28588 |18 | |10262 |Utilization of vmware data collector processes, in % |process.vmware_collector.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28589 |18 | |10262 |Number of processed numeric (unsigned) values per second |wcache.values.uint |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28590 |18 | |10262 |Number of processed text values per second |wcache.values.text |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28591 |18 | |10262 |Number of processed character values per second |wcache.values.str |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28592 |18 | |10262 |Number of processed not supported values per second |wcache.values.not_supported |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28593 |18 | |10262 |Number of processed log values per second |wcache.values.log |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28594 |18 | |10262 |Number of processed numeric (float) values per second |wcache.values.float |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28595 |18 | |10262 |Number of processed values per second |wcache.values |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28596 |18 | |10262 |History index cache, % used |wcache.index.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28597 |18 | |10262 |History write cache, % used |wcache.history.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28598 |18 | |10262 |VMware cache, % used |vmware.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28599 |18 | |10262 |Configuration cache, % used |rcache.buffer.pused |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28600 |18 | |10262 |Utilization of configuration syncer internal processes, in % |process.configuration_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28601 |18 | |10262 |Utilization of data sender internal processes, in % |process.data_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28602 |18 | |10262 |Utilization of trapper data collector processes, in % |process.trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28603 |18 | |10262 |Utilization of task manager internal processes, in % |process.task_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28604 |18 | |10262 |Utilization of snmp trapper data collector processes, in % |process.snmp_trapper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28605 |18 | |10262 |Utilization of self-monitoring internal processes, in % |process.self-monitoring.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28606 |18 | |10262 |Utilization of poller data collector processes, in % |process.poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28607 |18 | |10262 |Utilization of java poller data collector processes, in % |process.java_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28608 |18 | |10262 |Utilization of ipmi poller data collector processes, in % |process.ipmi_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28609 |18 | |10262 |Utilization of ipmi manager internal processes, in % |process.ipmi_manager.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28610 |18 | |10262 |Utilization of icmp pinger data collector processes, in % |process.icmp_pinger.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28611 |18 | |10262 |Utilization of http poller data collector processes, in % |process.http_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28612 |18 | |10262 |Utilization of housekeeper internal processes, in % |process.housekeeper.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28613 |18 | |10262 |Utilization of history syncer internal processes, in % |process.history_syncer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28614 |18 | |10262 |Utilization of heartbeat sender internal processes, in % |process.heartbeat_sender.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28615 |18 | |10262 |Utilization of discoverer data collector processes, in % |process.discoverer.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28616 |18 | |10262 |Utilization of unreachable poller data collector processes, in % |process.unreachable_poller.avg.busy |0 |1w |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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: https://www.zabbix.com/documentation/5.0/manual/appendix/items/vm.memory.size_params |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29403 |18 | |10285 |Total memory |vm.memory.total[node_exporter] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29404 |18 | |10285 |System boot time |system.boottime[node_exporter] |0 |7d |365d |0 |0 | |unixtime| | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29405 |18 | |10285 |Context switches per second |system.cpu.switches[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29406 |18 | |10285 |Interrupts per second |system.cpu.intr[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29407 |18 | |10285 |CPU guest nice time |system.cpu.guest_nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29408 |18 | |10285 |CPU guest time |system.cpu.guest[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Guest time (time spent running a virtual CPU for a guest operating system) |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29409 |18 | |10285 |CPU interrupt time |system.cpu.interrupt[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing hardware interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29410 |18 | |10285 |CPU iowait time |system.cpu.iowait[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Amount of time the CPU has been waiting for I/O to complete. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29411 |18 | |10285 |CPU nice time |system.cpu.nice[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that have been niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29412 |18 | |10285 |CPU softirq time |system.cpu.softirq[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time the CPU has been servicing software interrupts. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29413 |18 | |10285 |CPU user time |system.cpu.user[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running users' processes that are not niced. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29414 |18 | |10285 |System name |system.name[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |System host name. |3 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29415 |18 | |10285 |Version of node_exporter running |agent.version[node_exporter] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29416 |18 | |10285 |CPU idle time |system.cpu.idle[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent doing nothing. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29417 |18 | |10285 |Number of CPUs |system.cpu.num[node_exporter] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29418 |18 | |10285 |Load average (15m avg) |system.cpu.load.avg15[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29419 |18 | |10285 |Load average (5m avg) |system.cpu.load.avg5[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29420 |18 | |10285 |Load average (1m avg) |system.cpu.load.avg1[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29421 |18 | |10285 |System uptime |system.uptime[node_exporter] |0 |2w |0d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29422 |18 | |10285 |Operating system architecture |system.sw.arch[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Operating system architecture of the host. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29423 |18 | |10285 |Number of open file descriptors |fd.open[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29424 |18 | |10285 |Maximum number of open file descriptors |kernel.maxfiles[node_exporter] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |It could be increased by using sysctrl utility or modifying file /etc/sysctl.conf. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29425 |18 | |10285 |System description |system.descr[node_exporter] |0 |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Labeled system information as provided by the uname system call. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29426 |18 | |10285 |CPU system time |system.cpu.system[node_exporter] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The time the CPU has spent running the kernel and its processes. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |20 | | |0 | | | | |2 |NULL |Indicates the interface RFC2863 operational state as a string.&eol;Possible values are:"unknown", "notpresent", "down", "lowerlayerdown", "testing","dormant", "up".&eol;Reference: https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-class-net |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29445 |18 | |10285 |{#FSNAME}: Free space |vfs.fs.free[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29446 |18 | |10285 |{#FSNAME}: Total space |vfs.fs.total[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Total space in Bytes |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29447 |18 | |10285 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[node_exporter,"{#FSNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29448 |18 | |10285 |{#DEVNAME}: Disk read rate |vfs.dev.read.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!r/s | | |NULL |NULL | | |0 | | | | |2 |NULL |r/s. The number (after merges) of read requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29449 |18 | |10285 |{#DEVNAME}: Disk write rate |vfs.dev.write.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |!w/s | | |NULL |NULL | | |0 | | | | |2 |NULL |w/s. The number (after merges) of write requests completed per second for the device. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29450 |18 | |10285 |{#DEVNAME}: Disk read time (rate) |vfs.dev.read.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total read time counter. Used in r_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29451 |18 | |10285 |{#DEVNAME}: Disk write time (rate) |vfs.dev.write.time.rate[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Rate of total write time counter. Used in w_await calculation |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29452 |18 | |10285 |{#DEVNAME}: Disk average queue size (avgqu-sz) |vfs.dev.queue_size[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current average disk queue, the number of requests outstanding on the disk at the time the performance data is collected. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29453 |18 | |10285 |{#DEVNAME}: Disk utilization |vfs.dev.util[node_exporter,"{#DEVNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |This item is the percentage of elapsed time that the selected disk drive was busy servicing read or writes requests. |0 |30d |0 | |29395 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |Utilization of alert syncer internal processes, in % |process.alert_syncer.avg.busy |0 |1w |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |28539 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30193 |18 | |10308 |Backend discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30194 |18 | |10308 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30195 |18 | |10308 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30197 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30198 |18 | |10308 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30199 |18 | |10308 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30200 |18 | |10308 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30201 |18 | |10308 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30202 |18 | |10308 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30203 |18 | |10308 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30204 |18 | |10308 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30205 |18 | |10308 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30206 |18 | |10308 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30207 |18 | |10308 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30208 |18 | |10308 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30209 |18 | |10308 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30210 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30211 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30212 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30213 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30214 |18 | |10308 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30215 |18 | |10308 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30216 |18 | |10308 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30217 |18 | |10308 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30218 |18 | |10308 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30219 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30220 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30221 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30222 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30223 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30224 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30225 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30226 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30227 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30228 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30229 |18 | |10308 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30234 |18 | |10309 |HAProxy: Uptime |haproxy.uptime |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30235 |18 | |10309 |HAProxy: Version |haproxy.version |0 |90d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30231 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30236 |18 | |10309 |Backend discovery |haproxy.backend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30237 |18 | |10309 |FRONTEND discovery |haproxy.frontend.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30238 |18 | |10309 |Servers discovery |haproxy.server.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30240 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses denied per second |haproxy.backend.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30241 |18 | |10309 |HAProxy Backend {#PXNAME}: Errors connection per second |haproxy.backend.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30242 |18 | |10309 |HAProxy Backend {#PXNAME}: Response errors per second |haproxy.backend.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30243 |18 | |10309 |HAProxy Backend {#PXNAME}: Unassigned requests |haproxy.backend.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30244 |18 | |10309 |HAProxy Backend {#PXNAME}: Time in queue |haproxy.backend.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30245 |18 | |10309 |HAProxy Backend {#PXNAME}: Responses time |haproxy.backend.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30246 |18 | |10309 |HAProxy Backend {#PXNAME}: Status |haproxy.backend.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30247 |18 | |10309 |HAProxy Backend {#PXNAME}: Redispatched requests per second |haproxy.backend.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30248 |18 | |10309 |HAProxy Backend {#PXNAME}: Retried connections per second |haproxy.backend.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30249 |18 | |10309 |HAProxy Frontend {#PXNAME}: Incoming traffic |haproxy.frontend.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30250 |18 | |10309 |HAProxy Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30251 |18 | |10309 |HAProxy Frontend {#PXNAME}: Denied requests per second |haproxy.frontend.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30252 |18 | |10309 |HAProxy Frontend {#PXNAME}: Request errors per second |haproxy.frontend.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30253 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 1xx per second |haproxy.frontend.hrsp_1xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of informational HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30254 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 2xx per second |haproxy.frontend.hrsp_2xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of successful HTTP responses per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30255 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 3xx per second |haproxy.frontend.hrsp_3xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP redirections per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30256 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 4xx per second |haproxy.frontend.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30257 |18 | |10309 |HAProxy Frontend {#PXNAME}: Number of responses with codes 5xx per second |haproxy.frontend.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30258 |18 | |10309 |HAProxy Frontend {#PXNAME}: Sessions rate |haproxy.frontend.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30259 |18 | |10309 |HAProxy Frontend {#PXNAME}: Requests rate |haproxy.frontend.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30260 |18 | |10309 |HAProxy Frontend {#PXNAME}: Established sessions |haproxy.frontend.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30261 |18 | |10309 |HAProxy Frontend {#PXNAME}: Session limits |haproxy.frontend.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30262 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30263 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30264 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30265 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 4xx per second |haproxy.server.hrsp_4xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP client errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30266 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Number of responses with codes 5xx per second |haproxy.server.hrsp_5xx.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of HTTP server errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30267 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30268 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Time in queue |haproxy.server.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30269 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Responses time |haproxy.server.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30270 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Status |haproxy.server.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30271 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30272 |18 | |10309 |HAProxy {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30462 |18 | |10316 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30463 |18 | |10316 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30464 |18 | |10316 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30514 |18 | |10317 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30515 |18 | |10317 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30516 |18 | |10317 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server started. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads that are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30668 |18 | |10320 |MySQL: Connection errors peer address per second |mysql.connection_errors_peer_address.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors while searching for the connecting client IP address. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30669 |18 | |10320 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30670 |18 | |10320 |MySQL: Connection errors select per second |mysql.connection_errors_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors during calls to select() or poll() on the listening port. The client would not necessarily have been rejected in these cases. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30759 |18 | |10308 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30760 |18 | |10308 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30761 |18 | |10308 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30763 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30764 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30765 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30766 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30767 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30768 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30769 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30770 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30771 |18 | |10308 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30772 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30773 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30774 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30775 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30776 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30777 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30778 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30779 |18 | |10308 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30780 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30781 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30782 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30783 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30784 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30785 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30786 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30787 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30788 |18 | |10308 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30189 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30791 |18 | |10309 |TCP Backend discovery |haproxy.backend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP backends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30792 |18 | |10309 |TCP FRONTEND discovery |haproxy.frontend_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery TCP frontends |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30793 |18 | |10309 |TCP Servers discovery |haproxy.server_tcp.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery tcp servers |0 |30d |1 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30795 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses denied per second |haproxy.backend_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30796 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Errors connection per second |haproxy.backend_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30797 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Response errors per second |haproxy.backend_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30798 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Unassigned requests |haproxy.backend_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30799 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Time in queue |haproxy.backend_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30800 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Responses time |haproxy.backend_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average backend response time (in ms) for the last 1,024 requests |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30801 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Status |haproxy.backend_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30802 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Redispatched requests per second |haproxy.backend_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30803 |18 | |10309 |HAProxy TCP Backend {#PXNAME}: Retried connections per second |haproxy.backend_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30804 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Incoming traffic |haproxy.frontend_tcp.bin[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits received by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30805 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Outgoing traffic |haproxy.frontend_tcp.bout[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bits sent by the frontend |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30806 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Denied requests per second |haproxy.frontend_tcp.dreq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Requests denied due to security concerns (ACL-restricted) per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30807 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Request errors per second |haproxy.frontend_tcp.ereq.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of request errors per second. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30808 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Sessions rate |haproxy.frontend_tcp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of sessions created per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30809 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Requests rate |haproxy.frontend_tcp.req_rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |HTTP requests per second |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30810 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Established sessions |haproxy.frontend_tcp.scur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current number of established sessions. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30811 |18 | |10309 |HAProxy TCP Frontend {#PXNAME}: Session limits |haproxy.frontend_tcp.slim[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The most simultaneous sessions that are allowed, as defined by the maxconn setting in the frontend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30812 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses denied per second |haproxy.server_tcp.dresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Responses denied due to security concerns (ACL-restricted). |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30813 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Errors connection per second |haproxy.server_tcp.econ.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests that encountered an error attempting to connect to a backend server. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30814 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Response errors per second |haproxy.server_tcp.eresp.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of requests whose responses yielded an error. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30815 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Unassigned requests |haproxy.server_tcp.qcur[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Current number of requests unassigned in queue. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30816 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Time in queue |haproxy.server_tcp.qtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average time spent in queue (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30817 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Responses time |haproxy.server_tcp.rtime[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Average server response time (in ms) for the last 1,024 requests. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30818 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Status |haproxy.server_tcp.status[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |1 | | |0 | | | | |2 |NULL | |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30819 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Redispatched requests per second |haproxy.server_tcp.wredis.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a request was redispatched to a different backend. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30820 |18 | |10309 |HAProxy TCP {#PXNAME} {#SVNAME}: Retried connections per second |haproxy.server_tcp.wretr.rate[{#PXNAME}:{#SVNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times a connection was retried. |0 |30d |0 | |30230 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30831 |18 | |10323 |ClickHouse: Write syscalls in fly |clickhouse.write |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of write (write, pwrite, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30832 |18 | |10323 |ClickHouse: Total replication tasks in queue |clickhouse.replicas.sum.queue.size |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30833 |18 | |10323 |ClickHouse: New queries per second |clickhouse.query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30834 |18 | |10323 |ClickHouse: Read syscalls in fly |clickhouse.read |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of read (read, pread, io_getevents, etc.) syscalls in fly |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30835 |18 | |10323 |ClickHouse: Read bytes per second |clickhouse.read_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network)." |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time |clickhouse.zookeper.wait.time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Time spent in waiting for ZooKeeper operations. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30837 |18 | |10323 |ClickHouse: Replication lag across all tables |clickhouse.replicas.max.absolute.delay |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum replica queue delay relative to current time |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30838 |18 | |10323 |ClickHouse: Total number read-only Replicas |clickhouse.replicas.readonly.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of Replicated tables that are currently in readonly state &eol;due to re-initialization after ZooKeeper session loss &eol;or due to startup without ZooKeeper configured." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30839 |18 | |10323 |ClickHouse: Revision |clickhouse.revision |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Revision of the server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30840 |18 | |10323 |ClickHouse: ZooKeeper exeptions per second |clickhouse.zookeper.exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30841 |18 | |10323 |ClickHouse: New SELECT queries per second |clickhouse.select_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30842 |18 | |10323 |ClickHouse: ZooKeeper user exeptions per second |clickhouse.zookeper.user_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by no znodes, bad version, node exists, node empty and no children for ephemeral. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30843 |18 | |10323 |ClickHouse: ZooKeeper sessions |clickhouse.zookeper.session |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of sessions (connections) to ZooKeeper. Should be no more than one. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30844 |18 | |10323 |ClickHouse: ZooKeeper requests |clickhouse.zookeper.request |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of requests to ZooKeeper in progress. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exeptions per second |clickhouse.zookeper.hw_exeptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions caused by session moved/expired, connection loss, marshalling error, operation timed out and invalid zhandle state. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30846 |18 | |10323 |ClickHouse: Uptime |clickhouse.uptime |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of seconds since ClickHouse server start |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30847 |18 | |10323 |ClickHouse: Current running queries |clickhouse.query.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing queries |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30848 |18 | |10323 |ClickHouse: Current distribute connections |clickhouse.connections.distribute |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to remote servers sending data that was INSERTed into Distributed tables. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30849 |18 | |10323 |ClickHouse: Current HTTP connections |clickhouse.connections.http |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to HTTP server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30850 |18 | |10323 |ClickHouse: Allocated bytes |clickhouse.jemalloc.allocated |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes allocated by the application." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30851 |18 | |10323 |ClickHouse: Current Interserver connections |clickhouse.connections.interserver |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections from other replicas to fetch parts. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30852 |18 | |10323 |ClickHouse: Current MySQL connections |clickhouse.connections.mysql |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to MySQL server. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30853 |18 | |10323 |ClickHouse: Current TCP connections |clickhouse.connections.tcp |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections to TCP server (clients with native interface). |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30854 |18 | |10323 |ClickHouse: Current distributed files to insert |clickhouse.distributed.files |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30855 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.fail.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Connection failures after all retries in replicated DB connection pool" |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30856 |18 | |10323 |ClickHouse: Distributed connection fail with retry per second |clickhouse.distributed.files.retry.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Connection retries in replicated DB connection pool |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30857 |18 | |10323 |ClickHouse: New INSERT queries per second |clickhouse.insert_query.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30858 |18 | |10323 |ClickHouse: Delayed insert queries |clickhouse.insert.delay |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30859 |18 | |10323 |ClickHouse: Inserted bytes per second |clickhouse.inserted_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of uncompressed bytes inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30860 |18 | |10323 |ClickHouse: Inserted rows per second |clickhouse.inserted_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of rows inserted in all tables. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30861 |18 | |10323 |ClickHouse: Mapped memory |clickhouse.jemalloc.mapped |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total number of bytes in active extents mapped by the allocator." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30862 |18 | |10323 |ClickHouse: Network errors per second |clickhouse.network.error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Network errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30863 |18 | |10323 |ClickHouse: Resident memory |clickhouse.jemalloc.resident |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Maximum number of bytes in physically resident data pages mapped by the allocator, &eol;comprising all pages dedicated to allocator metadata, pages backing active allocations, &eol;and unused dirty pages." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30864 |18 | |10323 |ClickHouse: Max count of parts per partition across all tables |clickhouse.max.part.count.for.partition |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |"Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run." |0 |30d |0 | |30824 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30865 |18 | |10323 |ClickHouse: Memory used for queries |clickhouse.memory.tracking |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in currently executing queries." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30867 |18 | |10323 |ClickHouse: Memory used for backround moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for backround moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30871 |18 | |10323 |ClickHouse: Merged rows per second |clickhouse.merge_rows.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Rows read for background merges. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30872 |18 | |10323 |ClickHouse: Current running merges |clickhouse.merge.current |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of executing background merges |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30873 |18 | |10323 |ClickHouse: ZooKeeper watches |clickhouse.zookeper.watch |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of watches (e.g., event subscriptions) in ZooKeeperr. |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30874 |18 | |10323 |Dictionaries |clickhouse.dictionaries.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about dictionaries |0 |30d |1 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30875 |18 | |10323 |Replicas |clickhouse.replicas.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about replicas |0 |30d |1 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30876 |18 | |10323 |Tables |clickhouse.tables.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Info about tables |0 |30d |1 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30877 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Bytes allocated |clickhouse.dictionary.bytes_allocated["{#NAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of RAM the dictionary uses. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30878 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Element count |clickhouse.dictionary.element_count["{#NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of items stored in the dictionary. |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30879 |18 | |10323 |ClickHouse: Dictionary {#NAME}: Load factor |clickhouse.dictionary.load_factor["{#NAME}"] |0 |7d |365d |0 |3 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |The percentage filled in the dictionary (for a hashed dictionary, the percentage filled in the hash table). |0 |30d |0 | |30830 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30880 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Active replicas |clickhouse.replica.active_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas). (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30881 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica future parts |clickhouse.replica.future_parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts that will appear as the result of INSERTs or merges that haven’t been done yet. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30882 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue inserts size |clickhouse.replica.inserts_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of inserts of blocks of data that need to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30883 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica readonly |clickhouse.replica.is_readonly["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |Whether the replica is in read-only mode.&eol;This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30884 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica session expired |clickhouse.replica.is_session_expired["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |95 | | |0 | | | | |2 |NULL |True if the ZooKeeper session expired |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30885 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica lag |clickhouse.replica.lag["{#DB}.{#TABLE}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Difference between log_max_index and log_pointer |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30886 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log max index |clickhouse.replica.log_max_index["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30887 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica log pointer |clickhouse.replica.log_pointer["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30888 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue merges size |clickhouse.replica.merges_in_queue["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of merges waiting to be made. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30889 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica parts to check |clickhouse.replica.parts_to_check["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30890 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Replica queue size |clickhouse.replica.queue_size["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Size of the queue for operations waiting to be performed. |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30891 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Total replicas |clickhouse.replica.total_replicas["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of known replicas of this table. (Have a non-zero value only where there is an active session with ZooKeeper). |0 |30d |0 | |30823 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30892 |18 | |10323 |ClickHouse: {#DB}: Bytes |clickhouse.db.bytes["{#DB}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Database size in bytes. |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30893 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Bytes |clickhouse.table.bytes["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Table size in bytes. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30894 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Parts |clickhouse.table.parts["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of parts of the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30895 |18 | |10323 |ClickHouse: {#DB}.{#TABLE}: Rows |clickhouse.table.rows["{#DB}.{#TABLE}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of rows in the table. Database: {#DB}, table: {#TABLE} |0 |30d |0 | |30828 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31052 |18 | |10262 |Version |version |0 |1w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of Zabbix proxy. |0 |30d |0 | |28585 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31053 |18 | |10261 |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 later 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 optimum 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 could 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 could 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 insufcient 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 moves very little. Because reading from the cache is much less expensive than reading from disk, you want this ratio to be high. Generally, you can increase the buffer cache hit ratio by increasing the amount of memory available to SQL Server or by 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 that require 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 the 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 should be small. Note that auto-parameterizations are also known as simple parameterizations in later 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 insufcient 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 we are having table / Index page scans. If we see high CPU then we need to investigate this counter, otherwise if the full scans are on small tables we can ignore this counter. |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 lock requests per second that timed out, 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. Total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters so that reuse of the resulting cached execution plan across multiple similar-looking requests is possible. Note that auto-parameterizations are also known as simple parameterizations in 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.&eol;1: Partially healthy. The synchronization health of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization health 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 |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 |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 |The 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 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 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 |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |The number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |31370 |18 | |10329 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31398 |18 | |10329 |Oracle: Uptime |oracle.uptime |0 |7d |0d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle instance uptime in seconds. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31407 |18 | |10329 |Oracle: Archiver state |oracle.archiver_state |0 |7d |365d |0 |3 | | | | |NULL |116 | | |0 | | | | |0 |NULL |Automatic archiving status. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31425 |18 | |10329 |Oracle: Instance hostname |oracle.instance_hostname |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the host machine. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31426 |18 | |10329 |Oracle: Instance name |oracle.instance_name |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Name of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31427 |18 | |10329 |Oracle: Instance status |oracle.instance_status |0 |7d |365d |0 |3 | | | | |NULL |114 | | |0 | | | | |0 |NULL |Status of the instance. |0 |30d |0 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31428 |18 | |10329 |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 | |31369 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31439 |18 | |10329 |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 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31440 |18 | |10329 |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 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31441 |18 | |10329 |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 - 'Dederred',3 - 'Error', 0 - 'Unknown' |0 |30d |0 | |31361 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31442 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31443 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31444 |18 | |10329 |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 | |31363 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31445 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31446 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31447 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31448 |18 | |10329 |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 | |31367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31449 |18 | |10329 |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 | |31368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31450 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31451 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31452 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31454 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31457 |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 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31471 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31472 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31473 |18 | |10291 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31455 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31479 |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 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31493 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed["{#IFNAME}"] |0 |7d |0d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Estimated bandwidth of the network interface if any. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31494 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status["{#IFNAME}"] |0 |7d |0 |0 |3 | | | | |NULL |81 | | |0 | | | | |2 |NULL |The operational status of the network interface. |0 |30d |0 | |31477 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31495 |18 | |10298 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type["{#IFNAME}"] |0 |7d |0d |0 |3 | | | | |NULL |79 | | |0 | | | | |2 |NULL |The type of the network interface. |0 |30d |0 | |31477 |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 behaviour 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 prolongely 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 - 'Dederred',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 |31729 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31730 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31731 |18 | |10329 |Oracle: Number of processes |oracle.processes_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31732 |18 | |10329 |Oracle: Processes limit |oracle.processes_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Max user processes. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31733 |18 | |10329 |Oracle: Redo logs available to switch |oracle.redo_logs_available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of available for log switching inactive/unused REDO logs. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31734 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31735 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31736 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31737 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31738 |18 | |10329 |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 behaviour 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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31739 |18 | |10329 |Oracle: Session count |oracle.session_count |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Session count. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31740 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31741 |18 | |10329 |Oracle: Sessions limit |oracle.session_limit |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |User and system sessions. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31742 |18 | |10329 |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 prolongely 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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31743 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31744 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31745 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31746 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31747 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31748 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31749 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31750 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31751 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31752 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31753 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31754 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31755 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31756 |18 | |10329 |Oracle: User '{$ORACLE.USER}' expire password |oracle.user_expire_password |0 |7d |365d |0 |0 | |days | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of days before zabbix account password expired. |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31757 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31758 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31759 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31760 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31761 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31762 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31763 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31764 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31765 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31766 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31767 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31768 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31769 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31770 |18 | |10329 |Oracle: Datafiles count |oracle.db_files_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Current number of datafile. |0 |30d |0 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31771 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31772 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31773 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31774 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31775 |18 | |10329 |Oracle: FRA, Number of restore points |oracle.fra_restore_point |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31776 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31777 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31778 |18 | |10329 |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 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31779 |18 | |10329 |Oracle: FRA, Usable space in % |oracle.fra_usable_pct |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |31727 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31780 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31781 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31782 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31783 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31784 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31785 |18 | |10329 |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 | |31728 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31786 |18 | |10329 |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 | |31362 |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 |Miniumum 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 |31972 |18 | |10338 |Asterisk: SIP peers |asterisk.sip.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31973 |18 | |10338 |Asterisk: Version |asterisk.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Service version |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31974 |18 | |10338 |Asterisk: Uptime after reload |asterisk.uptime_reload |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime after a config reload in 'N days, hh:mm:ss' format. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31975 |18 | |10338 |Asterisk: Uptime |asterisk.uptime |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |System uptime in 'N days, hh:mm:ss' format. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31976 |18 | |10338 |Asterisk: Total queues |asterisk.total_queues |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of configured queues. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31977 |18 | |10338 |Asterisk: SIP unmonitored online |asterisk.sip.unmonitored_online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored online SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31978 |18 | |10338 |Asterisk: SIP unmonitored offline |asterisk.sip.unmonitored_offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored offline SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31979 |18 | |10338 |Asterisk: Active calls |asterisk.active_calls |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active calls at the moment. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31980 |18 | |10338 |Asterisk: SIP monitored online |asterisk.sip.monitored_online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of monitored online SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31981 |18 | |10338 |Asterisk: Active channels |asterisk.active_channels |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of active channels at the moment. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31982 |18 | |10338 |Asterisk: PJSIP unavailable endpoints |asterisk.pjsip.unavailable |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unavailable PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31983 |18 | |10338 |Asterisk: PJSIP endpoints |asterisk.pjsip.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31984 |18 | |10338 |Asterisk: IAX unmonitored peers |asterisk.iax.unmonitored |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of unmonitored IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31985 |18 | |10338 |Asterisk: IAX peers |asterisk.iax.total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31986 |18 | |10338 |Asterisk: IAX offline peers |asterisk.iax.offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of offline IAX peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31987 |18 | |10338 |Asterisk: Calls processed per second |asterisk.calls_processed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of calls processed per second. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31988 |18 | |10338 |Asterisk: Calls processed |asterisk.calls_processed |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of calls processed after the last service restart. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31989 |18 | |10338 |Asterisk: SIP monitored offline |asterisk.sip.monitored_offline |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of monitored offline SIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31990 |18 | |10338 |IAX peers discovery |asterisk.iax_peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31991 |18 | |10338 |PJSIP endpoints discovery |asterisk.pjsip_endpoints.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31992 |18 | |10338 |Queues discovery |asterisk.queues.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31993 |18 | |10338 |SIP peers discovery |asterisk.sip_peers.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31994 |18 | |10338 |IAX trunk "{#OBJECTNAME}": Active channels |asterisk.iax.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active IAX trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31995 |18 | |10338 |IAX trunk "{#OBJECTNAME}": Status |asterisk.iax.trunk.status[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |IAX trunk status. Here are the possible states that a device state may have:&eol;Unmonitored&eol;UNKNOWN&eol;UNREACHABLE&eol;OK |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31996 |18 | |10338 |PJSIP trunk "{#OBJECTNAME}": Active channels |asterisk.pjsip.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active PJSIP trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31997 |18 | |10338 |PJSIP trunk "{#OBJECTNAME}": Device state |asterisk.pjsip.trunk.devicestate[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |PJSIP trunk status. Here are the possible states that a device state may have:&eol;Unavailable&eol;Not in use&eol;In use |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31998 |18 | |10338 |"{#QUEUE}": Available |asterisk.queue.available[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of available queue members. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31999 |18 | |10338 |"{#QUEUE}": Callers |asterisk.queue.callers[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number incomming calls in queue. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32000 |18 | |10338 |"{#QUEUE}": Logged in |asterisk.queue.loggedin[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queue members. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32001 |18 | |10338 |SIP trunk "{#OBJECTNAME}": Active channels |asterisk.sip.trunk.active_channels[{#OBJECTNAME}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total number of active SIP trunk channels. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32002 |18 | |10338 |SIP trunk "{#OBJECTNAME}": Status |asterisk.sip.trunk.status[{#OBJECTNAME}] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |SIP trunk status. Here are the possible states that a device state may have:&eol;Unmonitored&eol;UNKNOWN&eol;UNREACHABLE&eol;OK |0 |30d |0 | |31971 |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 |32461 |18 | |10338 |Asterisk: PJSIP available endpoints |asterisk.pjsip.available |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of available PJSIP peers. |0 |30d |0 | |31971 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32462 |18 | |10338 |Asterisk: IAX online peers |asterisk.iax.online |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of online IAX peers. |0 |30d |0 | |31971 |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 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 |The 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 |The 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 which 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 |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 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 |The 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 |The 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 which 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 |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 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 |The 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 |The 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 which 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 |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 |32590 |18 | |10329 |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 | |31362 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32591 |18 | |10329 |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 | |31362 |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 | |s | | |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 | |s | | |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 replucated 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 writtent 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 |33143 |18 | |10363 |MongoDB cluster: Configserver heartbear |mongodb.config_server_heartbit |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 |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 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. Peformance 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. Peformance 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. Peformance 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. Peformance 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. Peformance 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. Peformance 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. Peformance 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. Peformance 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 |
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|
@@ -5528,19 +6392,6 @@ ROW |28129 |20 |1.3.6.1.2.1.10.7.2.1.19.{#SNMPINDEX}
ROW |28133 |17 | |10250 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28137 |20 |1.3.6.1.2.1.1.5.0 |10250 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28140 |5 | |10250 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28175 |20 |discovery[{#IFOPERSTATUS},1.3.6.1.2.1.2.2.1.8,{#IFADMINSTATUS},1.3.6.1.2.1.2.2.1.7,{#IFALIAS},1.3.6.1.2.1.31.1.1.1.18,{#IFNAME},1.3.6.1.2.1.31.1.1.1.1,{#IFDESCR},1.3.6.1.2.1.2.2.1.2,{#IFTYPE},1.3.6.1.2.1.2.2.1.3]|10251 |Network interfaces discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |27098 |NULL | | |0 | | | | |1 |NULL |Discovering interfaces from IF-MIB. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28176 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[ifInDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27099 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28177 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[ifInErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27106 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of inbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28178 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[ifHCInOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27104 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28179 |20 |1.3.6.1.2.1.2.2.1.19.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets discarded |net.if.out.discards[ifOutDiscards.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27102 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of outbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28180 |20 |1.3.6.1.2.1.2.2.1.20.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Outbound packets with errors |net.if.out.errors[ifOutErrors.{#SNMPINDEX}] |3m |7d |365d |0 |3 | | | | |27103 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;For packet-oriented interfaces, the number of outbound packets that contained errors preventing them from being deliverable to a higher-layer protocol. For character-oriented or fixed-length interfaces, the number of outbound transmission units that contained errors preventing them from being deliverable to a higher-layer protocol. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28181 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Bits sent |net.if.out[ifHCOutOctets.{#SNMPINDEX}] |3m |7d |365d |0 |3 | |bps | | |27105 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets transmitted out of the interface, including framing characters. This object is a 64-bit version of ifOutOctets.Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28182 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28183 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |20 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28184 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10251 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |21 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28188 |17 | |10251 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28192 |20 |1.3.6.1.2.1.1.5.0 |10251 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28195 |5 | |10251 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |22 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28207 |20 |discovery[{#ENT_CLASS},1.3.6.1.2.1.47.1.1.1.1.5,{#ENT_NAME},1.3.6.1.2.1.47.1.1.1.1.7,{#ENT_SN},1.3.6.1.2.1.47.1.1.1.1.11] |10253 |Entity Serial Numbers Discovery |entity_sn.discovery |1h |90d |0 |0 |4 | | | | |27393 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28208 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX} |10253 |{#ENT_NAME}: Hardware serial number |system.hw.serialnumber[entPhysicalSerialNum.{#SNMPINDEX}] |1h |2w |0 |0 |1 | | | | |27419 |NULL | | |0 | | | | |2 |NULL |MIB: ENTITY-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28209 |20 |1.3.6.1.2.1.47.1.1.1.1.13.1 |10253 |Hardware model name |system.hw.model |1h |2w |0 |0 |1 | | | | |27379 |NULL | | |0 | | | | |0 |NULL |MIB: ENTITY-MIB |29 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5932,11 +6783,6 @@ ROW |29945 |20 |1.3.6.1.2.1.1.6.0
ROW |29946 |20 |1.3.6.1.2.1.1.4.0 |10250 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29947 |20 |1.3.6.1.2.1.1.2.0 |10250 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29948 |20 |1.3.6.1.2.1.1.1.0 |10250 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29949 |20 |1.3.6.1.2.1.1.3.0 |10251 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29950 |20 |1.3.6.1.2.1.1.6.0 |10251 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29951 |20 |1.3.6.1.2.1.1.4.0 |10251 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29952 |20 |1.3.6.1.2.1.1.2.0 |10251 |System object ID |system.objectid[sysObjectID.0] |15m |2w |0 |0 |1 | | | | |29847 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29953 |20 |1.3.6.1.2.1.1.1.0 |10251 |System description |system.descr[sysDescr.0] |1h |2w |0 |0 |1 | | | | |29848 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;A textual description of the entity. This value should&eol;include the full name and version identification of the system's hardware type, software operating-system, and&eol;networking software. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29954 |20 |1.3.6.1.2.1.1.3.0 |10253 |Uptime |system.uptime[sysUpTime.0] |30s |2w |0d |0 |3 | |uptime | | |29844 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The time (in hundredths of a second) since the network management portion of the system was last re-initialized. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29955 |20 |1.3.6.1.2.1.1.6.0 |10253 |System location |system.location[sysLocation.0] |1h |2w |0 |0 |1 | | | | |29845 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string. |24 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29956 |20 |1.3.6.1.2.1.1.4.0 |10253 |System contact details |system.contact[sysContact.0] |1h |2w |0 |0 |1 | | | | |29846 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string. |23 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6173,9 +7019,6 @@ ROW |28017 |3 |
ROW |28130 |3 | |10250 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28131 |3 | |10250 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28132 |3 | |10250 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28185 |3 | |10251 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28186 |3 | |10251 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28187 |3 | |10251 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28233 |3 | |10253 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28234 |3 | |10253 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28235 |3 | |10253 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6254,21 +7097,12 @@ ROW |29557 |5 |
ROW |30046 |3 | |10304 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |1 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30047 |3 | |10304 |ICMP loss |icmppingloss |1m |1w |365d |0 |0 | |% | | |27150 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30048 |3 | |10304 |ICMP response time |icmppingsec |1m |1w |365d |0 |0 | |s | | |27151 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30144 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10251 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30145 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10249 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30146 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10254 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30143 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30151 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]|10251 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30152 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10251 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30153 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]|10249 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30154 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10249 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4]|10254 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30149 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30156 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10254 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30150 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30169 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30170 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30171 |15 | |10251 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30172 |15 | |10251 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30173 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10251 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30174 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10251 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6308,1667 +7142,1921 @@ FIELDS|optemplateid|operationid|templateid|
ROW |1 |1 |10001 |
TABLE |triggers
-FIELDS|triggerid|expression |description |url |status|priority|comments |templateid|type|flags|recovery_mode|recovery_expression |correlation_mode|correlation_tag|manual_close|opdata |discover|
-ROW |13015 |{12641}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13017 |{12651}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13019 |{12649}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13023 |{12653}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13073 |{12645}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13074 |{12646}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13080 |{13164}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13164}<65 |0 | |0 | |0 |
-ROW |13081 |{13170}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13170}<65 |0 | |0 | |0 |
-ROW |13083 |{13172}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13172}<65 |0 | |0 | |0 |
-ROW |13084 |{13174}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13174}<65 |0 | |0 | |0 |
-ROW |13085 |{13176}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13176}<65 |0 | |0 | |0 |
-ROW |13086 |{13178}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13178}<65 |0 | |0 | |0 |
-ROW |13087 |{13180}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13180}<65 |0 | |0 | |0 |
-ROW |13088 |{13182}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13182}<65 |0 | |0 | |0 |
-ROW |13089 |{13184}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13184}<65 |0 | |0 | |0 |
-ROW |13091 |{13188}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13188}<65 |0 | |0 | |0 |
-ROW |13092 |{13190}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13190}<65 |0 | |0 | |0 |
-ROW |13093 |{13192}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13192}<65 |0 | |0 | |0 |
-ROW |13094 |{13198}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13198}<65 |0 | |0 | |0 |
-ROW |13095 |{13200}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13200}<65 |0 | |0 | |0 |
-ROW |13096 |{13202}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13202}<65 |0 | |0 | |0 |
-ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |0 |
-ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |0 |
-ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13334 |{13087}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13340 |{12727}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13350 |{13072}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13356 |{12743}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13366 |{13069}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13367 |{13068}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13368 |{12755}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13372 |{12759}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13388 |{12775}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13398 |{13091}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13399 |{13090}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13404 |{12791}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13414 |{13086}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13420 |{12807}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13441 |{13194}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13194}<65 |0 | |0 | |0 |
-ROW |13517 |{12946}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13518 |{12947}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13519 |{12948}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13520 |{12949}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13521 |{13206}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13206}<65 |0 | |0 | |0 |
-ROW |13522 |{13208}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13208}<65 |0 | |0 | |0 |
-ROW |13523 |{13210}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13210}<65 |0 | |0 | |0 |
-ROW |13524 |{13211}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13211}<65 |0 | |0 | |0 |
-ROW |13525 |{13212}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13212}<65 |0 | |0 | |0 |
-ROW |13526 |{13213}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13213}<65 |0 | |0 | |0 |
-ROW |13527 |{13214}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13214}<65 |0 | |0 | |0 |
-ROW |13528 |{13215}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13215}<65 |0 | |0 | |0 |
-ROW |13529 |{13216}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13216}<65 |0 | |0 | |0 |
-ROW |13530 |{13217}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13217}<65 |0 | |0 | |0 |
-ROW |13531 |{13218}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13218}<65 |0 | |0 | |0 |
-ROW |13532 |{13219}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13219}<65 |0 | |0 | |0 |
-ROW |13533 |{13220}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13220}<65 |0 | |0 | |0 |
-ROW |13534 |{13207}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13207}<65 |0 | |0 | |0 |
-ROW |13535 |{13209}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13209}<65 |0 | |0 | |0 |
-ROW |13536 |{12965}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13544 |{12994}=0 |FTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13545 |{12995}=0 |HTTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13546 |{12996}=0 |HTTPS service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13547 |{12997}=0 |IMAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13548 |{12998}=0 |LDAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13549 |{13154}=0 |NNTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13550 |{13156}=0 |NTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13551 |{13152}=0 |POP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13552 |{13157}=0 |SMTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13553 |{13158}=0 |SSH service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13557 |{13160}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |13559 |{13196}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13196}<65 |0 | |0 | |0 |
-ROW |13562 |{13222}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13222}<65 |0 | |0 | |0 |
-ROW |13564 |{13224}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13224}<65 |0 | |0 | |0 |
-ROW |13565 |{13225}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13225}<65 |0 | |0 | |0 |
-ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |0 |
-ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |0 |
-ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |0 |
-ROW |14251 |{14378}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |14252 |{14379}>{$ICMP_LOSS_WARN} and {14379}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
-ROW |14318 |{14515}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14516}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14319 |{14517}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14518}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14320 |{14519}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14520}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14322 |{14522}=1 and {14523}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14336 |{14545}=1 and {14546}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14337 |{14547}=1 and {14548}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14339 |{14552}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14553}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14340 |{14554}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14555}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14363 |{14594}=1 and {14595}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14364 |{14596}=1 and {14597}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14365 |{14598}=1 and {14599}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14372 |{14606}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14607}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14373 |{14608}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14609}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14374 |{14610}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14611}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14380 |{14620}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14621}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14381 |{14622}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14623}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14382 |{14624}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14625}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14383 |{14626}=1 and {14627}>0 |Unit {#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14409 |{14669}=1 and {14670}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14417 |{14681}=1 and {14682}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14460 |{14756}>{$TEMP_WARN:""} |Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14757}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14461 |{14758}>{$TEMP_CRIT:""} |Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14759}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14462 |{14760}<{$TEMP_CRIT_LOW:""} |Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14761}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14463 |{14762}=1 and {14763}>0 |#{#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14474 |{14782}=1 and {14783}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14476 |{14785}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14786}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14477 |{14787}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14788}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14478 |{14789}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14790}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14492 |{14812}=1 and {14813}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14493 |{14814}=1 and {14815}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14495 |{14817}>{$TEMP_WARN:""} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14818}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14496 |{14819}>{$TEMP_CRIT:""} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14820}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14497 |{14821}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14822}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14511 |{14844}>{$TEMP_WARN:""} |Device: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{14845}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14513 |{14849}<{$TEMP_CRIT_LOW:""} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{14850}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14514 |{14851}=1 and {14852}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14515 |{14853}=1 and {14854}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14551 |{14914}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14915}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14552 |{14916}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14917}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14553 |{14918}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14919}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14556 |{14922}=1 and {14923}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14557 |{14924}=1 and {14925}>0 |{#ENT_NAME}: Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14589 |{14979}>{$TEMP_WARN:""} |{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14980}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14590 |{14981}>{$TEMP_CRIT:""} |{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14982}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14591 |{14983}<{$TEMP_CRIT_LOW:""} |{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14984}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14592 |{14985}=1 and {14986}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14603 |{15005}=1 and {15006}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14606 |{15013}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15014}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14607 |{15015}=1 and {15016}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14621 |{15038}=1 and {15039}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14624 |{15042}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15043}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14625 |{15044}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15045}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14626 |{15046}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15047}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14661 |{15106}=1 and {15107}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14662 |{15108}=1 and {15109}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14664 |{15111}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15112}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14665 |{15113}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15114}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14666 |{15115}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{15116}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14680 |{15138}=1 and {15139}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14683 |{15146}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15147}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14698 |{15170}=1 and {15171}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14699 |{15172}=1 and {15173}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14709 |{15191}=1 and {15192}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14710 |{15193}=1 and {15194}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14724 |{15216}=1 and {15217}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14912 |{15684}=1 and {15685}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |14913 |{15686}=1 and {15687}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14914 |{15688}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15689}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14915 |{15690}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15691}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14916 |{15692}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15693}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14934 |{15721}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15722}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14935 |{15723}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15724}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |14937 |{15726}=1 and {15727}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |14941 |{15731}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |15330 |{16818}=1 |#{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15331 |{16819}=1 |PSU {#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15332 |{16820}=1 |PSU {#SNMPVALUE}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15333 |{16821}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15334 |{16822}=1 |Fan {#SNMPVALUE}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15337 |{16829}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15338 |{16830}=1 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15339 |{16831}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15340 |{16832}=1 |#{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15341 |{16833}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15344 |{16840}=1 or {16841}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15345 |{16842}=1 or {16843}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15346 |{16844}=1 or {16845}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15347 |{16846}=1 or {16847}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15366 |{16890}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15367 |{16891}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15369 |{16895}=1 |PSU {#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15370 |{16896}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15371 |{16897}=1 or {16898}=1 |{#ENT_NAME}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15372 |{16899}=1 or {16900}=1 or {16901}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15373 |{16902}=1 |{#ENT_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15374 |{16903}=1 |{#ENT_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15375 |{16904}=1 |{#ENT_DESCR}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15376 |{16905}=1 |{#ENT_DESCR}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15377 |{16906}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15378 |{16907}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15379 |{16908}=1 |PSU {#PSU_INDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15380 |{16909}=1 |PSU {#PSU_INDEX}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15381 |{16910}=1 |Fan {#FAN_INDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15382 |{16911}=1 |Fan {#FAN_INDEX}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15383 |{16912}=1 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15384 |{16913}=1 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15385 |{16914}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15386 |{16915}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15388 |{16919}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15389 |{16920}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15391 |{16924}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15392 |{16925}=1 |{#SENSOR_INFO}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15393 |{16926}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15394 |{16927}=1 |{#SENSOR_INFO}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15395 |{16928}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15398 |{16935}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15399 |{16936}=1 |#{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15493 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17243}=2 and {17244}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17243}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15640 |{17657}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15641 |{17658}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{17658}<65 |0 | |0 | |0 |
-ROW |15671 |{17692}<0 and {17693}>0&eol;and (&eol;{17694}=6 or&eol;{17694}=7 or&eol;{17694}=11 or&eol;{17694}=62 or&eol;{17694}=69 or&eol;{17694}=117&eol;)&eol;and&eol;({17695}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17692}>0 and {17696}>0) or&eol;({17695}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |15695 |{17812}<0 and {17813}>0&eol;and (&eol;{17814}=6 or&eol;{17814}=7 or&eol;{17814}=11 or&eol;{17814}=62 or&eol;{17814}=69 or&eol;{17814}=117&eol;)&eol;and&eol;({17815}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17812}>0 and {17816}>0) or&eol;({17815}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |15698 |{17827}<0 and {17828}>0&eol;and (&eol;{17829}=6 or&eol;{17829}=7 or&eol;{17829}=11 or&eol;{17829}=62 or&eol;{17829}=69 or&eol;{17829}=117&eol;)&eol;and&eol;({17830}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17827}>0 and {17831}>0) or&eol;({17830}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |15717 |{17866}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15718 |{17867}=1 and {17868}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |15719 |{17869}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15720 |{17870}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15721 |{17871}=1 or {17872}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15722 |{17873}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15728 |{17879}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15729 |{17880}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15730 |{17881}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15731 |{17882}=1 and {17883}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15732 |{17884}=1 and {17885}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15735 |{17892}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17893}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15738 |{17900}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15739 |{17902}=1 or {17903}=1 |{#PSU_DESCR}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15740 |{17904}=1 |{#PSU_DESCR}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15741 |{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1 |{#FAN_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15742 |{17910}=1 or {17911}=1 |{#FAN_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15743 |{17912}=1 or {17913}=1 |{#DISK_NAME}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
-ROW |15744 |{17914}=1 |{#DISK_NAME}: Physical disk is in warning state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15745 |{17915}=1 and {17916}>0 |{#DISK_NAME}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |15746 |{17917}=1 |{#DISK_NAME}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15747 |{17918}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed | |0 |4 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15748 |{17919}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state | |0 |3 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15749 |{17920}=1 |{#CNTLR_NAME}: Disk array controller is in unrecoverable state! | |0 |5 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15750 |{17921}=1 |{#CNTLR_NAME}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15751 |{17922}=1 |{#CNTLR_NAME}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15752 |{17923}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15753 |{17924}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15754 |{17925}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15762 |{17933}=1 and {17934}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15781 |{17971}=1 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15782 |{17972}=1 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15783 |{17973}=1 |Fan {#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15784 |{17974}=1 |Fan {#SNMPINDEX}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15785 |{17975}=1 |{#CNTLR_LOCATION}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15786 |{17976}=1 |{#CNTLR_LOCATION}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15787 |{17977}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15790 |{17983}=1 or {17984}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15792 |{17987}=1 |{#DISK_LOCATION}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
-ROW |15793 |{17988}=1 |{#DISK_LOCATION}: Physical disk is in warning state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15794 |{17989}=1 or {17990}=1 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15795 |{17991}=1 and {17992}>0 |{#DISK_LOCATION}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |15796 |{17993}=1 |Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed | |0 |4 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15797 |{17994}=1 |Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state | |0 |2 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15824 |{18031}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15825 |{18032}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15826 |{18033}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15827 |{18034}=1 and {18035}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15828 |{18036}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18037}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15829 |{18038}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18039}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15830 |{18040}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18041}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15831 |{18042}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18043}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15832 |{18044}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18045}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15833 |{18046}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15834 |{18048}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18049}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15835 |{18050}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18051}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15836 |{18052}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18053}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15837 |{18054}=1 |{#PSU_DESCR}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15838 |{18055}=1 |{#FAN_DESCR}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15839 |{18056}=1 |{#SNMPINDEX}: Physical disk is not in OK state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |15845 |{18062}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18063}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15846 |{18064}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18065}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15847 |{18066}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18067}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |15853 |{18076}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18076}<65 |0 | |0 | |0 |
-ROW |15855 |{18078}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18078}<65 |0 | |0 | |0 |
-ROW |15857 |{18080}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15858 |{18081}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15859 |{18082}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15860 |{18083}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15861 |{18084}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15862 |{18085}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15863 |{18086}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15864 |{18087}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18087}<65 |0 | |0 | |0 |
-ROW |15865 |{18088}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18088}<65 |0 | |0 | |0 |
-ROW |15866 |{18089}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 |Zabbix configuration syncer processes more than 75% busy |NULL |0 |0 |1 |{18089}<65 |0 | |0 | |0 |
-ROW |15867 |{18090}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18090}<65 |0 | |0 | |0 |
-ROW |15868 |{18091}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18091}<65 |0 | |0 | |0 |
-ROW |15869 |{18092}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18092}<65 |0 | |0 | |0 |
-ROW |15870 |{18093}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18093}<65 |0 | |0 | |0 |
-ROW |15871 |{18094}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18094}<65 |0 | |0 | |0 |
-ROW |15872 |{18095}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18095}<65 |0 | |0 | |0 |
-ROW |15873 |{18096}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18096}<65 |0 | |0 | |0 |
-ROW |15874 |{18097}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18097}<65 |0 | |0 | |0 |
-ROW |15875 |{18098}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18098}<65 |0 | |0 | |0 |
-ROW |15876 |{18099}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18099}<65 |0 | |0 | |0 |
-ROW |15877 |{18100}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18100}<65 |0 | |0 | |0 |
-ROW |15878 |{18101}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18101}<65 |0 | |0 | |0 |
-ROW |15879 |{18102}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18102}<65 |0 | |0 | |0 |
-ROW |15880 |{18103}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18103}<65 |0 | |0 | |0 |
-ROW |15881 |{18104}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18104}<65 |0 | |0 | |0 |
-ROW |15882 |{18105}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18105}<65 |0 | |0 | |0 |
-ROW |15883 |{18106}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18106}<65 |0 | |0 | |0 |
-ROW |15884 |{18107}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18107}<65 |0 | |0 | |0 |
-ROW |15885 |{18108}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18108}<65 |0 | |0 | |0 |
-ROW |15886 |{18109}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15887 |{18110}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18110}<65 |0 | |0 | |0 |
-ROW |15888 |{18111}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18111}<65 |0 | |0 | |0 |
-ROW |15889 |{18112}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18112}<65 |0 | |0 | |0 |
-ROW |15890 |{18113}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15891 |{18114}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15892 |{18115}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15893 |{18116}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15894 |{18117}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15895 |{18118}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18118}<65 |0 | |0 | |0 |
-ROW |15896 |{18119}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18119}<65 |0 | |0 | |0 |
-ROW |15897 |{18120}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18120}<65 |0 | |0 | |0 |
-ROW |15898 |{18121}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18121}<65 |0 | |0 | |0 |
-ROW |15899 |{18122}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18122}<65 |0 | |0 | |0 |
-ROW |15900 |{18123}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18123}<65 |0 | |0 | |0 |
-ROW |15901 |{18124}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18124}<65 |0 | |0 | |0 |
-ROW |15902 |{18125}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18125}<65 |0 | |0 | |0 |
-ROW |15903 |{18126}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18126}<65 |0 | |0 | |0 |
-ROW |15904 |{18127}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18127}<65 |0 | |0 | |0 |
-ROW |15905 |{18128}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18128}<65 |0 | |0 | |0 |
-ROW |15906 |{18129}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18129}<65 |0 | |0 | |0 |
-ROW |15907 |{18130}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18130}<65 |0 | |0 | |0 |
-ROW |15908 |{18131}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18131}<65 |0 | |0 | |0 |
-ROW |15909 |{18132}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18132}<65 |0 | |0 | |0 |
-ROW |15910 |{18133}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18133}<65 |0 | |0 | |0 |
-ROW |15911 |{18134}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18134}<65 |0 | |0 | |0 |
-ROW |15912 |{18135}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18135}<65 |0 | |0 | |0 |
-ROW |15913 |{18136}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18136}<65 |0 | |0 | |0 |
-ROW |15914 |{18137}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18137}<65 |0 | |0 | |0 |
-ROW |15926 |{18150} < {$PG.CACHE_HITRATIO.MIN.WARN} |PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15927 |{18151}=1 and {18152}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15928 |{18153} = 1 |PostgreSQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15929 |{18154}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15930 |{18155} > {$PG.CHECKPOINTS_REQ.MAX.WARN} |PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN}) | |0 |3 |Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file.&eol;https://www.postgresql.org/docs/current/wal-configuration.html |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15931 |{18156} > {$PG.PING_TIME.MAX.WARN} |PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15932 |{18157} < 10m |PostgreSQL: Service has been restarted (uptime < 10m) | |0 |1 |PostgreSQL uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15933 |{18158} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15934 |{18159} > {$PG.REPL_LAG.MAX.WARN} |PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15935 |{18160} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15936 |{18161}=1 and {18162}>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15938 |{18164}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15939 |{18165} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |3 |The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15940 |{18166}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15941 |{18167}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} |Database {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less then {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %) | |0 |3 |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15943 |{18169}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15944 |{18170}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15947 |{18174}=0 |Apache: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15948 |{18175}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15949 |{18176}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15950 |{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15951 |{18178}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15952 |{18179}=1 and {18180}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15954 |{18183}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15955 |{18184}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15956 |{18185} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |0 |
-ROW |15957 |{18186}=0 |Nginx: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15958 |{18187}=1 and {18188}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15960 |{18191}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15961 |{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15962 |{18193} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |0 |
-ROW |15963 |{18194}=1 and {18195}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15978 |{18211}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15979 |{18212}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15980 |{18213}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15981 |{18214}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15982 |{18215}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15983 |{18216}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |15984 |{18217}=1 and {18218}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |15985 |{18219}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15986 |{18220}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15987 |{18221}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |15988 |{18222}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16007 |{18255}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16008 |{18256}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18257}-{18258})<5G or {18259}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16009 |{18260}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18261}-{18262})<10G or {18263}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16010 |{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16011 |{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16031 |{18300}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16035 |{18306}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16036 |{18307}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16038 |{18310}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16039 |{18311}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16040 |{18312}/{18313}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 |
-ROW |16041 |{18314}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16042 |{18315}=1 and {18316}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16069 |{18355}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18356}-{18357})<5G or {18358}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16070 |{18359}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18360}-{18361})<10G or {18362}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16071 |{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16072 |{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |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 |
-ROW |16104 |{18433}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16105 |{18434}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16106 |{18435}/{18436}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 |
-ROW |16107 |{18437}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16108 |{18438}=1 and {18439}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16122 |{18459}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18460}-{18461})<5G or {18462}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16123 |{18463}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18464}-{18465})<10G or {18466}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16124 |{18467}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16125 |{18468}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16129 |{18476}<0 and {18477}>0&eol;and&eol;({18477}=6&eol;or {18477}=1)&eol;and&eol;({18478}<>2) |Interface {#IFNAME}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18476}>0 and {18479}>0) or&eol;({18478}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |16138 |{18501}=1 |node_exporter is not available (or no data for 30m) | |0 |2 |Failed to fetch system metrics from node_exporter in time. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16139 |{18502}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16141 |{18505}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16142 |{18506}/{18507}*100>80 |Running out of file descriptors (less than < 20% free) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use. |0 |
-ROW |16143 |{18508}=1 and {18509}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16144 |{18510}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16146 |{18513}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16152 |{18526}<0 and {18527}>0&eol;and (&eol;{18528}=6 or&eol;{18528}=7 or&eol;{18528}=11 or&eol;{18528}=62 or&eol;{18528}=69 or&eol;{18528}=117&eol;)&eol;and&eol;({18529}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18526}>0 and {18530}>0) or&eol;({18529}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |16153 |{18531}<0 and {18532}>0&eol;and&eol;({18532}=6&eol;or {18532}=1)&eol;and&eol;({18533}<>2) |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18531}>0 and {18534}>0) or&eol;({18533}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |16155 |{18537}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18538}-{18539})<5G or {18540}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16156 |{18541}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18542}-{18543})<10G or {18544}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16157 |{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16158 |{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
-ROW |16160 |{18548}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16161 |{18549}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16162 |{18550}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16166 |{18555}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16167 |{18556}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |0 |2 |The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16168 |{18557}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16169 |{18558}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16182 |{18574}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18575}-{18576})<5G or {18577}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16183 |{18578}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18579}-{18580})<10G or {18581}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16196 |{18620}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16197 |{18621}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16209 |{18633}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16210 |{18634}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16211 |{18635}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16215 |{18640}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16216 |{18641}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |0 |2 |The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16217 |{18642}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16218 |{18643}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16231 |{18659}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18660}-{18661})<5G or {18662}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16232 |{18663}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18664}-{18665})<10G or {18666}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16250 |{18711}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16251 |{18712}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16254 |{18715}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16255 |{18716}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16256 |{18717}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16257 |{18718}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16258 |{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16259 |{18720}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16264 |{18726}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16265 |{18727}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16268 |{18730}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16269 |{18731}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16270 |{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16271 |{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16272 |{18734}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18734}<65 |0 | |0 | |0 |
-ROW |16273 |{18735}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18735}<65 |0 | |0 | |0 |
-ROW |16287 |{18753}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16289 |{18756}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16439 |{19090}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16440 |{19091}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16442 |{19093}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16443 |{19094}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16444 |{19095}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16445 |{19096}=1 and {19097}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16446 |{19098}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16447 |{19099}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16448 |{19100}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16449 |{19101}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16450 |{19102}=1 and {19103}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16451 |{19104}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16452 |{19105}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16459 |{19113}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19114}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16460 |{19115}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19116}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16461 |{19117}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16462 |{19119}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19120}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16463 |{19121}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19122}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16464 |{19123}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16465 |{19125}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19126}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16466 |{19127}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19128}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16467 |{19129}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16468 |{19131}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19132}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16469 |{19133}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19134}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16470 |{19135}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16471 |{19137}>{$TEMP_WARN:"CPU"} |{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19138}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16472 |{19139}>{$TEMP_CRIT:"CPU"} |{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19140}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16473 |{19141}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{19142}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16474 |{19143}=1 |{#PSU_LOCATION}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16475 |{19144}=1 |{#PSU_LOCATION}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16476 |{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1 |{#UNIT_LOCATION}: System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16477 |{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1 |{#UNIT_LOCATION}: System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16478 |{19154}=1 and {19155}>0 |{#UNIT_LOCATION}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16479 |{19156}=1 |{#FAN_LOCATION}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16480 |{19157}=1 |{#FAN_LOCATION}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16481 |{19158}=1 |{#DISK_LOCATION}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
-ROW |16482 |{19159}=1 or {19160}=1 |{#DISK_LOCATION}: Physical disk error | |0 |3 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
-ROW |16483 |{19161}=1 |{#VDISK_LOCATION}: Virtual disk is not in OK state | |0 |2 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16484 |{19162}=1 |{#DISKARRAY_LOCATION}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16485 |{19163}=1 |{#DISKARRAY_LOCATION}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16486 |{19164}=1 |{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16487 |{19165}=1 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16488 |{19166}=1 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16491 |{19171}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16492 |{19172}=1 and {19173}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16494 |{19175}=1 |#{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16495 |{19176}=1 |#{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16496 |{19177}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16498 |{19179}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16504 |{19185}>{$TEMP_WARN:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19186}<{$TEMP_WARN:"Chassis"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16505 |{19187}>{$TEMP_CRIT:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19188}<{$TEMP_CRIT:"Chassis"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16506 |{19189}<{$TEMP_CRIT_LOW:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"} | |0 |3 | |NULL |0 |2 |1 |{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16507 |{19191}=1 and {19192}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16508 |{19193}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16514 |{19202}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16515 |{19203}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16521 |{19209}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16523 |{19211}=1 and {19212}>0 |#{#SNMPVALUE}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16524 |{19213}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16525 |{19214}=1 and {19215}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16527 |{19217}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16529 |{19219}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16530 |{19220}=1 and {19221}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16532 |{19223}=1 and {19224}>0 |{#ENT_NAME}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16533 |{19225}>{$CPU.UTIL.CRIT} |{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16535 |{19227}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16537 |{19229}>{$CPU.UTIL.CRIT} |{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16538 |{19230}=1 and {19231}>0 |{#ENT_NAME}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16540 |{19233}=1 and {19234}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16541 |{19235}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16543 |{19237}=1 and {19238}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16545 |{19240}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16546 |{19241}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and&eol;(({19242}-{19243})<5G or {19244}<1d) |Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16547 |{19245}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and&eol;(({19246}-{19247})<10G or {19248}<1d) |Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16548 |{19249}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16549 |{19250}=1 and {19251}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16551 |{19253}>{$TEMP_WARN:""} |Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16552 |{19255}>{$TEMP_CRIT:""} |Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19256}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16553 |{19257}<{$TEMP_CRIT_LOW:""} |Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{19258}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16554 |{19259}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16555 |{19260}=1 and {19261}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16557 |{19263}=1 |{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16558 |{19264}=1 |{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16559 |{19265}>{$CPU.UTIL.CRIT} |#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16561 |{19267}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16563 |{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19271}>0&eol;and {19272}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
-ROW |16569 |{19287}/{19288}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19289}>0&eol;and {19290}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
-ROW |16573 |{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19301}>0&eol;and {19302}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
-ROW |16575 |{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19307}>0&eol;and {19308}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
-ROW |16577 |{19313}=1 and {19314}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16579 |{19316}=1 and {19317}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16582 |{19322}=1 and {19323}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16584 |{19326}=1 and {19327}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16585 |{19328}=1 and {19329}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16587 |{19332}=1 and {19333}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16593 |{19344}=1 and {19345}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16624 |{19406}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16630 |{19412}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19413}-{19414})<5G or {19415}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16631 |{19416}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19417}-{19418})<10G or {19419}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16644 |{19456}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16645 |{19457}=1 and {19458}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16646 |{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16647 |{19460}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16648 |{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16649 |{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16650 |{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16651 |{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16652 |{19465}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16653 |{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16654 |{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16655 |{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16656 |{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16657 |{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16658 |{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16659 |{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16660 |{19473}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16661 |{19474}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16662 |{19475}=1 and {19476}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16665 |{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16666 |{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16667 |{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16668 |{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16669 |{19483}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16670 |{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16671 |{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16672 |{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16673 |{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16674 |{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16675 |{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16676 |{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16677 |{19491}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16678 |{19492}=0 or&eol; {19493}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16679 |{19494}=0 or&eol; {19495}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16680 |{19496} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16681 |{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN} |Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected.&eol;&eol;https://redis.io/topics/clients#maximum-number-of-clients |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16682 |{19499}=1 and {19500}>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
-ROW |16683 |{19501}=1 |Redis: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16684 |{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN} |Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m) | |0 |2 |This ratio is an indication of memory mapping efficiency:&eol; — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16685 |{19503}=0 |Redis: Last AOF write operation failed | |0 |2 |Detailed information about persistence: https://redis.io/topics/persistence |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16686 |{19504}=0 |Redis: Last RDB save operation failed | |0 |2 |Detailed information about persistence: https://redis.io/topics/persistence |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16687 |{19505}=0 |Redis: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16688 |{19506}=1 |Redis: Number of slaves has changed | |0 |1 |Redis number of slaves has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
-ROW |16689 |{19507}=1 and {19508}>0 |Redis: Replication role has changed (new role: {ITEM.VALUE}) | |0 |2 |Redis replication role has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
-ROW |16690 |{19509}=1 and {19510}>0 |Redis: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Redis version has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
-ROW |16691 |{19511}<10m |Redis: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16692 |{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN} |Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16693 |{19513}>0 |Redis: Connections are rejected | |0 |4 |The number of connections has reached the value of "maxclients".&eol;&eol;https://redis.io/topics/clients |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16694 |{19514}=0 |Redis: Process is not running | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16696 |{19517}>{$REDIS.REPL.LAG.MAX.WARN} |Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16710 |{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16713 |{19552}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16717 |{19556}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16719 |{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16720 |{19559}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16721 |{19560}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16724 |{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16725 |{19564}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16726 |{19565}=1 and {19566}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16727 |{19567}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16728 |{19568}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16729 |{19569}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16730 |{19570}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16739 |{19580}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16740 |{19581}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16741 |{19582}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16742 |{19583}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16743 |{19584}=1 |Docker: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16744 |{19585}=0 |Docker: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16745 |{19586}=1 and {19587}>0 |Docker: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Docker version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16746 |{19588}>0 and {19589}=0 |Container {#NAME}: Container has been stopped with error code | |0 |3 | |NULL |0 |2 |0 | |0 | |1 |Exit code: {ITEM.LASTVALUE1} |0 |
-ROW |16747 |{19590}=1 and {19591}>0 |Container {#NAME}: An error has occurred in the container | |0 |2 |Container {#NAME} has an error. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16748 |{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN} |Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16749 |{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN} |Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of connections reaches the value of the "max_connections" parameter, new connections will be rejected. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16750 |{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN} |Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m) | |0 |2 |The max number of connections is reachedand and a new connection had to wait in the queue as a result. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16751 |{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m) | |0 |2 |Number of times a client connection was throttled is too hight.&eol;When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16752 |{19598}=1 |Memcached: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16753 |{19599}=0 |Memcached: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16755 |{19601}=1 and {19602}>0 |Memcached: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Memcached version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16756 |{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16757 |{19604}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16758 |{19605}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16760 |{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16761 |{19608}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16762 |{19609}=1 and {19610}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16763 |{19611}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16764 |{19612}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16765 |{19613}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16766 |{19614}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16767 |{19615}=1 |IPMI: {#SENSOR_ID} value has changed | |0 |1 |The trigger is informing about changes in a state of the discrete IPMI sensor. A problem generated by this trigger can be manually closed. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16768 |{19616}<{#SENSOR_LO_WARN} |IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m) | |0 |2 |The trigger is informing that a value less than the lower non-critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16769 |{19617}<{#SENSOR_LO_CRIT} |IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m) | |0 |4 |The trigger is informing that a value less than the lower critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16770 |{19618}<{#SENSOR_LO_DISAST} |IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m) | |0 |5 |The trigger is informing that a value less than the lower non-recoverable threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16771 |{19619}>{#SENSOR_HI_WARN} |IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m) | |0 |2 |The trigger is informing that a value higher than the upper non-critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16772 |{19620}>{#SENSOR_HI_CRIT} |IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m) | |0 |4 |The trigger is informing that a value higher than the upper critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16773 |{19621}>{#SENSOR_HI_DISAST} |IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m) | |0 |5 |The trigger is informing that a value higher than the upper non-recoverable threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16774 |({19622}-{19623})/({19624}-1)>{19623} |ES: Cluster does not have enough space for resharding | |0 |4 |There is not enough disk space for index resharding. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16775 |{19625}>0 |ES: Cluster has the initializing shards | |0 |3 |The cluster has the initializing shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16776 |{19626}<0 |ES: The number of nodes within the cluster has decreased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16777 |{19627}>0 |ES: The number of nodes within the cluster has increased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16778 |{19628}=1 |ES: Health is YELLOW | |0 |3 |All primary shards are assigned, but one or more replica shards are unassigned. &eol;If a node in the cluster fails, some data could be unavailable until that node is repaired. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16779 |{19629}=2 |ES: Health is RED | |0 |4 |One or more primary shards are unassigned, so some data is unavailable. &eol;This can occur briefly during cluster startup as primary shards are assigned. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16780 |{19630}=255 |ES: Health is UNKNOWN | |0 |4 |The health status of the cluster is unknown or cannot be obtained. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16781 |{19631}>0 |ES: Cluster has the unassigned shards | |0 |3 |The cluster has the unassigned shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16782 |{19632}=2 |ES: Cluster has only two master nodes | |0 |5 |The cluster has only two nodes with a master role and will be unavailable if one of them breaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16783 |{19633}<10m |ES: Cluster has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16784 |{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} |ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 |The performance of the TCP service is very low. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16785 |{19635}=0 |ES: Service is down | |0 |3 |The service is unavailable or does not accept TCP connections. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16786 |{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate &eol;and eventually prevent you from being able to add new information to your index. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16787 |{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN} |ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch’s documentation &eol;recommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there). |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16788 |{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing, &eol;this could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.), &eol;or requesting too many results. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16789 |{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN} |ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16790 |{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN} |ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h) | |0 |2 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16791 |{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT} |ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h) | |0 |4 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16792 |{19642}<10m |ES {#ES.NODE}: Node {#ES.NODE} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16793 |{19643}>0 |ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the refresh thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16794 |{19644}>0 |ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the search thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16795 |{19645}>0 |ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the write thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16796 |{19646}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16797 |{19647}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16798 |{19648}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16799 |{19649}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16800 |{19650}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16801 |{19651}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16802 |{19652}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16803 |{19653}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16804 |{19654}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16805 |{19655}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16806 |{19656}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16807 |{19657}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16808 |{19658}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16809 |{19659}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16810 |{19660}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16811 |{19661}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16812 |{19662}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16813 |{19663}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16814 |{19664}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16815 |{19665}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16816 |{19666}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16817 |{19667}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16818 |{19668}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16819 |{19669}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16820 |{19670}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16821 |{19671}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16822 |{19672}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16823 |{19673}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16824 |{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} |ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min) | |0 |2 |"Clickhouse servers and <remote_servers> in config.xml&eol;https://clickhouse.tech/docs/en/operations/table_engines/distributed/" |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16825 |{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN} |ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min) | |0 |2 |Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16826 |{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9 |ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN}) | |0 |2 |"Descease INSERT queries frequency.&eol;Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) &eol;and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run, and when you have too much unmerged parts inside partition, &eol;SELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it" |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16827 |{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} |ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m) | |0 |2 |Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16829 |{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN} |ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16830 |{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN} |ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min) | |0 |2 |"When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors &eol;and you will have wrong query results." |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16831 |{19681}=1 and {19682}>0 |ClickHouse: Configuration has been changed | |0 |1 |ClickHouse configuration has been changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16832 |{19683}<10m |ClickHouse: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16833 |{19684}=1 |ClickHouse: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16834 |{19685}=1 and {19686}>0 |ClickHouse: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |ClickHouse version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16835 |{19687}>1 |ClickHouse: Too many ZooKeeper sessions opened | |0 |2 |"Number of sessions (connections) to ZooKeeper. &eol;Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows." |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16836 |{19688} < {19689} |ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16837 |{19690}=1 |ClickHouse: {#DB}.{#TABLE} Replica is readonly | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16838 |{19691}=1 |ClickHouse: {#DB}.{#TABLE} Replica session is expired | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16839 |{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} |ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16840 |{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"} |ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16841 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19694}=2 and {19695}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19694}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16863 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19738}=2 and {19739}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19738}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16866 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19744}=2 and {19745}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19744}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16871 |{19756}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{19757}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |16883 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19786}=2 and {19787}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19786}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16886 |{19792}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16887 |{19793}=1 and {19794}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16888 |{19795}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16889 |{19796}/{19797}*100>{$ETCD.OPEN.FDS.MAX.WARN} |Etcd: Current number of open files is too high (over {$ETCD.OPEN.FDS.MAX.WARN}% for 5m) | |0 |2 |"Heavy file descriptor usage (i.e., near the process’s file descriptor limit) indicates a potential file descriptor exhaustion issue. &eol;If the file descriptors are exhausted, etcd may panic because it cannot create new WAL files." |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16890 |{19798}=1 and {19799}>0 |Etcd: Cluster version has changed (new version: {ITEM.VALUE}) | |0 |1 |Etcd version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16891 |{19800}=0 |Etcd: Member has no leader | |0 |3 |"If a member does not have a leader, it is totally unavailable." |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16892 |{19801}=0 |Etcd: Node healthcheck failed | |0 |3 |https://etcd.io/docs/v3.4.0/op-guide/monitoring/#health-check |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16893 |{19802}>{$ETCD.HTTP.FAIL.MAX.WARN} |Etcd: Too many HTTP requests failures (over {$ETCD.HTTP.FAIL.MAX.WARN} for 5m)' | |0 |2 |"Too many reqvests failed on etcd instance with 5xx HTTP code" |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16894 |{19803}=1 |Etcd: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16895 |{19804}>{$ETCD.LEADER.CHANGES.MAX.WARN} |Etcd: Instance has seen too many leader changes (over {$ETCD.LEADER.CHANGES.MAX.WARN} for 15m)' | |0 |2 |Rapid leadership changes impact the performance of etcd significantly. It also signals that the leader is unstable, perhaps due to network connectivity issues or excessive load hitting the etcd cluster. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16896 |{19805}>{$ETCD.PROPOSAL.FAIL.MAX.WARN} |Etcd: Too many proposal failures (over {$ETCD.PROPOSAL.FAIL.MAX.WARN} for 5m)' | |0 |2 |"Normally related to two issues: temporary failures related to a leader election or &eol;longer downtime caused by a loss of quorum in the cluster." |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16897 |{19806}>{$ETCD.PROPOSAL.PENDING.MAX.WARN} |Etcd: Too many proposals are queued to commit (over {$ETCD.PROPOSAL.PENDING.MAX.WARN} for 5m)' | |0 |2 |"Rising pending proposals suggests there is a high client load or the member cannot commit proposals." |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16898 |{19807}=1 and {19808}>0 |Etcd: Server version has changed (new version: {ITEM.VALUE}) | |0 |1 |Etcd version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16899 |{19809}<10m |Etcd: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16900 |{19810}=0 |Etcd: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16901 |{19811}>{$ETCD.GRPC.ERRORS.MAX.WARN} |Etcd: Too many failed gRPC requests with code: {#GRPC.CODE} (over {$ETCD.GRPC.ERRORS.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |1 |
-ROW |16902 |{19812}=0 |IIS: Port {$IIS.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16903 |{19813}<10m |IIS: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16904 |{19814}<>0 |IIS: The World Wide Web Publishing Service (W3SVC) is not running | |0 |4 |The World Wide Web Publishing Service (W3SVC) is not in running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16905 |{19815}<>0 |IIS: Windows process Activation Service (WAS) is not the running | |0 |4 |Windows Process Activation Service (WAS) is not in the running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16906 |{19816}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} is not in Running state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16907 |{19817}<10m |IIS: {#APPPOOL} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16908 |{19818}=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16909 |{19819}>{$IIS.QUEUE.MAX.WARN} |IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16910 |{19820}=0 |IIS: Port {$IIS.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16911 |{19821}<10m |IIS: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16912 |{19822}<>0 |IIS: The World Wide Web Publishing Service (W3SVC) is not running | |0 |4 |The World Wide Web Publishing Service (W3SVC) is not in running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16913 |{19823}<>0 |IIS: Windows process Activation Service (WAS) is not the running | |0 |4 |Windows Process Activation Service (WAS) is not in the running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16914 |{19824}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} is not in Running state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16915 |{19825}<10m |IIS: {#APPPOOL} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16916 |{19826}=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16917 |{19827}>{$IIS.QUEUE.MAX.WARN} |IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16918 |{19828}=1 and {19829}>0 |Zabbix version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zabbix proxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16919 |{19830}=1 and {19831}>0 |Zabbix version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zabbix server version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16920 |{19832}=0 or {19833} = 0 |ClickHouse: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16921 |{19834}=0 |ClickHouse: Port {$CLICKHOUSE.PORT} is unavaliable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16925 |{19841} * 100 > 10 * {19842} |MSSQL: Too frequently pointers using | |0 |2 |Rows with varchar columns can experience expansion when varchar values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). Evaluate clustered index for heap tables. In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16927 |{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX} |MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m) | |0 |2 |An average wait time longer than 500ms may indicate excessive blocking. This value should generally correlate to 'Lock Waits/sec' and move up or down with it accordingly. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16928 |{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |Too low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16929 |{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m) | |0 |2 |Low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16930 |{19848}>{$MSSQL.FREE_LIST_STALLS.MAX} |MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m) | |0 |2 |Some requests have to wait for a free page. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16931 |{19849}>{$MSSQL.LAZY_WRITES.MAX} |MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m) | |0 |2 |The number of buffers written per second by the buffer manager's lazy writer exceeds the threshold. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16932 |{19850}>{$MSSQL.LOCK_REQUESTS.MAX} |MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m) | |0 |2 |The number of new locks and lock conversions per second requested from the lock manager is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16933 |{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX} |MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m) | |0 |2 |The total number of lock requests per second that timed out, including requests for NOWAIT locks is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16934 |{19852}>0 |MSSQL: Some blocking is occurring for 5m | |0 |3 |Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16935 |{19853}>{$MSSQL.DEADLOCKS.MAX} |MSSQL: Number of deadlock is high (over {$MSSQL.DEADLOCKS.MAX} for 5m) | |0 |3 |Too many deadlocks are occurring currently. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16936 |{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m) | |0 |4 |The page stays in the buffer pool without references of less time than the threshold value. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16937 |{19855}>{$MSSQL.PAGE_READS.MAX} |MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m) | |0 |2 |The physical database page reads are issued too frequently. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16938 |{19856}>{$MSSQL.PAGE_WRITES.MAX} |MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m) | |0 |2 |The physical database page writes are issued too frequently. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16939 |{19857}<10m |MSSQL: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16940 |{19858}=1 |MSSQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16941 |{19859}=1 and {19860}>0 |MSSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MSSQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |16942 |{19861}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m) | |0 |3 |Too many work files created per second to store temporary results for hash joins and hash aggregates. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16943 |{19862}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m) | |0 |3 |Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16944 |{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |A value less than 90% may indicate insufcient memory, since execution plans are being dropped, or may indicate, on 32-bit systems, the need for an upgrade to a 64-bit system |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16946 |{19865}=0 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health in progress | |0 |2 |The primary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16947 |{19866}=0 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health in progress | |0 |2 |The secondary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16949 |{19868}=1 |MSSQL AG '{#GROUP_NAME}': Some replicas unhealthy | |0 |4 |The synchronization health of some, but not all, availability replicas is healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16950 |{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m) | |0 |2 |The wait time to flush the log is too long. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16951 |{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m) | |0 |2 |Too many commits are waiting for the log flush. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16954 |{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Percent of log using is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m) | |0 |2 |There's not enough space left in the log. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16955 |{19874}>1 |MSSQL DB '{#DBNAME}': State is {ITEM.VALUE} | |0 |4 |The DB has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16956 |{19875}>0 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |2 |The local availability database has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16957 |{19876}=0 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is Not healthy | |0 |4 |The synchronization state of the local availability database is NOT SYNCHRONIZING. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16958 |{19877}=1 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is Partially healthy | |0 |3 |A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is SYNCHRONIZING. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16959 |{19878}>=0 and {19878}<=2 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |1 |The state of the mirror database and of the database mirroring session is "Suspended", "Disconnected from the other partner", or "Synchronizing". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16960 |{19879}=3 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |2 |The state of the mirror database and of the database mirroring session is "Pending Failover". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16961 |{19880}=5 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |4 |The state of the mirror database and of the database mirroring session is "Not synchronized". The partners are not synchronized. A failover is not possible now. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16962 |{19881}=2 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" Witness is disconnected | |0 |2 |The state of the witness in the database mirroring session of the database is "Disconnected". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16963 |{19882}>{19883} and {19883}>{19884} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Log queue size is growing | |0 |4 |The log records of the primary database do not send to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16964 |{19885}>{19886} and {19886}>{19887} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '{#DBNAME}': Redo log queue size is growing | |0 |4 |The log records in the log files of the secondary replica have not yet been redone. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16965 |{19888}=0 and {19889}=2 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is disconnected | |0 |2 |The response of an availability replica to the DISCONNECTED state depends on its role: &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; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16966 |{19890}=0 or {19890}=1 or {19890}=3 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |2 |The operational state of the replica in a given availability group is "Pending" or "Offline". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16967 |{19891}=4 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |3 |The operational state of the replica in a given availability group is "Failed". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16968 |{19892}=5 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |4 |The operational state of the replica in a given availability group is "Failed, no quorum". |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16969 |{19893}=0 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} Recovery in progress | |0 |1 |At least one joined database has a database state other than ONLINE. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16970 |{19894}=0 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is Not healthy | |0 |3 |At least one joined database is in the NOT SYNCHRONIZING state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16971 |{19895}=1 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is Partially healthy | |0 |2 |Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16972 |{19896}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16973 |{19897}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16974 |{19898}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16975 |{19899}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16976 |{19900}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16977 |{19901}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16978 |{19902}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16979 |{19903}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16980 |{19904}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16981 |{19905}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16982 |{19906}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16983 |{19907}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16984 |{19908} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |Connections sum: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16986 |{19910}=0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16987 |{19911} < 600 |PostgreSQL: Service has been restarted (uptime={ITEM.LASTVALUE}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |16988 |{19912} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |3 |The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16989 |{19913} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |16993 |{19917} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19918} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |16994 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19919}=2 and {19920}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19919}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17001 |{19931} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19932} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17002 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19933}=2 and {19934}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19933}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17005 |{19939} - {19940} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17009 |{19947}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17011 |{19949} - {19950} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17015 |{19957}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17017 |{19959}=0 and {19960}>0 |Oracle: Port {$ORACLE.PORT} is unavailable | |0 |5 |The TCP port of the Oracle Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17022 |{19969}=1 and {19970}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17023 |{19971}=1 and {19972}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17029 |{19978}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17030 |{19979}=1 |Oracle: Failed to fetch info data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17032 |{19981}=1 and {19982}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17033 |{19983}=0 |Oracle: LISTENER process is not running | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17034 |{19984}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17035 |{19985}>{$ORACLE.ASM.USED.PCT.MAX.WARN} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m) | |0 |2 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17036 |{19986}>{$ORACLE.ASM.USED.PCT.MAX.HIGH} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m) | |0 |4 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17037 |{19987} = 0 and {19988} = 1 |Oracle Database '{#DBNAME}': Force logging is deactivated for DB with active Archivelog | |0 |2 |Force Logging mode - it is very important metric for Databases in 'ARCHIVELOG'. This feature allows to forcibly write all transactions to the REDO. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17038 |{19989}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17039 |{19990}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17040 |{19991}=1 |Oracle Database '{#DBNAME}': Role has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB role has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17041 |{19992}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17042 |{19993}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17043 |{19994}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17044 |{19995}=1 |Oracle TBS '{#TABLESPACE}': Tablespace status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle tablespace status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17050 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20010}<>2 and {20011}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{20010}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17058 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20038}<>2 and {20039}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{20038}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17063 |{20054}>{20055} |GarbageCollector: Concurrent Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17064 |{20056}>{20057} |GarbageCollector: Mark Sweep Compact in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17065 |{20058}>{20059} |GarbageCollector: PS Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17066 |{20060}>({20061}*{$JMX.HEAP.MEM.USAGE.MAX}/100) |Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17067 |{20062}>({20063}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) |Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17068 |{20064}>({20065}*{$JMX.MP.USAGE.MAX:"CMS Old Gen"}/100) |MemoryPool: CMS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Old Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17069 |{20066}>({20067}*{$JMX.MP.USAGE.MAX:"CMS Perm Gen"}/100) |MemoryPool: CMS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17070 |{20068}>({20069}*{$JMX.MP.USAGE.MAX:"Code Cache"}/100) |MemoryPool: Code Cache memory usage more than {$JMX.MP.USAGE.MAX:"Code Cache"}% for {$JMX.MP.USAGE.TIME:"Code Cache"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17071 |{20070}>({20071}*{$JMX.MP.USAGE.MAX:"Perm Gen"}/100) |MemoryPool: Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"Perm Gen"}% for {$JMX.MP.USAGE.TIME:"Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17072 |{20072}>({20073}*{$JMX.MP.USAGE.MAX:"PS Old Gen"}/100) |MemoryPool: PS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Old Gen"}% for {$JMX.MP.USAGE.TIME:"PS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17073 |{20074}>({20075}*{$JMX.MP.USAGE.MAX:"PS Perm Gen"}/100) |MemoryPool: PS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"PS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17074 |{20076}>({20077}*{$JMX.MP.USAGE.MAX:"Tenured Gen"}/100) |MemoryPool: Tenured Gen memory usage more than {$JMX.MP.USAGE.MAX:"Tenured Gen"}% for {$JMX.MP.USAGE.TIME:"Tenured Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17075 |{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100) |OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17076 |{20080}=1 |Compilation: {HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17077 |{20081}>{$JMX.CPU.LOAD.MAX} |OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-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 |17085 |{20089}<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 |17089 |{20096}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17090 |{20097}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17091 |{20098}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17092 |{20099}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17093 |{20100}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17094 |{20101}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17095 |{20102}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17096 |{20103}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17097 |{20104}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17098 |{20105}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17099 |{20106}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17100 |{20107}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17101 |{20108}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17102 |{20109}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17103 |{20110}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17104 |{20111}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17105 |{20112}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17106 |{20113}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17107 |{20114}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17108 |{20115}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17109 |{20116}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17110 |{20117}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17111 |{20118}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17112 |{20119}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17113 |{20120}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17114 |{20121}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17115 |{20122}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17116 |{20123}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17117 |{20124}<1.597 or {20124}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17118 |{20125}<1.646 or {20125}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17119 |{20126}<2.876 or {20126}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17120 |{20127}<2.970 or {20127}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17121 |{20128}<2.876 or {20128}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17122 |{20129}<2.970 or {20129}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17123 |{20130}<4.362 or {20130}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17124 |{20131}<4.483 or {20131}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17125 |{20132}<5 or {20132}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17126 |{20133}<10 or {20133}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17127 |{20134}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17128 |{20135}<5 or {20135}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17129 |{20136}<10 or {20136}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17130 |{20137}<0.953 or {20137}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17131 |{20138}<0.985 or {20138}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17132 |{20139}<0.683 or {20139}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17133 |{20140}<0.708 or {20140}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17134 |{20141}<1.362 or {20141}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17135 |{20142}<1.401 or {20142}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17136 |{20143}<2.982 or {20143}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17137 |{20144}<3.067 or {20144}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17138 |{20145}<2.982 or {20145}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17139 |{20146}<3.067 or {20146}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17140 |{20147}<4.471 or {20147}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17141 |{20148}<4.630 or {20148}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17142 |{20149}<0 or {20149}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17143 |{20150}<5 or {20150}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17144 |{20151}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17145 |{20152}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17146 |{20153}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17147 |{20154}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17148 |{20155}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17149 |{20156} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20157} |MSSQL: Too many physical reads occurring | |0 |2 |If this value is makes up even a sizeable minority of total Page Reads/sec (say, greater than 20% of total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17150 |{20158} > {$MSSQL.PERCENT_COMPILATIONS.MAX} |MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m | |0 |2 |The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn’t possible, consider using a plan guide or setting the database to parameterization forced mode. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17151 |{20159} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m | |0 |2 |This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter’s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”. This needs to be nil in your system as much as possible. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17152 |{20160} > 0.001 |MSSQL: Index and table scans are often than index searches for 15m | |0 |2 |Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17153 |{20161}=0 |MSSQL: Service is unavailable | |0 |5 |The TCP port of the MS SQL Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17154 |{20162} * 100 / {20163} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17155 |{20164} * 100 / {20165} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17156 |{20166} * 100 / {20167} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17157 |{20168} * 100 / {20169} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17158 |{20170}=1 and {20171}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17159 |{20172}=1 and {20173}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17160 |{20174}=0 |Oracle: Connection to database is unavailable | |0 |5 |Connection to Oracle Database is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17161 |{20175} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17162 |{20176} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17163 |{20177} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17164 |{20178} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17165 |{20179}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17166 |{20180}=1 |Oracle: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17167 |{20181}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17168 |{20182} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17169 |{20183}=1 and {20184}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17170 |{20185}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17171 |{20186} = 0 and {20187} = 1 |Oracle Database '{#DBNAME}': Force logging is deactivated for DB with active Archivelog | |0 |2 |Force Logging mode - it is very important metric for Databases in 'ARCHIVELOG'. This feature allows to forcibly write all transactions to the REDO. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17172 |{20188}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17173 |{20189}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17174 |{20190}=1 |Oracle Database '{#DBNAME}': Role has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB role has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17175 |{20191}>{$ORACLE.ASM.USED.PCT.MAX.WARN} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m) | |0 |2 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17176 |{20192}>{$ORACLE.ASM.USED.PCT.MAX.HIGH} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m) | |0 |4 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17177 |{20193}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17178 |{20194}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17179 |{20195}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17180 |{20196}=1 |Oracle TBS '{#TABLESPACE}': Tablespace status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle tablespace status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17183 |{20199} * 100 / {20200} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17184 |{20201} * 100 / {20202} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17185 |{20203} * 100 / {20204} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17186 |{20205} * 100 / {20206} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17187 |{20207} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17188 |{20208} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17189 |{20209} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17190 |{20210} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17191 |{20211}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17192 |{20212} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17194 |{20216}>{$TEMP_WARN:""}&eol;or&eol;{20217}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20218}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17195 |{20219}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20220}={$TEMP_CRIT_STATUS}&eol;or&eol;{20220}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20221}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17196 |{20222}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20223}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20224}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17203 |{20243}>{$TEMP_CRIT:""}&eol;or&eol;{20244}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{20245}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17204 |{20246}>{$TEMP_CRIT:""}&eol;or&eol;{20247}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20248}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17205 |{20249}>{$TEMP_WARN:""}&eol;or&eol;{20250}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20251}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17206 |{20252}>{$TEMP_WARN:""}&eol;or&eol;{20253}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17207 |{20255}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20256}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17208 |{20257}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20258}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17209 |{20259}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |2 |1 |{20260}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17210 |{20261}<>"running-ap" |Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running | |0 |2 |Access point interface can be not running by different reasons - disabled interface, power off, network link down. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17211 |{20262}>{$TEMP_CRIT:""}&eol;or&eol;{20263}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20264}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17212 |{20265}>{$TEMP_WARN:""}&eol;or&eol;{20266}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20267}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17213 |{20268}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{20269}={$TEMP_CRIT_STATUS}&eol;or&eol;{20269}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20270}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17214 |{20271}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{20272}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20273}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17215 |{20274}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{20275}={$TEMP_CRIT_STATUS}&eol;or&eol;{20275}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20276}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17216 |{20277}>{$TEMP_WARN:"CPU"}&eol;or&eol;{20278}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20279}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17217 |{20280}=1 and {20281}>0 |Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE}) | |0 |1 |Ceph version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17218 |{20282}=2 |Ceph: Cluster in ERROR state | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17219 |{20283}=1 |Ceph: Cluster in WARNING state | |0 |2 | |NULL |0 |0 |1 |{20283}=0 |0 | |1 | |0 |
-ROW |17220 |{20284}=0 |Ceph: Can not connect to cluster | |0 |3 |Connection to Ceph RESTful module is broken (if there is any error presented including AUTH and configuration issues). |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17221 |{20285} > {20286}*100 |Ceph: OSD osd.{#OSDNAME} is full | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17222 |{20287} > {20288}*100 |Ceph: Ceph OSD osd.{#OSDNAME} is near full | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17223 |{20289} = 0 |Ceph: OSD osd.{#OSDNAME} is down | |0 |3 |OSD osd.{#OSDNAME} is marked "down" in the osdmap.&eol;The OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17224 |{20290} > {$PHP_FPM.QUEUE.WARN.MAX} |PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m) | |0 |2 |The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17225 |{20291}=0 or {20292}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17226 |{20293}=1 |PHP-FPM: Manager changed (new value received: {ITEM.VALUE}) | |0 |1 |PHP-FPM manager changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17227 |{20294}>0 |PHP-FPM: Detected slow requests | |0 |2 |PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool). |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17228 |{20295}=1 |PHP-FPM: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17229 |{20296}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17230 |{20297}=1 and {20298}>0 |PHP-FPM: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |PHP-FPM version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17231 |{20299}=0 |PHP-FPM: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17232 |{20300} > {$PHP_FPM.QUEUE.WARN.MAX} |PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m) | |0 |2 |The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17233 |{20301}=0 or {20302}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17234 |{20303}=1 |PHP-FPM: Manager changed (new value received: {ITEM.VALUE}) | |0 |1 |PHP-FPM manager changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17235 |{20304}>0 |PHP-FPM: Detected slow requests | |0 |2 |PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool). |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17236 |{20305}=1 |PHP-FPM: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17237 |{20306}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17238 |{20307}=1 and {20308}>0 |PHP-FPM: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |PHP-FPM version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17239 |{20309}>{20310}/100*{$SQUID.PAGE.FAULT.WARN} |Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of recieved HTTP requests) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17240 |{20311}>{20312}*{20313}/100 |Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 |
-ROW |17241 |{20314}>{20315}*{20316}/100 |Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 |
-ROW |17242 |{20317}=0 |Squid: Port {$SQUID.HTTP.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17243 |{20318}<{$SQUID.FILE.DESC.WARN.MIN} |Squid: Squid is running out of file descriptors (<{$SQUID.FILE.DESC.WARN.MIN}) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17244 |{20319}<10m |Squid: Squid has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17245 |{20320}=1 and {20321}>0 |Squid: Squid version has been changed | |0 |1 |Squid version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17246 |{20322} < {$LTEMODEM.RSRP.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17247 |{20323} < {$LTEMODEM.RSRQ.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17248 |{20324} < {$LTEMODEM.RSSI.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17249 |{20325} < {$LTEMODEM.SINR.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17250 |{20326}<10m |Asterisk: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17251 |{20327}=1 |Asterisk: Failed to fetch AMI page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17252 |{20328}<10m |Asterisk: has been reloaded (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17253 |{20329}=1 and {20330}>0 |Asterisk: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Asterisk version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17254 |{20331}>{$AMI.RESPONSE_TIME.MAX.WARN} |Asterisk: Service response time is too high (over {$AMI.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17255 |{20332}=0 |Asterisk: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17257 |{20334}="UNKNOWN" or {20334}="UNREACHABLE" |IAX trunk "{#OBJECTNAME}": IAX trunk {#OBJECTNAME} has a state {ITEM.VALUE} | |0 |3 |The IAX trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17259 |{20336}="Unavailable" |PJSIP trunk "{#OBJECTNAME}": PJSIP trunk {#OBJECTNAME} has a state Unavailable | |0 |3 |The PJSIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17262 |{20339}="UNKNOWN" or {20339}="UNREACHABLE" |SIP trunk "{#OBJECTNAME}": SIP trunk {#OBJECTNAME} has a state {ITEM.VALUE} | |0 |3 |The SIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17263 |{20340}>0 |NameNode: Cluster has missing blocks | |0 |3 |A missing block is far worse than a corrupt block, because a missing block cannot be recovered by copying a replica. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17264 |{20341}>0 |NameNode: Cluster has DataNodes in Dead state | |0 |3 |The death of a DataNode causes a flurry of network activity, as the NameNode initiates replication of blocks lost on the dead nodes. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17265 |{20342}<{$HADOOP.CAPACITY_REMAINING.MIN.WARN} |NameNode: Cluster capacity remaining is low (below {$HADOOP.CAPACITY_REMAINING.MIN.WARN}% for 15m) | |0 |2 |A good practice is to ensure that disk use never exceeds 80 percent capacity. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17266 |{20343}<10m |NameNode: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17267 |{20344}=1 |NameNode: Failed to fetch NameNode API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17268 |{20345}>0 |NameNode: Cluster has volume failures | |0 |3 |HDFS now allows for disks to fail in place, without affecting DataNode operations, until a threshold value is reached. This is set on each DataNode via the dfs.datanode.failed.volumes.tolerated property; it defaults to 0, meaning that any volume failure will shut down the DataNode; on a production cluster where DataNodes typically have 6, 8, or 12 disks, setting this parameter to 1 or 2 is typically the best practice. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17269 |{20346}=0 |ResourceManager: Cluster has no active NodeManagers | |0 |4 |Cluster is unable to execute any jobs without at least one NodeManager. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17270 |{20347}>0 |ResourceManager: Cluster has unhealthy NodeManagers | |0 |3 |YARN considers any node with disk utilization exceeding the value specified under the property yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage (in yarn-site.xml) to be unhealthy. Ample disk space is critical to ensure uninterrupted operation of a Hadoop cluster, and large numbers of unhealthyNodes (the number to alert on depends on the size of your cluster) should be quickly investigated and resolved. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17271 |{20348}<10m |ResourceManager: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17272 |{20349}=1 |ResourceManager: Failed to fetch ResourceManager API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17273 |{20350}>{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} |NameNode: Service response time is too high (over {$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17274 |{20351}>{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} |ResourceManager: Service response time is too high (over {$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17275 |{20352}=0 |NameNode: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17276 |{20353}=0 |ResourceManager: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17277 |{20354}<>"Live" |{#HOSTNAME}: DataNode has state {ITEM.VALUE}. | |0 |3 |The state is different from normal. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17278 |{20355}<10m |{#HOSTNAME}: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17279 |{20356}=1 |{#HOSTNAME}: Failed to fetch DataNode API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17280 |{20357}<>"RUNNING" |{#HOSTNAME}: NodeManager has state {ITEM.VALUE}. | |0 |3 |The state is different from normal. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17281 |{20358}<10m |{#HOSTNAME}: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17282 |{20359}=1 |{#HOSTNAME}: Failed to fetch NodeManager API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17283 |{20360}>0 |Kafka: Unclean leader election detected | |0 |3 |Unclean leader elections occur when there is no qualified partition leader among Kafka brokers. If Kafka is configured to allow an unclean leader election, a leader is chosen from the out-of-sync replicas, and any messages that were not synced prior to the loss of the former leader are lost forever. Essentially, unclean leader elections sacrifice consistency for availability. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17284 |{20361} > 0 |Kafka: One or more partitions have no leader | |0 |2 |Any partition without an active leader will be completely inaccessible, and both consumers and producers of that partition will be blocked until a leader becomes available. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17285 |{20362} > 0 |Kafka: There are offline log directories | |0 |2 |The offline log directory count metric indicate the number of log directories which are offline (due to an hardware failure for example) so that the broker cannot store incoming messages anymore. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17286 |{20363}<{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} |Kafka: Network processor average idle percent is too low (under {$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} for 15m) | |0 |3 |The network processor idle ratio metric indicates the percentage of time the network processor are not in use. The lower this number, the more loaded the broker is. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17287 |{20364}=1 |Kafka: Failed to fetch info data (or no data for 15m) | |0 |2 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17288 |{20365}<10m |Kafka: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17289 |{20366}=1 and {20367}>0 |Kafka: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Kafka version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17290 |{20368}<{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} |Kafka: Request handler average idle percent is too low (under {$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} for 15m) | |0 |3 |The request handler idle ratio metric indicates the percentage of time the request handlers are not in use. The lower this number, the more loaded the broker is. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17291 |{20369}>0 |Kafka: There are partitions under the min ISR | |0 |3 |The Under min ISR partitions metric displays the number of partitions, where the number of In-Sync Replicas (ISR) is less than the minimum number of in-sync replicas specified. The two most common causes of under-min ISR partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers are falling behind. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17292 |{20370}>0 |Kafka: There are under replicated partitions | |0 |3 |The Under replicated partitions metric displays the number of partitions that do not have enough replicas to meet the desired replication factor. A partition will also be considered under-replicated if the correct number of replicas exist, but one or more of the replicas have fallen significantly behind the partition leader. The two most common causes of under-replicated partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers have fallen behind. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17293 |{20371}=0 |Kafka: Broker is not connected to ZooKeeper | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17294 |{20372}=1 and {20373}>0 |Tomcat: Version has been changed | |0 |1 |Tomcat version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17295 |{20374} = 1 |{#JMXVALUE}: Gzip compression is disabled | |0 |1 |gzip compression is disabled for connector {#JMXVALUE}. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17296 |{20375}>{20376}*{$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}/100 |{#JMXNAME}: Busy worker threads count are more than {$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}% of the limit for {$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"} | |0 |4 |When current threads busy counter reaches the limit, no more requests could be handled, and the application chokes. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17297 |{20377} * 100 / {20378} > {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN} |Zookeeper: Too many file descriptors used (over {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% for 5 min) | |0 |2 |Number of file descriptors used more than {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% of the available number of file descriptors. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17298 |{20379}>{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN} |Zookeeper: Too many queued requests (over {$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}% for 5 min) | |0 |3 |Number of queued requests in the server. This goes up when the server receives more requests than it can process. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17299 |{20380}=1 and {20381}>0 |Zookeeper: Server mode has changed (new mode: {ITEM.VALUE}) | |0 |1 |Zookeeper node state has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17300 |{20382}<10m |Zookeeper: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17301 |{20383}=1 |Zookeeper: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17302 |{20384}=1 and {20385}>0 |Zookeeper: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zookeeper version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17303 |{20386} < {20387}-1 |Zookeeper: Too few active followers | |0 |3 |The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17304 |{20388}>{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN} |Zookeeper: Too many pending syncs (over {$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}% for 5 min) | |0 |3 | |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17305 |{20389}=1 and {20390}>0 |Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Cassandra version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17306 |{20391}>{$CASSANDRA.PENDING_TASKS.MAX.WARN} |Many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.WARN} for 15m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17307 |{20392}>{$CASSANDRA.PENDING_TASKS.MAX.HIGH} |Too many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.HIGH} for 15m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17308 |{20393}>0 |Too many storage exceptions | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17309 |{20394}=1 |Failed to fetch info data (or no data for 15m) | |0 |2 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17310 |{20395}>0 |There are down nodes in cluster | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17311 |{20396} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Fan speed is below the warning threshold of {#THRESHOLD_LO_WARN}rpm for 5m | |0 |2 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17312 |{20397} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Fan speed is below the critical threshold of {#THRESHOLD_LO_CRIT}rpm for 5m | |0 |4 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17313 |{20398} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Fan speed is above the warning threshold of {#THRESHOLD_HI_WARN}rpm for 5m | |0 |2 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17314 |{20399} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Fan speed is above the critical threshold of {#THRESHOLD_HI_CRIT}rpm for 5m | |0 |4 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17315 |{20400} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Temperature is below the warning threshold of {#THRESHOLD_LO_WARN}°C for 5m | |0 |2 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17316 |{20401} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Temperature is below the critical threshold of {#THRESHOLD_LO_CRIT}°C for 5m | |0 |4 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17317 |{20402} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Temperature is above the warning threshold of {#THRESHOLD_HI_WARN}°C for 5m | |0 |2 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17318 |{20403} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Temperature is above the critical threshold of {#THRESHOLD_HI_CRIT}°C for 5m | |0 |4 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17319 |{20404} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Voltage is below the warning threshold of {#THRESHOLD_LO_WARN}V for 5m | |0 |2 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17320 |{20405} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Voltage is below the critical threshold of {#THRESHOLD_LO_CRIT}V for 5m | |0 |4 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17321 |{20406} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Voltage is above the warning threshold of {#THRESHOLD_HI_WARN}V for 5m | |0 |2 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17322 |{20407} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Voltage is above the critical threshold of {#THRESHOLD_HI_CRIT}V for 5m | |0 |4 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17323 |{20408}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17324 |{20409}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17325 |{20410}={$LOAD.STATE.WARN:"lvdWarning"} or {20410}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17326 |{20411}={$LOAD.STATE.CRIT:"lvd"} or {20411}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17327 |{20412}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17328 |{20413}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17329 |{20414}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17330 |{20415}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17331 |{20416}=2 |Status: Device has "heatsinkTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17332 |{20417}=2 |Status: Device has "inductorTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17333 |{20418}=2 |Status: Device has "inductorTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17334 |{20419}=2 |Status: Device has "inductorTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17335 |{20420}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17336 |{20421}=2 |Status: Device has "currentMeasurementError" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17337 |{20422}=2 |Status: Device has "batterySenseOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17338 |{20423}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17339 |{20424}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17340 |{20425}=2 |Status: Device has "tb5v" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17341 |{20426}=2 |Status: Device has "fp10SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17342 |{20427}=2 |Status: Device has "mosfetOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17343 |{20428}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17344 |{20429}=2 |Status: Device has "loadCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17345 |{20430}=2 |Status: Device has "p33SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17346 |{20431}=2 |Status: Device has "p12SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17347 |{20432}=2 |Status: Device has "hightInputVoltageLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17348 |{20433}=2 |Status: Device has "controllerReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17349 |{20434}=2 |Status: Device has "loadLvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17350 |{20435}=2 |Status: Device has "logTimeout" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17351 |{20436}=2 |Status: Device has "eepromAccessFailure" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17352 |{20437}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17353 |{20438}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17354 |{20439}=2 |Status: Device has "software" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17355 |{20440}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17356 |{20441}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17357 |{20442}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17358 |{20443}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17359 |{20444}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17360 |{20445}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17361 |{20446}=2 |Status: Device has "batteryLowVoltageDisconnect" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17362 |{20447}=2 |Status: Device has "slaveTimeout" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17363 |{20448}=2 |Status: Device has "dipSwitchChanged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17364 |{20449}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17365 |{20450}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17366 |{20451}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17367 |{20452}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17368 |{20453}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17369 |{20454}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17370 |{20455}=2 |Status: Device has "dipSwitchChanged" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17371 |{20456}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17372 |{20457}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17373 |{20458}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17374 |{20459}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17375 |{20460}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17376 |{20461}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17377 |{20462}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17378 |{20463}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17379 |{20464}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17380 |{20465}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17381 |{20466}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17382 |{20467}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17383 |{20468}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17384 |{20469}={$LOAD.STATE.WARN:"lvdWarning"} or {20469}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17385 |{20470}={$LOAD.STATE.CRIT:"lvd"} or {20470}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17386 |{20471}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17387 |{20472}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17388 |{20473}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17389 |{20474}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17390 |{20475}=2 |Status: Device has "heatsinkTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17391 |{20476}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17392 |{20477}=2 |Status: Device has "currentMeasurementError" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17393 |{20478}=2 |Status: Device has "batterySenseOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17394 |{20479}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17395 |{20480}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17396 |{20481}=2 |Status: Device has "batteryTempOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17397 |{20482}=2 |Status: Device has "fp10SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17398 |{20483}=2 |Status: Device has "mosfetOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17399 |{20484}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17400 |{20485}=2 |Status: Device has "loadCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17401 |{20486}=2 |Status: Device has "p33SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17402 |{20487}=2 |Status: Device has "p12SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17403 |{20488}=2 |Status: Device has "hightInputVoltageLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17404 |{20489}=2 |Status: Device has "controllerReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17405 |{20490}=2 |Status: Device has "loadLvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17406 |{20491}=2 |Status: Device has "logTimeout" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17407 |{20492}=2 |Status: Device has "eepromAccessFailure" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17408 |{20493}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17409 |{20494}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17410 |{20495}=2 |Status: Device has "software" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17411 |{20496}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17412 |{20497}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17413 |{20498}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17414 |{20499}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17415 |{20500}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17416 |{20501}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17417 |{20502}=2 |Status: Device has "batteryLowVoltageDisconnect" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17418 |{20503}=2 |Status: Device has "slaveTimeout" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17419 |{20504}=2 |Status: Device has "dipSwitchChanged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17420 |{20505}=2 |Status: Device has "p3Fault" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17421 |{20506}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17422 |{20507}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17423 |{20508}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17424 |{20509}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17425 |{20510}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17426 |{20511}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17427 |{20512}=2 |Status: Device has "dipSwitchChanged" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17428 |{20513}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17429 |{20514}=2 |Status: Device has "p3Fault" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17430 |{20515}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17431 |{20516}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17432 |{20517}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17433 |{20518}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17434 |{20519}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17435 |{20520}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17436 |{20521}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17437 |{20522}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17438 |{20523}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17439 |{20524}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17440 |{20525}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17441 |{20526}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17442 |{20527}={$LOAD.STATE.WARN:"lvdWarning"} or {20527}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17443 |{20528}={$LOAD.STATE.CRIT:"lvd"} or {20528}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17444 |{20529}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17445 |{20530}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17446 |{20531}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17447 |{20532}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17448 |{20533}=2 |Status: Device has "sspptHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17449 |{20534}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17450 |{20535}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17451 |{20536}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17452 |{20537}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17453 |{20538}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17454 |{20539}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17455 |{20540}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17456 |{20541}=2 |Status: Device has "highVaCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17457 |{20542}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17458 |{20543}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17459 |{20544}=2 |Status: Device has "softwareFault" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17460 |{20545}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17461 |{20546}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17462 |{20547}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17463 |{20548}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17464 |{20549}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17465 |{20550}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17466 |{20551}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17467 |{20552}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17468 |{20553}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17469 |{20554}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17470 |{20555}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17471 |{20556}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17472 |{20557}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17473 |{20558}=2 |Status: Device has "unknownLoadFault" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17474 |{20559}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17475 |{20560}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17476 |{20561}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17477 |{20562}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17478 |{20563}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17479 |{20564}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17480 |{20565}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17481 |{20566}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17482 |{20567}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17483 |{20568}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17484 |{20569}={$LOAD.STATE.WARN:"lvdWarning"} or {20569}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17485 |{20570}={$LOAD.STATE.CRIT:"lvd"} or {20570}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17486 |{20571}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17487 |{20572}=2 |Status: Device has "heatsinkTempSensorShort" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17488 |{20573}=2 |Status: Device has "unknownAlarm" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17489 |{20574}=2 |Status: Device has "suresineHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17490 |{20575}=2 |Status: Device has "reset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17491 |{20576}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17492 |{20577}=2 |Status: Device has "unknownFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17493 |{20578}=2 |Status: Device has "software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17494 |{20579}=2 |Status: Device has "highVoltageDisconnect" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17495 |{20580}=2 |Status: Device has "suresineHot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17496 |{20581}=2 |Status: Device has "dipSwitchChanged" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17497 |{20582}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17498 |{20583}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17499 |{20584}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17500 |{20585}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17501 |{20586}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17502 |{20587}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17503 |{20588}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17504 |{20589}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17505 |{20590}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17506 |{20591}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17507 |{20592}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17508 |{20593}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17509 |{20594}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17510 |{20595}=2 |Status: Device has "highTemperatureCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17511 |{20596}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17512 |{20597}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17513 |{20598}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17514 |{20599}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17515 |{20600}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17516 |{20601}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17517 |{20602}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17518 |{20603}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17519 |{20604}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17520 |{20605}=2 |Status: Device has "p12VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17521 |{20606}=2 |Status: Device has "highArrayVCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17522 |{20607}=2 |Status: Device has "maxAdcValueReached" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17523 |{20608}=2 |Status: Device has "controllerWasReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17524 |{20609}=2 |Status: Device has "alarm21Internal" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17525 |{20610}=2 |Status: Device has "p3VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17526 |{20611}=2 |Status: Device has "derateLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17527 |{20612}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17528 |{20613}=2 |Status: Device has "ee-i2cRetryLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17529 |{20614}=2 |Status: Device has "ethernetAlarm" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17530 |{20615}=2 |Status: Device has "lvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17531 |{20616}=2 |Status: Device has "software" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17532 |{20617}=2 |Status: Device has "fp12VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17533 |{20618}=2 |Status: Device has "extflashFault" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17534 |{20619}=2 |Status: Device has "slaveControlFault" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17535 |{20620}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17536 |{20621}=2 |Status: Device has "fetShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17537 |{20622}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17538 |{20623}=2 |Status: Device has "batteryHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17539 |{20624}=2 |Status: Device has "arrayHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17540 |{20625}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17541 |{20626}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17542 |{20627}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17543 |{20628}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17544 |{20629}=2 |Status: Device has "eepromRetryLimit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17545 |{20630}=2 |Status: Device has "controllerWasReset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17546 |{20631}=2 |Status: Device has "chargeSlaveControlTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17547 |{20632}=2 |Status: Device has "rs232SerialToMeterBridge" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17548 |{20633}=2 |Status: Device has "batteryLvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17549 |{20634}=2 |Status: Device has "powerboardCommunicationFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17550 |{20635}=2 |Status: Device has "fault16Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17551 |{20636}=2 |Status: Device has "fault17Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17552 |{20637}=2 |Status: Device has "fault18Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17553 |{20638}=2 |Status: Device has "fault19Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17554 |{20639}=2 |Status: Device has "fault20Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17555 |{20640}=2 |Status: Device has "fault21Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17556 |{20641}=2 |Status: Device has "fpgaVersion" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17557 |{20642}=2 |Status: Device has "currentSensorReferenceOutOfRange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17558 |{20643}=2 |Status: Device has "ia-refSlaveModeTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17559 |{20644}=2 |Status: Device has "blockbusBoot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17560 |{20645}=2 |Status: Device has "hscommMaster" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17561 |{20646}=2 |Status: Device has "hscomm" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17562 |{20647}=2 |Status: Device has "slave" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17563 |{20648}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17564 |{20649}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17565 |{20650}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17566 |{20651}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17567 |{20652}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17568 |{20653}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17569 |{20654}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17570 |{20655}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17571 |{20656}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17572 |{20657}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17573 |{20658}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17574 |{20659}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17575 |{20660}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17576 |{20661}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17577 |{20662}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17578 |{20663}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17579 |{20664}=2 |Status: Device has "highTemperatureCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17580 |{20665}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17581 |{20666}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17582 |{20667}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17583 |{20668}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17584 |{20669}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17585 |{20670}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17586 |{20671}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17587 |{20672}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17588 |{20673}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17589 |{20674}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17590 |{20675}=2 |Status: Device has "highArrayVCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17591 |{20676}=2 |Status: Device has "maxAdcValueReached" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17592 |{20677}=2 |Status: Device has "controllerWasReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17593 |{20678}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17594 |{20679}=2 |Status: Device has "fetShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17595 |{20680}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17596 |{20681}=2 |Status: Device has "batteryHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17597 |{20682}=2 |Status: Device has "arrayHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17598 |{20683}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17599 |{20684}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17600 |{20685}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17601 |{20686}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17602 |{20687}=2 |Status: Device has "eepromRetryLimit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17603 |{20688}=2 |Status: Device has "slaveControlTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17604 |{20689}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17605 |{20690}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17606 |{20691}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17607 |{20692}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17608 |{20693}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17609 |{20694}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17610 |{20695}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17611 |{20696}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17612 |{20697}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17613 |{20698}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17614 |{20699}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17615 |{20700}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17616 |{20701}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17617 |{20702}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17618 |{20703}=2 |Status: Device has "tristarHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17619 |{20704}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17620 |{20705}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17621 |{20706}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17622 |{20707}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17623 |{20708}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17624 |{20709}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17625 |{20710}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17626 |{20711}=2 |Status: Device has "diversionLoadNearMax" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17627 |{20712}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17628 |{20713}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17629 |{20714}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17630 |{20715}=2 |Status: Device has "loadDisconnectState" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17631 |{20716}=2 |Status: Device has "externalShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17632 |{20717}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17633 |{20718}=2 |Status: Device has "mosfetSShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17634 |{20719}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17635 |{20720}=2 |Status: Device has "highVoltageDisconnect" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17636 |{20721}=2 |Status: Device has "tristarHot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17637 |{20722}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17638 |{20723}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17639 |{20724}=2 |Status: Device has "reset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17640 |{20725}=2 |Status: Device has "systemMiswire" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17641 |{20726}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17642 |{20727}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17643 |{20728}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17644 |{20729}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17645 |{20730}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17646 |{20731}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17647 |{20732}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17648 |{20733}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17649 |{20734}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17650 |{20735}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17651 |{20736}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17652 |{20737}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17653 |{20738}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17654 |{20739}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17655 |{20740}={$LOAD.STATE.WARN:"lvdWarning"} or {20740}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17656 |{20741}={$LOAD.STATE.CRIT:"lvd"} or {20741}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17657 |{20742}<0 and&eol;{20743}>0 and&eol;{20744}=2 |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |0 | |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |17659 |{20748}<0 and&eol;{20749}>0 and&eol;{20750}=2 |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |0 | |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |17661 |{20754} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17662 |{20755} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17665 |{20758} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17666 |{20759} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17669 |{20762}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The IAX trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17670 |{20763}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The PJSIP trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17671 |{20764}>{$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} |"{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high (over {$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} for 10m) | |0 |2 |There is a large number of calls in the queue. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17672 |{20765}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The SIP trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17673 |{20766}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20767}>{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low (below {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})| |0 |3 | |NULL |0 |2 |1 |{20768}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 |
-ROW |17674 |{20769}>{20770} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higer than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Enqueue rate is higer than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17675 |{20771}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20772}>{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low (below {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})| |0 |3 | |NULL |0 |2 |1 |{20773}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 |
-ROW |17676 |{20774}>{$ACTIVEMQ.EXPIRIED.WARN:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higer than {$ACTIVEMQ.EXPIRIED.WARN:"{#JMXDESTINATIONNAME}"} | |0 |3 |This metric represents the number of messages that expired before they could be delivered. If you expect all messages to be delivered and acknowledged within a certain amount of time, you can set an expiration for each message, and investigate if your ExpiredCount metric rises above zero. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17677 |{20775}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17678 |{20776}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17679 |{20777}>{$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} and {$ACTIVEMQ.QUEUE.ENABLED:"{#JMXDESTINATIONNAME}"}=1 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higer than {$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Queue size is higer than treshold. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17680 |{20778}>{20778} |Broker {#JMXBROKERNAME}: Message enqueue rate is higer than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"} | |0 |3 |Enqueue rate is higer than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17681 |{20779}=1 and {20780}>0 |Broker {#JMXBROKERNAME}: Version has been changed | |0 |1 |Broker {#JMXBROKERNAME} version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17682 |{20781}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17683 |{20782}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17684 |{20783}>{$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17685 |{20784}>{$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17686 |{20785}>{$ACTIVEMQ.TEMP.MAX.WARN} |Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17687 |{20786}>{$ACTIVEMQ.TEMP.MAX.HIGH} |Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17688 |{20787}<{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Consumers count is too low (below {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17689 |{20788}<{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Producers count is too low (below {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17690 |{20789}<10m |Broker {#JMXBROKERNAME}: Broker has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17691 |{20790}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17692 |{20791}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17693 |{20792}>{20793} |Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} | |0 |2 |Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17694 |{20794}>{$MS.EXCHANGE.DB.FAULTS.WARN} |Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME}) | |0 |3 |Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17695 |{20795}>{$MS.EXCHANGE.LOG.STALLS.WARN} |Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME}) | |0 |3 |Stalled log records too high. The average value should be less than 10 threads waiting. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17696 |{20796}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME}) | |0 |2 |Should be less than 20ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17697 |{20797}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME}) | |0 |2 |Should be less than 200ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17698 |{20798}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN} |Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} | |0 |2 |Should be less than 50ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17699 |{20799}>{$MS.EXCHANGE.RPC.WARN} |Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME}) | |0 |2 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17700 |{20800}>{$MS.EXCHANGE.RPC.COUNT.WARN} |Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME}) | |0 |2 |Should be below 70 at all times. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17701 |{20801}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17702 |{20802}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17703 |{20803}>{20804} |Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} | |0 |2 |Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17704 |{20805}>{$MS.EXCHANGE.DB.FAULTS.WARN} |Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME}) | |0 |3 |Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17705 |{20806}>{$MS.EXCHANGE.LOG.STALLS.WARN} |Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME}) | |0 |3 |Stalled log records too high. The average value should be less than 10 threads waiting. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17706 |{20807}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME}) | |0 |2 |Should be less than 20ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17707 |{20808}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME}) | |0 |2 |Should be less than 200ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17708 |{20809}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN} |Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} | |0 |2 |Should be less than 50ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17709 |{20810}>{$MS.EXCHANGE.RPC.WARN} |Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME}) | |0 |2 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17710 |{20811}>{$MS.EXCHANGE.RPC.COUNT.WARN} |Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME}) | |0 |2 |Should be below 70 at all times. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17711 |{20812}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17712 |{20813}>{$ORACLE.TBS.USED.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17713 |{20814}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17714 |{20815}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17715 |{20816}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17716 |{20817}>{$ORACLE.TBS.USED.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17717 |{20818}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17718 |{20819}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17719 |{20820} > 18000000 |PostgreSQL: Oldest xid is too big | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17726 |{20828}>0 and {20829}=1 |NetApp FAS3220: Number of failed disks has changed | |0 |2 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |1 |0 |1 |{20828}=0 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
-ROW |17727 |{20830}>0 and {20831}={20831} |Node {#NODE.NAME}: Degraded power supplies count is more than zero | |0 |3 |{{ITEM.VALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17728 |{20832}>0 and {20833}={20833} |Node {#NODE.NAME}: Failed FAN count is over than zero | |0 |4 |{{ITEM.VALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17729 |{20834}=2 |Node {#NODE.NAME}: Temperature is over than recommended | |0 |4 |The hardware will shutdown if the temperature exceeds critical thresholds. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17730 |{20835}=0 |Node {#NODE.NAME}: Node can not communicate with the cluster | |0 |4 | |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17731 |{20836}<>1 |Node {#NODE.NAME}: NVRAM battery status is not OK | |0 |3 | |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17732 |{20837}<10m |Node {#NODE.NAME}: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17733 |{20838}>{$CPU.UTIL.CRIT} |Node {#NODE.NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |17734 |{20839}<{$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=0 |{#VSERVER}{#FSNAME}: Disk space is too low (below {$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} for {$FAS3220.FS.TIME:"{#FSNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17735 |{20840}>{$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=1 |{#VSERVER}{#FSNAME}: Disk space is too low (used over {$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"}% for {$FAS3220.FS.TIME:"{#FSNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17736 |{20841}<>1 |Node {#NODE.NAME}: Node cannot takeover it's HA partner {#PARTNER.NAME}. Reason: {ITEM.VALUE} | |0 |4 |Possible reasons:&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).|NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17737 |{20842}=5 |Node {#NODE.NAME}: Node has been taken over | |0 |4 |The thisNodeDead(5) setting indicates that this node has been takenover. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17738 |{20843}=1 |Node {#NODE.NAME}: HA is not licensed | |0 |3 |The value notConfigured(1) indicates that the HA is not licensed. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17740 |{20848}<>2 and {20849}=1 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Link down | |0 |3 |Link state is not UP and the port status is set 'UP' by an administrator. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17741 |{20850}<>0 and {20851}>0 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy | |0 |1 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17743 |{20854}=1 and {20855}>0 |Cache group [{#JMXNAME}]: List of caches has changed | |0 |1 |List of caches has changed. Significant changes have occurred in the cluster. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17744 |{20856}>0 |Cache group [{#JMXNAME}]: Rebalance in progress | |0 |1 |Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17745 |{20857}=0 |Cache group [{#JMXNAME}]: There is no copy for partitions | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17746 |{20858} > {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} |Thread pool [{#JMXNAME}]: Too many messages in queue (over {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min) | |0 |3 |Number of messages in queue more than {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17747 |{20859}/{20860}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} |Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} in 5m) | |0 |4 |Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17748 |{20861}/{20862}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN} |Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.WARN} in 5m) | |0 |2 |Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17749 |{20863}/{20864}*100>{$IGNITE.DATA.REGION.PUSED.MAX.HIGH} |Data region {#JMXNAME}: Data region utilisation is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.HIGH} in 5m) | |0 |4 |Data region utilization is high. Increase data region size or delete any data. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17750 |{20865}/{20866}*100>{$IGNITE.DATA.REGION.PUSED.MAX.WARN} |Data region {#JMXNAME}: Data region utilisation is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.WARN} in 5m) | |0 |2 |Data region utilization is high. Increase data region size or delete any data. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17751 |{20867}>0 |Data region {#JMXNAME}: Node started to evict pages | |0 |1 |You store more data then region can accommodate. Data started to move to disk it can make requests work slower. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17752 |{20868}>0 |Data region {#JMXNAME}: Pages replace rate more than 0 | |0 |2 |There is more data than DataRegionMaxSize. Сluster started to replace pages in memory. Page replacement can slow down operations. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17753 |{20869} > {$IGNITE.PME.DURATION.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.WARN} for 5 min) | |0 |2 |PME duration is over {$IGNITE.PME.DURATION.MAX.WARN}ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17754 |{20870} > {$IGNITE.PME.DURATION.MAX.HIGH} |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.HIGH} for 5 min) | |0 |4 |PME duration is over {$IGNITE.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17755 |{20871} > {$IGNITE.THREADS.COUNT.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$IGNITE.THREADS.COUNT.MAX.WARN} for 15 min) | |0 |2 |Number of running threads is over {$IGNITE.THREADS.COUNT.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17756 |{20872} > {$IGNITE.JOBS.QUEUE.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$IGNITE.JOBS.QUEUE.MAX.WARN} for 15 min) | |0 |2 |Number of queued jobs is over {$IGNITE.JOBS.QUEUE.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17757 |{20873}>{20874} |Ignite [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology | |0 |1 |One or more server node left the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17758 |{20875}<0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Server node left the topology | |0 |2 |One or more server node left the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17759 |{20876}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology | |0 |1 |One or more server node added to the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17760 |{20877}=1 and {20878}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17761 |{20879}<10m |Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17762 |{20880}=1 |Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17763 |{20881}=1 and {20882}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed | |0 |2 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17764 |{20883}={20884} |Cache group [{#JMXGROUP}]: All entries are in heap | |0 |1 |All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17765 |{20885} > {20886} |Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17766 |{20887}>0 and {20888}=0 |Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17767 |{20889}/{20890}*100>{$REDIS.MEM.PUSED.MAX.WARN} |Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17768 |{20891}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17769 |{20892}=1 or {20893}=1 or {20894}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17770 |{20895}=1 and {20896}<>{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"} |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |17771 |{20897} = 1 |{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17772 |{20898} = 3 |{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17773 |{20899} = 4 |{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17774 |{20900} = 1 |Ambient: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17775 |{20901} = 3 |Ambient: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17776 |{20902} = 4 |Ambient: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17777 |{20903} = 1 |CPU-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17778 |{20904} = 3 |CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17779 |{20905} = 4 |CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17780 |{20906} = 1 |I/O-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17781 |{20907} = 3 |I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17782 |{20908} = 4 |I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17783 |{20909} = 1 |Memory-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17784 |{20910} = 3 |Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17785 |{20911} = 4 |Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17786 |{20912} = 1 |PSU-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17787 |{20913} = 3 |PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17788 |{20914} = 4 |PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17789 |{20915} = 1 |System-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17790 |{20916} = 3 |System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17791 |{20917} = 4 |System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17792 |{20918}>={20919} |Cache group [{#JMXNAME}]: One or more backups are unavailable | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17793 |{20920}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17798 |({20925}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20926} or&eol;{20927}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20926}) and&eol;{20926}>0 |Interface {#IFDESCR}: High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{20925}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20926} and&eol;{20927}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20926}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17799 |{20928}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20929}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{20930}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20931}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17806 |({20953}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20954} or&eol;{20955}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20954}) and&eol;{20954}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{20953}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20954} and&eol;{20955}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20954}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17807 |{20956}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20957}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{20958}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20959}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17850 |({21107}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21108} or&eol;{21109}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21108}) and&eol;{21108}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21107}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21108} and&eol;{21109}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21108}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17851 |{21110}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21111}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21112}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21113}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17854 |{21121} <= {#THRESH} |SMART [{#NAME}]: Attribute {#ID} {#ATTRNAME} is failed | |0 |2 |The value should be greater than THRESH. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17855 |{21122}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17856 |{21123}=1 and {21124}>0 |SMART [{#NAME}]: Disk has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17857 |{21125}>{$SMART.TEMPERATURE.MAX.WARN} |SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17858 |{21126}>{$SMART.TEMPERATURE.MAX.CRIT} |SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17859 |{21127}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17860 |{21128} <= {#THRESH} |SMART [{#NAME}]: Attribute {#ID} {#ATTRNAME} is failed | |0 |2 |The value should be greater than THRESH. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17861 |{21129}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17862 |{21130}=1 and {21131}>0 |SMART [{#NAME}]: Disk has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17863 |{21132}>{$SMART.TEMPERATURE.MAX.WARN} |SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17864 |{21133}>{$SMART.TEMPERATURE.MAX.CRIT} |SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17865 |{21134}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17866 |{21135}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17867 |{21136}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17868 |{21137}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17871 |{21140}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17875 |{21144}>{$MEMORY.UTIL.MAX} |#{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17876 |{21145}>{$MEMORY.UTIL.MAX} |{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17877 |{21146}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17878 |{21147}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17879 |{21148}>{$MEMORY.UTIL.MAX} |{#MODULE_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17880 |{21149}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17881 |{21150}>{$MEMORY.UTIL.MAX} |{#ENT_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17882 |{21151}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17883 |{21152}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17884 |{21153}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17885 |{21154}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17886 |{21155}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17887 |{21156}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17888 |{21157}<{$SWAP.PFREE.MIN.WARN} and {21158}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17889 |{21159}<{$MEMORY.AVAILABLE.MIN} and {21160}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17890 |{21161}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17897 |{21172}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21173}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21174}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21175}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17900 |{21184}<{$SWAP.PFREE.MIN.WARN} and {21185}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17901 |{21186}<{$MEMORY.AVAILABLE.MIN} and {21187}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17902 |{21188}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17906 |{21194}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21195}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21196}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21197}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17908 |{21202}<{$SWAP.PFREE.MIN.WARN} and {21203}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17909 |{21204}<{$MEMORY.AVAILABLE.MIN} and {21205}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17910 |{21206}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17911 |({21207}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208} or&eol;{21209}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208}) and&eol;{21208}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21207}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208} and&eol;{21209}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17912 |{21210}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21211}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21212}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21213}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17913 |{21214}<{$SWAP.PFREE.MIN.WARN} and {21215}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17914 |{21216}<{$MEMORY.AVAILABLE.MIN} and {21217}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17915 |{21218}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17919 |{21224}<{$SWAP.PFREE.MIN.WARN} and {21225}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17920 |{21226}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17923 |({21230}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21231} or&eol;{21232}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21231}) and&eol;{21231}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21230}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21231} and&eol;{21232}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21231}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17924 |{21233}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21234}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21235}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21236}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17927 |{21244}<{$SWAP.PFREE.MIN.WARN} and {21245}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
-ROW |17928 |{21246}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
-ROW |17931 |({21250}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21251} or&eol;{21252}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21251}) and&eol;{21251}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21250}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21251} and&eol;{21252}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21251}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17932 |{21253}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21254}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21255}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21256}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17941 |{21271}=1 and {21272}>0 |OceanStor 5300 V5: Storage version has been changed | |0 |1 |OceanStor 5300 V5 version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
-ROW |17942 |{21273}<>1 |BBU {#ID} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17943 |{21274}<>2 |BBU {#ID} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17944 |{21275}>{$CPU.UTIL.CRIT} |Controller {#ID}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |17945 |{21276}<>1 |Controller {#ID}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17946 |{21277}>{$HUAWEI.5300.MEM.MAX.WARN} |Controller {#ID}: Memory usage is too high (over {$HUAWEI.5300.MEM.MAX.WARN} for {$HUAWEI.5300.MEM.MAX.TIME}) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17947 |{21278}=1 |Controller {#ID}: Role has been changed | |0 |2 | |NULL |0 |2 |0 | |0 | |1 | |0 |
-ROW |17948 |{21279}<>27 |Controller {#ID}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17949 |{21280}<>1 |Disk {#MODEL} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17950 |{21281}<>27 |Disk {#MODEL} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17951 |{21282}>{$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} |Disk {#MODEL} on {#LOCATION}: Temperature is too high (over {$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} for {$HUAWEI.5300.DISK.TEMP.MAX.TIME}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE} |0 |
-ROW |17952 |{21283}<>1 |Enclosure {#NAME}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17953 |{21284}<>27 |Enclosure {#NAME}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17954 |{21285}>{$HUAWEI.5300.TEMP.MAX.WARN} |Enclosure {#NAME}: Temperature is too high (over {$HUAWEI.5300.TEMP.MAX.WARN} for {$HUAWEI.5300.TEMP.MAX.TIME}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE} |0 |
-ROW |17955 |{21286}<>1 |FAN {#ID} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17956 |{21287}<>2 |FAN {#ID} on {#LOCATION}: Running status is not Running | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17957 |{21288}>{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN} |LUN {#NAME}: Average I/O response time is too high (over {$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}ms for {$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17958 |{21289}<>1 |LUN {#NAME}: Status is not Normal | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-ROW |17959 |{21290}>{$CPU.UTIL.CRIT} |Node {#NODE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |17960 |{21291}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN} |Node {#NODE}: Average I/O latency is too high (over {$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}ms for {$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
-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 |17964 |{21295}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21296}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21297}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21298}<{$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 |13015 |{12641}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13017 |{12651}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13019 |{12649}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13023 |{12653}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13073 |{12645}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13074 |{12646}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13080 |{13164}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13164}<65 |0 | |0 | |0 |
+ROW |13081 |{13170}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13170}<65 |0 | |0 | |0 |
+ROW |13083 |{13172}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13172}<65 |0 | |0 | |0 |
+ROW |13084 |{13174}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13174}<65 |0 | |0 | |0 |
+ROW |13085 |{13176}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13176}<65 |0 | |0 | |0 |
+ROW |13086 |{13178}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13178}<65 |0 | |0 | |0 |
+ROW |13087 |{13180}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13180}<65 |0 | |0 | |0 |
+ROW |13088 |{13182}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13182}<65 |0 | |0 | |0 |
+ROW |13089 |{13184}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13184}<65 |0 | |0 | |0 |
+ROW |13091 |{13188}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13188}<65 |0 | |0 | |0 |
+ROW |13092 |{13190}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13190}<65 |0 | |0 | |0 |
+ROW |13093 |{13192}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13192}<65 |0 | |0 | |0 |
+ROW |13094 |{13198}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13198}<65 |0 | |0 | |0 |
+ROW |13095 |{13200}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13200}<65 |0 | |0 | |0 |
+ROW |13096 |{13202}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13202}<65 |0 | |0 | |0 |
+ROW |13097 |{13204}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13204}<65 |0 | |0 | |0 |
+ROW |13275 |{13186}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13186}<65 |0 | |0 | |0 |
+ROW |13285 |{13159}=0 |Telnet service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13332 |{13089}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13333 |{13088}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13334 |{13087}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13336 |{12723}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13338 |{12725}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13339 |{12726}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13340 |{12727}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13348 |{13074}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13349 |{13073}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13350 |{13072}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13352 |{12739}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13354 |{12741}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13355 |{12742}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13356 |{12743}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13364 |{13071}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13365 |{13070}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13366 |{13069}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13367 |{13068}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13368 |{12755}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13370 |{12757}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13371 |{12758}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13372 |{12759}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13382 |{13075}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13384 |{12771}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13386 |{12773}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13388 |{12775}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13396 |{13093}>30 |Too many processes running on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13397 |{13092}>300 |Too many processes on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13398 |{13091}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13399 |{13090}>20 |Disk I/O is overloaded on {HOST.NAME} | |0 |2 |OS spends significant time waiting for I/O (input/output) operations. It could be indicator of performance issues with storage system. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13400 |{12787}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13402 |{12789}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13403 |{12790}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13404 |{12791}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13414 |{13086}>5 |Processor load is too high on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13416 |{12803}>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13418 |{12805}>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13419 |{12806}<0 |{HOST.NAME} has just been restarted | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13420 |{12807}>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13441 |{13194}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13194}<65 |0 | |0 | |0 |
+ROW |13517 |{12946}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13518 |{12947}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13519 |{12948}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13520 |{12949}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13521 |{13206}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13206}<65 |0 | |0 | |0 |
+ROW |13522 |{13208}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13208}<65 |0 | |0 | |0 |
+ROW |13523 |{13210}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13210}<65 |0 | |0 | |0 |
+ROW |13524 |{13211}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13211}<65 |0 | |0 | |0 |
+ROW |13525 |{13212}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13212}<65 |0 | |0 | |0 |
+ROW |13526 |{13213}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13213}<65 |0 | |0 | |0 |
+ROW |13527 |{13214}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13214}<65 |0 | |0 | |0 |
+ROW |13528 |{13215}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13215}<65 |0 | |0 | |0 |
+ROW |13529 |{13216}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13216}<65 |0 | |0 | |0 |
+ROW |13530 |{13217}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13217}<65 |0 | |0 | |0 |
+ROW |13531 |{13218}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13218}<65 |0 | |0 | |0 |
+ROW |13532 |{13219}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13219}<65 |0 | |0 | |0 |
+ROW |13533 |{13220}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13220}<65 |0 | |0 | |0 |
+ROW |13534 |{13207}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13207}<65 |0 | |0 | |0 |
+ROW |13535 |{13209}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13209}<65 |0 | |0 | |0 |
+ROW |13536 |{12965}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13544 |{12994}=0 |FTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13545 |{12995}=0 |HTTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13546 |{12996}=0 |HTTPS service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13547 |{12997}=0 |IMAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13548 |{12998}=0 |LDAP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13549 |{13154}=0 |NNTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13550 |{13156}=0 |NTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13551 |{13152}=0 |POP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13552 |{13157}=0 |SMTP service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13553 |{13158}=0 |SSH service is down on {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13557 |{13160}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |13559 |{13196}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13196}<65 |0 | |0 | |0 |
+ROW |13562 |{13222}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13222}<65 |0 | |0 | |0 |
+ROW |13564 |{13224}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13224}<65 |0 | |0 | |0 |
+ROW |13565 |{13225}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13225}<65 |0 | |0 | |0 |
+ROW |13566 |{13226}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13226}<65 |0 | |0 | |0 |
+ROW |13568 |{13228}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13228}<65 |0 | |0 | |0 |
+ROW |13569 |{13229}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{13229}<65 |0 | |0 | |0 |
+ROW |14251 |{14378}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |14252 |{14379}>{$ICMP_LOSS_WARN} and {14379}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |14318 |{14515}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14516}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14319 |{14517}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14518}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14320 |{14519}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14520}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14322 |{14522}=1 and {14523}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14336 |{14545}=1 and {14546}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14337 |{14547}=1 and {14548}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14339 |{14552}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14553}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14340 |{14554}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14555}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14363 |{14594}=1 and {14595}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14364 |{14596}=1 and {14597}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14365 |{14598}=1 and {14599}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14372 |{14606}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14607}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14373 |{14608}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14609}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14374 |{14610}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14611}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14380 |{14620}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14621}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14381 |{14622}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14623}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14382 |{14624}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14625}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14383 |{14626}=1 and {14627}>0 |Unit {#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14409 |{14669}=1 and {14670}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14417 |{14681}=1 and {14682}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14460 |{14756}>{$TEMP_WARN:""} |Device {#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14757}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14461 |{14758}>{$TEMP_CRIT:""} |Device {#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14759}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14462 |{14760}<{$TEMP_CRIT_LOW:""} |Device {#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14761}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14463 |{14762}=1 and {14763}>0 |#{#SNMPVALUE}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14474 |{14782}=1 and {14783}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14476 |{14785}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14786}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14477 |{14787}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14788}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14478 |{14789}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14790}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14492 |{14812}=1 and {14813}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14493 |{14814}=1 and {14815}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14495 |{14817}>{$TEMP_WARN:""} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14818}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14496 |{14819}>{$TEMP_CRIT:""} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14820}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14497 |{14821}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14822}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14511 |{14844}>{$TEMP_WARN:""} |Device: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{14845}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14513 |{14849}<{$TEMP_CRIT_LOW:""} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{14850}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14514 |{14851}=1 and {14852}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14515 |{14853}=1 and {14854}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14551 |{14914}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14915}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14552 |{14916}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14917}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14553 |{14918}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14919}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14556 |{14922}=1 and {14923}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14557 |{14924}=1 and {14925}>0 |{#ENT_NAME}: Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14589 |{14979}>{$TEMP_WARN:""} |{#ENT_NAME}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14980}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14590 |{14981}>{$TEMP_CRIT:""} |{#ENT_NAME}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{14982}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14591 |{14983}<{$TEMP_CRIT_LOW:""} |{#ENT_NAME}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{14984}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14592 |{14985}=1 and {14986}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14603 |{15005}=1 and {15006}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14606 |{15013}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15014}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14607 |{15015}=1 and {15016}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14621 |{15038}=1 and {15039}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14624 |{15042}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15043}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14625 |{15044}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15045}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14626 |{15046}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15047}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14661 |{15106}=1 and {15107}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14662 |{15108}=1 and {15109}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14664 |{15111}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15112}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14665 |{15113}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15114}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14666 |{15115}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{15116}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14680 |{15138}=1 and {15139}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14683 |{15146}<{$TEMP_CRIT_LOW:""} |#{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15147}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14698 |{15170}=1 and {15171}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14699 |{15172}=1 and {15173}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14709 |{15191}=1 and {15192}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14710 |{15193}=1 and {15194}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14724 |{15216}=1 and {15217}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14912 |{15684}=1 and {15685}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |14913 |{15686}=1 and {15687}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14914 |{15688}>{$TEMP_WARN:""} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15689}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14915 |{15690}>{$TEMP_CRIT:""} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{15691}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14916 |{15692}<{$TEMP_CRIT_LOW:""} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{15693}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |14937 |{15726}=1 and {15727}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |14941 |{15731}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |15330 |{16818}=1 |#{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15331 |{16819}=1 |PSU {#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15332 |{16820}=1 |PSU {#SNMPVALUE}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15333 |{16821}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15334 |{16822}=1 |Fan {#SNMPVALUE}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15337 |{16829}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15338 |{16830}=1 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15339 |{16831}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15340 |{16832}=1 |#{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15341 |{16833}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15344 |{16840}=1 or {16841}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15345 |{16842}=1 or {16843}=1 |{#SENSOR_INFO}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15346 |{16844}=1 or {16845}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15347 |{16846}=1 or {16847}=1 |{#SENSOR_INFO}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15366 |{16890}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15367 |{16891}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15369 |{16895}=1 |PSU {#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15370 |{16896}=1 |Fan {#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15371 |{16897}=1 or {16898}=1 |{#ENT_NAME}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15372 |{16899}=1 or {16900}=1 or {16901}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15373 |{16902}=1 |{#ENT_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15374 |{16903}=1 |{#ENT_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15375 |{16904}=1 |{#ENT_DESCR}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15376 |{16905}=1 |{#ENT_DESCR}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15377 |{16906}=1 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15378 |{16907}=1 |{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15379 |{16908}=1 |PSU {#PSU_INDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15380 |{16909}=1 |PSU {#PSU_INDEX}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15381 |{16910}=1 |Fan {#FAN_INDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15382 |{16911}=1 |Fan {#FAN_INDEX}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15383 |{16912}=1 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15384 |{16913}=1 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15385 |{16914}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15386 |{16915}=1 |Unit {#FAN_UNIT} Fan {#FAN_INDEX}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15391 |{16924}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15392 |{16925}=1 |{#SENSOR_INFO}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15393 |{16926}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15394 |{16927}=1 |{#SENSOR_INFO}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15395 |{16928}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15398 |{16935}=1 |#{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15399 |{16936}=1 |#{#SNMPVALUE}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15493 |{$IFCONTROL:"{#IFNAME}"}=1 and ({17243}=2 and {17244}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{17243}<>2 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15640 |{17657}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15641 |{17658}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{17658}<65 |0 | |0 | |0 |
+ROW |15671 |{17692}<0 and {17693}>0&eol;and (&eol;{17694}=6 or&eol;{17694}=7 or&eol;{17694}=11 or&eol;{17694}=62 or&eol;{17694}=69 or&eol;{17694}=117&eol;)&eol;and&eol;({17695}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17692}>0 and {17696}>0) or&eol;({17695}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |15695 |{17812}<0 and {17813}>0&eol;and (&eol;{17814}=6 or&eol;{17814}=7 or&eol;{17814}=11 or&eol;{17814}=62 or&eol;{17814}=69 or&eol;{17814}=117&eol;)&eol;and&eol;({17815}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17812}>0 and {17816}>0) or&eol;({17815}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |15698 |{17827}<0 and {17828}>0&eol;and (&eol;{17829}=6 or&eol;{17829}=7 or&eol;{17829}=11 or&eol;{17829}=62 or&eol;{17829}=69 or&eol;{17829}=117&eol;)&eol;and&eol;({17830}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({17827}>0 and {17831}>0) or&eol;({17830}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |15717 |{17866}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15718 |{17867}=1 and {17868}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |15719 |{17869}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15720 |{17870}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15721 |{17871}=1 or {17872}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15722 |{17873}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15728 |{17879}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15729 |{17880}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15730 |{17881}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15731 |{17882}=1 and {17883}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15732 |{17884}=1 and {17885}>0 |Firmware has changed | |0 |1 |Firmware version has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15735 |{17892}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{17893}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15738 |{17900}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCALE}: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{17901}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15739 |{17902}=1 or {17903}=1 |{#PSU_DESCR}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15740 |{17904}=1 |{#PSU_DESCR}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15741 |{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1 |{#FAN_DESCR}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15742 |{17910}=1 or {17911}=1 |{#FAN_DESCR}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15743 |{17912}=1 or {17913}=1 |{#DISK_NAME}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
+ROW |15744 |{17914}=1 |{#DISK_NAME}: Physical disk is in warning state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15745 |{17915}=1 and {17916}>0 |{#DISK_NAME}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |15746 |{17917}=1 |{#DISK_NAME}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15747 |{17918}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed | |0 |4 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15748 |{17919}=1 |Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state | |0 |3 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15749 |{17920}=1 |{#CNTLR_NAME}: Disk array controller is in unrecoverable state! | |0 |5 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15750 |{17921}=1 |{#CNTLR_NAME}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15751 |{17922}=1 |{#CNTLR_NAME}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15752 |{17923}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15753 |{17924}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15754 |{17925}=1 |Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15762 |{17933}=1 and {17934}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15781 |{17971}=1 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15782 |{17972}=1 |Chassis {#CHASSIS_NUM}, bay {#BAY_NUM}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15783 |{17973}=1 |Fan {#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15784 |{17974}=1 |Fan {#SNMPINDEX}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15785 |{17975}=1 |{#CNTLR_LOCATION}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15786 |{17976}=1 |{#CNTLR_LOCATION}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15787 |{17977}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15790 |{17983}=1 or {17984}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15792 |{17987}=1 |{#DISK_LOCATION}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
+ROW |15793 |{17988}=1 |{#DISK_LOCATION}: Physical disk is in warning state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15794 |{17989}=1 or {17990}=1 |{#DISK_LOCATION}: Physical disk S.M.A.R.T. failed | |0 |4 |Disk probably requires replacement. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15795 |{17991}=1 and {17992}>0 |{#DISK_LOCATION}: Disk has been replaced (new serial number received) | |0 |1 |Disk serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |15796 |{17993}=1 |Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk failed | |0 |4 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15797 |{17994}=1 |Disk {#SNMPINDEX}({#DISK_NAME}): Virtual disk is not in OK state | |0 |2 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15824 |{18031}=1 |System is in unrecoverable state! | |0 |4 |Please check the device for faults |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15825 |{18032}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15826 |{18033}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15827 |{18034}=1 and {18035}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15828 |{18036}>{$TEMP_WARN:""} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18037}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15829 |{18038}>{$TEMP_CRIT:""} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18039}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15830 |{18040}<{$TEMP_CRIT_LOW:""} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18041}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15831 |{18042}>{$TEMP_WARN:"Ambient"} |Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18043}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15832 |{18044}>{$TEMP_CRIT:"Ambient"} |Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18045}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15833 |{18046}<{$TEMP_CRIT_LOW:"Ambient"} |Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{18047}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15834 |{18048}>{$TEMP_WARN:"CPU"} |CPU: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18049}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15835 |{18050}>{$TEMP_CRIT:"CPU"} |CPU: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18051}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15836 |{18052}<{$TEMP_CRIT_LOW:"CPU"} |CPU: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{18053}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15837 |{18054}=1 |{#PSU_DESCR}: Power supply is not in normal state | |0 |1 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15838 |{18055}=1 |{#FAN_DESCR}: Fan is not in normal state | |0 |1 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15839 |{18056}=1 |{#SNMPINDEX}: Physical disk is not in OK state | |0 |2 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |15845 |{18062}>{$TEMP_WARN:""} |{#SENSOR_DESCR}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18063}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15846 |{18064}>{$TEMP_CRIT:""} |{#SENSOR_DESCR}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{18065}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15847 |{18066}<{$TEMP_CRIT_LOW:""} |{#SENSOR_DESCR}: Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |2 |1 |{18067}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |15853 |{18076}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18076}<65 |0 | |0 | |0 |
+ROW |15855 |{18078}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18078}<65 |0 | |0 | |0 |
+ROW |15857 |{18080}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15858 |{18081}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15859 |{18082}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15860 |{18083}>75 |More than 75% used in the trends cache | |0 |3 |Consider increasing TrendCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15861 |{18084}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15862 |{18085}>95 |More than 95% used in the value cache | |0 |3 |Consider increasing ValueCacheSize in the zabbix_server.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15863 |{18086}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15864 |{18087}>75 |Zabbix alerter processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18087}<65 |0 | |0 | |0 |
+ROW |15865 |{18088}>75 |Zabbix alert manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18088}<65 |0 | |0 | |0 |
+ROW |15866 |{18089}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 |Zabbix configuration syncer processes more than 75% busy |NULL |0 |0 |1 |{18089}<65 |0 | |0 | |0 |
+ROW |15867 |{18090}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18090}<65 |0 | |0 | |0 |
+ROW |15868 |{18091}>75 |Zabbix escalator processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18091}<65 |0 | |0 | |0 |
+ROW |15869 |{18092}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18092}<65 |0 | |0 | |0 |
+ROW |15870 |{18093}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18093}<65 |0 | |0 | |0 |
+ROW |15871 |{18094}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18094}<65 |0 | |0 | |0 |
+ROW |15872 |{18095}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18095}<65 |0 | |0 | |0 |
+ROW |15873 |{18096}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18096}<65 |0 | |0 | |0 |
+ROW |15874 |{18097}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18097}<65 |0 | |0 | |0 |
+ROW |15875 |{18098}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18098}<65 |0 | |0 | |0 |
+ROW |15876 |{18099}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18099}<65 |0 | |0 | |0 |
+ROW |15877 |{18100}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18100}<65 |0 | |0 | |0 |
+ROW |15878 |{18101}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18101}<65 |0 | |0 | |0 |
+ROW |15879 |{18102}>75 |Zabbix proxy poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18102}<65 |0 | |0 | |0 |
+ROW |15880 |{18103}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18103}<65 |0 | |0 | |0 |
+ROW |15881 |{18104}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18104}<65 |0 | |0 | |0 |
+ROW |15882 |{18105}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18105}<65 |0 | |0 | |0 |
+ROW |15883 |{18106}>75 |Zabbix timer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18106}<65 |0 | |0 | |0 |
+ROW |15884 |{18107}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18107}<65 |0 | |0 | |0 |
+ROW |15885 |{18108}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18108}<65 |0 | |0 | |0 |
+ROW |15886 |{18109}=1 |Zabbix value cache working in low memory mode | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15887 |{18110}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18110}<65 |0 | |0 | |0 |
+ROW |15888 |{18111}>75 |Zabbix LLD manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18111}<65 |0 | |0 | |0 |
+ROW |15889 |{18112}>75 |Zabbix LLD worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18112}<65 |0 | |0 | |0 |
+ROW |15890 |{18113}>75 |More than 75% used in the configuration cache | |0 |3 |Consider increasing CacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15891 |{18114}>75 |More than 75% used in the history cache | |0 |3 |Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15892 |{18115}>75 |More than 75% used in the history index cache | |0 |3 |Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15893 |{18116}>75 |More than 75% used in the vmware cache | |0 |3 |Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15894 |{18117}>100 |More than 100 items having missing data for more than 10 minutes | |0 |2 |zabbix[stats,{$IP},{$PORT},queue,10m] item is collecting data about how many items are missing data for more than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15895 |{18118}>75 |Zabbix configuration syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18118}<65 |0 | |0 | |0 |
+ROW |15896 |{18119}>75 |Zabbix data sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18119}<65 |0 | |0 | |0 |
+ROW |15897 |{18120}>75 |Zabbix discoverer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18120}<65 |0 | |0 | |0 |
+ROW |15898 |{18121}>75 |Zabbix heartbeat sender processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18121}<65 |0 | |0 | |0 |
+ROW |15899 |{18122}>75 |Zabbix history syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18122}<65 |0 | |0 | |0 |
+ROW |15900 |{18123}>75 |Zabbix housekeeper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18123}<65 |0 | |0 | |0 |
+ROW |15901 |{18124}>75 |Zabbix http poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18124}<65 |0 | |0 | |0 |
+ROW |15902 |{18125}>75 |Zabbix icmp pinger processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18125}<65 |0 | |0 | |0 |
+ROW |15903 |{18126}>75 |Zabbix ipmi manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18126}<65 |0 | |0 | |0 |
+ROW |15904 |{18127}>75 |Zabbix ipmi poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18127}<65 |0 | |0 | |0 |
+ROW |15905 |{18128}>75 |Zabbix java poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18128}<65 |0 | |0 | |0 |
+ROW |15906 |{18129}>75 |Zabbix poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18129}<65 |0 | |0 | |0 |
+ROW |15907 |{18130}>75 |Zabbix self-monitoring processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18130}<65 |0 | |0 | |0 |
+ROW |15908 |{18131}>75 |Zabbix snmp trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18131}<65 |0 | |0 | |0 |
+ROW |15909 |{18132}>75 |Zabbix task manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18132}<65 |0 | |0 | |0 |
+ROW |15910 |{18133}>75 |Zabbix trapper processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18133}<65 |0 | |0 | |0 |
+ROW |15911 |{18134}>75 |Zabbix unreachable poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18134}<65 |0 | |0 | |0 |
+ROW |15912 |{18135}>75 |Zabbix vmware collector processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18135}<65 |0 | |0 | |0 |
+ROW |15913 |{18136}>75 |Zabbix preprocessing manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18136}<65 |0 | |0 | |0 |
+ROW |15914 |{18137}>75 |Zabbix preprocessing worker processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18137}<65 |0 | |0 | |0 |
+ROW |15926 |{18150} < {$PG.CACHE_HITRATIO.MIN.WARN} |PostgreSQL: Cache hit ratio too low (under {$PG.CACHE_HITRATIO.MIN.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15927 |{18151}=1 and {18152}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15928 |{18153} = 1 |PostgreSQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15929 |{18154}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15930 |{18155} > {$PG.CHECKPOINTS_REQ.MAX.WARN} |PostgreSQL: Required checkpoints occurs too frequently (over {$PG.CHECKPOINTS_REQ.MAX.WARN}) | |0 |3 |Checkpoints are points in the sequence of transactions at which it is guaranteed that the heap and index data files have been updated with all information written before that checkpoint. At checkpoint time, all dirty data pages are flushed to disk and a special checkpoint record is written to the log file.&eol;https://www.postgresql.org/docs/current/wal-configuration.html |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15931 |{18156} > {$PG.PING_TIME.MAX.WARN} |PostgreSQL: Response too long (over {$PG.PING_TIME.MAX.WARN}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15932 |{18157} < 10m |PostgreSQL: Service has been restarted (uptime < 10m) | |0 |1 |PostgreSQL uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15933 |{18158} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15934 |{18159} > {$PG.REPL_LAG.MAX.WARN} |PostgreSQL: Streaming lag with {#MASTER} is too high (over {$PG.REPL_LAG.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15935 |{18160} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |PostgreSQL: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15936 |{18161}=1 and {18162}>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15938 |{18164}>{$PG.LOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Number of locks is too high (over {$PG.LOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15939 |{18165} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |3 |The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15940 |{18166}>{$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Too many slow queries (over {$PG.SLOW_QUERIES.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15941 |{18167}<{$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} |Database {#DBNAME}: VACUUM FREEZE is required to prevent wraparound (frozen XID less then {$PG.FROZENXID_PCT_STOP.MIN.HIGH:"{#DBNAME}"} %) | |0 |3 |Preventing Transaction ID Wraparound Failures&eol;https://www.postgresql.org/docs/current/routine-vacuuming.html#VACUUM-FOR-WRAPAROUND |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15943 |{18169}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15944 |{18170}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15947 |{18174}=0 |Apache: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15948 |{18175}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15949 |{18176}=0 |Apache: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15950 |{18177}>{$APACHE.RESPONSE_TIME.MAX.WARN} |Apache: Service response time is too high (over {$APACHE.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15951 |{18178}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15952 |{18179}=1 and {18180}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15954 |{18183}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15955 |{18184}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15956 |{18185} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |0 |
+ROW |15957 |{18186}=0 |Nginx: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15958 |{18187}=1 and {18188}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15960 |{18191}=0 |Nginx: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15961 |{18192}>{$NGINX.RESPONSE_TIME.MAX.WARN} |Nginx: Service response time is too high (over {$NGINX.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15962 |{18193} > {$NGINX.DROP_RATE.MAX.WARN} |Nginx: High connections drop rate (more than {$NGINX.DROP_RATE.MAX.WARN} for 5m) | |0 |2 |The dropping rate connections is greater than {$NGINX.DROP_RATE.MAX.WARN} for the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 |Current rate: {ITEM.LASTVALUE1} |0 |
+ROW |15963 |{18194}=1 and {18195}>0 |Nginx: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Nginx version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15978 |{18211}=1 |MySQL: Failed to get items (no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15979 |{18212}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15980 |{18213}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15981 |{18214}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15982 |{18215}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15983 |{18216}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |15984 |{18217}=1 and {18218}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |15985 |{18219}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15986 |{18220}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15987 |{18221}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |15988 |{18222}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16007 |{18255}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16008 |{18256}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18257}-{18258})<5G or {18259}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16009 |{18260}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18261}-{18262})<10G or {18263}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16010 |{18264}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16011 |{18265}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16031 |{18300}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16035 |{18306}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16036 |{18307}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16038 |{18310}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16039 |{18311}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16040 |{18312}/{18313}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 |
+ROW |16041 |{18314}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16042 |{18315}=1 and {18316}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16069 |{18355}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18356}-{18357})<5G or {18358}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16070 |{18359}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18360}-{18361})<10G or {18362}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16071 |{18363}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16072 |{18364}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |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 |
+ROW |16104 |{18433}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16105 |{18434}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16106 |{18435}/{18436}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 |
+ROW |16107 |{18437}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16108 |{18438}=1 and {18439}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16122 |{18459}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18460}-{18461})<5G or {18462}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16123 |{18463}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18464}-{18465})<10G or {18466}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16124 |{18467}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16125 |{18468}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16129 |{18476}<0 and {18477}>0&eol;and&eol;({18477}=6&eol;or {18477}=1)&eol;and&eol;({18478}<>2) |Interface {#IFNAME}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18476}>0 and {18479}>0) or&eol;({18478}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |16138 |{18501}=1 |node_exporter is not available (or no data for 30m) | |0 |2 |Failed to fetch system metrics from node_exporter in time. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16139 |{18502}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16141 |{18505}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16142 |{18506}/{18507}*100>80 |Running out of file descriptors (less than < 20% free) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} of {ITEM.LASTVALUE2} file descriptors are in use. |0 |
+ROW |16143 |{18508}=1 and {18509}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16144 |{18510}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16146 |{18513}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16152 |{18526}<0 and {18527}>0&eol;and (&eol;{18528}=6 or&eol;{18528}=7 or&eol;{18528}=11 or&eol;{18528}=62 or&eol;{18528}=69 or&eol;{18528}=117&eol;)&eol;and&eol;({18529}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18526}>0 and {18530}>0) or&eol;({18529}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |16153 |{18531}<0 and {18532}>0&eol;and&eol;({18532}=6&eol;or {18532}=1)&eol;and&eol;({18533}<>2) |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({18531}>0 and {18534}>0) or&eol;({18533}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |16155 |{18537}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18538}-{18539})<5G or {18540}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16156 |{18541}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18542}-{18543})<10G or {18544}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16157 |{18545}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16158 |{18546}<{$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.WARN:"{#FSNAME}"}%) | |0 |2 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |NULL |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 |
+ROW |16160 |{18548}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16161 |{18549}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16162 |{18550}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16166 |{18555}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16167 |{18556}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |0 |2 |The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16168 |{18557}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16169 |{18558}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16182 |{18574}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18575}-{18576})<5G or {18577}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16183 |{18578}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18579}-{18580})<10G or {18581}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16196 |{18620}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16197 |{18621}=1 |Zabbix agent is not available (or nodata for {$AGENT.NODATA_TIMEOUT}) | |0 |3 |For active agents, nodata() with agent.ping is used with {$AGENT.NODATA_TIMEOUT} as time threshold. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16209 |{18633}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16210 |{18634}>{$CPU.INTERRUPT.CRIT.MAX} |CPU interrupt time is too high (over {$CPU.INTERRUPT.CRIT.MAX}% for 5m) | |0 |2 |"The CPU Interrupt Time in the last 5 minutes exceeds {$CPU.INTERRUPT.CRIT.MAX}%."&eol;The Processor Information\% Interrupt Time is the time the processor spends receiving and servicing &eol;hardware interrupts during sample intervals. This value is an indirect indicator of the activity of &eol;devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication &eol;lines, network interface cards and other peripheral devices. This is an easy way to identify a potential &eol;hardware failure. This should never be higher than 20%. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16211 |{18635}>{$CPU.PRIV.CRIT.MAX} |CPU privileged time is too high (over {$CPU.PRIV.CRIT.MAX}% for 5m) | |0 |2 |The CPU privileged time in the last 5 minutes exceeds {$CPU.PRIV.CRIT.MAX}%. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16215 |{18640}<{$MEM.PAGE_TABLE_CRIT.MIN} |Number of free system page table entries is too low (less {$MEM.PAGE_TABLE_CRIT.MIN} for 5m) | |0 |2 |The Memory Free System Page Table Entries is less than {$MEM.PAGE_TABLE_CRIT.MIN} for 5 minutes. If the number is less than 5,000, there may well be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16216 |{18641}>{$MEM.PAGE_SEC.CRIT.MAX} |The Memory Pages/sec is too high (over {$MEM.PAGE_SEC.CRIT.MAX} for 5m) | |0 |2 |The Memory Pages/sec in the last 5 minutes exceeds {$MEM.PAGE_SEC.CRIT.MAX}. If the value is greater than 1,000, as a result of excessive paging, there may be a memory leak. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16217 |{18642}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16218 |{18643}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16231 |{18659}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18660}-{18661})<5G or {18662}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16232 |{18663}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18664}-{18665})<10G or {18666}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16250 |{18711}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16251 |{18712}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16254 |{18715}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16255 |{18716}=0 |RabbitMQ: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16256 |{18717}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16257 |{18718}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16258 |{18719}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16259 |{18720}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16264 |{18726}>0 |RabbitMQ: Number of network partitions is too high (more than 0 for 5m) | |0 |2 |https://www.rabbitmq.com/partitions.html#detecting |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16265 |{18727}=0 |RabbitMQ: Node is not running | |0 |3 |RabbitMQ node is not running |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16268 |{18730}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16269 |{18731}=0 |RabbitMQ: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16270 |{18732}>{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |RabbitMQ: Service response time is too high (over {$RABBITMQ.RESPONSE_TIME.MAX.WARN}s for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16271 |{18733}>{$RABBITMQ.MESSAGES.MAX.WARN:"{#QUEUE}"} |RabbitMQ: Too many messages in queue (over {$RABBITMQ.MESSAGES.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16272 |{18734}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18734}<65 |0 | |0 | |0 |
+ROW |16273 |{18735}>75 |Zabbix alert syncer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{18735}<65 |0 | |0 | |0 |
+ROW |16287 |{18753}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16289 |{18756}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16439 |{19090}=1 |System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16440 |{19091}=1 |System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16442 |{19093}=1 |RabbitMQ: Failed to fetch overview data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16443 |{19094}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16444 |{19095}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16445 |{19096}=1 and {19097}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16446 |{19098}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16447 |{19099}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16448 |{19100}=1 |RabbitMQ: Failed to fetch nodes data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16449 |{19101}=0 |RabbitMQ: Node healthcheck failed | |0 |3 |https://www.rabbitmq.com/monitoring.html#health-checks |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16450 |{19102}=1 and {19103}>0 |RabbitMQ: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |RabbitMQ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16451 |{19104}=1 |RabbitMQ: Memory alarm (Memory usage threshold has been reached) | |0 |3 |https://www.rabbitmq.com/memory.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16452 |{19105}=1 |RabbitMQ: Free disk space alarm (Free space threshold has been reached) | |0 |3 |https://www.rabbitmq.com/disk-alarms.html |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16459 |{19113}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19114}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16460 |{19115}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19116}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16461 |{19117}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Ambient: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19118}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16462 |{19119}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19120}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16463 |{19121}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19122}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16464 |{19123}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Front: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19124}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16465 |{19125}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19126}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16466 |{19127}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19128}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16467 |{19129}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.Rear: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19130}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16468 |{19131}>{$TEMP_WARN:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19132}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16469 |{19133}>{$TEMP_CRIT:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19134}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16470 |{19135}<{$TEMP_CRIT_LOW:"Ambient"} |{#SENSOR_LOCATION}.IOH: Temperature is too low: <{$TEMP_CRIT_LOW:"Ambient"} | |0 |3 | |NULL |0 |2 |1 |{19136}>{$TEMP_CRIT_LOW:"Ambient"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16471 |{19137}>{$TEMP_WARN:"CPU"} |{#SENSOR_LOCATION}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19138}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16472 |{19139}>{$TEMP_CRIT:"CPU"} |{#SENSOR_LOCATION}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19140}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16473 |{19141}<{$TEMP_CRIT_LOW:"CPU"} |{#SENSOR_LOCATION}: Temperature is too low: <{$TEMP_CRIT_LOW:"CPU"} | |0 |3 | |NULL |0 |2 |1 |{19142}>{$TEMP_CRIT_LOW:"CPU"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16474 |{19143}=1 |{#PSU_LOCATION}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16475 |{19144}=1 |{#PSU_LOCATION}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16476 |{19145}=1 or {19146}=1 or {19147}=1 or {19148}=1 |{#UNIT_LOCATION}: System status is in critical state | |0 |4 |Please check the device for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16477 |{19149}=1 or {19150}=1 or {19151}=1 or {19152}=1 or {19153}=1 |{#UNIT_LOCATION}: System status is in warning state | |0 |2 |Please check the device for warnings |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16478 |{19154}=1 and {19155}>0 |{#UNIT_LOCATION}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16479 |{19156}=1 |{#FAN_LOCATION}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16480 |{19157}=1 |{#FAN_LOCATION}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16481 |{19158}=1 |{#DISK_LOCATION}: Physical disk failed | |0 |4 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
+ROW |16482 |{19159}=1 or {19160}=1 |{#DISK_LOCATION}: Physical disk error | |0 |3 |Please check physical disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current status: {ITEM.LASTVALUE1} |0 |
+ROW |16483 |{19161}=1 |{#VDISK_LOCATION}: Virtual disk is not in OK state | |0 |2 |Please check virtual disk for warnings or errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16484 |{19162}=1 |{#DISKARRAY_LOCATION}: Disk array controller is in critical state | |0 |4 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16485 |{19163}=1 |{#DISKARRAY_LOCATION}: Disk array controller is in warning state | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16486 |{19164}=1 |{#DISKARRAY_LOCATION}: Disk array controller is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16487 |{19165}=1 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is in critical state! | |0 |3 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16488 |{19166}=1 |{#DISKARRAY_CACHE_LOCATION}: Disk array cache controller battery is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16491 |{19171}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16492 |{19172}=1 and {19173}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16494 |{19175}=1 |#{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16495 |{19176}=1 |#{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16496 |{19177}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16498 |{19179}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16504 |{19185}>{$TEMP_WARN:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above warning threshold: >{$TEMP_WARN:"Chassis"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19186}<{$TEMP_WARN:"Chassis"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16505 |{19187}>{$TEMP_CRIT:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is above critical threshold: >{$TEMP_CRIT:"Chassis"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{19188}<{$TEMP_CRIT:"Chassis"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16506 |{19189}<{$TEMP_CRIT_LOW:"Chassis"} |Chassis #{#SNMPINDEX}: Temperature is too low: <{$TEMP_CRIT_LOW:"Chassis"} | |0 |3 | |NULL |0 |2 |1 |{19190}>{$TEMP_CRIT_LOW:"Chassis"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16507 |{19191}=1 and {19192}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16508 |{19193}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16514 |{19202}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16515 |{19203}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16521 |{19209}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16523 |{19211}=1 and {19212}>0 |#{#SNMPVALUE}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16524 |{19213}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16525 |{19214}=1 and {19215}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16527 |{19217}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16529 |{19219}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16530 |{19220}=1 and {19221}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16532 |{19223}=1 and {19224}>0 |{#ENT_NAME}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16533 |{19225}>{$CPU.UTIL.CRIT} |{#MODULE_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16535 |{19227}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16537 |{19229}>{$CPU.UTIL.CRIT} |{#ENT_NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16538 |{19230}=1 and {19231}>0 |{#ENT_NAME}: Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16540 |{19233}=1 and {19234}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16541 |{19235}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16543 |{19237}=1 and {19238}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16545 |{19240}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16546 |{19241}>{$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"} and&eol;(({19242}-{19243})<5G or {19244}<1d) |Disk-{#SNMPINDEX}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16547 |{19245}>{$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"} and&eol;(({19246}-{19247})<10G or {19248}<1d) |Disk-{#SNMPINDEX}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"Disk-{#SNMPINDEX}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16548 |{19249}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16549 |{19250}=1 and {19251}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16551 |{19253}>{$TEMP_WARN:""} |Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19254}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16552 |{19255}>{$TEMP_CRIT:""} |Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{19256}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16553 |{19257}<{$TEMP_CRIT_LOW:""} |Temperature is too low: <{$TEMP_CRIT_LOW:""} | |0 |3 | |NULL |0 |0 |1 |{19258}>{$TEMP_CRIT_LOW:""}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16554 |{19259}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16555 |{19260}=1 and {19261}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16557 |{19263}=1 |{#SNMPINDEX}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16558 |{19264}=1 |{#SNMPINDEX}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16559 |{19265}>{$CPU.UTIL.CRIT} |#{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16561 |{19267}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16563 |{19269}/{19270}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19271}>0&eol;and {19272}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
+ROW |16569 |{19287}/{19288}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19289}>0&eol;and {19290}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
+ROW |16573 |{19299}/{19300}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19301}>0&eol;and {19302}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
+ROW |16575 |{19305}/{19306}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19307}>0&eol;and {19308}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 |
+ROW |16577 |{19313}=1 and {19314}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16579 |{19316}=1 and {19317}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16582 |{19322}=1 and {19323}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16584 |{19326}=1 and {19327}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16585 |{19328}=1 and {19329}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16587 |{19332}=1 and {19333}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16593 |{19344}=1 and {19345}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16624 |{19406}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |16630 |{19412}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19413}-{19414})<5G or {19415}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16631 |{19416}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19417}-{19418})<10G or {19419}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |16644 |{19456}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16645 |{19457}=1 and {19458}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16646 |{19459}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16647 |{19460}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16648 |{19461}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16649 |{19462}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16650 |{19463}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16651 |{19464}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16652 |{19465}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16653 |{19466}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16654 |{19467}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16655 |{19468}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16656 |{19469}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16657 |{19470}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16658 |{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16659 |{19472}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16660 |{19473}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16661 |{19474}<10m |HAProxy: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16662 |{19475}=1 and {19476}>0 |HAProxy: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |HAProxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16665 |{19479}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16666 |{19480}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16667 |{19481}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16668 |{19482}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16669 |{19483}=0 |HAProxy backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16670 |{19484}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16671 |{19485}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16672 |{19486}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16673 |{19487}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16674 |{19488}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16675 |{19489}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16676 |{19490}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16677 |{19491}=0 |HAProxy {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16678 |{19492}=0 or&eol; {19493}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16679 |{19494}=0 or&eol; {19495}=1 |Nginx: Failed to fetch stub status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16680 |{19496} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |Database {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16681 |{19497}/{19498}*100>{$REDIS.CLIENTS.PRC.MAX.WARN} |Redis: Total number of connected clients is too high (over {$REDIS.CLIENTS.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of clients reaches the value of the "maxclients" parameter, new connections will be rejected.&eol;&eol;https://redis.io/topics/clients#maximum-number-of-clients |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16682 |{19499}=1 and {19500}>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |16683 |{19501}=1 |Redis: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16684 |{19502}>{$REDIS.MEM.FRAG_RATIO.MAX.WARN} |Redis: Memory fragmentation ratio is too high (over {$REDIS.MEM.FRAG_RATIO.MAX.WARN} in 15m) | |0 |2 |This ratio is an indication of memory mapping efficiency:&eol; — Value over 1.0 indicate that memory fragmentation is very likely. Consider restarting the Redis server so the operating system can recover fragmented memory, especially with a ratio over 1.5.&eol; — Value under 1.0 indicate that Redis likely has insufficient memory available. Consider optimizing memory usage or adding more RAM.&eol;&eol;Note: If your peak memory usage is much higher than your current memory usage, the memory fragmentation ratio may be unreliable.&eol;&eol;https://redis.io/topics/memory-optimization |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16685 |{19503}=0 |Redis: Last AOF write operation failed | |0 |2 |Detailed information about persistence: https://redis.io/topics/persistence |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16686 |{19504}=0 |Redis: Last RDB save operation failed | |0 |2 |Detailed information about persistence: https://redis.io/topics/persistence |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16687 |{19505}=0 |Redis: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16688 |{19506}=1 |Redis: Number of slaves has changed | |0 |1 |Redis number of slaves has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |16689 |{19507}=1 and {19508}>0 |Redis: Replication role has changed (new role: {ITEM.VALUE}) | |0 |2 |Redis replication role has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |16690 |{19509}=1 and {19510}>0 |Redis: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Redis version has changed. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |16691 |{19511}<10m |Redis: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16692 |{19512}>{$REDIS.SLOWLOG.COUNT.MAX.WARN} |Redis: Too many entries in the slowlog (over {$REDIS.SLOWLOG.COUNT.MAX.WARN} per second in 5m) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16693 |{19513}>0 |Redis: Connections are rejected | |0 |4 |The number of connections has reached the value of "maxclients".&eol;&eol;https://redis.io/topics/clients |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16694 |{19514}=0 |Redis: Process is not running | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16696 |{19517}>{$REDIS.REPL.LAG.MAX.WARN} |Redis: Replication lag with master is too high (over {$REDIS.REPL.LAG.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16710 |{19548} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19549} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16713 |{19552}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16717 |{19556}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16719 |{19558}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16720 |{19559}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16721 |{19560}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16723 |{19562}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16724 |{19563}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16725 |{19564}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16726 |{19565}=1 and {19566}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16727 |{19567}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16728 |{19568}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16729 |{19569}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16730 |{19570}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16739 |{19580}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16740 |{19581}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16741 |{19582}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16742 |{19583}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16743 |{19584}=1 |Docker: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16744 |{19585}=0 |Docker: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16745 |{19586}=1 and {19587}>0 |Docker: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Docker version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16746 |{19588}>0 and {19589}=0 |Container {#NAME}: Container has been stopped with error code | |0 |3 | |NULL |0 |2 |0 | |0 | |1 |Exit code: {ITEM.LASTVALUE1} |0 |
+ROW |16747 |{19590}=1 and {19591}>0 |Container {#NAME}: An error has occurred in the container | |0 |2 |Container {#NAME} has an error. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16748 |{19592}/{19593}*100>{$MEMCACHED.MEM.PUSED.MAX.WARN} |Memcached: Memory usage is too high (over {$MEMCACHED.MEM.PUSED.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16749 |{19594}/{19595}*100>{$MEMCACHED.CONN.PRC.MAX.WARN} |Memcached: Total number of connected clients is too high (over {$MEMCACHED.CONN.PRC.MAX.WARN}% in 5m) | |0 |2 |When the number of connections reaches the value of the "max_connections" parameter, new connections will be rejected. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16750 |{19596}>{$MEMCACHED.CONN.QUEUED.MAX.WARN} |Memcached: Too many queued connections (over {$MEMCACHED.CONN.QUEUED.MAX.WARN} in 5m) | |0 |2 |The max number of connections is reachedand and a new connection had to wait in the queue as a result. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16751 |{19597}>{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |Memcached: Too many throttled connections (over {$MEMCACHED.CONN.THROTTLED.MAX.WARN} in 5m) | |0 |2 |Number of times a client connection was throttled is too hight.&eol;When sending GETs in batch mode and the connection contains too many requests (limited by -R parameter) the connection might be throttled to prevent starvation. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16752 |{19598}=1 |Memcached: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16753 |{19599}=0 |Memcached: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16754 |{19600}<10m |Memcached: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16755 |{19601}=1 and {19602}>0 |Memcached: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Memcached version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16756 |{19603}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16757 |{19604}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16758 |{19605}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16759 |{19606}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16760 |{19607}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16761 |{19608}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16762 |{19609}=1 and {19610}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16763 |{19611}>{$MYSQL.REPL_LAG.MAX.WARN} |MySQL: Replication lag is too high (over {$MYSQL.REPL_LAG.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16764 |{19612}=1 |MySQL: The slave I/O thread is not running | |0 |3 |Whether the I/O thread for reading the master's binary log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16765 |{19613}=1 |MySQL: The slave I/O thread is not connected to a replication master | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16766 |{19614}=1 |MySQL: The SQL thread is not running | |0 |2 |Whether the SQL thread for executing events in the relay log is running. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16767 |{19615}=1 |IPMI: {#SENSOR_ID} value has changed | |0 |1 |The trigger is informing about changes in a state of the discrete IPMI sensor. A problem generated by this trigger can be manually closed. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16768 |{19616}<{#SENSOR_LO_WARN} |IPMI: {#SENSOR_ID} value is below non-critical low (less than {#SENSOR_LO_WARN} for 5m) | |0 |2 |The trigger is informing that a value less than the lower non-critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16769 |{19617}<{#SENSOR_LO_CRIT} |IPMI: {#SENSOR_ID} value is below critical low (less than {#SENSOR_LO_CRIT} for 5m) | |0 |4 |The trigger is informing that a value less than the lower critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16770 |{19618}<{#SENSOR_LO_DISAST} |IPMI: {#SENSOR_ID} value is below non-recoverable low (less than {#SENSOR_LO_DISAST} for 5m) | |0 |5 |The trigger is informing that a value less than the lower non-recoverable threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16771 |{19619}>{#SENSOR_HI_WARN} |IPMI: {#SENSOR_ID} value is above non-critical high (greater than {#SENSOR_HI_WARN} for 5m) | |0 |2 |The trigger is informing that a value higher than the upper non-critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16772 |{19620}>{#SENSOR_HI_CRIT} |IPMI: {#SENSOR_ID} value is above critical high (greater than {#SENSOR_HI_CRIT} for 5m) | |0 |4 |The trigger is informing that a value higher than the upper critical threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16773 |{19621}>{#SENSOR_HI_DISAST} |IPMI: {#SENSOR_ID} value is above non-recoverable high (greater than {#SENSOR_HI_DISAST} for 5m) | |0 |5 |The trigger is informing that a value higher than the upper non-recoverable threshold has been reached. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16774 |({19622}-{19623})/({19624}-1)>{19623} |ES: Cluster does not have enough space for resharding | |0 |4 |There is not enough disk space for index resharding. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16775 |{19625}>0 |ES: Cluster has the initializing shards | |0 |3 |The cluster has the initializing shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16776 |{19626}<0 |ES: The number of nodes within the cluster has decreased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16777 |{19627}>0 |ES: The number of nodes within the cluster has increased | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16778 |{19628}=1 |ES: Health is YELLOW | |0 |3 |All primary shards are assigned, but one or more replica shards are unassigned. &eol;If a node in the cluster fails, some data could be unavailable until that node is repaired. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16779 |{19629}=2 |ES: Health is RED | |0 |4 |One or more primary shards are unassigned, so some data is unavailable. &eol;This can occur briefly during cluster startup as primary shards are assigned. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16780 |{19630}=255 |ES: Health is UNKNOWN | |0 |4 |The health status of the cluster is unknown or cannot be obtained. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16781 |{19631}>0 |ES: Cluster has the unassigned shards | |0 |3 |The cluster has the unassigned shards longer than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16782 |{19632}=2 |ES: Cluster has only two master nodes | |0 |5 |The cluster has only two nodes with a master role and will be unavailable if one of them breaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16783 |{19633}<10m |ES: Cluster has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16784 |{19634}>{$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} |ES: Service response time is too high (over {$ELASTICSEARCH.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 |The performance of the TCP service is very low. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16785 |{19635}=0 |ES: Service is down | |0 |3 |The service is unavailable or does not accept TCP connections. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16786 |{19636}>{$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Flush latency is too high (over {$ELASTICSEARCH.FLUSH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If you see this metric increasing steadily, it may indicate a problem with slow disks; this problem may escalate &eol;and eventually prevent you from being able to add new information to your index. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16787 |{19637}>{$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN} |ES {#ES.NODE}: Indexing latency is too high (over {$ELASTICSEARCH.INDEXING_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If the latency is increasing, it may indicate that you are indexing too many documents at the same time (Elasticsearch’s documentation &eol;recommends starting with a bulk indexing size of 5 to 15 megabytes and increasing slowly from there). |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16788 |{19638}>{$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN} |ES {#ES.NODE}: Fetch latency is too high (over {$ELASTICSEARCH.FETCH_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |The fetch phase should typically take much less time than the query phase. If you notice this metric consistently increasing, &eol;this could indicate a problem with slow disks, enriching of documents (highlighting the relevant text in search results, etc.), &eol;or requesting too many results. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16789 |{19639}>{$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN} |ES {#ES.NODE}: Query latency is too high (over {$ELASTICSEARCH.QUERY_LATENCY.MAX.WARN}ms for 5m) | |0 |2 |If latency exceeds a threshold, look for potential resource bottlenecks, or investigate whether you need to optimize your queries. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16790 |{19640}>{$ELASTICSEARCH.HEAP_USED.MAX.WARN} |ES {#ES.NODE}: Percent of JVM heap in use is high (over {$ELASTICSEARCH.HEAP_USED.MAX.WARN}% for 1h) | |0 |2 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16791 |{19641}>{$ELASTICSEARCH.HEAP_USED.MAX.CRIT} |ES {#ES.NODE}: Percent of JVM heap in use is critical (over {$ELASTICSEARCH.HEAP_USED.MAX.CRIT}% for 1h) | |0 |4 |This indicates that the rate of garbage collection isn’t keeping up with the rate of garbage creation. &eol;To address this problem, you can either increase your heap size (as long as it remains below the recommended &eol;guidelines stated above), or scale out the cluster by adding more nodes. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16792 |{19642}<10m |ES {#ES.NODE}: Node {#ES.NODE} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16793 |{19643}>0 |ES {#ES.NODE}: Refresh thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the refresh thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16794 |{19644}>0 |ES {#ES.NODE}: Search thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the search thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16795 |{19645}>0 |ES {#ES.NODE}: Write thread pool executor has the rejected tasks (for 5m) | |0 |2 |The number of tasks rejected by the write thread pool executor is over 0 for 5m. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16796 |{19646}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16797 |{19647}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16798 |{19648}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16799 |{19649}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16800 |{19650}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16801 |{19651}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16802 |{19652}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16803 |{19653}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16804 |{19654}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16805 |{19655}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16806 |{19656}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16807 |{19657}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16808 |{19658}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16809 |{19659}>{$HAPROXY.RESPONSE_TIME.MAX.WARN} |HAProxy: Service response time is too high (over {$HAPROXY.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16810 |{19660}=0 |HAProxy: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16811 |{19661}>{$HAPROXY.BACK_ERESP.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Number of responses with error is more than {$HAPROXY.BACK_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on backend, whose responses yielded an error, is more than {$HAPROXY.BACK_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16812 |{19662}>{$HAPROXY.BACK_QCUR.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests on backend unassigned in queue is more than {$HAPROXY.BACK_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16813 |{19663}>{$HAPROXY.BACK_QTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average time spent in queue is more than {$HAPROXY.BACK_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16814 |{19664}>{$HAPROXY.BACK_RTIME.MAX.WARN} |HAProxy TCP Backend {#PXNAME}: Average response time is more than {$HAPROXY.BACK_RTIME.MAX.WARN} for 5m | |0 |2 |Average backend response time (in ms) for the last 1,024 requests is more than {$HAPROXY.BACK_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16815 |{19665}=0 |HAProxy TCP Backend {#PXNAME}: Server is DOWN | |0 |3 |Backend is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16816 |{19666}>{$HAPROXY.FRONT_DREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of requests denied is more than {$HAPROXY.FRONT_DREQ.MAX.WARN} for 5m | |0 |2 |Number of requests denied due to security concerns (ACL-restricted) is more than {$HAPROXY.FRONT_DREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16817 |{19667}>{$HAPROXY.FRONT_EREQ.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN} for 5m | |0 |2 |Number of request errors is more than {$HAPROXY.FRONT_EREQ.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16818 |{19668}>{$HAPROXY.FRONT_SUTIL.MAX.WARN} |HAProxy TCP Frontend {#PXNAME}: Session utilization is more than {$HAPROXY.FRONT_SUTIL.MAX.WARN}% for 5m | |0 |2 |Alerting on this metric is essential to ensure your server has sufficient capacity to handle all concurrent sessions. Unlike requests, upon reaching the session limit HAProxy will deny additional clients until resource consumption drops. Furthermore, if you find your session usage percentage to be hovering above 80%, it could be time to either modify HAProxy’s configuration to allow more sessions, or migrate your HAProxy server to a bigger box. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16819 |{19669}>{$HAPROXY.SERVER_ERESP.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Number of responses with error is more than {$HAPROXY.SERVER_ERESP.MAX.WARN} for 5m | |0 |2 |Number of requests on server, whose responses yielded an error, is more than {$HAPROXY.SERVER_ERESP.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16820 |{19670}>{$HAPROXY.SERVER_QCUR.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN} for 5m | |0 |2 |Current number of requests unassigned in queue is more than {$HAPROXY.SERVER_QCUR.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16821 |{19671}>{$HAPROXY.SERVER_QTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average time spent in queue is more than {$HAPROXY.SERVER_QTIME.MAX.WARN} for 5m | |0 |2 |Average time spent in queue (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_QTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16822 |{19672}>{$HAPROXY.SERVER_RTIME.MAX.WARN} |HAProxy TCP {#PXNAME} {#SVNAME}: Average response time is more than {$HAPROXY.SERVER_RTIME.MAX.WARN} for 5m | |0 |2 |Average server response time (in ms) for the last 1,024 requests is more than {$HAPROXY.SERVER_RTIME.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16823 |{19673}=0 |HAProxy TCP {#PXNAME} {#SVNAME}: Server is DOWN | |0 |2 |Server is not available. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16824 |{19674}>{$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} |ClickHouse: Too many distributed files to insert (over {$CLICKHOUSE.DELAYED.FILES.DISTRIBUTED.COUNT.MAX.WARN} for 5 min) | |0 |2 |"Clickhouse servers and <remote_servers> in config.xml&eol;https://clickhouse.tech/docs/en/operations/table_engines/distributed/" |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16825 |{19675}>{$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN} |ClickHouse: Too many throttled insert queries (over {$CLICKHOUSE.DELAYED.INSERTS.MAX.WARN) for 5 min) | |0 |2 |Clickhouse have INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree, please decrease INSERT frequency |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16826 |{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9 |ClickHouse: Too many MergeTree parts (over 90% of {$CLICKHOUSE.PARTS.PER.PARTITION.WARN}) | |0 |2 |"Descease INSERT queries frequency.&eol;Clickhouse MergeTree table engine split each INSERT query to partitions (PARTITION BY expression) &eol;and add one or more PARTS per INSERT inside each partition, &eol;after that background merge process run, and when you have too much unmerged parts inside partition, &eol;SELECT queries performance can significate degrade, so clickhouse try delay insert, or abort it" |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16827 |{19677}>{$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} |ClickHouse: Too many network errors (over {$CLICKHOUSE.NETWORK.ERRORS.MAX.WARN} in 5m) | |0 |2 |Number of errors (timeouts and connection failures) during query execution, background pool tasks and DNS cache update is too high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16829 |{19679}>{$CLICKHOUSE.QUERY_TIME.MAX.WARN} |ClickHouse: There are queries running more than {$CLICKHOUSE.QUERY_TIME.MAX.WARN} seconds | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16830 |{19680}>{$CLICKHOUSE.REPLICA.MAX.WARN} |ClickHouse: Replication lag is too high (over {$CLICKHOUSE.REPLICA.MAX.WARN} sec for 5min) | |0 |2 |"When replica have too much lag, it can be skipped from Distributed SELECT Queries without errors &eol;and you will have wrong query results." |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16831 |{19681}=1 and {19682}>0 |ClickHouse: Configuration has been changed | |0 |1 |ClickHouse configuration has been changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16832 |{19683}<10m |ClickHouse: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16833 |{19684}=1 |ClickHouse: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16834 |{19685}=1 and {19686}>0 |ClickHouse: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |ClickHouse version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16835 |{19687}>1 |ClickHouse: Too many ZooKeeper sessions opened | |0 |2 |"Number of sessions (connections) to ZooKeeper. &eol;Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16836 |{19688} < {19689} |ClickHouse: {#DB}.{#TABLE}: Number of active replicas less than number of total replicas | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16837 |{19690}=1 |ClickHouse: {#DB}.{#TABLE} Replica is readonly | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16838 |{19691}=1 |ClickHouse: {#DB}.{#TABLE} Replica session is expired | |0 |2 |This mode is turned on if the config doesn’t have sections with ZooKeeper, if an unknown error occurred when reinitializing sessions in ZooKeeper, and during session reinitialization in ZooKeeper. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16839 |{19692} > {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} |ClickHouse: {#DB}.{#TABLE}: Difference between log_max_index and log_pointer is too high (More than {$CLICKHOUSE.LOG_POSITION.DIFF.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16840 |{19693}>{$CLICKHOUSE.QUEUE.SIZE.MAX.WARN:"{#TABLE}"} |ClickHouse: {#DB}.{#TABLE}: Too many operations in queue (over {$CLICKHOUSE.QUEUE.SIZE.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16841 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19694}=2 and {19695}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19694}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16863 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19738}=2 and {19739}=1) |Interface {#IFDESCR}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19738}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16866 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19744}=2 and {19745}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19744}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16871 |{19756}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{19757}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |16883 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19786}=2 and {19787}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19786}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16886 |{19792}<10m |Apache: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16887 |{19793}=1 and {19794}>0 |Apache: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Apache version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16888 |{19795}=1 |Apache: Failed to fetch status page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16889 |{19796}/{19797}*100>{$ETCD.OPEN.FDS.MAX.WARN} |Etcd: Current number of open files is too high (over {$ETCD.OPEN.FDS.MAX.WARN}% for 5m) | |0 |2 |"Heavy file descriptor usage (i.e., near the process’s file descriptor limit) indicates a potential file descriptor exhaustion issue. &eol;If the file descriptors are exhausted, etcd may panic because it cannot create new WAL files." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16890 |{19798}=1 and {19799}>0 |Etcd: Cluster version has changed (new version: {ITEM.VALUE}) | |0 |1 |Etcd version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16891 |{19800}=0 |Etcd: Member has no leader | |0 |3 |"If a member does not have a leader, it is totally unavailable." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16892 |{19801}=0 |Etcd: Node healthcheck failed | |0 |3 |https://etcd.io/docs/v3.4.0/op-guide/monitoring/#health-check |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |16893 |{19802}>{$ETCD.HTTP.FAIL.MAX.WARN} |Etcd: Too many HTTP requests failures (over {$ETCD.HTTP.FAIL.MAX.WARN} for 5m)' | |0 |2 |"Too many reqvests failed on etcd instance with 5xx HTTP code" |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16894 |{19803}=1 |Etcd: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16895 |{19804}>{$ETCD.LEADER.CHANGES.MAX.WARN} |Etcd: Instance has seen too many leader changes (over {$ETCD.LEADER.CHANGES.MAX.WARN} for 15m)' | |0 |2 |Rapid leadership changes impact the performance of etcd significantly. It also signals that the leader is unstable, perhaps due to network connectivity issues or excessive load hitting the etcd cluster. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16896 |{19805}>{$ETCD.PROPOSAL.FAIL.MAX.WARN} |Etcd: Too many proposal failures (over {$ETCD.PROPOSAL.FAIL.MAX.WARN} for 5m)' | |0 |2 |"Normally related to two issues: temporary failures related to a leader election or &eol;longer downtime caused by a loss of quorum in the cluster." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16897 |{19806}>{$ETCD.PROPOSAL.PENDING.MAX.WARN} |Etcd: Too many proposals are queued to commit (over {$ETCD.PROPOSAL.PENDING.MAX.WARN} for 5m)' | |0 |2 |"Rising pending proposals suggests there is a high client load or the member cannot commit proposals." |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16898 |{19807}=1 and {19808}>0 |Etcd: Server version has changed (new version: {ITEM.VALUE}) | |0 |1 |Etcd version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16899 |{19809}<10m |Etcd: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16900 |{19810}=0 |Etcd: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16901 |{19811}>{$ETCD.GRPC.ERRORS.MAX.WARN} |Etcd: Too many failed gRPC requests with code: {#GRPC.CODE} (over {$ETCD.GRPC.ERRORS.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |1 |
+ROW |16902 |{19812}=0 |IIS: Port {$IIS.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16903 |{19813}<10m |IIS: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16904 |{19814}<>0 |IIS: The World Wide Web Publishing Service (W3SVC) is not running | |0 |4 |The World Wide Web Publishing Service (W3SVC) is not in running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16905 |{19815}<>0 |IIS: Windows process Activation Service (WAS) is not the running | |0 |4 |Windows Process Activation Service (WAS) is not in the running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16906 |{19816}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} is not in Running state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16907 |{19817}<10m |IIS: {#APPPOOL} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16908 |{19818}=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16909 |{19819}>{$IIS.QUEUE.MAX.WARN} |IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16910 |{19820}=0 |IIS: Port {$IIS.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16911 |{19821}<10m |IIS: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16912 |{19822}<>0 |IIS: The World Wide Web Publishing Service (W3SVC) is not running | |0 |4 |The World Wide Web Publishing Service (W3SVC) is not in running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16913 |{19823}<>0 |IIS: Windows process Activation Service (WAS) is not the running | |0 |4 |Windows Process Activation Service (WAS) is not in the running state. IIS cannot start. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16914 |{19824}<>3 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} is not in Running state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16915 |{19825}<10m |IIS: {#APPPOOL} has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16916 |{19826}=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16917 |{19827}>{$IIS.QUEUE.MAX.WARN} |IIS: Request queue of {#APPPOOL} is too large (over {$IIS.QUEUE.MAX.WARN}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16918 |{19828}=1 and {19829}>0 |Zabbix version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zabbix proxy version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16919 |{19830}=1 and {19831}>0 |Zabbix version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zabbix server version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16920 |{19832}=0 or {19833} = 0 |ClickHouse: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16921 |{19834}=0 |ClickHouse: Port {$CLICKHOUSE.PORT} is unavaliable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16925 |{19841} * 100 > 10 * {19842} |MSSQL: Too frequently pointers using | |0 |2 |Rows with varchar columns can experience expansion when varchar values are updated with a longer string. In the case where the row cannot fit in the existing page, the row migrates and access to the row will traverse a pointer. This only happens on heaps (tables without clustered indexes). Evaluate clustered index for heap tables. In cases where clustered indexes cannot be used, drop non-clustered indexes, build a clustered index to reorg pages and rows, drop the clustered index, then recreate non-clustered indexes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16927 |{19845}>{$MSSQL.AVERAGE_WAIT_TIME.MAX} |MSSQL: Total average wait time for locks is high (over {$MSSQL.AVERAGE_WAIT_TIME.MAX}ms for 5m) | |0 |2 |An average wait time longer than 500ms may indicate excessive blocking. This value should generally correlate to 'Lock Waits/sec' and move up or down with it accordingly. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16928 |{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |Too low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16929 |{19847}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |MSSQL: Percentage of the buffer cache efficiency is low (below {$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN}% for 5m) | |0 |2 |Low buffer cache hit ratio. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16930 |{19848}>{$MSSQL.FREE_LIST_STALLS.MAX} |MSSQL: Number of rps waiting for a free page is high (over {$MSSQL.FREE_LIST_STALLS.MAX} for 5m) | |0 |2 |Some requests have to wait for a free page. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16931 |{19849}>{$MSSQL.LAZY_WRITES.MAX} |MSSQL: Number of buffers written per second by the lazy writer is high (over {$MSSQL.LAZY_WRITES.MAX} for 5m) | |0 |2 |The number of buffers written per second by the buffer manager's lazy writer exceeds the threshold. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16932 |{19850}>{$MSSQL.LOCK_REQUESTS.MAX} |MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m) | |0 |2 |The number of new locks and lock conversions per second requested from the lock manager is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16933 |{19851}>{$MSSQL.LOCK_TIMEOUTS.MAX} |MSSQL: Total lock requests per second that timed out is high (over {$MSSQL.LOCK_TIMEOUTS.MAX} for 5m) | |0 |2 |The total number of lock requests per second that timed out, including requests for NOWAIT locks is high. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16934 |{19852}>0 |MSSQL: Some blocking is occurring for 5m | |0 |3 |Values greater than zero indicate at least some blocking is occurring, while a value of zero can quickly eliminate blocking as a potential root-cause problem. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16935 |{19853}>{$MSSQL.DEADLOCKS.MAX} |MSSQL: Number of deadlock is high (over {$MSSQL.DEADLOCKS.MAX} for 5m) | |0 |3 |Too many deadlocks are occurring currently. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16936 |{19854}<{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |MSSQL: Page life expectancy is low (less {$MSSQL.PAGE_LIFE_EXPECTANCY.MIN}min for 15m) | |0 |4 |The page stays in the buffer pool without references of less time than the threshold value. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16937 |{19855}>{$MSSQL.PAGE_READS.MAX} |MSSQL: Number of physical database page reads per second is high (over {$MSSQL.PAGE_READS.MAX} for 5m) | |0 |2 |The physical database page reads are issued too frequently. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16938 |{19856}>{$MSSQL.PAGE_WRITES.MAX} |MSSQL: Number of physical database page writes per second is high (over {$MSSQL.PAGE_WRITES.MAX} for 5m) | |0 |2 |The physical database page writes are issued too frequently. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16939 |{19857}<10m |MSSQL: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16940 |{19858}=1 |MSSQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16941 |{19859}=1 and {19860}>0 |MSSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MSSQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |16942 |{19861}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m) | |0 |3 |Too many work files created per second to store temporary results for hash joins and hash aggregates. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16943 |{19862}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m) | |0 |3 |Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16944 |{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |A value less than 90% may indicate insufcient memory, since execution plans are being dropped, or may indicate, on 32-bit systems, the need for an upgrade to a 64-bit system |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16946 |{19865}=0 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health in progress | |0 |2 |The primary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16947 |{19866}=0 |MSSQL AG '{#GROUP_NAME}': Secondary replica recovery health in progress | |0 |2 |The secondary replica is in the synchronization process. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16949 |{19868}=1 |MSSQL AG '{#GROUP_NAME}': Some replicas unhealthy | |0 |4 |The synchronization health of some, but not all, availability replicas is healthy. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16950 |{19869}>{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Total wait time to flush the log is high (over {$MSSQL.LOG_FLUSH_WAIT_TIME.MAX:"{#DBNAME}"}ms for 5m) | |0 |2 |The wait time to flush the log is too long. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16951 |{19870}>{$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Number of commits waiting for the log flush is high (over {$MSSQL.LOG_FLUSH_WAITS.MAX:"{#DBNAME}"}/sec for 5m) | |0 |2 |Too many commits are waiting for the log flush. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16954 |{19873}>{$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Percent of log using is high (over {$MSSQL.PERCENT_LOG_USED.MAX:"{#DBNAME}"}% for 5m) | |0 |2 |There's not enough space left in the log. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16955 |{19874}>1 |MSSQL DB '{#DBNAME}': State is {ITEM.VALUE} | |0 |4 |The DB has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16956 |{19875}>0 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |2 |The local availability database has a non-working state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16957 |{19876}=0 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is Not healthy | |0 |4 |The synchronization state of the local availability database is NOT SYNCHRONIZING. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16958 |{19877}=1 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}': "{#DBNAME}" is Partially healthy | |0 |3 |A database on a synchronous-commit availability replica is considered partially healthy if synchronization state is SYNCHRONIZING. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16959 |{19878}>=0 and {19878}<=2 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |1 |The state of the mirror database and of the database mirroring session is "Suspended", "Disconnected from the other partner", or "Synchronizing". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16960 |{19879}=3 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |2 |The state of the mirror database and of the database mirroring session is "Pending Failover". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16961 |{19880}=5 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" is {ITEM.VALUE} | |0 |4 |The state of the mirror database and of the database mirroring session is "Not synchronized". The partners are not synchronized. A failover is not possible now. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16962 |{19881}=2 |MSSQL Mirroring '{#DBNAME}': "{#DBNAME}" Witness is disconnected | |0 |2 |The state of the witness in the database mirroring session of the database is "Disconnected". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16965 |{19888}=0 and {19889}=2 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is disconnected | |0 |2 |The response of an availability replica to the DISCONNECTED state depends on its role: &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; On a secondary replica, upon detecting that it is disconnected, the secondary replica attempts to reconnect to the primary replica. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16966 |{19890}=0 or {19890}=1 or {19890}=3 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |2 |The operational state of the replica in a given availability group is "Pending" or "Offline". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16967 |{19891}=4 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |3 |The operational state of the replica in a given availability group is "Failed". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16968 |{19892}=5 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is {ITEM.VALUE} | |0 |4 |The operational state of the replica in a given availability group is "Failed, no quorum". |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16969 |{19893}=0 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} Recovery in progress | |0 |1 |At least one joined database has a database state other than ONLINE. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16970 |{19894}=0 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is Not healthy | |0 |3 |At least one joined database is in the NOT SYNCHRONIZING state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16971 |{19895}=1 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_NAME}': {#REPLICA_NAME} is Partially healthy | |0 |2 |Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16972 |{19896}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16973 |{19897}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16974 |{19898}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16975 |{19899}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16976 |{19900}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16977 |{19901}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16978 |{19902}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16979 |{19903}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16980 |{19904}>{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |MySQL: Number of on-disk temporary tables created per second is high (over {$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16981 |{19905}>{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |MySQL: Number of temporary files created per second is high (over {$MYSQL.CREATED_TMP_FILES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16982 |{19906}>{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |MySQL: Number of internal temporary tables created per second is high (over {$MYSQL.CREATED_TMP_TABLES.MAX.WARN} for 5m) | |0 |2 |Possibly the application using the database is in need of query optimization. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16983 |{19907}=1 |MySQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16984 |{19908} > {$PG.CONN_TOTAL_PCT.MAX.WARN} |Connections sum: Total number of connections is too high (over {$PG.CONN_TOTAL_PCT.MAX.WARN} in 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16986 |{19910}=0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16987 |{19911} < 600 |PostgreSQL: Service has been restarted (uptime={ITEM.LASTVALUE}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |16988 |{19912} > {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Too many recovery conflicts (over {$PG.CONFLICTS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |3 |The primary and standby servers are in many ways loosely connected. Actions on the primary will have an effect on the standby. As a result, there is potential for negative interactions or conflicts between them.&eol;https://www.postgresql.org/docs/current/hot-standby.html#HOT-STANDBY-CONFLICT |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16989 |{19913} > {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} |DB {#DBNAME}: Deadlock occurred (over {$PG.DEADLOCKS.MAX.WARN:"{#DBNAME}"} in 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |16993 |{19917} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19918} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |16994 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19919}=2 and {19920}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19919}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17001 |{19931} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19932} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read/write request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} ms for 15m or write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} ms for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17002 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19933}=2 and {19934}=1) |Interface {#IFNAME}: Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{19933}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17005 |{19939} - {19940} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17009 |{19947}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17011 |{19949} - {19950} * 2 > {$CPU.QUEUE.CRIT.MAX} |CPU queue length is too high (over {$CPU.QUEUE.CRIT.MAX} for 5m) | |0 |2 |The CPU Queue Length in the last 5 minutes exceeds {$CPU.QUEUE.CRIT.MAX}. According to actual observations, PQL should not exceed the number of cores * 2. To fine-tune the conditions, use the macro {$CPU.QUEUE.CRIT.MAX }. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17015 |{19957}>{$VFS.DEV.UTIL.MAX.WARN} |{#DEVNAME}: Disk is overloaded (util > {$VFS.DEV.UTIL.MAX.WARN}% for 15m) | |0 |2 |The disk appears to be under heavy load |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17017 |{19959}=0 and {19960}>0 |Oracle: Port {$ORACLE.PORT} is unavailable | |0 |5 |The TCP port of the Oracle Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17022 |{19969}=1 and {19970}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17023 |{19971}=1 and {19972}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17029 |{19978}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17030 |{19979}=1 |Oracle: Failed to fetch info data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17032 |{19981}=1 and {19982}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17033 |{19983}=0 |Oracle: LISTENER process is not running | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17034 |{19984}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17035 |{19985}>{$ORACLE.ASM.USED.PCT.MAX.WARN} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m) | |0 |2 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17036 |{19986}>{$ORACLE.ASM.USED.PCT.MAX.HIGH} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m) | |0 |4 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17037 |{19987} = 0 and {19988} = 1 |Oracle Database '{#DBNAME}': Force logging is deactivated for DB with active Archivelog | |0 |2 |Force Logging mode - it is very important metric for Databases in 'ARCHIVELOG'. This feature allows to forcibly write all transactions to the REDO. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17038 |{19989}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17039 |{19990}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17040 |{19991}=1 |Oracle Database '{#DBNAME}': Role has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB role has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17041 |{19992}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17042 |{19993}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17043 |{19994}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17044 |{19995}=1 |Oracle TBS '{#TABLESPACE}': Tablespace status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle tablespace status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17050 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20010}<>2 and {20011}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{20010}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17058 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20038}<>2 and {20039}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:\"{#IFNAME}\"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important.&eol; No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status is different from Connected(2).&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{20038}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17063 |{20054}>{20055} |GarbageCollector: Concurrent Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17064 |{20056}>{20057} |GarbageCollector: Mark Sweep Compact in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17065 |{20058}>{20059} |GarbageCollector: PS Mark Sweep in fire fighting mode | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17066 |{20060}>({20061}*{$JMX.HEAP.MEM.USAGE.MAX}/100) |Memory: Heap memory usage more than {$JMX.HEAP.USAGE.MAX}% for {$JMX.HEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17067 |{20062}>({20063}*{$JMX.NONHEAP.MEM.USAGE.MAX}/100) |Memory: Non-Heap memory usage more than {$JMX.NONHEAP.MEM.USAGE.MAX}% for {$JMX.NONHEAP.MEM.USAGE.TIME} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17068 |{20064}>({20065}*{$JMX.MP.USAGE.MAX:"CMS Old Gen"}/100) |MemoryPool: CMS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Old Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17069 |{20066}>({20067}*{$JMX.MP.USAGE.MAX:"CMS Perm Gen"}/100) |MemoryPool: CMS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"CMS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"CMS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17070 |{20068}>({20069}*{$JMX.MP.USAGE.MAX:"Code Cache"}/100) |MemoryPool: Code Cache memory usage more than {$JMX.MP.USAGE.MAX:"Code Cache"}% for {$JMX.MP.USAGE.TIME:"Code Cache"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17071 |{20070}>({20071}*{$JMX.MP.USAGE.MAX:"Perm Gen"}/100) |MemoryPool: Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"Perm Gen"}% for {$JMX.MP.USAGE.TIME:"Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17072 |{20072}>({20073}*{$JMX.MP.USAGE.MAX:"PS Old Gen"}/100) |MemoryPool: PS Old Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Old Gen"}% for {$JMX.MP.USAGE.TIME:"PS Old Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17073 |{20074}>({20075}*{$JMX.MP.USAGE.MAX:"PS Perm Gen"}/100) |MemoryPool: PS Perm Gen memory usage more than {$JMX.MP.USAGE.MAX:"PS Perm Gen"}% for {$JMX.MP.USAGE.TIME:"PS Perm Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17074 |{20076}>({20077}*{$JMX.MP.USAGE.MAX:"Tenured Gen"}/100) |MemoryPool: Tenured Gen memory usage more than {$JMX.MP.USAGE.MAX:"Tenured Gen"}% for {$JMX.MP.USAGE.TIME:"Tenured Gen"} | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17075 |{20078}>({20079}*{$JMX.FILE.DESCRIPTORS.MAX}/100) |OperatingSystem: Opened file descriptor count more than {$JMX.FILE.DESCRIPTORS.MAX}% of maximum | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17076 |{20080}=1 |Compilation: {HOST.NAME} uses suboptimal JIT compiler | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17077 |{20081}>{$JMX.CPU.LOAD.MAX} |OperatingSystem: Process CPU Load more than {$JMX.CPU.LOAD.MAX}% for {$JMX.CPU.LOAD.TIME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+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 |17085 |{20089}<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 |17089 |{20096}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17090 |{20097}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17091 |{20098}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17092 |{20099}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17093 |{20100}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17094 |{20101}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17095 |{20102}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17096 |{20103}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17097 |{20104}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17098 |{20105}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17099 |{20106}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17100 |{20107}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17101 |{20108}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17102 |{20109}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17103 |{20110}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17104 |{20111}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17105 |{20112}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17106 |{20113}<1024 |Configured max number of opened files is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17107 |{20114}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17108 |{20115}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17109 |{20116}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17110 |{20117}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17111 |{20118}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17112 |{20119}<256 |Configured max number of processes is too low on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17113 |{20120}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17114 |{20121}<50 |Lack of free swap space on {HOST.NAME} | |0 |2 |It probably means that the systems requires more physical memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17115 |{20122}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17116 |{20123}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17117 |{20124}<1.597 or {20124}>2.019 |BB +1.8V SM Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17118 |{20125}<1.646 or {20125}>1.960 |BB +1.8V SM Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17119 |{20126}<2.876 or {20126}>3.729 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17120 |{20127}<2.970 or {20127}>3.618 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17121 |{20128}<2.876 or {20128}>3.729 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17122 |{20129}<2.970 or {20129}>3.618 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17123 |{20130}<4.362 or {20130}>5.663 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17124 |{20131}<4.483 or {20131}>5.495 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17125 |{20132}<5 or {20132}>66 |BB Ambient Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17126 |{20133}<10 or {20133}>61 |BB Ambient Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17127 |{20134}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17128 |{20135}<5 or {20135}>90 |Baseboard Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17129 |{20136}<10 or {20136}>83 |Baseboard Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17130 |{20137}<0.953 or {20137}>1.149 |BB +1.05V PCH Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17131 |{20138}<0.985 or {20138}>1.117 |BB +1.05V PCH Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17132 |{20139}<0.683 or {20139}>1.543 |BB +1.1V P1 Vccp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17133 |{20140}<0.708 or {20140}>1.501 |BB +1.1V P1 Vccp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17134 |{20141}<1.362 or {20141}>1.635 |BB +1.5V P1 DDR3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17135 |{20142}<1.401 or {20142}>1.589 |BB +1.5V P1 DDR3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17136 |{20143}<2.982 or {20143}>3.625 |BB +3.3V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17137 |{20144}<3.067 or {20144}>3.525 |BB +3.3V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17138 |{20145}<2.982 or {20145}>3.625 |BB +3.3V STBY Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17139 |{20146}<3.067 or {20146}>3.525 |BB +3.3V STBY Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17140 |{20147}<4.471 or {20147}>5.538 |BB +5.0V Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17141 |{20148}<4.630 or {20148}>5.380 |BB +5.0V Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17142 |{20149}<0 or {20149}>48 |Front Panel Temp Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17143 |{20150}<5 or {20150}>44 |Front Panel Temp Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17144 |{20151}=0 |Power | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17145 |{20152}<324 |System Fan 2 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17146 |{20153}<378 |System Fan 2 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17147 |{20154}<324 |System Fan 3 Critical [{ITEM.VALUE}] | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17148 |{20155}<378 |System Fan 3 Non-Critical [{ITEM.VALUE}] | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17149 |{20156} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20157} |MSSQL: Too many physical reads occurring | |0 |2 |If this value is makes up even a sizeable minority of total Page Reads/sec (say, greater than 20% of total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17150 |{20158} > {$MSSQL.PERCENT_COMPILATIONS.MAX} |MSSQL: Percent of adhoc queries running is over {$MSSQL.PERCENT_COMPILATIONS.MAX}% for 15m | |0 |2 |The lower this value is the better. High values often indicate excessive adhoc querying and should be as low as possible. If excessive adhoc querying is happening, try rewriting the queries as procedures or invoke the queries using sp_executeSQL. When rewriting isn’t possible, consider using a plan guide or setting the database to parameterization forced mode. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17151 |{20159} > {$MSSQL.PERCENT_RECOMPILATIONS.MAX} |MSSQL: Percent of times statement recompiles is over {$MSSQL.PERCENT_RECOMPILATIONS.MAX}% for 15m | |0 |2 |This number should be at or near zero, since recompiles can cause deadlocks and exclusive compile locks. This counter’s value should follow in proportion to “Batch Requests/sec” and “SQL Compilations/sec”. This needs to be nil in your system as much as possible. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17152 |{20160} > 0.001 |MSSQL: Index and table scans are often than index searches for 15m | |0 |2 |Index searches are preferable to index and table scans. For OLTP applications, optimize for more index searches and less scans (preferably, 1 full scan for every 1000 index searches). Index and table scans are expensive I/O operations. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17153 |{20161}=0 |MSSQL: Service is unavailable | |0 |5 |The TCP port of the MS SQL Server service is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17154 |{20162} * 100 / {20163} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17155 |{20164} * 100 / {20165} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17156 |{20166} * 100 / {20167} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17157 |{20168} * 100 / {20169} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17158 |{20170}=1 and {20171}>0 |Oracle: Instance hostname has changed (new hostname received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance hostname has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17159 |{20172}=1 and {20173}>0 |Oracle: Instance name has changed (new name received: {ITEM.VALUE}) | |0 |1 |Oracle DB Instance name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17160 |{20174}=0 |Oracle: Connection to database is unavailable | |0 |5 |Connection to Oracle Database is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17161 |{20175} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17162 |{20176} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17163 |{20177} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17164 |{20178} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17165 |{20179}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17166 |{20180}=1 |Oracle: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 5 minutes. The database might be unavailable for connecting. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17167 |{20181}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17168 |{20182} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17169 |{20183}=1 and {20184}>0 |Oracle: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |Oracle DB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17170 |{20185}<2 |Archivelog '{#DEST_NAME}': Log Archive is not valid | |0 |4 |ARL destination not in 3 - Valid or 2 - Deferred. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17171 |{20186} = 0 and {20187} = 1 |Oracle Database '{#DBNAME}': Force logging is deactivated for DB with active Archivelog | |0 |2 |Force Logging mode - it is very important metric for Databases in 'ARCHIVELOG'. This feature allows to forcibly write all transactions to the REDO. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17172 |{20188}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17173 |{20189}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17174 |{20190}=1 |Oracle Database '{#DBNAME}': Role has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB role has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17175 |{20191}>{$ORACLE.ASM.USED.PCT.MAX.WARN} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.WARN}% for 5m) | |0 |2 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17176 |{20192}>{$ORACLE.ASM.USED.PCT.MAX.HIGH} |ASM '{#DG_NAME}': Disk group usage is too high (over {$ORACLE.ASM.USED.PCT.MAX.HIGH}% for 5m) | |0 |4 |Usage percent of ASM disk group is over {$ORACLE.ASM.USED.PCT.MAX.WARN} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17177 |{20193}=1 |Oracle Database '{#DBNAME}': Open status in mount mode | |0 |2 |The Oracle DB has a MOUNTED state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17178 |{20194}=1 |Oracle Database '{#DBNAME}': Open status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle DB open status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17179 |{20195}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17180 |{20196}=1 |Oracle TBS '{#TABLESPACE}': Tablespace status has changed (new value received: {ITEM.VALUE}) | |0 |1 |Oracle tablespace status has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17183 |{20199} * 100 / {20200} > {$ORACLE.PROCESSES.MAX.WARN} |Oracle: Too many active processes (over {$ORACLE.PROCESSES.MAX.WARN}% for 5 min) | |0 |2 |Active processes are using more than {$ORACLE.PROCESSES.MAX.WARN}% of the available number of processes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17184 |{20201} * 100 / {20202} > {$ORACLE.SESSIONS.MAX.WARN} |Oracle: Too many active sessions (over {$ORACLE.SESSIONS.MAX.WARN}% for 5 min) | |0 |2 |Active sessions are using more than {$ORACLE.SESSIONS.MAX.WARN}% of the available sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17185 |{20203} * 100 / {20204} > {$ORACLE.DB.FILE.MAX.WARN} |Oracle: Too many database files (over {$ORACLE.DB.FILE.MAX.WARN}% for 5 min) | |0 |2 |Number of datafiles is higher than {$ORACLE.DB.FILE.MAX.WARN}% of the available datafile files limit. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17186 |{20205} * 100 / {20206} > {$ORACLE.PGA.USE.MAX.WARN} |Oracle: Total PGA inuse is too high (over {$ORACLE.PGA.USE.MAX.WARN}% for 5 min) | |0 |2 |Total PGA in use is more than {$ORACLE.PGA.USE.MAX.WARN}% of PGA_AGGREGATE_TARGET. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17187 |{20207} < {$ORACLE.REDO.MIN.WARN} |Oracle: Number of REDO logs available for switching is too low (less {$ORACLE.REDO.MIN.WARN} for 5 min) | |0 |2 |Number of available for log switching inactive/unused REDOs is low (Database down risk) |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17188 |{20208} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too hight database concurrency (over {$ORACLE.CONCURRENCY.MAX.WARN}% for 5 min) | |0 |2 |Concurrency rate is over {$ORACLE.CONCURRENCY.MAX.WARN}%. A high contention value does not indicate the root cause of the problem, but is a signal to search for it. In the case of high competition, an analysis of resource consumption should be carried out, the most "heavy" queries made in the database, possibly - session tracing. All this will help determine the root cause and possible optimization points both in the database configuration and in the logic of building queries of the application itself. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17189 |{20209} > {$ORACLE.SESSIONS.LOCK.MAX.WARN} |Oracle: Too many locked sessions (over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% for 5 min) | |0 |2 |Number of locked sessions is over {$ORACLE.SESSIONS.LOCK.MAX.WARN}% of the running sessions. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17190 |{20210} > {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} |Oracle: Too many sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME}s (over {$ORACLE.SESSION.LONG.LOCK.MAX.WARN} for 5 min) | |0 |2 |Number of sessions locked over {$ORACLE.SESSION.LOCK.MAX.TIME} seconds is too high. Long-term locks can negatively affect database performance, therefore, if they are detected, you should first find the most difficult queries from the database point of view and analyze possible resource leaks. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17191 |{20211}<{$ORACLE.SHARED.FREE.MIN.WARN} |Oracle: Shared pool free is too low (less {$ORACLE.SHARED.FREE.MIN.WARN}% for 5m) | |0 |2 |The shared pool free memory percent has been less than {$ORACLE.SHARED.FREE.MIN.WARN}% in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17192 |{20212} < {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} |Oracle: Zabbix account will expire soon (under {$ORACLE.EXPIRE.PASSWORD.MIN.WARN} days) | |0 |2 |Password for zabbix user in the database will expire soon. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17194 |{20216}>{$TEMP_WARN:""}&eol;or&eol;{20217}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20218}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17195 |{20219}>{$TEMP_CRIT:"{#SNMPVALUE}"}&eol;or&eol;{20220}={$TEMP_CRIT_STATUS}&eol;or&eol;{20220}={$TEMP_DISASTER_STATUS} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20221}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17196 |{20222}>{$TEMP_WARN:"{#SNMPVALUE}"}&eol;or&eol;{20223}={$TEMP_WARN_STATUS} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20224}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17203 |{20243}>{$TEMP_CRIT:""}&eol;or&eol;{20244}={$TEMP_CRIT_STATUS} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |0 |1 |{20245}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17204 |{20246}>{$TEMP_CRIT:""}&eol;or&eol;{20247}={$TEMP_CRIT_STATUS} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20248}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17205 |{20249}>{$TEMP_WARN:""}&eol;or&eol;{20250}={$TEMP_WARN_STATUS} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20251}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17207 |{20255}>{$TEMP_WARN:"Device"} |Device: Temperature is above warning threshold: >{$TEMP_WARN:"Device"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20256}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17208 |{20257}>{$TEMP_CRIT:"Device"} |Device: Temperature is above critical threshold: >{$TEMP_CRIT:"Device"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20258}<{$TEMP_CRIT:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17209 |{20259}<{$TEMP_CRIT_LOW:"Device"} |Device: Temperature is too low: <{$TEMP_CRIT_LOW:"Device"} | |0 |3 | |NULL |0 |2 |1 |{20260}>{$TEMP_CRIT_LOW:"Device"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17210 |{20261}<>"running-ap" |Interface {#IFNAME}({#IFALIAS}): AP interface {#IFNAME}({#IFALIAS}) is not running | |0 |2 |Access point interface can be not running by different reasons - disabled interface, power off, network link down. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17211 |{20262}>{$TEMP_CRIT:""}&eol;or&eol;{20263}={$TEMP_CRIT_STATUS} |#{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:""} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20264}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17212 |{20265}>{$TEMP_WARN:""}&eol;or&eol;{20266}={$TEMP_WARN_STATUS} |#{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:""} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20267}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17213 |{20268}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{20269}={$TEMP_CRIT_STATUS}&eol;or&eol;{20269}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"Ambient"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20270}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17214 |{20271}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{20272}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"Ambient"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20273}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17215 |{20274}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{20275}={$TEMP_CRIT_STATUS}&eol;or&eol;{20275}={$TEMP_DISASTER_STATUS} |{#SENSOR_LOCALE}: Temperature is above critical threshold: >{$TEMP_CRIT:"CPU"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20276}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17216 |{20277}>{$TEMP_WARN:"CPU"}&eol;or&eol;{20278}={$TEMP_WARN_STATUS} |{#SENSOR_LOCALE}: Temperature is above warning threshold: >{$TEMP_WARN:"CPU"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{20279}<{$TEMP_WARN:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17217 |{20280}=1 and {20281}>0 |Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE}) | |0 |1 |Ceph version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17218 |{20282}=2 |Ceph: Cluster in ERROR state | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17219 |{20283}=1 |Ceph: Cluster in WARNING state | |0 |2 | |NULL |0 |0 |1 |{20283}=0 |0 | |1 | |0 |
+ROW |17220 |{20284}=0 |Ceph: Can not connect to cluster | |0 |3 |Connection to Ceph RESTful module is broken (if there is any error presented including AUTH and configuration issues). |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17221 |{20285} > {20286}*100 |Ceph: OSD osd.{#OSDNAME} is full | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17222 |{20287} > {20288}*100 |Ceph: Ceph OSD osd.{#OSDNAME} is near full | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17223 |{20289} = 0 |Ceph: OSD osd.{#OSDNAME} is down | |0 |3 |OSD osd.{#OSDNAME} is marked "down" in the osdmap.&eol;The OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17224 |{20290} > {$PHP_FPM.QUEUE.WARN.MAX} |PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m) | |0 |2 |The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17225 |{20291}=0 or {20292}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17226 |{20293}=1 |PHP-FPM: Manager changed (new value received: {ITEM.VALUE}) | |0 |1 |PHP-FPM manager changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17227 |{20294}>0 |PHP-FPM: Detected slow requests | |0 |2 |PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool). |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17228 |{20295}=1 |PHP-FPM: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17229 |{20296}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17230 |{20297}=1 and {20298}>0 |PHP-FPM: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |PHP-FPM version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17231 |{20299}=0 |PHP-FPM: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17232 |{20300} > {$PHP_FPM.QUEUE.WARN.MAX} |PHP-FPM: Queue utilization is high (over {$PHP_FPM.QUEUE.WARN.MAX}% for 15m) | |0 |2 |The queue for this pool reached {$PHP_FPM.QUEUE.WARN.MAX}% of its maximum capacity. Items in queue represent the current number of connections that have been initiated on this pool, but not yet accepted. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17233 |{20301}=0 or {20302}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17234 |{20303}=1 |PHP-FPM: Manager changed (new value received: {ITEM.VALUE}) | |0 |1 |PHP-FPM manager changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17235 |{20304}>0 |PHP-FPM: Detected slow requests | |0 |2 |PHP-FPM detected slow request. A slow request means that it took more time to execute than expected (defined in the configuration of your pool). |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17236 |{20305}=1 |PHP-FPM: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17237 |{20306}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17238 |{20307}=1 and {20308}>0 |PHP-FPM: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |PHP-FPM version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17239 |{20309}>{20310}/100*{$SQUID.PAGE.FAULT.WARN} |Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of recieved HTTP requests) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17240 |{20311}>{20312}*{20313}/100 |Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 |
+ROW |17241 |{20314}>{20315}*{20316}/100 |Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 |
+ROW |17242 |{20317}=0 |Squid: Port {$SQUID.HTTP.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17243 |{20318}<{$SQUID.FILE.DESC.WARN.MIN} |Squid: Squid is running out of file descriptors (<{$SQUID.FILE.DESC.WARN.MIN}) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17244 |{20319}<10m |Squid: Squid has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17245 |{20320}=1 and {20321}>0 |Squid: Squid version has been changed | |0 |1 |Squid version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17246 |{20322} < {$LTEMODEM.RSRP.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRP is low (below {$LTEMODEM.RSRP.MIN.WARN}dbm for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17247 |{20323} < {$LTEMODEM.RSRQ.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSRQ is low (below {$LTEMODEM.RSRQ.MIN.WARN}db for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17248 |{20324} < {$LTEMODEM.RSSI.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem RSSI is low (below {$LTEMODEM.RSSI.MIN.WARN}dbm for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17249 |{20325} < {$LTEMODEM.SINR.MIN.WARN} |Interface {#IFNAME}({#IFALIAS}): LTE modem SINR is low (below {$LTEMODEM.SINR.MIN.WARN}db for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17250 |{20326}<10m |Asterisk: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17251 |{20327}=1 |Asterisk: Failed to fetch AMI page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17252 |{20328}<10m |Asterisk: has been reloaded (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17253 |{20329}=1 and {20330}>0 |Asterisk: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Asterisk version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17254 |{20331}>{$AMI.RESPONSE_TIME.MAX.WARN} |Asterisk: Service response time is too high (over {$AMI.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17255 |{20332}=0 |Asterisk: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17257 |{20334}="UNKNOWN" or {20334}="UNREACHABLE" |IAX trunk "{#OBJECTNAME}": IAX trunk {#OBJECTNAME} has a state {ITEM.VALUE} | |0 |3 |The IAX trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17259 |{20336}="Unavailable" |PJSIP trunk "{#OBJECTNAME}": PJSIP trunk {#OBJECTNAME} has a state Unavailable | |0 |3 |The PJSIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17262 |{20339}="UNKNOWN" or {20339}="UNREACHABLE" |SIP trunk "{#OBJECTNAME}": SIP trunk {#OBJECTNAME} has a state {ITEM.VALUE} | |0 |3 |The SIP trunk is unable to establish a connection with a neighbor due to network issues or incorrect configuration. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17263 |{20340}>0 |NameNode: Cluster has missing blocks | |0 |3 |A missing block is far worse than a corrupt block, because a missing block cannot be recovered by copying a replica. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17264 |{20341}>0 |NameNode: Cluster has DataNodes in Dead state | |0 |3 |The death of a DataNode causes a flurry of network activity, as the NameNode initiates replication of blocks lost on the dead nodes. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17265 |{20342}<{$HADOOP.CAPACITY_REMAINING.MIN.WARN} |NameNode: Cluster capacity remaining is low (below {$HADOOP.CAPACITY_REMAINING.MIN.WARN}% for 15m) | |0 |2 |A good practice is to ensure that disk use never exceeds 80 percent capacity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17266 |{20343}<10m |NameNode: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17267 |{20344}=1 |NameNode: Failed to fetch NameNode API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17268 |{20345}>0 |NameNode: Cluster has volume failures | |0 |3 |HDFS now allows for disks to fail in place, without affecting DataNode operations, until a threshold value is reached. This is set on each DataNode via the dfs.datanode.failed.volumes.tolerated property; it defaults to 0, meaning that any volume failure will shut down the DataNode; on a production cluster where DataNodes typically have 6, 8, or 12 disks, setting this parameter to 1 or 2 is typically the best practice. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17269 |{20346}=0 |ResourceManager: Cluster has no active NodeManagers | |0 |4 |Cluster is unable to execute any jobs without at least one NodeManager. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17270 |{20347}>0 |ResourceManager: Cluster has unhealthy NodeManagers | |0 |3 |YARN considers any node with disk utilization exceeding the value specified under the property yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage (in yarn-site.xml) to be unhealthy. Ample disk space is critical to ensure uninterrupted operation of a Hadoop cluster, and large numbers of unhealthyNodes (the number to alert on depends on the size of your cluster) should be quickly investigated and resolved. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17271 |{20348}<10m |ResourceManager: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17272 |{20349}=1 |ResourceManager: Failed to fetch ResourceManager API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17273 |{20350}>{$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} |NameNode: Service response time is too high (over {$HADOOP.NAMENODE.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17274 |{20351}>{$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} |ResourceManager: Service response time is too high (over {$HADOOP.RESOURCEMANAGER.RESPONSE_TIME.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17275 |{20352}=0 |NameNode: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17276 |{20353}=0 |ResourceManager: Service is unavailable | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17277 |{20354}<>"Live" |{#HOSTNAME}: DataNode has state {ITEM.VALUE}. | |0 |3 |The state is different from normal. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17278 |{20355}<10m |{#HOSTNAME}: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17279 |{20356}=1 |{#HOSTNAME}: Failed to fetch DataNode API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17280 |{20357}<>"RUNNING" |{#HOSTNAME}: NodeManager has state {ITEM.VALUE}. | |0 |3 |The state is different from normal. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17281 |{20358}<10m |{#HOSTNAME}: Service has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17282 |{20359}=1 |{#HOSTNAME}: Failed to fetch NodeManager API page (or no data for 30m) | |0 |2 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17283 |{20360}>0 |Kafka: Unclean leader election detected | |0 |3 |Unclean leader elections occur when there is no qualified partition leader among Kafka brokers. If Kafka is configured to allow an unclean leader election, a leader is chosen from the out-of-sync replicas, and any messages that were not synced prior to the loss of the former leader are lost forever. Essentially, unclean leader elections sacrifice consistency for availability. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17284 |{20361} > 0 |Kafka: One or more partitions have no leader | |0 |2 |Any partition without an active leader will be completely inaccessible, and both consumers and producers of that partition will be blocked until a leader becomes available. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17285 |{20362} > 0 |Kafka: There are offline log directories | |0 |2 |The offline log directory count metric indicate the number of log directories which are offline (due to an hardware failure for example) so that the broker cannot store incoming messages anymore. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17286 |{20363}<{$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} |Kafka: Network processor average idle percent is too low (under {$KAFKA.NET_PROC_AVG_IDLE.MIN.WARN} for 15m) | |0 |3 |The network processor idle ratio metric indicates the percentage of time the network processor are not in use. The lower this number, the more loaded the broker is. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17287 |{20364}=1 |Kafka: Failed to fetch info data (or no data for 15m) | |0 |2 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17288 |{20365}<10m |Kafka: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17289 |{20366}=1 and {20367}>0 |Kafka: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Kafka version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17290 |{20368}<{$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} |Kafka: Request handler average idle percent is too low (under {$KAFKA.REQUEST_HANDLER_AVG_IDLE.MIN.WARN} for 15m) | |0 |3 |The request handler idle ratio metric indicates the percentage of time the request handlers are not in use. The lower this number, the more loaded the broker is. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17291 |{20369}>0 |Kafka: There are partitions under the min ISR | |0 |3 |The Under min ISR partitions metric displays the number of partitions, where the number of In-Sync Replicas (ISR) is less than the minimum number of in-sync replicas specified. The two most common causes of under-min ISR partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers are falling behind. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17292 |{20370}>0 |Kafka: There are under replicated partitions | |0 |3 |The Under replicated partitions metric displays the number of partitions that do not have enough replicas to meet the desired replication factor. A partition will also be considered under-replicated if the correct number of replicas exist, but one or more of the replicas have fallen significantly behind the partition leader. The two most common causes of under-replicated partitions are that one or more brokers is unresponsive, or the cluster is experiencing performance issues and one or more brokers have fallen behind. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17293 |{20371}=0 |Kafka: Broker is not connected to ZooKeeper | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17294 |{20372}=1 and {20373}>0 |Tomcat: Version has been changed | |0 |1 |Tomcat version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17295 |{20374} = 1 |{#JMXVALUE}: Gzip compression is disabled | |0 |1 |gzip compression is disabled for connector {#JMXVALUE}. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17296 |{20375}>{20376}*{$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}/100 |{#JMXNAME}: Busy worker threads count are more than {$TOMCAT.THREADS.MAX.PCT:"{#JMXNAME}"}% of the limit for {$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"} | |0 |4 |When current threads busy counter reaches the limit, no more requests could be handled, and the application chokes. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17297 |{20377} * 100 / {20378} > {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN} |Zookeeper: Too many file descriptors used (over {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% for 5 min) | |0 |2 |Number of file descriptors used more than {$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN}% of the available number of file descriptors. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17298 |{20379}>{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN} |Zookeeper: Too many queued requests (over {$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN}% for 5 min) | |0 |3 |Number of queued requests in the server. This goes up when the server receives more requests than it can process. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17299 |{20380}=1 and {20381}>0 |Zookeeper: Server mode has changed (new mode: {ITEM.VALUE}) | |0 |1 |Zookeeper node state has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17300 |{20382}<10m |Zookeeper: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17301 |{20383}=1 |Zookeeper: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17302 |{20384}=1 and {20385}>0 |Zookeeper: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Zookeeper version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17303 |{20386} < {20387}-1 |Zookeeper: Too few active followers | |0 |3 |The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17304 |{20388}>{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN} |Zookeeper: Too many pending syncs (over {$ZOOKEEPER.PENDING_SYNCS.MAX.WARN}% for 5 min) | |0 |3 | |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17305 |{20389}=1 and {20390}>0 |Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Cassandra version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17306 |{20391}>{$CASSANDRA.PENDING_TASKS.MAX.WARN} |Many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.WARN} for 15m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17307 |{20392}>{$CASSANDRA.PENDING_TASKS.MAX.HIGH} |Too many pending tasks (over {$CASSANDRA.PENDING_TASKS.MAX.HIGH} for 15m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17308 |{20393}>0 |Too many storage exceptions | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17309 |{20394}=1 |Failed to fetch info data (or no data for 15m) | |0 |2 |Zabbix has not received data for items for the last 15 minutes |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17310 |{20395}>0 |There are down nodes in cluster | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17311 |{20396} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Fan speed is below the warning threshold of {#THRESHOLD_LO_WARN}rpm for 5m | |0 |2 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17312 |{20397} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Fan speed is below the critical threshold of {#THRESHOLD_LO_CRIT}rpm for 5m | |0 |4 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17313 |{20398} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Fan speed is above the warning threshold of {#THRESHOLD_HI_WARN}rpm for 5m | |0 |2 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17314 |{20399} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Fan speed is above the critical threshold of {#THRESHOLD_HI_CRIT}rpm for 5m | |0 |4 |This trigger uses fan sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17315 |{20400} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Temperature is below the warning threshold of {#THRESHOLD_LO_WARN}°C for 5m | |0 |2 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17316 |{20401} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Temperature is below the critical threshold of {#THRESHOLD_LO_CRIT}°C for 5m | |0 |4 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17317 |{20402} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Temperature is above the warning threshold of {#THRESHOLD_HI_WARN}°C for 5m | |0 |2 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17318 |{20403} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Temperature is above the critical threshold of {#THRESHOLD_HI_CRIT}°C for 5m | |0 |4 |This trigger uses temperature sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17319 |{20404} < {#THRESHOLD_LO_WARN} |{#SENSOR_INFO}: Voltage is below the warning threshold of {#THRESHOLD_LO_WARN}V for 5m | |0 |2 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17320 |{20405} < {#THRESHOLD_LO_CRIT} |{#SENSOR_INFO}: Voltage is below the critical threshold of {#THRESHOLD_LO_CRIT}V for 5m | |0 |4 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17321 |{20406} > {#THRESHOLD_HI_WARN} |{#SENSOR_INFO}: Voltage is above the warning threshold of {#THRESHOLD_HI_WARN}V for 5m | |0 |2 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17322 |{20407} > {#THRESHOLD_HI_CRIT} |{#SENSOR_INFO}: Voltage is above the critical threshold of {#THRESHOLD_HI_CRIT}V for 5m | |0 |4 |This trigger uses voltage sensor values defined in the device. |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17323 |{20408}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17324 |{20409}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17325 |{20410}={$LOAD.STATE.WARN:"lvdWarning"} or {20410}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17326 |{20411}={$LOAD.STATE.CRIT:"lvd"} or {20411}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17327 |{20412}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17328 |{20413}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17329 |{20414}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17330 |{20415}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17331 |{20416}=2 |Status: Device has "heatsinkTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17332 |{20417}=2 |Status: Device has "inductorTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17333 |{20418}=2 |Status: Device has "inductorTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17334 |{20419}=2 |Status: Device has "inductorTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17335 |{20420}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17336 |{20421}=2 |Status: Device has "currentMeasurementError" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17337 |{20422}=2 |Status: Device has "batterySenseOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17338 |{20423}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17339 |{20424}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17340 |{20425}=2 |Status: Device has "tb5v" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17341 |{20426}=2 |Status: Device has "fp10SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17342 |{20427}=2 |Status: Device has "mosfetOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17343 |{20428}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17344 |{20429}=2 |Status: Device has "loadCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17345 |{20430}=2 |Status: Device has "p33SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17346 |{20431}=2 |Status: Device has "p12SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17347 |{20432}=2 |Status: Device has "hightInputVoltageLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17348 |{20433}=2 |Status: Device has "controllerReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17349 |{20434}=2 |Status: Device has "loadLvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17350 |{20435}=2 |Status: Device has "logTimeout" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17351 |{20436}=2 |Status: Device has "eepromAccessFailure" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17352 |{20437}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17353 |{20438}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17354 |{20439}=2 |Status: Device has "software" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17355 |{20440}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17356 |{20441}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17357 |{20442}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17358 |{20443}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17359 |{20444}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17360 |{20445}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17361 |{20446}=2 |Status: Device has "batteryLowVoltageDisconnect" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17362 |{20447}=2 |Status: Device has "slaveTimeout" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17363 |{20448}=2 |Status: Device has "dipSwitchChanged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17364 |{20449}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17365 |{20450}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17366 |{20451}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17367 |{20452}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17368 |{20453}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17369 |{20454}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17370 |{20455}=2 |Status: Device has "dipSwitchChanged" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17371 |{20456}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17372 |{20457}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17373 |{20458}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17374 |{20459}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17375 |{20460}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17376 |{20461}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17377 |{20462}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17378 |{20463}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17379 |{20464}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17380 |{20465}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17381 |{20466}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17382 |{20467}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17383 |{20468}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17384 |{20469}={$LOAD.STATE.WARN:"lvdWarning"} or {20469}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17385 |{20470}={$LOAD.STATE.CRIT:"lvd"} or {20470}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17386 |{20471}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17387 |{20472}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17388 |{20473}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17389 |{20474}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17390 |{20475}=2 |Status: Device has "heatsinkTempLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17391 |{20476}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17392 |{20477}=2 |Status: Device has "currentMeasurementError" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17393 |{20478}=2 |Status: Device has "batterySenseOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17394 |{20479}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17395 |{20480}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17396 |{20481}=2 |Status: Device has "batteryTempOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17397 |{20482}=2 |Status: Device has "fp10SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17398 |{20483}=2 |Status: Device has "mosfetOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17399 |{20484}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17400 |{20485}=2 |Status: Device has "loadCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17401 |{20486}=2 |Status: Device has "p33SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17402 |{20487}=2 |Status: Device has "p12SupplyOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17403 |{20488}=2 |Status: Device has "hightInputVoltageLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17404 |{20489}=2 |Status: Device has "controllerReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17405 |{20490}=2 |Status: Device has "loadLvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17406 |{20491}=2 |Status: Device has "logTimeout" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17407 |{20492}=2 |Status: Device has "eepromAccessFailure" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17408 |{20493}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17409 |{20494}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17410 |{20495}=2 |Status: Device has "software" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17411 |{20496}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17412 |{20497}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17413 |{20498}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17414 |{20499}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17415 |{20500}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17416 |{20501}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17417 |{20502}=2 |Status: Device has "batteryLowVoltageDisconnect" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17418 |{20503}=2 |Status: Device has "slaveTimeout" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17419 |{20504}=2 |Status: Device has "dipSwitchChanged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17420 |{20505}=2 |Status: Device has "p3Fault" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17421 |{20506}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17422 |{20507}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17423 |{20508}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17424 |{20509}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17425 |{20510}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17426 |{20511}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17427 |{20512}=2 |Status: Device has "dipSwitchChanged" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17428 |{20513}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17429 |{20514}=2 |Status: Device has "p3Fault" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17430 |{20515}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17431 |{20516}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17432 |{20517}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17433 |{20518}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17434 |{20519}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17435 |{20520}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17436 |{20521}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17437 |{20522}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17438 |{20523}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17439 |{20524}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17440 |{20525}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17441 |{20526}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17442 |{20527}={$LOAD.STATE.WARN:"lvdWarning"} or {20527}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17443 |{20528}={$LOAD.STATE.CRIT:"lvd"} or {20528}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17444 |{20529}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17445 |{20530}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17446 |{20531}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17447 |{20532}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17448 |{20533}=2 |Status: Device has "sspptHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17449 |{20534}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17450 |{20535}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17451 |{20536}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17452 |{20537}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17453 |{20538}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17454 |{20539}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17455 |{20540}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17456 |{20541}=2 |Status: Device has "highVaCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17457 |{20542}=2 |Status: Device has "overcurrent" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17458 |{20543}=2 |Status: Device has "mosfetSShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17459 |{20544}=2 |Status: Device has "softwareFault" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17460 |{20545}=2 |Status: Device has "batteryHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17461 |{20546}=2 |Status: Device has "arrayHvd" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17462 |{20547}=2 |Status: Device has "customSettingsEdit" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17463 |{20548}=2 |Status: Device has "rtsShorted" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17464 |{20549}=2 |Status: Device has "rtsNoLongerValid" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17465 |{20550}=2 |Status: Device has "localTempSensorDamaged" array faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17466 |{20551}=2 |Status: Device has "externalShortCircuit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17467 |{20552}=2 |Status: Device has "overcurrent" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17468 |{20553}=2 |Status: Device has "mosfetShorted" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17469 |{20554}=2 |Status: Device has "software" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17470 |{20555}=2 |Status: Device has "loadHvd" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17471 |{20556}=2 |Status: Device has "highTempDisconnect" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17472 |{20557}=2 |Status: Device has "customSettingsEdit" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17473 |{20558}=2 |Status: Device has "unknownLoadFault" load faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17474 |{20559}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17475 |{20560}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17476 |{20561}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17477 |{20562}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17478 |{20563}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17479 |{20564}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17480 |{20565}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17481 |{20566}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17482 |{20567}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17483 |{20568}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17484 |{20569}={$LOAD.STATE.WARN:"lvdWarning"} or {20569}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17485 |{20570}={$LOAD.STATE.CRIT:"lvd"} or {20570}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17486 |{20571}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17487 |{20572}=2 |Status: Device has "heatsinkTempSensorShort" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17488 |{20573}=2 |Status: Device has "unknownAlarm" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17489 |{20574}=2 |Status: Device has "suresineHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17490 |{20575}=2 |Status: Device has "reset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17491 |{20576}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17492 |{20577}=2 |Status: Device has "unknownFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17493 |{20578}=2 |Status: Device has "software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17494 |{20579}=2 |Status: Device has "highVoltageDisconnect" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17495 |{20580}=2 |Status: Device has "suresineHot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17496 |{20581}=2 |Status: Device has "dipSwitchChanged" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17497 |{20582}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17498 |{20583}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17499 |{20584}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17500 |{20585}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17501 |{20586}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17502 |{20587}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17503 |{20588}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17504 |{20589}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17505 |{20590}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17506 |{20591}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17507 |{20592}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17508 |{20593}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17509 |{20594}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17510 |{20595}=2 |Status: Device has "highTemperatureCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17511 |{20596}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17512 |{20597}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17513 |{20598}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17514 |{20599}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17515 |{20600}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17516 |{20601}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17517 |{20602}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17518 |{20603}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17519 |{20604}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17520 |{20605}=2 |Status: Device has "p12VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17521 |{20606}=2 |Status: Device has "highArrayVCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17522 |{20607}=2 |Status: Device has "maxAdcValueReached" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17523 |{20608}=2 |Status: Device has "controllerWasReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17524 |{20609}=2 |Status: Device has "alarm21Internal" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17525 |{20610}=2 |Status: Device has "p3VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17526 |{20611}=2 |Status: Device has "derateLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17527 |{20612}=2 |Status: Device has "arrayCurrentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17528 |{20613}=2 |Status: Device has "ee-i2cRetryLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17529 |{20614}=2 |Status: Device has "ethernetAlarm" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17530 |{20615}=2 |Status: Device has "lvd" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17531 |{20616}=2 |Status: Device has "software" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17532 |{20617}=2 |Status: Device has "fp12VoltageOutOfRange" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17533 |{20618}=2 |Status: Device has "extflashFault" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17534 |{20619}=2 |Status: Device has "slaveControlFault" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17535 |{20620}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17536 |{20621}=2 |Status: Device has "fetShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17537 |{20622}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17538 |{20623}=2 |Status: Device has "batteryHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17539 |{20624}=2 |Status: Device has "arrayHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17540 |{20625}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17541 |{20626}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17542 |{20627}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17543 |{20628}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17544 |{20629}=2 |Status: Device has "eepromRetryLimit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17545 |{20630}=2 |Status: Device has "controllerWasReset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17546 |{20631}=2 |Status: Device has "chargeSlaveControlTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17547 |{20632}=2 |Status: Device has "rs232SerialToMeterBridge" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17548 |{20633}=2 |Status: Device has "batteryLvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17549 |{20634}=2 |Status: Device has "powerboardCommunicationFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17550 |{20635}=2 |Status: Device has "fault16Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17551 |{20636}=2 |Status: Device has "fault17Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17552 |{20637}=2 |Status: Device has "fault18Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17553 |{20638}=2 |Status: Device has "fault19Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17554 |{20639}=2 |Status: Device has "fault20Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17555 |{20640}=2 |Status: Device has "fault21Software" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17556 |{20641}=2 |Status: Device has "fpgaVersion" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17557 |{20642}=2 |Status: Device has "currentSensorReferenceOutOfRange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17558 |{20643}=2 |Status: Device has "ia-refSlaveModeTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17559 |{20644}=2 |Status: Device has "blockbusBoot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17560 |{20645}=2 |Status: Device has "hscommMaster" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17561 |{20646}=2 |Status: Device has "hscomm" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17562 |{20647}=2 |Status: Device has "slave" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17563 |{20648}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17564 |{20649}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17565 |{20650}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17566 |{20651}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17567 |{20652}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17568 |{20653}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17569 |{20654}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17570 |{20655}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17571 |{20656}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17572 |{20657}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17573 |{20658}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17574 |{20659}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17575 |{20660}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17576 |{20661}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17577 |{20662}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17578 |{20663}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17579 |{20664}=2 |Status: Device has "highTemperatureCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17580 |{20665}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17581 |{20666}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17582 |{20667}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17583 |{20668}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17584 |{20669}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17585 |{20670}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17586 |{20671}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17587 |{20672}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17588 |{20673}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17589 |{20674}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17590 |{20675}=2 |Status: Device has "highArrayVCurrentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17591 |{20676}=2 |Status: Device has "maxAdcValueReached" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17592 |{20677}=2 |Status: Device has "controllerWasReset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17593 |{20678}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17594 |{20679}=2 |Status: Device has "fetShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17595 |{20680}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17596 |{20681}=2 |Status: Device has "batteryHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17597 |{20682}=2 |Status: Device has "arrayHvd" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17598 |{20683}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17599 |{20684}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17600 |{20685}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17601 |{20686}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17602 |{20687}=2 |Status: Device has "eepromRetryLimit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17603 |{20688}=2 |Status: Device has "slaveControlTimeout" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17604 |{20689}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17605 |{20690}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17606 |{20691}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17607 |{20692}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17608 |{20693}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17609 |{20694}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17610 |{20695}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17611 |{20696}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17612 |{20697}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17613 |{20698}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17614 |{20699}=2 |Status: Device has "rtsShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17615 |{20700}=2 |Status: Device has "rtsDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17616 |{20701}=2 |Status: Device has "heatsinkTempSensorOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17617 |{20702}=2 |Status: Device has "heatsinkTempSensorShorted" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17618 |{20703}=2 |Status: Device has "tristarHot" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17619 |{20704}=2 |Status: Device has "currentLimit" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17620 |{20705}=2 |Status: Device has "currentOffset" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17621 |{20706}=2 |Status: Device has "batterySense" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17622 |{20707}=2 |Status: Device has "batterySenseDisconnected" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17623 |{20708}=2 |Status: Device has "uncalibrated" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17624 |{20709}=2 |Status: Device has "rtsMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17625 |{20710}=2 |Status: Device has "highVoltageDisconnect" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17626 |{20711}=2 |Status: Device has "diversionLoadNearMax" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17627 |{20712}=2 |Status: Device has "systemMiswire" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17628 |{20713}=2 |Status: Device has "mosfetSOpen" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17629 |{20714}=2 |Status: Device has "p12VoltageReferenceOff" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17630 |{20715}=2 |Status: Device has "loadDisconnectState" alarm flag | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17631 |{20716}=2 |Status: Device has "externalShort" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17632 |{20717}=2 |Status: Device has "overcurrent" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17633 |{20718}=2 |Status: Device has "mosfetSShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17634 |{20719}=2 |Status: Device has "softwareFault" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17635 |{20720}=2 |Status: Device has "highVoltageDisconnect" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17636 |{20721}=2 |Status: Device has "tristarHot" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17637 |{20722}=2 |Status: Device has "dipSwitchChange" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17638 |{20723}=2 |Status: Device has "customSettingsEdit" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17639 |{20724}=2 |Status: Device has "reset" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17640 |{20725}=2 |Status: Device has "systemMiswire" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17641 |{20726}=2 |Status: Device has "rtsShorted" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17642 |{20727}=2 |Status: Device has "rtsDisconnected" faults flag | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17643 |{20728}<10m |Status: Device has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17644 |{20729}=1 |Status: Failed to fetch data (or no data for 5m) | |0 |2 |Zabbix has not received data for items for the last 5 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17645 |{20730}<{$BATTERY.TEMP.MIN.WARN} |Temperature: Low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17646 |{20731}<{$BATTERY.TEMP.MIN.CRIT} |Temperature: Critically low battery temperature (below {$BATTERY.TEMP.MIN.WARN}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17647 |{20732}>{$BATTERY.TEMP.MAX.WARN} |Temperature: High battery temperature (over {$BATTERY.TEMP.MAX.WARN}C for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17648 |{20733}>{$BATTERY.TEMP.MAX.CRIT} |Temperature: Critically high battery temperature (over {$BATTERY.TEMP.MAX.CRIT}C for 5m) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17649 |{20734}<{#VOLTAGE.MIN.WARN} |Battery: Low battery voltage (below {#VOLTAGE.MIN.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17650 |{20735}<{#VOLTAGE.MIN.CRIT} |Battery: Critically low battery voltage (below {#VOLTAGE.MIN.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17651 |{20736}>{#VOLTAGE.MAX.WARN} |Battery: High battery voltage (over {#VOLTAGE.MAX.WARN}V for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17652 |{20737}>{#VOLTAGE.MAX.CRIT} |Battery: Critically high battery voltage (over {#VOLTAGE.MAX.CRIT}V for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17653 |{20738}={$CHARGE.STATE.WARN} |Battery: Device charge in warning state | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17654 |{20739}={$CHARGE.STATE.CRIT} |Battery: Device charge in critical state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17655 |{20740}={$LOAD.STATE.WARN:"lvdWarning"} or {20740}={$LOAD.STATE.WARN:"override"} |Load: Device load in warning state | |0 |2 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17656 |{20741}={$LOAD.STATE.CRIT:"lvd"} or {20741}={$LOAD.STATE.CRIT:"fault"} |Load: Device load in critical state | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17657 |{20742}<0 and&eol;{20743}>0 and&eol;{20744}=2 |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |0 | |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |17659 |{20748}<0 and&eol;{20749}>0 and&eol;{20750}=2 |Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |0 | |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |17661 |{20754} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17662 |{20755} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17665 |{20758} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk write request responses are too high (write > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}s for 15m) | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17666 |{20759} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} |{#DEVNAME}: Disk read request responses are too high (read > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"}s for 15m | |0 |2 |This trigger might indicate disk {#DEVNAME} saturation. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17669 |{20762}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |IAX trunk "{#OBJECTNAME}": Number of the IAX trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The IAX trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17670 |{20763}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |PJSIP trunk "{#OBJECTNAME}": Number of the PJSIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The PJSIP trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17671 |{20764}>{$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} |"{#QUEUE}": Number of callers in the queue "{#QUEUE}" is too high (over {$AMI.QUEUE_CALLERS.MAX.WARN:"{#QUEUE}"} for 10m) | |0 |2 |There is a large number of calls in the queue. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17672 |{20765}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} |SIP trunk "{#OBJECTNAME}": Number of the SIP trunk "{#OBJECTNAME}" active channels is too high (over {$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"} for 10m) | |0 |2 |The SIP trunk may not be able to process new calls. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17673 |{20766}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20767}>{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Consumers count is too low (below {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})| |0 |3 | |NULL |0 |2 |1 |{20768}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 |
+ROW |17674 |{20769}>{20770} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higer than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Enqueue rate is higer than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17675 |{20771}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20772}>{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Producers count is too low (below {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"})| |0 |3 | |NULL |0 |2 |1 |{20773}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 |
+ROW |17676 |{20774}>{$ACTIVEMQ.EXPIRIED.WARN:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higer than {$ACTIVEMQ.EXPIRIED.WARN:"{#JMXDESTINATIONNAME}"} | |0 |3 |This metric represents the number of messages that expired before they could be delivered. If you expect all messages to be delivered and acknowledged within a certain amount of time, you can set an expiration for each message, and investigate if your ExpiredCount metric rises above zero. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17677 |{20775}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXDESTINATIONNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17678 |{20776}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXDESTINATIONNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17679 |{20777}>{$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} and {$ACTIVEMQ.QUEUE.ENABLED:"{#JMXDESTINATIONNAME}"}=1 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higer than {$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Queue size is higer than treshold. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17680 |{20778}>{20778} |Broker {#JMXBROKERNAME}: Message enqueue rate is higer than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"} | |0 |3 |Enqueue rate is higer than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17681 |{20779}=1 and {20780}>0 |Broker {#JMXBROKERNAME}: Version has been changed | |0 |1 |Broker {#JMXBROKERNAME} version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17682 |{20781}>{$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17683 |{20782}>{$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Memory usage is too high (over {$ACTIVEMQ.MEM.MAX.HIGH:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17684 |{20783}>{$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17685 |{20784}>{$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Storage usage is too high (over {$ACTIVEMQ.STORE.MAX.HIGH:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17686 |{20785}>{$ACTIVEMQ.TEMP.MAX.WARN} |Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17687 |{20786}>{$ACTIVEMQ.TEMP.MAX.HIGH} |Broker {#JMXBROKERNAME}: Temp usage is too high (over {$ACTIVEMQ.TEMP.MAX.WARN:"{#JMXBROKERNAME}"}%) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17688 |{20787}<{$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Consumers count is too low (below {$ACTIVEMQ.BROKER.CONSUMERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17689 |{20788}<{$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} |Broker {#JMXBROKERNAME}: Producers count is too low (below {$ACTIVEMQ.BROKER.PRODUCERS.MIN.HIGH:"{#JMXBROKERNAME}"} for {$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17690 |{20789}<10m |Broker {#JMXBROKERNAME}: Broker has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17691 |{20790}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17692 |{20791}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17693 |{20792}>{20793} |Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} | |0 |2 |Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17694 |{20794}>{$MS.EXCHANGE.DB.FAULTS.WARN} |Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME}) | |0 |3 |Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17695 |{20795}>{$MS.EXCHANGE.LOG.STALLS.WARN} |Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME}) | |0 |3 |Stalled log records too high. The average value should be less than 10 threads waiting. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17696 |{20796}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME}) | |0 |2 |Should be less than 20ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17697 |{20797}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME}) | |0 |2 |Should be less than 200ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17698 |{20798}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN} |Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} | |0 |2 |Should be less than 50ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17699 |{20799}>{$MS.EXCHANGE.RPC.WARN} |Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME}) | |0 |2 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17700 |{20800}>{$MS.EXCHANGE.RPC.COUNT.WARN} |Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME}) | |0 |2 |Should be below 70 at all times. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17701 |{20801}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP read time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17702 |{20802}>{$MS.EXCHANGE.LDAP.WARN} |Domain Controller [{#INSTANCE}]: LDAP search time is too high (>{$MS.EXCHANGE.LDAP.WARN}s for {$MS.EXCHANGE.LDAP.TIME}) | |0 |3 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17703 |{20803}>{20804} |Database Counters [{#INSTANCE}]: Average write time latency is higher than read time latency for {$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} | |0 |2 |Should be less than the read latency for the same instance, as measured by the MSExchange Database ==> Instances({#INF.STORE}/_Total)\I/O Database Reads (Recovery) Average Latency counter. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17704 |{20805}>{$MS.EXCHANGE.DB.FAULTS.WARN} |Information Store [{#INSTANCE}]: Page faults is too high (>{$MS.EXCHANGE.DB.FAULTS.WARN} for {$MS.EXCHANGE.DB.FAULTS.TIME}) | |0 |3 |Too much page faults stalls for database "{#INSTANCE}". This counter should be 0 on production servers. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17705 |{20806}>{$MS.EXCHANGE.LOG.STALLS.WARN} |Information Store [{#INSTANCE}]: Log records stalls is too high (>{$MS.EXCHANGE.LOG.STALLS.WARN} for {$MS.EXCHANGE.LOG.STALLS.TIME}) | |0 |3 |Stalled log records too high. The average value should be less than 10 threads waiting. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17706 |{20807}>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.ACTIVE.READ.WARN}s for {$MS.EXCHANGE.DB.ACTIVE.READ.TIME}) | |0 |2 |Should be less than 20ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17707 |{20808}>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN} |Database Counters [{#INSTANCE}]: Average read time latency is too high (>{$MS.EXCHANGE.DB.PASSIVE.READ.WARN}s for {$MS.EXCHANGE.DB.PASSIVE.READ.TIME}) | |0 |2 |Should be less than 200ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17708 |{20809}>{$MS.EXCHANGE.DB.ACTIVE.WRITE.WARN} |Database Counters [{#INSTANCE}]: Average write time latency is too high for {$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} | |0 |2 |Should be less than 50ms on average. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17709 |{20810}>{$MS.EXCHANGE.RPC.WARN} |Information Store [{#INSTANCE}]: RPC Requests latency is too high (>{$MS.EXCHANGE.RPC.WARN}s for {$MS.EXCHANGE.RPC.TIME}) | |0 |2 |Should be less than 50ms at all times, with spikes less than 100ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17710 |{20811}>{$MS.EXCHANGE.RPC.COUNT.WARN} |Information Store [{#INSTANCE}]: RPC Requests total count is too high (>{$MS.EXCHANGE.RPC.COUNT.WARN} for {$MS.EXCHANGE.RPC.COUNT.TIME}) | |0 |2 |Should be below 70 at all times. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17711 |{20812}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17712 |{20813}>{$ORACLE.TBS.USED.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17713 |{20814}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17714 |{20815}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17715 |{20816}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17716 |{20817}>{$ORACLE.TBS.USED.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace usage is too high (over {$ORACLE.TBS.USED.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17717 |{20818}>{$ORACLE.TBS.USED.PCT.MAX.WARN} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.USED.PCT.MAX.WARN}% for 5m). | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17718 |{20819}>{$ORACLE.TBS.UTIL.PCT.MAX.HIGH} |Oracle TBS '{#TABLESPACE}': Tablespace utilization is too high (over {$ORACLE.TBS.UTIL.PCT.MAX.HIGH}% for 5m). | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17719 |{20820} > 18000000 |PostgreSQL: Oldest xid is too big | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17726 |{20828}>0 and {20829}=1 |NetApp FAS3220: Number of failed disks has changed | |0 |2 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |1 |0 |1 |{20828}=0 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |17727 |{20830}>0 and {20831}={20831} |Node {#NODE.NAME}: Degraded power supplies count is more than zero | |0 |3 |{{ITEM.VALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17728 |{20832}>0 and {20833}={20833} |Node {#NODE.NAME}: Failed FAN count is over than zero | |0 |4 |{{ITEM.VALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17729 |{20834}=2 |Node {#NODE.NAME}: Temperature is over than recommended | |0 |4 |The hardware will shutdown if the temperature exceeds critical thresholds. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17730 |{20835}=0 |Node {#NODE.NAME}: Node can not communicate with the cluster | |0 |4 | |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17731 |{20836}<>1 |Node {#NODE.NAME}: NVRAM battery status is not OK | |0 |3 | |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17732 |{20837}<10m |Node {#NODE.NAME}: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17733 |{20838}>{$CPU.UTIL.CRIT} |Node {#NODE.NAME}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |17734 |{20839}<{$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=0 |{#VSERVER}{#FSNAME}: Disk space is too low (below {$FAS3220.FS.AVAIL.MIN.CRIT:"{#FSNAME}"} for {$FAS3220.FS.TIME:"{#FSNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17735 |{20840}>{$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and {$FAS3220.FS.USE.PCT:"{#FSNAME}"}=1 |{#VSERVER}{#FSNAME}: Disk space is too low (used over {$FAS3220.FS.PUSED.MAX.CRIT:"{#FSNAME}"}% for {$FAS3220.FS.TIME:"{#FSNAME}"}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17736 |{20841}<>1 |Node {#NODE.NAME}: Node cannot takeover it's HA partner {#PARTNER.NAME}. Reason: {ITEM.VALUE} | |0 |4 |Possible reasons:&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). |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17737 |{20842}=5 |Node {#NODE.NAME}: Node has been taken over | |0 |4 |The thisNodeDead(5) setting indicates that this node has been takenover. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17738 |{20843}=1 |Node {#NODE.NAME}: HA is not licensed | |0 |3 |The value notConfigured(1) indicates that the HA is not licensed. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17740 |{20848}<>2 and {20849}=1 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Link down | |0 |3 |Link state is not UP and the port status is set 'UP' by an administrator. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17741 |{20850}<>0 and {20851}>0 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy | |0 |1 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17743 |{20854}=1 and {20855}>0 |Cache group [{#JMXNAME}]: List of caches has changed | |0 |1 |List of caches has changed. Significant changes have occurred in the cluster. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17744 |{20856}>0 |Cache group [{#JMXNAME}]: Rebalance in progress | |0 |1 |Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17745 |{20857}=0 |Cache group [{#JMXNAME}]: There is no copy for partitions | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17746 |{20858} > {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} |Thread pool [{#JMXNAME}]: Too many messages in queue (over {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"} for 5 min) | |0 |3 |Number of messages in queue more than {$IGNITE.THREAD.QUEUE.MAX.WARN:"{#JMXNAME}"}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17747 |{20859}/{20860}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} |Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.HIGH} in 5m) | |0 |4 |Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17748 |{20861}/{20862}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN} |Data region {#JMXNAME}: Checkpoint buffer utilization is too high (over {$IGNITE.CHECKPOINT.PUSED.MAX.WARN} in 5m) | |0 |2 |Checkpoint buffer utilization is high. Threads will be throttled to avoid buffer overflow. It can be caused by high disk utilization. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17749 |{20863}/{20864}*100>{$IGNITE.DATA.REGION.PUSED.MAX.HIGH} |Data region {#JMXNAME}: Data region utilisation is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.HIGH} in 5m) | |0 |4 |Data region utilization is high. Increase data region size or delete any data. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17750 |{20865}/{20866}*100>{$IGNITE.DATA.REGION.PUSED.MAX.WARN} |Data region {#JMXNAME}: Data region utilisation is too high (over {$IGNITE.DATA.REGION.PUSED.MAX.WARN} in 5m) | |0 |2 |Data region utilization is high. Increase data region size or delete any data. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17751 |{20867}>0 |Data region {#JMXNAME}: Node started to evict pages | |0 |1 |You store more data then region can accommodate. Data started to move to disk it can make requests work slower. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17752 |{20868}>0 |Data region {#JMXNAME}: Pages replace rate more than 0 | |0 |2 |There is more data than DataRegionMaxSize. Сluster started to replace pages in memory. Page replacement can slow down operations. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17753 |{20869} > {$IGNITE.PME.DURATION.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.WARN} for 5 min) | |0 |2 |PME duration is over {$IGNITE.PME.DURATION.MAX.WARN}ms. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17754 |{20870} > {$IGNITE.PME.DURATION.MAX.HIGH} |Ignite [{#JMXIGNITEINSTANCENAME}]: PME duration is too long (over {$IGNITE.PME.DURATION.MAX.HIGH} for 5 min) | |0 |4 |PME duration is over {$IGNITE.PME.DURATION.MAX.HIGH}ms. Looks like PME is hung. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17755 |{20871} > {$IGNITE.THREADS.COUNT.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: Number of running threads is too high (over {$IGNITE.THREADS.COUNT.MAX.WARN} for 15 min) | |0 |2 |Number of running threads is over {$IGNITE.THREADS.COUNT.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17756 |{20872} > {$IGNITE.JOBS.QUEUE.MAX.WARN} |Ignite [{#JMXIGNITEINSTANCENAME}]: Number of queued jobs is too high (over {$IGNITE.JOBS.QUEUE.MAX.WARN} for 15 min) | |0 |2 |Number of queued jobs is over {$IGNITE.JOBS.QUEUE.MAX.WARN}. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17757 |{20873}>{20874} |Ignite [{#JMXIGNITEINSTANCENAME}]: There are nodes is not in topology | |0 |1 |One or more server node left the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17758 |{20875}<0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Server node left the topology | |0 |2 |One or more server node left the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17759 |{20876}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Server node added to the topology | |0 |1 |One or more server node added to the topology. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17760 |{20877}=1 and {20878}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17761 |{20879}<10m |Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17762 |{20880}=1 |Ignite [{#JMXIGNITEINSTANCENAME}]: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17763 |{20881}=1 and {20882}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed | |0 |2 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17764 |{20883}={20884} |Cache group [{#JMXGROUP}]: All entries are in heap | |0 |1 |All entries are in heap. Possibly you use eager queries it may cause out of memory exceptions for big caches. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17765 |{20885} > {20886} |Cache group [{#JMXGROUP}]: Success transactions less than rollbacks for 5m | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17766 |{20887}>0 and {20888}=0 |Cache group [{#JMXGROUP}]: There are no success transactions for cache for 5m | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17767 |{20889}/{20890}*100>{$REDIS.MEM.PUSED.MAX.WARN} |Redis: Memory usage is too high (over {$REDIS.MEM.PUSED.MAX.WARN}% in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17768 |{20891}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller battery is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17769 |{20892}=1 or {20893}=1 or {20894}=1 |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is in warning state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17770 |{20895}=1 and {20896}<>{$DISK_ARRAY_CACHE_WARN_STATUS:"invalid"} |#{#CACHE_CNTRL_INDEX}: Disk array cache controller is not in optimal state | |0 |2 |Please check the device for faults |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |17771 |{20897} = 1 |{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17772 |{20898} = 3 |{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17773 |{20899} = 4 |{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17774 |{20900} = 1 |Ambient: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17775 |{20901} = 3 |Ambient: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17776 |{20902} = 4 |Ambient: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17777 |{20903} = 1 |CPU-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17778 |{20904} = 3 |CPU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17779 |{20905} = 4 |CPU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17780 |{20906} = 1 |I/O-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17781 |{20907} = 3 |I/O-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17782 |{20908} = 4 |I/O-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17783 |{20909} = 1 |Memory-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17784 |{20910} = 3 |Memory-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17785 |{20911} = 4 |Memory-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17786 |{20912} = 1 |PSU-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17787 |{20913} = 3 |PSU-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17788 |{20914} = 4 |PSU-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17789 |{20915} = 1 |System-{#SNMPINDEX}: Temperature could not be determined | |0 |1 |Temperature could not be determined. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17790 |{20916} = 3 |System-{#SNMPINDEX}: The temperature sensor is outside of normal operating range | |0 |2 |If the cpqHeThermalDegradedAction is set to shutdown(3) the system will be shutdown if the degraded(3) condition occurs. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17791 |{20917} = 4 |System-{#SNMPINDEX}: The temperature sensor detects a condition that could permanently damage the system. | |0 |4 |The system will automatically shutdown if the failed(4) condition results, so it is unlikely that this value will ever be returned by the agent. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17792 |{20918}>={20919} |Cache group [{#JMXNAME}]: One or more backups are unavailable | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17793 |{20920}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17798 |({20925}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20926} or&eol;{20927}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20926}) and&eol;{20926}>0 |Interface {#IFDESCR}: High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{20925}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20926} and&eol;{20927}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20926}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17799 |{20928}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20929}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFDESCR}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{20930}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20931}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17806 |({20953}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20954} or&eol;{20955}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{20954}) and&eol;{20954}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{20953}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20954} and&eol;{20955}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{20954}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17807 |{20956}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {20957}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{20958}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {20959}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17850 |({21107}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21108} or&eol;{21109}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21108}) and&eol;{21108}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21107}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21108} and&eol;{21109}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21108}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17851 |{21110}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21111}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21112}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21113}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17854 |{21121} <= {#THRESH} |SMART [{#NAME}]: Attribute {#ID} {#ATTRNAME} is failed | |0 |2 |The value should be greater than THRESH. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17855 |{21122}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17856 |{21123}=1 and {21124}>0 |SMART [{#NAME}]: Disk has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17857 |{21125}>{$SMART.TEMPERATURE.MAX.WARN} |SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17858 |{21126}>{$SMART.TEMPERATURE.MAX.CRIT} |SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17859 |{21127}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17860 |{21128} <= {#THRESH} |SMART [{#NAME}]: Attribute {#ID} {#ATTRNAME} is failed | |0 |2 |The value should be greater than THRESH. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17861 |{21129}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17862 |{21130}=1 and {21131}>0 |SMART [{#NAME}]: Disk has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17863 |{21132}>{$SMART.TEMPERATURE.MAX.WARN} |SMART [{#NAME}]: Average disk temperature is too high (over {$SMART.TEMPERATURE.MAX.WARN}°C for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17864 |{21133}>{$SMART.TEMPERATURE.MAX.CRIT} |SMART [{#NAME}]: Average disk temperature is critical (over {$SMART.TEMPERATURE.MAX.CRIT}°C for 5m) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17865 |{21134}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17866 |{21135}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17867 |{21136}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17868 |{21137}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17871 |{21140}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17875 |{21144}>{$MEMORY.UTIL.MAX} |#{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17876 |{21145}>{$MEMORY.UTIL.MAX} |{#SNMPINDEX}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17877 |{21146}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17878 |{21147}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17879 |{21148}>{$MEMORY.UTIL.MAX} |{#MODULE_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17880 |{21149}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17881 |{21150}>{$MEMORY.UTIL.MAX} |{#ENT_NAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17882 |{21151}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17883 |{21152}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17884 |{21153}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17885 |{21154}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17886 |{21155}>{$MEMORY.UTIL.MAX} |#{#SNMPVALUE}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17887 |{21156}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17888 |{21157}<{$SWAP.PFREE.MIN.WARN} and {21158}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17889 |{21159}<{$MEMORY.AVAILABLE.MIN} and {21160}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17890 |{21161}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17897 |{21172}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21173}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21174}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21175}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17900 |{21184}<{$SWAP.PFREE.MIN.WARN} and {21185}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17901 |{21186}<{$MEMORY.AVAILABLE.MIN} and {21187}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17902 |{21188}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17906 |{21194}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21195}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}: High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21196}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21197}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17908 |{21202}<{$SWAP.PFREE.MIN.WARN} and {21203}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17909 |{21204}<{$MEMORY.AVAILABLE.MIN} and {21205}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17910 |{21206}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17911 |({21207}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208} or&eol;{21209}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21208}) and&eol;{21208}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21207}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208} and&eol;{21209}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21208}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17912 |{21210}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21211}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21212}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21213}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17913 |{21214}<{$SWAP.PFREE.MIN.WARN} and {21215}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17914 |{21216}<{$MEMORY.AVAILABLE.MIN} and {21217}>0 |Lack of available memory (< {$MEMORY.AVAILABLE.MIN} of {ITEM.VALUE2}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 |Available: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17915 |{21218}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17919 |{21224}<{$SWAP.PFREE.MIN.WARN} and {21225}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17920 |{21226}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17923 |({21230}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21231} or&eol;{21232}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21231}) and&eol;{21231}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21230}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21231} and&eol;{21232}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21231}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17924 |{21233}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21234}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21235}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21236}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17927 |{21244}<{$SWAP.PFREE.MIN.WARN} and {21245}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |NULL |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 |
+ROW |17928 |{21246}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |17931 |({21250}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21251} or&eol;{21252}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21251}) and&eol;{21251}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21250}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21251} and&eol;{21252}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21251}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |17932 |{21253}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21254}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21255}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21256}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |17941 |{21271}=1 and {21272}>0 |OceanStor 5300 V5: Storage version has been changed | |0 |1 |OceanStor 5300 V5 version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17942 |{21273}<>1 |BBU {#ID} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17943 |{21274}<>2 |BBU {#ID} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17944 |{21275}>{$CPU.UTIL.CRIT} |Controller {#ID}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |17945 |{21276}<>1 |Controller {#ID}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17946 |{21277}>{$HUAWEI.5300.MEM.MAX.WARN} |Controller {#ID}: Memory usage is too high (over {$HUAWEI.5300.MEM.MAX.WARN} for {$HUAWEI.5300.MEM.MAX.TIME}) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17947 |{21278}=1 |Controller {#ID}: Role has been changed | |0 |2 | |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |17948 |{21279}<>27 |Controller {#ID}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17949 |{21280}<>1 |Disk {#MODEL} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17950 |{21281}<>27 |Disk {#MODEL} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17951 |{21282}>{$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} |Disk {#MODEL} on {#LOCATION}: Temperature is too high (over {$HUAWEI.5300.DISK.TEMP.MAX.WARN:"{#MODEL}"} for {$HUAWEI.5300.DISK.TEMP.MAX.TIME}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE} |0 |
+ROW |17952 |{21283}<>1 |Enclosure {#NAME}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17953 |{21284}<>27 |Enclosure {#NAME}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17954 |{21285}>{$HUAWEI.5300.TEMP.MAX.WARN} |Enclosure {#NAME}: Temperature is too high (over {$HUAWEI.5300.TEMP.MAX.WARN} for {$HUAWEI.5300.TEMP.MAX.TIME}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE} |0 |
+ROW |17955 |{21286}<>1 |FAN {#ID} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17956 |{21287}<>2 |FAN {#ID} on {#LOCATION}: Running status is not Running | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17957 |{21288}>{$HUAWEI.5300.LUN.IO.TIME.MAX.WARN} |LUN {#NAME}: Average I/O response time is too high (over {$HUAWEI.5300.LUN.IO.TIME.MAX.WARN}ms for {$HUAWEI.5300.LUN.IO.TIME.MAX.TIME}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17958 |{21289}<>1 |LUN {#NAME}: Status is not Normal | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |17959 |{21290}>{$CPU.UTIL.CRIT} |Node {#NODE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |17960 |{21291}>{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN} |Node {#NODE}: Average I/O latency is too high (over {$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}ms for {$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+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 |17964 |{21295}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21296}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Node {#NODE}: port {#IFNAME} ({#TYPE}): High error rate (> {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21297}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21298}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |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 |
+ROW |17990 |{21325}=1 and {21326}>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 |17991 |{21327}>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 |17992 |{21328}=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 |17993 |{21329}<10m |RabbitMQ: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |17994 |{21330}=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 |17995 |{21331}=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 |17996 |{21332}=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 |17997 |{21333}=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 |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 |
+ROW |18005 |{21343}=0 |MongoDB: Connection to MongoDB is unavailable | |0 |4 |Connection to MongoDB instance is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18006 |{21344}<10m |MongoDB: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18007 |{21345}=1 |MongoDB: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18008 |{21346}=1 and {21347}>0 |MongoDB: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |MongoDB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18009 |{21348}>0 and {21349}>0 |MongoDB: There are unhealthy replicas in ReplicaSet | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18010 |{21350}>{$MONGODB.REPL.LAG.MAX.WARN} |MongoDB: Replication lag with primary is too high (over {$MONGODB.REPL.LAG.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18011 |{21351}=1 |MongoDB: Node in ReplicaSet changed the state (new state: {ITEM.VALUE}) | |0 |2 |Node in ReplicaSet changed the state. Ack to close. |NULL |0 |2 |2 | |0 | |1 | |0 |
+ROW |18012 |{21352}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN} |MongoDB: Available WiredTiger read tickets less then {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN} | |0 |2 |"Too few available read tickets.&eol;When the number of available read tickets remaining reaches zero, new read requests will be queued until a new read ticket is available." |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18013 |{21353}<{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN} |MongoDB: Available WiredTiger write tickets less then {$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN} | |0 |2 |"Too few available write tickets.&eol;When the number of available write tickets remaining reaches zero, new write requests will be queued until a new write ticket is available." |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18014 |{21354}<{$MONGODB.CONNS.AVAILABLE.MIN.WARN} |MongoDB cluster: Available connections less then {$MONGODB.CONNS.AVAILABLE.MIN.WARN} | |0 |2 |"Too few available connections.&eol;Consider this value in combination with the value of connections current to understand the connection load on the database" |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18015 |{21355}>{$MONGODB.CURSOR.OPEN.MAX.WARN} |MongoDB cluster: 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 |18016 |{21356}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN} |MongoDB cluster: 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 |
+ROW |18017 |{21357}=0 |MongoDB cluster: Connection to mongos proxy is unavailable | |0 |4 |Connection to mongos proxy instance is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18018 |{21358}<10m |MongoDB cluster: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18019 |{21359}=1 |MongoDB cluster: Failed to fetch info data (or no data for 10m) | |0 |2 |Zabbix has not received data for items for the last 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18020 |{21360}=1 and {21361}>0 |MongoDB cluster: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |MongoDB cluster version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18021 |{21362}>{21363} and {21363}>{21364} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size is growing | |0 |4 |The log records of the primary database do not send to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18022 |{21365}>{21366} and {21366}>{21367} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Redo log queue size is growing | |0 |4 |The log records in the log files of the secondary replica have not yet been redone. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18023 |{21368}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18024 |{21369}>{$ICMP_LOSS_WARN} and {21369}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18025 |{21370}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18026 |{21371}=1 and {21372}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18027 |{21373}=1 and {21374}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18028 |{21375}=1 and {21376}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |18029 |{21377}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18030 |{21378}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18031 |{21379}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |18032 |{21380}=1 and {21381}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18033 |{21382}=3 or {21382}=4 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18034 |{21383}=2 |{#SNMPVALUE}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18035 |{21384}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18036 |{21385}<0 and {21386}>0&bsn;and (&bsn;{21387}=6 or&bsn;{21387}=7 or&bsn;{21387}=11 or&bsn;{21387}=62 or&bsn;{21387}=69 or&bsn;{21387}=117&bsn;)&bsn;and&bsn;({21388}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21385}>0 and {21389}>0) or&bsn;({21388}=2) |0 | |0 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18037 |({21390}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21391}) and&bsn;{21391}>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 |{21390}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21391} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18038 |({21392}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21393}) and&bsn;{21393}>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 |{21392}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21393} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18039 |{21394}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21395}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors in: {ITEM.LASTVALUE1} |0 |
+ROW |18040 |{21396}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21397}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18041 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21398}=2) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&bsn;1. Can be triggered if operations status is down.&bsn;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. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18042 |{21399}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18043 |{21400}=3 or {21401}=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 |18044 |{21402}=2 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18045 |{21403}=3 or {21403}=4 |{#SNMPVALUE}: Temperature is in critical state | |0 |4 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18046 |{21404}=2 |{#SNMPVALUE}: Temperature is in warning state | |0 |2 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18047 |{21405}>{$TEMP_CRIT:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21406}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18048 |{21407}>{$TEMP_WARN:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21408}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18049 |{21409}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{21410}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18050 |{21411}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18051 |{21412}>{$ICMP_LOSS_WARN} and {21412}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18052 |{21413}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18053 |{21414}=1 and {21415}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18054 |{21416}=1 and {21417}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18055 |{21418}=1 and {21419}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |18056 |{21420}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18057 |{21421}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18058 |{21422}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |18059 |{21423}=1 and {21424}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18060 |{21425}=3 or {21425}=4 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18061 |{21426}=2 |{#SNMPVALUE}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18062 |{21427}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18063 |{21428}<0 and {21429}>0&bsn;and (&bsn;{21430}=6 or&bsn;{21430}=7 or&bsn;{21430}=11 or&bsn;{21430}=62 or&bsn;{21430}=69 or&bsn;{21430}=117&bsn;)&bsn;and&bsn;({21431}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21428}>0 and {21432}>0) or&bsn;({21431}=2) |0 | |0 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18064 |({21433}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21434}) and&bsn;{21434}>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 |{21433}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21434} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18065 |({21435}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21436}) and&bsn;{21436}>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 |{21435}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21436} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18066 |{21437}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21438}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors in: {ITEM.LASTVALUE1} |0 |
+ROW |18067 |{21439}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21440}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18068 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21441}=2) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&bsn;1. Can be triggered if operations status is down.&bsn;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. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18069 |{21442}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18070 |{21443}=3 or {21444}=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 |18071 |{21445}=2 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18072 |{21446}=3 or {21446}=4 |{#SNMPVALUE}: Temperature is in critical state | |0 |4 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18073 |{21447}=2 |{#SNMPVALUE}: Temperature is in warning state | |0 |2 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18074 |{21448}>{$TEMP_CRIT:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21449}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18075 |{21450}>{$TEMP_WARN:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21451}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18076 |{21452}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{21453}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18077 |{21454}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18078 |{21455}>{$ICMP_LOSS_WARN} and {21455}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18079 |{21456}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18080 |{21457}=1 and {21458}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18081 |{21459}=1 and {21460}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18082 |{21461}=1 and {21462}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |18083 |{21463}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18084 |{21464}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18085 |{21465}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |18086 |{21466}=1 and {21467}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18087 |{21468}=3 or {21468}=4 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18088 |{21469}=2 |{#SNMPVALUE}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18089 |{21470}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18090 |{21471}<0 and {21472}>0&bsn;and (&bsn;{21473}=6 or&bsn;{21473}=7 or&bsn;{21473}=11 or&bsn;{21473}=62 or&bsn;{21473}=69 or&bsn;{21473}=117&bsn;)&bsn;and&bsn;({21474}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21471}>0 and {21475}>0) or&bsn;({21474}=2) |0 | |0 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18091 |({21476}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21477}) and&bsn;{21477}>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 |{21476}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21477} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18092 |({21478}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21479}) and&bsn;{21479}>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 |{21478}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21479} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18093 |{21480}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21481}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors in: {ITEM.LASTVALUE1} |0 |
+ROW |18094 |{21482}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21483}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18095 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21484}=2) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&bsn;1. Can be triggered if operations status is down.&bsn;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. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18096 |{21485}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18097 |{21486}=3 or {21487}=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 |18098 |{21488}=2 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18099 |{21489}=3 or {21489}=4 |{#SNMPVALUE}: Temperature is in critical state | |0 |4 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18100 |{21490}=2 |{#SNMPVALUE}: Temperature is in warning state | |0 |2 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18101 |{21491}>{$TEMP_CRIT:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21492}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18102 |{21493}>{$TEMP_WARN:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21494}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18103 |{21495}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{21496}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18104 |{21497}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18105 |{21498}>{$ICMP_LOSS_WARN} and {21498}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18106 |{21499}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18107 |{21500}=1 and {21501}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18108 |{21502}=1 and {21503}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18109 |{21504}=1 and {21505}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |18110 |{21506}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18111 |{21507}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18112 |{21508}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |18113 |{21509}=1 and {21510}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18114 |{21511}=3 or {21511}=4 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18115 |{21512}=2 |{#SNMPVALUE}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18116 |{21513}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18117 |{21514}<0 and {21515}>0&bsn;and (&bsn;{21516}=6 or&bsn;{21516}=7 or&bsn;{21516}=11 or&bsn;{21516}=62 or&bsn;{21516}=69 or&bsn;{21516}=117&bsn;)&bsn;and&bsn;({21517}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21514}>0 and {21518}>0) or&bsn;({21517}=2) |0 | |0 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18118 |({21519}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21520}) and&bsn;{21520}>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 |{21519}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21520} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18119 |({21521}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21522}) and&bsn;{21522}>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 |{21521}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21522} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18120 |{21523}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21524}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors in: {ITEM.LASTVALUE1} |0 |
+ROW |18121 |{21525}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21526}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18122 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21527}=2) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&bsn;1. Can be triggered if operations status is down.&bsn;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. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18123 |{21528}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18124 |{21529}=3 or {21530}=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 |18125 |{21531}=2 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18126 |{21532}=3 or {21532}=4 |{#SNMPVALUE}: Temperature is in critical state | |0 |4 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18127 |{21533}=2 |{#SNMPVALUE}: Temperature is in warning state | |0 |2 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18128 |{21534}>{$TEMP_CRIT:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21535}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18129 |{21536}>{$TEMP_WARN:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21537}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18130 |{21538}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{21539}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18131 |{21540}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18132 |{21541}>{$ICMP_LOSS_WARN} and {21541}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18133 |{21542}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18134 |{21543}=1 and {21544}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18135 |{21545}=1 and {21546}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18136 |{21547}=1 and {21548}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |NULL |0 |0 |2 | |0 | |1 | |0 |
+ROW |18137 |{21549}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18138 |{21550}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18139 |{21551}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |NULL |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
+ROW |18140 |{21552}=1 and {21553}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18141 |{21554}=3 or {21554}=4 |{#SNMPVALUE}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18142 |{21555}=2 |{#SNMPVALUE}: Fan is in warning state | |0 |2 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18143 |{21556}>{$MEMORY.UTIL.MAX} |{#SNMPVALUE}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18144 |{21557}<0 and {21558}>0&bsn;and (&bsn;{21559}=6 or&bsn;{21559}=7 or&bsn;{21559}=11 or&bsn;{21559}=62 or&bsn;{21559}=69 or&bsn;{21559}=117&bsn;)&bsn;and&bsn;({21560}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21557}>0 and {21561}>0) or&bsn;({21560}=2) |0 | |0 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18145 |({21562}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21563}) and&bsn;{21563}>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 |{21562}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21563} |0 | |0 |In: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18146 |({21564}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21565}) and&bsn;{21565}>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 |{21564}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21565} |0 | |0 |Out: {ITEM.LASTVALUE1}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18147 |{21566}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High input error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21567}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors in: {ITEM.LASTVALUE1} |0 |
+ROW |18148 |{21568}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High output error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21569}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |0 |errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18149 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21570}=2) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&bsn;1. Can be triggered if operations status is down.&bsn;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. |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18150 |{21571}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18151 |{21572}=3 or {21573}=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 |18152 |{21574}=2 |{#SNMPVALUE}: Power supply is in warning state | |0 |2 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18153 |{21575}=3 or {21575}=4 |{#SNMPVALUE}: Temperature is in critical state | |0 |4 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18154 |{21576}=2 |{#SNMPVALUE}: Temperature is in warning state | |0 |2 |This trigger uses temperature sensor state |NULL |0 |2 |0 | |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18155 |{21577}>{$TEMP_CRIT:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above critical threshold: >{$TEMP_CRIT:"{#SNMPVALUE}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21578}<{$TEMP_CRIT:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18156 |{21579}>{$TEMP_WARN:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is above warning threshold: >{$TEMP_WARN:"{#SNMPVALUE}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21580}<{$TEMP_WARN:"{#SNMPVALUE}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18157 |{21581}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |NULL |0 |2 |1 |{21582}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18158 |{21583}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18159 |{21584}>{$ICMP.LOSS.WARN} and {21584}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18160 |{21585}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18161 |{21586}>{$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 |18162 |{21587}=1 and {21588}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18163 |{21589}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18164 |{21590}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18165 |{21591}=1 |{#SENSOR_INFO}: Fan is in critical state | |0 |3 |Please check the fan unit |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18166 |{21592}<0 and {21593}>0&eol;and (&eol;{21594}=6 or&eol;{21594}=7 or&eol;{21594}=11 or&eol;{21594}=62 or&eol;{21594}=69 or&eol;{21594}=117&eol;)&eol;and&eol;({21595}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |NULL |0 |2 |1 |({21592}>0 and {21596}>0) or&eol;({21595}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
+ROW |18167 |({21597}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21598} or&eol;{21599}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21598}) and&eol;{21598}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage ( > {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |NULL |0 |2 |1 |{21597}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21598} and&eol;{21599}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21598}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
+ROW |18168 |{21600}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21601}>{$IF.ERRORS.WARN:"{#IFNAME}"} |Interface {#IFNAME}({#IFALIAS}): High error rate ( > {$IF.ERRORS.WARN:"{#IFNAME}"} for 5m) | |0 |2 |Recovers when below 80% of {$IF.ERRORS.WARN:"{#IFNAME}"} threshold |NULL |0 |2 |1 |{21602}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21603}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
+ROW |18169 |{$IFCONTROL:"{#IFNAME}"}=1 and ({21604}=2 and {21605}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |NULL |0 |2 |1 |{21604}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18170 |{21606}=1 |{#ENT_NAME}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |NULL |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18171 |{21607}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}&eol;or&eol;{21608}={$TEMP.STATUS.WARN} |{#SENSOR_INFO}: Temperature is above warning threshold: >{$TEMP.MAX.WARN:"{#SENSOR_INFO}"} | |0 |2 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21609}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18172 |{21610}>{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"} |{#SENSOR_INFO}: Temperature is above critical threshold: >{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"} | |0 |4 |This trigger uses temperature sensor values as well as temperature sensor status if available |NULL |0 |2 |1 |{21611}<{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18173 |{21612}<{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} |{#SENSOR_INFO}: Temperature is too low: <{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"} | |0 |3 | |NULL |0 |2 |1 |{21613}>{$TEMP.MIN.CRIT:"{#SENSOR_INFO}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 |
+ROW |18174 |{21614}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({21615}-{21616})<5G or {21617}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |NULL |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
+ROW |18175 |{21618}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({21619}-{21620})<10G or {21621}<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 |18176 |{21622}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization ( >{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18177 |{21623}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18178 |{21624}=4 |Battery has an internal error condition | |0 |3 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18179 |{21625}=3 |Battery is Low | |0 |3 |The UPS will be unable to sustain the current load, and its services will be lost if power is not restored. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18180 |{21626} > {$BATTERY.TEMP.MAX.WARN} |Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
+ROW |18181 |{21627}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18182 |{21628}>{$ICMP.LOSS.WARN} and {21628}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
+ROW |18183 |{21629}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
+ROW |18184 |{21630} > 0 and ({21630} > {$UPS.INPUT_FREQ.MAX.WARN} or {21631} < {$UPS.INPUT_FREQ.MIN.WARN}) |Unacceptable input frequency (out of range {$UPS.INPUT_FREQ.MIN.WARN}-{$UPS.INPUT_FREQ.MAX.WARN}Hz for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current frequency: {ITEM.LASTVALUE1} |0 |
+ROW |18185 |{21632} > 0 and ({21632} > {$UPS.INPUT_VOLT.MAX.WARN} or {21633} < {$UPS.INPUT_VOLT.MIN.WARN}) |Unacceptable input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current voltage: {ITEM.LASTVALUE1} |0 |
+ROW |18186 |{21634} > {$UPS.OUTPUT.MAX.WARN} |Output load is high (over {$UPS.OUTPUT.MAX.WARN}% for {$TIME.PERIOD}) | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 |Current load: {ITEM.LASTVALUE1} |0 |
+ROW |18187 |{21635}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18188 |{21636}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18189 |{21637}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18190 |{21638}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18191 |{21639}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18192 |{21640}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18193 |{21641}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18194 |{21642}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18195 |{21643}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18196 |{21644}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18197 |{21645}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18198 |{21646}=1 and {21647}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18199 |{21648}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18200 |{21649}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |NULL |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
+ROW |18201 |{21650}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery lifetime is not okay | |0 |2 |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 |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
+ROW |18202 |{21651}=1 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status is not okay | |0 |2 |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 |NULL |0 |2 |0 | |0 | |0 |Current bit set: {ITEM.LASTVALUE1} |0 |
+ROW |18203 |{21652} > {$BATTERY.TEMP.MAX.WARN} |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery has high temperature (over {$BATTERY.TEMP.MAX.WARN}℃ for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current temperature: {ITEM.LASTVALUE1} |0 |
+ROW |18204 |{21653}=4 |{#EXTERNAL_SENSOR1_NAME}: Sensor has status Not Applicable | |0 |1 |The external sensor does not work or is not connected. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18205 |{21654}=2 |{#EXTERNAL_SENSOR1_NAME}: Sensor has status Warning | |0 |3 |The external sensor has returned a value greater than the warning threshold. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18206 |{21655}=3 |{#EXTERNAL_SENSOR1_NAME}: Sensor has status Critical | |0 |4 |The external sensor has returned a value greater than the critical threshold. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18207 |{21656}=4 |{#EXTERNAL_SENSOR2_NAME}: Sensor has status Not Applicable | |0 |1 |The external sensor does not work or is not connected. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18208 |{21657}=2 |{#EXTERNAL_SENSOR2_NAME}: Sensor has status Warning | |0 |3 |The external sensor has returned a value greater than the warning threshold. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18209 |{21658}=3 |{#EXTERNAL_SENSOR2_NAME}: Sensor has status Critical | |0 |4 |The external sensor has returned a value greater than the critical threshold. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18210 |{21659} > {$UPS.INPUT_VOLT.MAX.WARN} or {21660} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} input voltage (out of range {$UPS.INPUT_VOLT.MIN.WARN}-{$UPS.INPUT_VOLT.MAX.WARN}V for {$TIME.PERIOD}) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 |Current phase {#PHASEINDEX} voltage: {ITEM.LASTVALUE1} |0 |
+ROW |18211 |({21661}<>"ok") |Cluster status is abnormal | |0 |3 |Any errors associated with the sample. For example, if the aggregation of data over multiple nodes fails then any of the partial errors might be returned, “ok” on success, or “error” on any internal uncategorized failure. Whenever a sample collection is missed but done at a later time, it is back filled to the previous 15 second timestamp and tagged with "backfilled_data". “Inconsistent_ delta_time” is encountered when the time between two collections is not the same for all nodes. Therefore, the aggregated value might be over or under inflated. “Negative_delta” is returned when an expected monotonically increasing value has decreased in value. “Inconsistent_old_data” is returned when one or more nodes do not have the latest data. |NULL |0 |0 |0 | |0 | |0 | |0 |
+ROW |18212 |{21662}=1 and {21663}>0 |Version has changed (new version: {ITEM.VALUE}) | |0 |1 |__RESOURCE__ version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 |
+ROW |18213 |({21664}=1 and {21665}="error") |{#ID}: Chassis has something errors | |0 |3 |Something is wrong with the chassis. |NULL |0 |2 |1 |({21664}=1 and {21665}="ok") |0 | |1 | |0 |
+ROW |18214 |({21666}=1 and {21667}<>"present") |{#DISKNAME}: Disk of the Node "{#NODENAME}" has state different from "present" | |0 |3 |Something is wrong with the disk. |NULL |0 |2 |1 |({21666}=1 and {21667}="present") |0 | |1 | |0 |
+ROW |18215 |({21668}=1 and {21669}="error") |{#FRUID}: FRU of the chassis "{#ID}" state is error | |0 |3 |Something is wrong with the FRU. |NULL |0 |2 |1 |({21668}=1 and {21669}="ok") |0 | |1 | |0 |
+ROW |18216 |({21670}=1 and {21671}<>"online") |{#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal container state | |0 |3 |LUNs are only available when their containers are available. |NULL |0 |2 |1 |({21670}=1 and {21671}="online") |0 | |1 | |0 |
+ROW |18217 |({21672}=1 and {21673}<>"online") |{#LUNNAME}: LUN of the SVM "{#SVMNAME}" has abnormal state | |0 |3 |Normal states for a LUN are online and offline. Other states indicate errors. |NULL |0 |2 |1 |({21672}=1 and {21673}="online") |0 | |1 | |0 |
+ROW |18218 |{21674}=1 and {21675}>0 |{#NODENAME}: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |{#NODENAME} version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18219 |({21676}<>"normal") |{#NODENAME}: Node has over temperature | |0 |3 |The hardware shuts down if the temperature exceeds critical thresholds(item's value is "over"). |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18220 |({21677}<>"up") |{#NODENAME}: Node state is abnormal | |0 |3 |The state of the node is different from up:&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. |NULL |0 |2 |0 | |0 | |0 | |0 |
+ROW |18221 |{21678}<10m |{#NODENAME}: Node has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 |
+ROW |18222 |({21679}=1 and {21680}="down") |{#ETHPORTNAME}: Ethernet port of the Node "{#NODENAME}" is down | |0 |3 |Something is wrong with the ethernet port. |NULL |0 |2 |1 |({21679}=1 and {21680}="up") |0 | |1 | |0 |
+ROW |18223 |({21681}=1 and {21682}<>"online") |{#FCPORTNAME}: FC port of the Node "{#NODENAME}" has state different from "online" | |0 |3 |Something is wrong with the FC port. |NULL |0 |2 |1 |({21681}=1 and {21682}="online") |0 | |1 | |0 |
+ROW |18224 |({21683}=1 and {21684}<>"running") |{#SVMNAME}: SVM state is abnormal | |0 |3 |Something is wrong with the SVM. |NULL |0 |2 |1 |({21683}=1 and {21684}="running") |0 | |1 | |0 |
+ROW |18225 |({21685}=1 and {21686}<>"online") |{#VOLUMENAME}: Volume state is abnormal | |0 |3 |A volume can only be brought online if it is offline. Taking a volume offline removes its junction path. The ‘mixed’ state applies to FlexGroup volumes only and cannot be specified as a target state. An ‘error’ state implies that the volume is not in a state to serve data. |NULL |0 |2 |1 |({21685}=1 and {21686}="online") |0 | |1 | |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|
@@ -8052,7 +9140,6 @@ ROW |15685 |{17762}<0 and {17763}>0&eol;and (&eol;{17764}=6 or&eol;{17764}=
ROW |15686 |{17767}<0 and {17768}>0&eol;and (&eol;{17769}=6 or&eol;{17769}=7 or&eol;{17769}=11 or&eol;{17769}=62 or&eol;{17769}=69 or&eol;{17769}=117&eol;)&eol;and&eol;({17770}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15671 |0 |2 |1 |({17767}>0 and {17771}>0) or&eol;({17770}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15687 |{17772}<0 and {17773}>0&eol;and (&eol;{17774}=6 or&eol;{17774}=7 or&eol;{17774}=11 or&eol;{17774}=62 or&eol;{17774}=69 or&eol;{17774}=117&eol;)&eol;and&eol;({17775}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15671 |0 |2 |1 |({17772}>0 and {17776}>0) or&eol;({17775}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15689 |{17782}<0 and {17783}>0&eol;and (&eol;{17784}=6 or&eol;{17784}=7 or&eol;{17784}=11 or&eol;{17784}=62 or&eol;{17784}=69 or&eol;{17784}=117&eol;)&eol;and&eol;({17785}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15671 |0 |2 |1 |({17782}>0 and {17786}>0) or&eol;({17785}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
-ROW |15690 |{17787}<0 and {17788}>0&eol;and (&eol;{17789}=6 or&eol;{17789}=7 or&eol;{17789}=11 or&eol;{17789}=62 or&eol;{17789}=69 or&eol;{17789}=117&eol;)&eol;and&eol;({17790}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15671 |0 |2 |1 |({17787}>0 and {17791}>0) or&eol;({17790}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15691 |{17792}<0 and {17793}>0&eol;and (&eol;{17794}=6 or&eol;{17794}=7 or&eol;{17794}=11 or&eol;{17794}=62 or&eol;{17794}=69 or&eol;{17794}=117&eol;)&eol;and&eol;({17795}<>2)|Interface {#IFNAME}({#IFALIAS}): Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15671 |0 |2 |1 |({17792}>0 and {17796}>0) or&eol;({17795}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15694 |{17807}<0 and {17808}>0&eol;and (&eol;{17809}=6 or&eol;{17809}=7 or&eol;{17809}=11 or&eol;{17809}=62 or&eol;{17809}=69 or&eol;{17809}=117&eol;)&eol;and&eol;({17810}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15695 |0 |2 |1 |({17807}>0 and {17811}>0) or&eol;({17810}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
ROW |15696 |{17817}<0 and {17818}>0&eol;and (&eol;{17819}=6 or&eol;{17819}=7 or&eol;{17819}=11 or&eol;{17819}=62 or&eol;{17819}=69 or&eol;{17819}=117&eol;)&eol;and&eol;({17820}<>2)|Interface {#IFDESCR}: Ethernet has changed to lower speed than it was before | |0 |1 |This Ethernet connection has transitioned down from its known maximum speed. This might be a sign of autonegotiation issues. Ack to close. |15695 |0 |2 |1 |({17817}>0 and {17821}>0) or&eol;({17820}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 |
@@ -8145,7 +9232,6 @@ ROW |16306 |{18773}<10m
ROW |16307 |{18774}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16308 |{18775}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16309 |{18776}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
-ROW |16310 |{18777}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16311 |{18778}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16312 |{18779}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
ROW |16313 |{18780}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 |
@@ -8174,7 +9260,6 @@ ROW |16364 |{18860}=0
ROW |16365 |{18861}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16366 |{18862}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16367 |{18863}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16368 |{18864}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16369 |{18865}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16370 |{18866}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16371 |{18867}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -8222,7 +9307,6 @@ ROW |16610 |{19378}=1 and {19379}>0
ROW |16611 |{19380}=1 and {19381}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
ROW |16612 |{19382}=1 and {19383}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
ROW |16613 |{19384}=1 and {19385}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
-ROW |16614 |{19386}=1 and {19387}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
ROW |16615 |{19388}=1 and {19389}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
ROW |16616 |{19390}=1 and {19391}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
ROW |16617 |{19392}=1 and {19393}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 |
@@ -8254,7 +9338,6 @@ ROW |16855 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19722}=2 and {19723}=1)
ROW |16856 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19724}=2 and {19725}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19724}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16857 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19726}=2 and {19727}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19726}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16858 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19728}=2 and {19729}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19728}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
-ROW |16859 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19730}=2 and {19731}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19730}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16860 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19732}=2 and {19733}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19732}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16861 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19734}=2 and {19735}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19734}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
ROW |16862 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19736}=2 and {19737}=1) |Interface {#IFNAME}({#IFALIAS}): Link down | |0 |3 |This trigger expression works as follows:&eol;1. Can be triggered if operations status is down.&eol;2. {$IFCONTROL:"{#IFNAME}"}=1 - user can redefine Context macro to value - 0. That marks this interface as not important. No new trigger will be fired if this interface is down.&eol;3. {TEMPLATE_NAME:METRIC.diff()}=1) - trigger fires only if operational status was up(1) sometime before. (So, do not fire 'ethernal off' interfaces.)&eol;&eol;WARNING: if closed manually - won't fire again on next poll, because of .diff. |16841 |0 |2 |1 |{19736}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 |
@@ -8314,7 +9397,6 @@ ROW |17821 |({20999}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21000} or&eol;{21001
ROW |17822 |({21002}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21003} or&eol;{21004}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21003}) and&eol;{21003}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21002}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21003} and&eol;{21004}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21003}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17823 |({21005}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21006} or&eol;{21007}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21006}) and&eol;{21006}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21005}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21006} and&eol;{21007}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21006}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17824 |({21008}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21009} or&eol;{21010}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21009}) and&eol;{21009}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21008}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21009} and&eol;{21010}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21009}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
-ROW |17825 |({21011}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21012} or&eol;{21013}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21012}) and&eol;{21012}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21011}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21012} and&eol;{21013}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21012}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17826 |({21014}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21015} or&eol;{21016}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21015}) and&eol;{21015}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21014}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21015} and&eol;{21016}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21015}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17827 |({21017}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21018} or&eol;{21019}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21018}) and&eol;{21018}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21017}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21018} and&eol;{21019}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21018}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
ROW |17828 |({21020}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21021} or&eol;{21022}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21021}) and&eol;{21021}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (> {$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |17806 |0 |2 |1 |{21020}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21021} and&eol;{21022}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21021}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 |
@@ -8335,7 +9417,6 @@ ROW |17842 |{21075}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21076}>{$IF.ERROR
ROW |17843 |{21079}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21080}>{$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 |17807 |0 |2 |1 |{21081}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21082}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17844 |{21083}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21084}>{$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 |17807 |0 |2 |1 |{21085}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21086}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17845 |{21087}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21088}>{$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 |17807 |0 |2 |1 |{21089}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21090}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
-ROW |17846 |{21091}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21092}>{$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 |17807 |0 |2 |1 |{21093}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21094}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17847 |{21095}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21096}>{$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 |17807 |0 |2 |1 |{21097}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21098}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17848 |{21099}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21100}>{$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 |17807 |0 |2 |1 |{21101}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21102}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
ROW |17849 |{21103}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21104}>{$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 |17807 |0 |2 |1 |{21105}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21106}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 |
@@ -8434,9 +9515,6 @@ ROW |14719 |{15211}>{$ICMP_RESPONSE_TIME_WARN}
ROW |14906 |{15678}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
ROW |14907 |{15679}>{$ICMP_LOSS_WARN} and {15679}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
ROW |14908 |{15680}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
-ROW |14928 |{15713}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 |
-ROW |14929 |{15714}>{$ICMP_LOSS_WARN} and {15714}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 |
-ROW |14930 |{15715}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 |
ROW |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 |
@@ -8480,13 +9558,10 @@ ROW |16454 |{19107}>{$ICMP_LOSS_WARN} and {19107}<100
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 |16626 |{19408}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
ROW |16627 |{19409}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
ROW |16628 |{19410}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 |
-ROW |16637 |{19428}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19429}-{19430})<5G or {19431}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |16638 |{19432}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19433}-{19434})<5G or {19435}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |16639 |{19436}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19437}-{19438})<5G or {19439}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
-ROW |16641 |{19444}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19445}-{19446})<10G or {19447}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |16642 |{19448}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19449}-{19450})<10G or {19451}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |16643 |{19452}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19453}-{19454})<10G or {19455}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16640 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 |
ROW |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 |
@@ -8494,7 +9569,6 @@ ROW |16998 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19927}=2 and {19928}=1)
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 |17795 |{20922}>{$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 |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 |
@@ -8511,51 +9585,6 @@ ROW |10546 |15978 |15983 |
ROW |10547 |15980 |15979 |
ROW |10548 |15986 |15987 |
ROW |10549 |15988 |15987 |
-ROW |21292 |17682 |17683 |
-ROW |21293 |17684 |17685 |
-ROW |21294 |17686 |17687 |
-ROW |21295 |15944 |15947 |
-ROW |21296 |15944 |15943 |
-ROW |21297 |15943 |15947 |
-ROW |21298 |16888 |15947 |
-ROW |21299 |16888 |15943 |
-ROW |21300 |15948 |15949 |
-ROW |21301 |15950 |15949 |
-ROW |21302 |17219 |17218 |
-ROW |21303 |17222 |17221 |
-ROW |21304 |16743 |16744 |
-ROW |21305 |16784 |16785 |
-ROW |21306 |16790 |16791 |
-ROW |21307 |16892 |16900 |
-ROW |21308 |16894 |16900 |
-ROW |21309 |17267 |17275 |
-ROW |21310 |17272 |17276 |
-ROW |21311 |17273 |17275 |
-ROW |21312 |17274 |17276 |
-ROW |21313 |17279 |17277 |
-ROW |21314 |17282 |17280 |
-ROW |21315 |16646 |16647 |
-ROW |21316 |16809 |16810 |
-ROW |21317 |16902 |16904 |
-ROW |21318 |16904 |16905 |
-ROW |21319 |16909 |16906 |
-ROW |21320 |16910 |16912 |
-ROW |21321 |16912 |16913 |
-ROW |21322 |16917 |16914 |
-ROW |21323 |16752 |16753 |
-ROW |21324 |15955 |15957 |
-ROW |21325 |15955 |15954 |
-ROW |21326 |15954 |15957 |
-ROW |21327 |15956 |15957 |
-ROW |21328 |15956 |15954 |
-ROW |21329 |16678 |15957 |
-ROW |21330 |16678 |15954 |
-ROW |21331 |15961 |15960 |
-ROW |21332 |15962 |15960 |
-ROW |21333 |16679 |15960 |
-ROW |21334 |17225 |17231 |
-ROW |21335 |17228 |17231 |
-ROW |21336 |17236 |17233 |
ROW |21337 |16257 |16255 |
ROW |21338 |16257 |16256 |
ROW |21339 |16256 |16255 |
@@ -8566,630 +9595,757 @@ ROW |21343 |16443 |16256 |
ROW |21344 |16270 |16269 |
ROW |21345 |16448 |16269 |
ROW |21346 |16265 |16269 |
-ROW |21347 |17081 |17083 |
-ROW |21348 |17082 |17081 |
-ROW |21349 |17082 |17083 |
-ROW |21350 |17082 |17084 |
-ROW |21351 |17084 |17083 |
-ROW |21352 |17117 |17127 |
-ROW |21353 |17118 |17117 |
-ROW |21354 |17118 |17127 |
-ROW |21355 |17119 |17127 |
-ROW |21356 |17120 |17119 |
-ROW |21357 |17120 |17127 |
-ROW |21358 |17122 |17121 |
-ROW |21359 |17123 |17127 |
-ROW |21360 |17124 |17123 |
-ROW |21361 |17124 |17127 |
-ROW |21362 |17126 |17125 |
-ROW |21363 |17128 |17144 |
-ROW |21364 |17129 |17128 |
-ROW |21365 |17129 |17144 |
-ROW |21366 |17130 |17144 |
-ROW |21367 |17131 |17130 |
-ROW |21368 |17131 |17144 |
-ROW |21369 |17132 |17144 |
-ROW |21370 |17133 |17132 |
-ROW |21371 |17133 |17144 |
-ROW |21372 |17134 |17144 |
-ROW |21373 |17135 |17134 |
-ROW |21374 |17135 |17144 |
-ROW |21375 |17136 |17144 |
-ROW |21376 |17137 |17136 |
-ROW |21377 |17137 |17144 |
-ROW |21378 |17139 |17138 |
-ROW |21379 |17140 |17144 |
-ROW |21380 |17141 |17140 |
-ROW |21381 |17141 |17144 |
-ROW |21382 |17142 |17144 |
-ROW |21383 |17143 |17142 |
-ROW |21384 |17143 |17144 |
-ROW |21385 |17145 |17144 |
-ROW |21386 |17146 |17144 |
-ROW |21387 |17146 |17145 |
-ROW |21388 |17147 |17144 |
-ROW |21389 |17148 |17144 |
-ROW |21390 |17148 |17147 |
-ROW |21391 |17306 |17307 |
-ROW |21392 |16920 |16921 |
-ROW |21393 |16833 |16920 |
-ROW |21394 |17748 |17747 |
-ROW |21395 |17750 |17749 |
-ROW |21396 |17753 |17754 |
-ROW |21397 |17755 |17754 |
-ROW |21398 |17765 |17766 |
-ROW |21399 |16929 |16928 |
-ROW |21400 |16940 |17153 |
-ROW |21401 |16719 |16721 |
-ROW |21402 |16975 |16723 |
-ROW |21403 |16729 |16728 |
-ROW |21404 |16730 |16728 |
-ROW |21405 |16756 |16758 |
-ROW |21406 |16979 |16759 |
-ROW |21407 |16765 |16764 |
-ROW |21408 |16766 |16764 |
-ROW |21409 |16734 |16736 |
-ROW |21410 |16983 |16732 |
-ROW |21411 |16741 |16740 |
-ROW |21412 |16742 |16740 |
-ROW |21413 |17173 |17172 |
-ROW |21414 |17175 |17176 |
-ROW |21415 |17180 |17179 |
-ROW |21416 |17711 |17712 |
-ROW |21417 |17713 |17714 |
-ROW |21418 |17030 |17017 |
-ROW |21419 |17035 |17036 |
-ROW |21420 |17039 |17038 |
-ROW |21421 |17044 |17043 |
-ROW |21422 |17715 |17716 |
-ROW |21423 |17717 |17718 |
-ROW |21424 |15928 |15933 |
-ROW |21425 |15931 |15933 |
-ROW |21426 |16683 |16687 |
-ROW |21427 |14252 |14251 |
-ROW |21428 |14294 |14293 |
-ROW |21429 |14312 |14311 |
-ROW |21430 |14328 |14327 |
-ROW |21431 |14348 |14347 |
-ROW |21432 |14357 |14356 |
-ROW |21433 |14390 |14389 |
-ROW |21434 |14404 |14403 |
-ROW |21435 |14452 |14451 |
-ROW |21436 |14469 |14468 |
-ROW |21437 |14487 |14486 |
-ROW |21438 |14506 |14505 |
-ROW |21439 |14535 |14534 |
-ROW |21440 |14545 |14544 |
-ROW |21441 |14583 |14582 |
-ROW |21442 |14599 |14598 |
-ROW |21443 |14616 |14615 |
-ROW |21444 |14653 |14652 |
-ROW |21445 |14674 |14673 |
-ROW |21446 |14692 |14691 |
-ROW |21447 |14705 |14704 |
-ROW |21448 |14718 |14717 |
-ROW |21449 |14907 |14906 |
-ROW |21450 |14929 |14928 |
-ROW |21451 |15221 |15220 |
-ROW |21452 |15702 |15701 |
-ROW |21453 |15724 |15723 |
-ROW |21454 |15756 |15755 |
-ROW |21455 |15820 |15819 |
-ROW |21456 |15841 |15840 |
-ROW |21457 |15991 |15990 |
-ROW |21458 |16018 |16017 |
-ROW |21459 |16454 |16453 |
-ROW |21460 |17721 |17720 |
-ROW |21461 |14253 |14252 |
-ROW |21462 |14295 |14294 |
-ROW |21463 |14313 |14312 |
-ROW |21464 |14329 |14328 |
-ROW |21465 |14349 |14348 |
-ROW |21466 |14358 |14357 |
-ROW |21467 |14391 |14390 |
-ROW |21468 |14405 |14404 |
-ROW |21469 |14453 |14452 |
-ROW |21470 |14470 |14469 |
-ROW |21471 |14488 |14487 |
-ROW |21472 |14507 |14506 |
-ROW |21473 |14536 |14535 |
-ROW |21474 |14546 |14545 |
-ROW |21475 |14584 |14583 |
-ROW |21476 |14600 |14599 |
-ROW |21477 |14617 |14616 |
-ROW |21478 |14654 |14653 |
-ROW |21479 |14675 |14674 |
-ROW |21480 |14693 |14692 |
-ROW |21481 |14706 |14705 |
-ROW |21482 |14719 |14718 |
-ROW |21483 |14908 |14907 |
-ROW |21484 |14930 |14929 |
-ROW |21485 |15222 |15221 |
-ROW |21486 |15703 |15702 |
-ROW |21487 |15725 |15724 |
-ROW |21488 |15757 |15756 |
-ROW |21489 |15821 |15820 |
-ROW |21490 |15842 |15841 |
-ROW |21491 |15992 |15991 |
-ROW |21492 |16019 |16018 |
-ROW |21493 |16455 |16454 |
-ROW |21494 |17722 |17721 |
-ROW |21495 |14253 |14251 |
-ROW |21496 |14295 |14293 |
-ROW |21497 |14313 |14311 |
-ROW |21498 |14329 |14327 |
-ROW |21499 |14349 |14347 |
-ROW |21500 |14358 |14356 |
-ROW |21501 |14391 |14389 |
-ROW |21502 |14405 |14403 |
-ROW |21503 |14453 |14451 |
-ROW |21504 |14470 |14468 |
-ROW |21505 |14488 |14486 |
-ROW |21506 |14507 |14505 |
-ROW |21507 |14536 |14534 |
-ROW |21508 |14546 |14544 |
-ROW |21509 |14584 |14582 |
-ROW |21510 |14600 |14598 |
-ROW |21511 |14617 |14615 |
-ROW |21512 |14654 |14652 |
-ROW |21513 |14675 |14673 |
-ROW |21514 |14693 |14691 |
-ROW |21515 |14706 |14704 |
-ROW |21516 |14719 |14717 |
-ROW |21517 |14908 |14906 |
-ROW |21518 |14930 |14928 |
-ROW |21519 |15222 |15220 |
-ROW |21520 |15703 |15701 |
-ROW |21521 |15725 |15723 |
-ROW |21522 |15757 |15755 |
-ROW |21523 |15821 |15819 |
-ROW |21524 |15842 |15840 |
-ROW |21525 |15992 |15990 |
-ROW |21526 |16019 |16017 |
-ROW |21527 |16455 |16453 |
-ROW |21528 |17722 |17720 |
-ROW |21529 |16287 |16289 |
-ROW |21530 |16279 |16285 |
-ROW |21531 |16290 |16348 |
-ROW |21532 |16291 |16349 |
-ROW |21533 |16292 |16350 |
-ROW |21534 |16293 |16351 |
-ROW |21535 |16294 |16352 |
-ROW |21536 |16295 |16353 |
-ROW |21537 |16296 |16354 |
-ROW |21538 |16297 |16355 |
-ROW |21539 |16298 |16356 |
-ROW |21540 |16299 |16357 |
-ROW |21541 |16300 |16358 |
-ROW |21542 |16301 |16359 |
-ROW |21543 |16302 |16360 |
-ROW |21544 |16303 |16361 |
-ROW |21545 |16304 |16362 |
-ROW |21546 |16305 |16363 |
-ROW |21547 |16306 |16364 |
-ROW |21548 |16307 |16365 |
-ROW |21549 |16308 |16366 |
-ROW |21550 |16309 |16367 |
-ROW |21551 |16310 |16368 |
-ROW |21552 |16311 |16369 |
-ROW |21553 |16312 |16370 |
-ROW |21554 |16313 |16371 |
-ROW |21555 |16314 |16372 |
-ROW |21556 |16315 |16373 |
-ROW |21557 |16316 |16374 |
-ROW |21558 |16317 |16375 |
-ROW |21559 |16318 |16376 |
-ROW |21560 |16457 |16458 |
-ROW |21561 |17724 |17725 |
-ROW |21562 |16289 |14293 |
-ROW |21563 |16285 |14717 |
-ROW |21564 |16348 |14311 |
-ROW |21565 |16349 |14327 |
-ROW |21566 |16350 |14347 |
-ROW |21567 |16351 |14356 |
-ROW |21568 |16352 |14389 |
-ROW |21569 |16353 |14403 |
-ROW |21570 |16354 |14451 |
-ROW |21571 |16355 |14468 |
-ROW |21572 |16356 |14486 |
-ROW |21573 |16357 |14505 |
-ROW |21574 |16358 |14534 |
-ROW |21575 |16359 |14544 |
-ROW |21576 |16360 |14582 |
-ROW |21577 |16361 |14598 |
-ROW |21578 |16362 |14615 |
-ROW |21579 |16363 |14652 |
-ROW |21580 |16364 |14673 |
-ROW |21581 |16365 |14691 |
-ROW |21582 |16366 |14704 |
-ROW |21583 |16367 |14906 |
-ROW |21584 |16368 |14928 |
-ROW |21585 |16369 |15220 |
-ROW |21586 |16370 |15701 |
-ROW |21587 |16371 |15723 |
-ROW |21588 |16372 |15755 |
-ROW |21589 |16373 |15819 |
-ROW |21590 |16374 |15840 |
-ROW |21591 |16375 |15990 |
-ROW |21592 |16376 |16017 |
-ROW |21593 |16458 |16453 |
-ROW |21594 |17725 |17720 |
-ROW |21595 |16631 |16630 |
-ROW |21596 |16640 |16636 |
-ROW |21597 |16641 |16637 |
-ROW |21598 |16642 |16638 |
-ROW |21599 |16643 |16639 |
-ROW |21600 |15695 |16863 |
-ROW |21601 |17798 |16863 |
-ROW |21602 |17799 |16863 |
-ROW |21603 |15694 |16868 |
-ROW |21604 |15696 |16864 |
-ROW |21605 |15697 |16865 |
-ROW |21606 |17800 |16864 |
-ROW |21607 |17801 |16865 |
-ROW |21608 |17802 |16868 |
-ROW |21609 |17803 |16864 |
-ROW |21610 |17804 |16865 |
-ROW |21611 |17805 |16868 |
-ROW |21612 |15671 |16841 |
-ROW |21613 |17806 |16841 |
-ROW |21614 |17807 |16841 |
-ROW |21615 |15672 |16842 |
-ROW |21616 |15673 |16843 |
-ROW |21617 |15674 |16844 |
-ROW |21618 |15675 |16845 |
-ROW |21619 |15676 |16846 |
-ROW |21620 |15677 |16847 |
-ROW |21621 |15678 |16848 |
-ROW |21622 |15679 |16849 |
-ROW |21623 |15680 |16850 |
-ROW |21624 |15681 |16851 |
-ROW |21625 |15682 |16852 |
-ROW |21626 |15683 |16853 |
-ROW |21627 |15684 |16854 |
-ROW |21628 |15685 |16855 |
-ROW |21629 |15686 |16856 |
-ROW |21630 |15687 |16857 |
-ROW |21631 |15689 |16858 |
-ROW |21632 |15690 |16859 |
-ROW |21633 |15691 |16860 |
-ROW |21634 |15708 |16861 |
-ROW |21635 |15997 |16862 |
-ROW |21636 |17808 |16842 |
-ROW |21637 |17809 |16843 |
-ROW |21638 |17810 |16844 |
-ROW |21639 |17811 |16845 |
-ROW |21640 |17812 |16846 |
-ROW |21641 |17813 |16847 |
-ROW |21642 |17814 |16848 |
-ROW |21643 |17815 |16849 |
-ROW |21644 |17816 |16850 |
-ROW |21645 |17817 |16851 |
-ROW |21646 |17818 |16852 |
-ROW |21647 |17819 |16853 |
-ROW |21648 |17820 |16854 |
-ROW |21649 |17821 |16855 |
-ROW |21650 |17822 |16856 |
-ROW |21651 |17823 |16857 |
-ROW |21652 |17824 |16858 |
-ROW |21653 |17825 |16859 |
-ROW |21654 |17826 |16860 |
-ROW |21655 |17827 |16861 |
-ROW |21656 |17828 |16862 |
-ROW |21657 |17829 |16842 |
-ROW |21658 |17830 |16843 |
-ROW |21659 |17831 |16844 |
-ROW |21660 |17832 |16845 |
-ROW |21661 |17833 |16846 |
-ROW |21662 |17834 |16847 |
-ROW |21663 |17835 |16848 |
-ROW |21664 |17836 |16849 |
-ROW |21665 |17837 |16850 |
-ROW |21666 |17838 |16851 |
-ROW |21667 |17839 |16852 |
-ROW |21668 |17840 |16853 |
-ROW |21669 |17841 |16854 |
-ROW |21670 |17842 |16855 |
-ROW |21671 |17843 |16856 |
-ROW |21672 |17844 |16857 |
-ROW |21673 |17845 |16858 |
-ROW |21674 |17846 |16859 |
-ROW |21675 |17847 |16860 |
-ROW |21676 |17848 |16861 |
-ROW |21677 |17849 |16862 |
-ROW |21678 |15698 |16866 |
-ROW |21679 |17850 |16866 |
-ROW |21680 |17851 |16866 |
-ROW |21681 |16028 |16867 |
-ROW |21682 |17852 |16867 |
-ROW |21683 |17853 |16867 |
-ROW |21684 |17857 |17858 |
-ROW |21685 |17863 |17864 |
-ROW |21686 |14318 |14319 |
-ROW |21687 |17311 |15717 |
-ROW |21688 |17311 |17312 |
-ROW |21689 |17312 |15717 |
-ROW |21690 |17313 |15717 |
-ROW |21691 |17313 |17314 |
-ROW |21692 |17314 |15717 |
-ROW |21693 |17315 |17316 |
-ROW |21694 |17317 |17318 |
-ROW |21695 |17319 |17320 |
-ROW |21696 |17321 |17322 |
-ROW |21697 |15721 |15720 |
-ROW |21698 |15394 |15393 |
-ROW |21699 |15392 |15391 |
-ROW |21700 |17194 |14339 |
-ROW |21701 |15382 |15381 |
-ROW |21702 |15380 |15379 |
-ROW |21703 |16504 |16505 |
-ROW |21704 |14372 |14373 |
-ROW |21705 |15386 |15385 |
-ROW |21706 |15384 |15383 |
-ROW |21707 |14380 |14381 |
-ROW |21708 |15347 |15346 |
-ROW |21709 |15345 |15344 |
-ROW |21710 |17196 |17195 |
-ROW |21711 |15363 |15360 |
-ROW |21712 |15364 |15361 |
-ROW |21713 |15365 |15362 |
-ROW |21714 |15357 |15354 |
-ROW |21715 |15358 |15355 |
-ROW |21716 |15359 |15356 |
-ROW |21717 |17200 |17197 |
-ROW |21718 |17201 |17198 |
-ROW |21719 |17202 |17199 |
-ROW |21720 |15334 |15333 |
-ROW |21721 |15332 |15331 |
-ROW |21722 |14460 |14461 |
-ROW |21723 |14476 |14477 |
-ROW |21724 |14495 |14496 |
-ROW |21725 |14511 |17203 |
-ROW |21726 |14551 |14552 |
-ROW |21727 |15374 |15373 |
-ROW |21728 |15376 |15375 |
-ROW |21729 |14914 |14915 |
-ROW |21730 |14589 |14590 |
-ROW |21731 |15338 |15337 |
-ROW |21732 |17205 |17204 |
-ROW |21733 |14624 |14625 |
-ROW |21734 |17206 |14934 |
-ROW |21735 |14664 |14665 |
-ROW |21736 |17207 |17208 |
-ROW |21737 |16547 |16546 |
-ROW |21738 |17323 |17324 |
-ROW |21739 |17325 |17326 |
-ROW |21740 |17374 |17375 |
-ROW |21741 |17376 |17377 |
-ROW |21742 |17378 |17379 |
-ROW |21743 |17380 |17381 |
-ROW |21744 |17382 |17383 |
-ROW |21745 |17384 |17385 |
-ROW |21746 |17432 |17433 |
-ROW |21747 |17434 |17435 |
-ROW |21748 |17436 |17437 |
-ROW |21749 |17438 |17439 |
-ROW |21750 |17440 |17441 |
-ROW |21751 |17442 |17443 |
-ROW |21752 |17476 |17477 |
-ROW |21753 |17478 |17479 |
-ROW |21754 |17480 |17481 |
-ROW |21755 |17482 |17483 |
-ROW |21756 |17484 |17485 |
-ROW |21757 |17500 |17501 |
-ROW |21758 |17502 |17503 |
-ROW |21759 |17504 |17505 |
-ROW |21760 |17565 |17566 |
-ROW |21761 |17567 |17568 |
-ROW |21762 |17569 |17570 |
-ROW |21763 |17571 |17572 |
-ROW |21764 |17573 |17574 |
-ROW |21765 |17606 |17607 |
-ROW |21766 |17608 |17609 |
-ROW |21767 |17610 |17611 |
-ROW |21768 |17612 |17613 |
-ROW |21769 |17645 |17646 |
-ROW |21770 |17647 |17648 |
-ROW |21771 |17649 |17650 |
-ROW |21772 |17651 |17652 |
-ROW |21773 |17653 |17654 |
-ROW |21774 |17655 |17656 |
-ROW |21775 |17212 |17211 |
-ROW |21776 |16551 |16552 |
-ROW |21777 |17888 |17890 |
-ROW |21778 |17891 |17893 |
-ROW |21779 |17894 |17896 |
-ROW |21780 |17888 |17889 |
-ROW |21781 |17891 |17892 |
-ROW |21782 |17894 |17895 |
-ROW |21783 |16031 |16563 |
-ROW |21784 |16045 |16564 |
-ROW |21785 |16046 |16565 |
-ROW |21786 |16039 |16040 |
-ROW |21787 |16061 |16063 |
-ROW |21788 |16062 |16064 |
-ROW |21789 |16042 |16579 |
-ROW |21790 |16067 |16580 |
-ROW |21791 |16068 |16581 |
-ROW |21792 |16041 |16042 |
-ROW |21793 |16065 |16067 |
-ROW |21794 |16066 |16068 |
-ROW |21795 |16041 |16579 |
-ROW |21796 |16065 |16580 |
-ROW |21797 |16066 |16581 |
-ROW |21798 |17890 |17889 |
-ROW |21799 |17893 |17892 |
-ROW |21800 |17896 |17895 |
-ROW |21801 |16070 |16069 |
-ROW |21802 |16072 |16071 |
-ROW |21803 |16076 |16994 |
-ROW |21804 |17897 |16994 |
-ROW |21805 |16079 |16077 |
-ROW |21806 |16080 |16078 |
-ROW |21807 |16083 |16081 |
-ROW |21808 |16084 |16082 |
-ROW |21809 |16091 |16997 |
-ROW |21810 |16092 |16998 |
-ROW |21811 |17898 |16997 |
-ROW |21812 |17899 |16998 |
-ROW |21813 |17900 |17902 |
-ROW |21814 |17903 |17905 |
-ROW |21815 |17900 |17901 |
-ROW |21816 |17903 |17904 |
-ROW |21817 |16097 |16569 |
-ROW |21818 |16110 |16570 |
-ROW |21819 |16105 |16106 |
-ROW |21820 |16118 |16119 |
-ROW |21821 |16108 |16582 |
-ROW |21822 |16121 |16583 |
-ROW |21823 |16107 |16108 |
-ROW |21824 |16120 |16121 |
-ROW |21825 |16107 |16582 |
-ROW |21826 |16120 |16583 |
-ROW |21827 |17902 |17901 |
-ROW |21828 |17905 |17904 |
-ROW |21829 |16123 |16122 |
-ROW |21830 |16125 |16124 |
-ROW |21831 |16129 |17002 |
-ROW |21832 |17906 |17002 |
-ROW |21833 |16131 |16130 |
-ROW |21834 |16133 |16132 |
-ROW |21835 |16137 |17004 |
-ROW |21836 |17907 |17004 |
-ROW |21837 |17908 |17910 |
-ROW |21838 |17908 |17909 |
-ROW |21839 |16141 |16142 |
-ROW |21840 |16146 |16573 |
-ROW |21841 |16143 |16584 |
-ROW |21842 |17910 |17909 |
-ROW |21843 |16152 |16883 |
-ROW |21844 |16153 |16883 |
-ROW |21845 |17911 |16883 |
-ROW |21846 |17912 |16883 |
-ROW |21847 |16156 |16155 |
-ROW |21848 |16158 |16157 |
-ROW |21849 |17913 |17915 |
-ROW |21850 |17916 |17918 |
-ROW |21851 |17913 |17914 |
-ROW |21852 |17916 |17917 |
-ROW |21853 |17915 |17914 |
-ROW |21854 |17918 |17917 |
-ROW |21855 |16009 |16008 |
-ROW |21856 |16011 |16010 |
-ROW |21857 |16014 |16013 |
-ROW |21858 |16016 |16015 |
-ROW |21859 |17005 |16160 |
-ROW |21860 |17007 |16171 |
-ROW |21861 |17919 |17920 |
-ROW |21862 |17921 |17922 |
-ROW |21863 |16161 |16160 |
-ROW |21864 |16172 |16171 |
-ROW |21865 |16162 |16161 |
-ROW |21866 |16173 |16172 |
-ROW |21867 |16162 |16160 |
-ROW |21868 |16173 |16171 |
-ROW |21869 |16166 |17920 |
-ROW |21870 |16177 |17922 |
-ROW |21871 |16167 |17920 |
-ROW |21872 |16178 |17922 |
-ROW |21873 |16183 |16182 |
-ROW |21874 |17657 |17050 |
-ROW |21875 |17923 |17050 |
-ROW |21876 |17924 |17050 |
-ROW |21877 |17009 |17662 |
-ROW |21878 |17009 |17661 |
-ROW |21879 |16190 |16189 |
-ROW |21880 |17658 |17054 |
-ROW |21881 |17925 |17054 |
-ROW |21882 |17926 |17054 |
-ROW |21883 |17010 |17664 |
-ROW |21884 |17010 |17663 |
-ROW |21885 |17011 |16209 |
-ROW |21886 |17013 |16220 |
-ROW |21887 |17927 |17928 |
-ROW |21888 |17929 |17930 |
-ROW |21889 |16210 |16209 |
-ROW |21890 |16221 |16220 |
-ROW |21891 |16211 |16210 |
-ROW |21892 |16222 |16221 |
-ROW |21893 |16211 |16209 |
-ROW |21894 |16222 |16220 |
-ROW |21895 |16215 |17928 |
-ROW |21896 |16226 |17930 |
-ROW |21897 |16216 |17928 |
-ROW |21898 |16227 |17930 |
-ROW |21899 |16232 |16231 |
-ROW |21900 |17659 |17058 |
-ROW |21901 |17931 |17058 |
-ROW |21902 |17932 |17058 |
-ROW |21903 |17015 |17666 |
-ROW |21904 |17015 |17665 |
-ROW |21905 |16239 |16238 |
-ROW |21906 |17660 |17062 |
-ROW |21907 |17933 |17062 |
-ROW |21908 |17934 |17062 |
-ROW |21909 |17016 |17668 |
-ROW |21910 |17016 |17667 |
-ROW |21911 |17936 |17935 |
-ROW |21912 |17937 |17935 |
-ROW |21913 |17937 |17936 |
-ROW |21914 |17939 |17940 |
-ROW |21915 |17940 |17935 |
-ROW |21916 |16768 |16769 |
-ROW |21917 |16768 |16770 |
-ROW |21918 |16769 |16770 |
-ROW |21919 |16771 |16772 |
-ROW |21920 |16771 |16773 |
-ROW |21921 |16772 |16773 |
-ROW |21922 |16488 |16487 |
-ROW |21923 |16485 |16484 |
-ROW |21924 |16486 |16484 |
-ROW |21925 |16486 |16485 |
-ROW |21926 |16480 |16479 |
-ROW |21927 |16482 |16481 |
-ROW |21928 |16475 |16474 |
-ROW |21929 |16471 |16472 |
-ROW |21930 |16468 |16469 |
-ROW |21931 |16459 |16460 |
-ROW |21932 |16462 |16463 |
-ROW |21933 |16465 |16466 |
-ROW |21934 |16477 |16476 |
-ROW |21935 |15729 |15728 |
-ROW |21936 |15730 |15728 |
-ROW |21937 |15730 |15729 |
-ROW |21938 |15752 |15754 |
-ROW |21939 |15753 |15754 |
-ROW |21940 |15753 |15752 |
-ROW |21941 |15742 |15741 |
-ROW |21942 |15750 |15749 |
-ROW |21943 |15751 |15750 |
-ROW |21944 |15751 |15749 |
-ROW |21945 |15746 |15743 |
-ROW |21946 |15744 |15743 |
-ROW |21947 |15740 |15739 |
-ROW |21948 |17214 |17213 |
-ROW |21949 |17216 |17215 |
-ROW |21950 |15748 |15747 |
-ROW |21951 |16440 |16439 |
-ROW |21952 |17768 |15790 |
-ROW |21953 |17769 |15787 |
-ROW |21954 |17770 |15787 |
-ROW |21955 |17770 |17769 |
-ROW |21956 |15786 |15785 |
-ROW |21957 |15784 |15783 |
-ROW |21958 |15794 |15792 |
-ROW |21959 |15793 |15792 |
-ROW |21960 |15782 |15781 |
-ROW |21961 |15797 |15796 |
-ROW |21962 |15825 |15824 |
-ROW |21963 |15826 |15824 |
-ROW |21964 |15826 |15825 |
-ROW |21965 |15828 |15829 |
-ROW |21966 |15831 |15832 |
-ROW |21967 |15834 |15835 |
-ROW |21968 |15845 |15846 |
-ROW |21969 |17251 |17255 |
-ROW |21970 |17254 |17255 |
+ROW |21971 |17682 |17683 |
+ROW |21972 |17684 |17685 |
+ROW |21973 |17686 |17687 |
+ROW |21974 |15944 |15947 |
+ROW |21975 |15944 |15943 |
+ROW |21976 |15943 |15947 |
+ROW |21977 |16888 |15947 |
+ROW |21978 |16888 |15943 |
+ROW |21979 |15948 |15949 |
+ROW |21980 |15950 |15949 |
+ROW |21981 |17219 |17218 |
+ROW |21982 |17222 |17221 |
+ROW |21983 |16743 |16744 |
+ROW |21984 |16784 |16785 |
+ROW |21985 |16790 |16791 |
+ROW |21986 |16892 |16900 |
+ROW |21987 |16894 |16900 |
+ROW |21988 |17267 |17275 |
+ROW |21989 |17272 |17276 |
+ROW |21990 |17273 |17275 |
+ROW |21991 |17274 |17276 |
+ROW |21992 |17279 |17277 |
+ROW |21993 |17282 |17280 |
+ROW |21994 |16646 |16647 |
+ROW |21995 |16809 |16810 |
+ROW |21996 |16902 |16904 |
+ROW |21997 |16904 |16905 |
+ROW |21998 |16909 |16906 |
+ROW |21999 |16910 |16912 |
+ROW |22000 |16912 |16913 |
+ROW |22001 |16917 |16914 |
+ROW |22002 |16752 |16753 |
+ROW |22003 |15955 |15957 |
+ROW |22004 |15955 |15954 |
+ROW |22005 |15954 |15957 |
+ROW |22006 |15956 |15957 |
+ROW |22007 |15956 |15954 |
+ROW |22008 |16678 |15957 |
+ROW |22009 |16678 |15954 |
+ROW |22010 |15961 |15960 |
+ROW |22011 |15962 |15960 |
+ROW |22012 |16679 |15960 |
+ROW |22013 |17225 |17231 |
+ROW |22014 |17228 |17231 |
+ROW |22015 |17236 |17233 |
+ROW |22016 |17966 |17968 |
+ROW |22017 |17966 |17967 |
+ROW |22018 |17967 |17968 |
+ROW |22019 |17973 |17968 |
+ROW |22020 |17973 |17967 |
+ROW |22021 |17975 |17968 |
+ROW |22022 |17975 |17967 |
+ROW |22023 |17985 |17986 |
+ROW |22024 |17987 |17986 |
+ROW |22025 |17992 |17986 |
+ROW |22026 |17081 |17083 |
+ROW |22027 |17082 |17081 |
+ROW |22028 |17082 |17083 |
+ROW |22029 |17082 |17084 |
+ROW |22030 |17084 |17083 |
+ROW |22031 |17117 |17127 |
+ROW |22032 |17118 |17117 |
+ROW |22033 |17118 |17127 |
+ROW |22034 |17119 |17127 |
+ROW |22035 |17120 |17119 |
+ROW |22036 |17120 |17127 |
+ROW |22037 |17122 |17121 |
+ROW |22038 |17123 |17127 |
+ROW |22039 |17124 |17123 |
+ROW |22040 |17124 |17127 |
+ROW |22041 |17126 |17125 |
+ROW |22042 |17128 |17144 |
+ROW |22043 |17129 |17128 |
+ROW |22044 |17129 |17144 |
+ROW |22045 |17130 |17144 |
+ROW |22046 |17131 |17130 |
+ROW |22047 |17131 |17144 |
+ROW |22048 |17132 |17144 |
+ROW |22049 |17133 |17132 |
+ROW |22050 |17133 |17144 |
+ROW |22051 |17134 |17144 |
+ROW |22052 |17135 |17134 |
+ROW |22053 |17135 |17144 |
+ROW |22054 |17136 |17144 |
+ROW |22055 |17137 |17136 |
+ROW |22056 |17137 |17144 |
+ROW |22057 |17139 |17138 |
+ROW |22058 |17140 |17144 |
+ROW |22059 |17141 |17140 |
+ROW |22060 |17141 |17144 |
+ROW |22061 |17142 |17144 |
+ROW |22062 |17143 |17142 |
+ROW |22063 |17143 |17144 |
+ROW |22064 |17145 |17144 |
+ROW |22065 |17146 |17144 |
+ROW |22066 |17146 |17145 |
+ROW |22067 |17147 |17144 |
+ROW |22068 |17148 |17144 |
+ROW |22069 |17148 |17147 |
+ROW |22070 |17306 |17307 |
+ROW |22071 |16920 |16921 |
+ROW |22072 |16833 |16920 |
+ROW |22073 |17748 |17747 |
+ROW |22074 |17750 |17749 |
+ROW |22075 |17753 |17754 |
+ROW |22076 |17755 |17754 |
+ROW |22077 |17765 |17766 |
+ROW |22078 |18007 |18005 |
+ROW |22079 |18019 |18017 |
+ROW |22080 |16929 |16928 |
+ROW |22081 |16940 |17153 |
+ROW |22082 |16719 |16721 |
+ROW |22083 |16975 |16723 |
+ROW |22084 |16729 |16728 |
+ROW |22085 |16730 |16728 |
+ROW |22086 |16756 |16758 |
+ROW |22087 |16979 |16759 |
+ROW |22088 |16765 |16764 |
+ROW |22089 |16766 |16764 |
+ROW |22090 |16734 |16736 |
+ROW |22091 |16983 |16732 |
+ROW |22092 |16741 |16740 |
+ROW |22093 |16742 |16740 |
+ROW |22094 |17173 |17172 |
+ROW |22095 |17175 |17176 |
+ROW |22096 |17180 |17179 |
+ROW |22097 |17711 |17712 |
+ROW |22098 |17713 |17714 |
+ROW |22099 |17030 |17017 |
+ROW |22100 |17035 |17036 |
+ROW |22101 |17039 |17038 |
+ROW |22102 |17044 |17043 |
+ROW |22103 |17715 |17716 |
+ROW |22104 |17717 |17718 |
+ROW |22105 |15928 |15933 |
+ROW |22106 |15931 |15933 |
+ROW |22107 |16683 |16687 |
+ROW |22108 |14252 |14251 |
+ROW |22109 |14294 |14293 |
+ROW |22110 |14312 |14311 |
+ROW |22111 |14328 |14327 |
+ROW |22112 |14348 |14347 |
+ROW |22113 |14357 |14356 |
+ROW |22114 |14390 |14389 |
+ROW |22115 |14404 |14403 |
+ROW |22116 |14452 |14451 |
+ROW |22117 |14469 |14468 |
+ROW |22118 |14487 |14486 |
+ROW |22119 |14506 |14505 |
+ROW |22120 |14535 |14534 |
+ROW |22121 |14545 |14544 |
+ROW |22122 |14583 |14582 |
+ROW |22123 |14599 |14598 |
+ROW |22124 |14616 |14615 |
+ROW |22125 |14653 |14652 |
+ROW |22126 |14674 |14673 |
+ROW |22127 |14692 |14691 |
+ROW |22128 |14705 |14704 |
+ROW |22129 |14718 |14717 |
+ROW |22130 |14907 |14906 |
+ROW |22132 |15221 |15220 |
+ROW |22133 |15702 |15701 |
+ROW |22134 |15724 |15723 |
+ROW |22135 |15756 |15755 |
+ROW |22136 |15820 |15819 |
+ROW |22137 |15841 |15840 |
+ROW |22138 |15991 |15990 |
+ROW |22139 |16018 |16017 |
+ROW |22140 |16454 |16453 |
+ROW |22141 |17721 |17720 |
+ROW |22142 |17936 |17935 |
+ROW |22143 |14253 |14252 |
+ROW |22144 |14295 |14294 |
+ROW |22145 |14313 |14312 |
+ROW |22146 |14329 |14328 |
+ROW |22147 |14349 |14348 |
+ROW |22148 |14358 |14357 |
+ROW |22149 |14391 |14390 |
+ROW |22150 |14405 |14404 |
+ROW |22151 |14453 |14452 |
+ROW |22152 |14470 |14469 |
+ROW |22153 |14488 |14487 |
+ROW |22154 |14507 |14506 |
+ROW |22155 |14536 |14535 |
+ROW |22156 |14546 |14545 |
+ROW |22157 |14584 |14583 |
+ROW |22158 |14600 |14599 |
+ROW |22159 |14617 |14616 |
+ROW |22160 |14654 |14653 |
+ROW |22161 |14675 |14674 |
+ROW |22162 |14693 |14692 |
+ROW |22163 |14706 |14705 |
+ROW |22164 |14719 |14718 |
+ROW |22165 |14908 |14907 |
+ROW |22167 |15222 |15221 |
+ROW |22168 |15703 |15702 |
+ROW |22169 |15725 |15724 |
+ROW |22170 |15757 |15756 |
+ROW |22171 |15821 |15820 |
+ROW |22172 |15842 |15841 |
+ROW |22173 |15992 |15991 |
+ROW |22174 |16019 |16018 |
+ROW |22175 |16455 |16454 |
+ROW |22176 |17722 |17721 |
+ROW |22177 |17937 |17936 |
+ROW |22178 |14253 |14251 |
+ROW |22179 |14295 |14293 |
+ROW |22180 |14313 |14311 |
+ROW |22181 |14329 |14327 |
+ROW |22182 |14349 |14347 |
+ROW |22183 |14358 |14356 |
+ROW |22184 |14391 |14389 |
+ROW |22185 |14405 |14403 |
+ROW |22186 |14453 |14451 |
+ROW |22187 |14470 |14468 |
+ROW |22188 |14488 |14486 |
+ROW |22189 |14507 |14505 |
+ROW |22190 |14536 |14534 |
+ROW |22191 |14546 |14544 |
+ROW |22192 |14584 |14582 |
+ROW |22193 |14600 |14598 |
+ROW |22194 |14617 |14615 |
+ROW |22195 |14654 |14652 |
+ROW |22196 |14675 |14673 |
+ROW |22197 |14693 |14691 |
+ROW |22198 |14706 |14704 |
+ROW |22199 |14719 |14717 |
+ROW |22200 |14908 |14906 |
+ROW |22202 |15222 |15220 |
+ROW |22203 |15703 |15701 |
+ROW |22204 |15725 |15723 |
+ROW |22205 |15757 |15755 |
+ROW |22206 |15821 |15819 |
+ROW |22207 |15842 |15840 |
+ROW |22208 |15992 |15990 |
+ROW |22209 |16019 |16017 |
+ROW |22210 |16455 |16453 |
+ROW |22211 |17722 |17720 |
+ROW |22212 |17937 |17935 |
+ROW |22213 |16287 |16289 |
+ROW |22214 |16279 |16285 |
+ROW |22215 |16290 |16348 |
+ROW |22216 |16291 |16349 |
+ROW |22217 |16292 |16350 |
+ROW |22218 |16293 |16351 |
+ROW |22219 |16294 |16352 |
+ROW |22220 |16295 |16353 |
+ROW |22221 |16296 |16354 |
+ROW |22222 |16297 |16355 |
+ROW |22223 |16298 |16356 |
+ROW |22224 |16299 |16357 |
+ROW |22225 |16300 |16358 |
+ROW |22226 |16301 |16359 |
+ROW |22227 |16302 |16360 |
+ROW |22228 |16303 |16361 |
+ROW |22229 |16304 |16362 |
+ROW |22230 |16305 |16363 |
+ROW |22231 |16306 |16364 |
+ROW |22232 |16307 |16365 |
+ROW |22233 |16308 |16366 |
+ROW |22234 |16309 |16367 |
+ROW |22236 |16311 |16369 |
+ROW |22237 |16312 |16370 |
+ROW |22238 |16313 |16371 |
+ROW |22239 |16314 |16372 |
+ROW |22240 |16315 |16373 |
+ROW |22241 |16316 |16374 |
+ROW |22242 |16317 |16375 |
+ROW |22243 |16318 |16376 |
+ROW |22244 |16457 |16458 |
+ROW |22245 |17724 |17725 |
+ROW |22246 |17939 |17940 |
+ROW |22247 |16289 |14293 |
+ROW |22248 |16285 |14717 |
+ROW |22249 |16348 |14311 |
+ROW |22250 |16349 |14327 |
+ROW |22251 |16350 |14347 |
+ROW |22252 |16351 |14356 |
+ROW |22253 |16352 |14389 |
+ROW |22254 |16353 |14403 |
+ROW |22255 |16354 |14451 |
+ROW |22256 |16355 |14468 |
+ROW |22257 |16356 |14486 |
+ROW |22258 |16357 |14505 |
+ROW |22259 |16358 |14534 |
+ROW |22260 |16359 |14544 |
+ROW |22261 |16360 |14582 |
+ROW |22262 |16361 |14598 |
+ROW |22263 |16362 |14615 |
+ROW |22264 |16363 |14652 |
+ROW |22265 |16364 |14673 |
+ROW |22266 |16365 |14691 |
+ROW |22267 |16366 |14704 |
+ROW |22268 |16367 |14906 |
+ROW |22270 |16369 |15220 |
+ROW |22271 |16370 |15701 |
+ROW |22272 |16371 |15723 |
+ROW |22273 |16372 |15755 |
+ROW |22274 |16373 |15819 |
+ROW |22275 |16374 |15840 |
+ROW |22276 |16375 |15990 |
+ROW |22277 |16376 |16017 |
+ROW |22278 |16458 |16453 |
+ROW |22279 |17725 |17720 |
+ROW |22280 |17940 |17935 |
+ROW |22281 |16631 |16630 |
+ROW |22282 |16640 |16636 |
+ROW |22284 |16642 |16638 |
+ROW |22285 |16643 |16639 |
+ROW |22286 |15695 |16863 |
+ROW |22287 |17798 |16863 |
+ROW |22288 |17799 |16863 |
+ROW |22289 |15694 |16868 |
+ROW |22290 |15696 |16864 |
+ROW |22291 |15697 |16865 |
+ROW |22292 |17800 |16864 |
+ROW |22293 |17801 |16865 |
+ROW |22294 |17802 |16868 |
+ROW |22295 |17803 |16864 |
+ROW |22296 |17804 |16865 |
+ROW |22297 |17805 |16868 |
+ROW |22298 |15671 |16841 |
+ROW |22299 |17806 |16841 |
+ROW |22300 |17807 |16841 |
+ROW |22301 |15672 |16842 |
+ROW |22302 |15673 |16843 |
+ROW |22303 |15674 |16844 |
+ROW |22304 |15675 |16845 |
+ROW |22305 |15676 |16846 |
+ROW |22306 |15677 |16847 |
+ROW |22307 |15678 |16848 |
+ROW |22308 |15679 |16849 |
+ROW |22309 |15680 |16850 |
+ROW |22310 |15681 |16851 |
+ROW |22311 |15682 |16852 |
+ROW |22312 |15683 |16853 |
+ROW |22313 |15684 |16854 |
+ROW |22314 |15685 |16855 |
+ROW |22315 |15686 |16856 |
+ROW |22316 |15687 |16857 |
+ROW |22317 |15689 |16858 |
+ROW |22319 |15691 |16860 |
+ROW |22320 |15708 |16861 |
+ROW |22321 |15997 |16862 |
+ROW |22322 |17808 |16842 |
+ROW |22323 |17809 |16843 |
+ROW |22324 |17810 |16844 |
+ROW |22325 |17811 |16845 |
+ROW |22326 |17812 |16846 |
+ROW |22327 |17813 |16847 |
+ROW |22328 |17814 |16848 |
+ROW |22329 |17815 |16849 |
+ROW |22330 |17816 |16850 |
+ROW |22331 |17817 |16851 |
+ROW |22332 |17818 |16852 |
+ROW |22333 |17819 |16853 |
+ROW |22334 |17820 |16854 |
+ROW |22335 |17821 |16855 |
+ROW |22336 |17822 |16856 |
+ROW |22337 |17823 |16857 |
+ROW |22338 |17824 |16858 |
+ROW |22340 |17826 |16860 |
+ROW |22341 |17827 |16861 |
+ROW |22342 |17828 |16862 |
+ROW |22343 |17829 |16842 |
+ROW |22344 |17830 |16843 |
+ROW |22345 |17831 |16844 |
+ROW |22346 |17832 |16845 |
+ROW |22347 |17833 |16846 |
+ROW |22348 |17834 |16847 |
+ROW |22349 |17835 |16848 |
+ROW |22350 |17836 |16849 |
+ROW |22351 |17837 |16850 |
+ROW |22352 |17838 |16851 |
+ROW |22353 |17839 |16852 |
+ROW |22354 |17840 |16853 |
+ROW |22355 |17841 |16854 |
+ROW |22356 |17842 |16855 |
+ROW |22357 |17843 |16856 |
+ROW |22358 |17844 |16857 |
+ROW |22359 |17845 |16858 |
+ROW |22361 |17847 |16860 |
+ROW |22362 |17848 |16861 |
+ROW |22363 |17849 |16862 |
+ROW |22364 |15698 |16866 |
+ROW |22365 |17850 |16866 |
+ROW |22366 |17851 |16866 |
+ROW |22367 |16028 |16867 |
+ROW |22368 |17852 |16867 |
+ROW |22369 |17853 |16867 |
+ROW |22370 |17857 |17858 |
+ROW |22371 |17863 |17864 |
+ROW |22372 |14318 |14319 |
+ROW |22373 |17311 |15717 |
+ROW |22374 |17311 |17312 |
+ROW |22375 |17312 |15717 |
+ROW |22376 |17313 |15717 |
+ROW |22377 |17313 |17314 |
+ROW |22378 |17314 |15717 |
+ROW |22379 |17315 |17316 |
+ROW |22380 |17317 |17318 |
+ROW |22381 |17319 |17320 |
+ROW |22382 |17321 |17322 |
+ROW |22383 |15721 |15720 |
+ROW |22384 |15394 |15393 |
+ROW |22385 |15392 |15391 |
+ROW |22386 |17194 |14339 |
+ROW |22387 |15382 |15381 |
+ROW |22388 |15380 |15379 |
+ROW |22389 |16504 |16505 |
+ROW |22390 |14372 |14373 |
+ROW |22391 |15386 |15385 |
+ROW |22392 |15384 |15383 |
+ROW |22393 |14380 |14381 |
+ROW |22394 |18024 |18023 |
+ROW |22395 |18025 |18024 |
+ROW |22396 |18025 |18023 |
+ROW |22397 |18028 |18027 |
+ROW |22398 |18034 |18033 |
+ROW |22399 |18036 |18041 |
+ROW |22400 |18037 |18041 |
+ROW |22401 |18038 |18041 |
+ROW |22402 |18039 |18041 |
+ROW |22403 |18040 |18041 |
+ROW |22404 |18044 |18043 |
+ROW |22405 |18046 |18045 |
+ROW |22406 |18048 |18047 |
+ROW |22407 |18051 |18050 |
+ROW |22408 |18052 |18051 |
+ROW |22409 |18052 |18050 |
+ROW |22410 |18055 |18054 |
+ROW |22411 |18061 |18060 |
+ROW |22412 |18063 |18068 |
+ROW |22413 |18064 |18068 |
+ROW |22414 |18065 |18068 |
+ROW |22415 |18066 |18068 |
+ROW |22416 |18067 |18068 |
+ROW |22417 |18071 |18070 |
+ROW |22418 |18073 |18072 |
+ROW |22419 |18075 |18074 |
+ROW |22420 |18078 |18077 |
+ROW |22421 |18079 |18078 |
+ROW |22422 |18079 |18077 |
+ROW |22423 |18082 |18081 |
+ROW |22424 |18088 |18087 |
+ROW |22425 |18090 |18095 |
+ROW |22426 |18091 |18095 |
+ROW |22427 |18092 |18095 |
+ROW |22428 |18093 |18095 |
+ROW |22429 |18094 |18095 |
+ROW |22430 |18098 |18097 |
+ROW |22431 |18100 |18099 |
+ROW |22432 |18102 |18101 |
+ROW |22433 |18105 |18104 |
+ROW |22434 |18106 |18105 |
+ROW |22435 |18106 |18104 |
+ROW |22436 |18109 |18108 |
+ROW |22437 |18115 |18114 |
+ROW |22438 |18117 |18122 |
+ROW |22439 |18118 |18122 |
+ROW |22440 |18119 |18122 |
+ROW |22441 |18120 |18122 |
+ROW |22442 |18121 |18122 |
+ROW |22443 |18125 |18124 |
+ROW |22444 |18127 |18126 |
+ROW |22445 |18129 |18128 |
+ROW |22446 |18132 |18131 |
+ROW |22447 |18133 |18132 |
+ROW |22448 |18133 |18131 |
+ROW |22449 |18136 |18135 |
+ROW |22450 |18142 |18141 |
+ROW |22451 |18144 |18149 |
+ROW |22452 |18145 |18149 |
+ROW |22453 |18146 |18149 |
+ROW |22454 |18147 |18149 |
+ROW |22455 |18148 |18149 |
+ROW |22456 |18152 |18151 |
+ROW |22457 |18154 |18153 |
+ROW |22458 |18156 |18155 |
+ROW |22459 |15347 |15346 |
+ROW |22460 |15345 |15344 |
+ROW |22461 |17196 |17195 |
+ROW |22462 |15363 |15360 |
+ROW |22463 |15364 |15361 |
+ROW |22464 |15365 |15362 |
+ROW |22465 |15357 |15354 |
+ROW |22466 |15358 |15355 |
+ROW |22467 |15359 |15356 |
+ROW |22468 |17200 |17197 |
+ROW |22469 |17201 |17198 |
+ROW |22470 |17202 |17199 |
+ROW |22471 |15334 |15333 |
+ROW |22472 |15332 |15331 |
+ROW |22473 |14460 |14461 |
+ROW |22474 |14476 |14477 |
+ROW |22475 |14495 |14496 |
+ROW |22476 |14511 |17203 |
+ROW |22477 |14551 |14552 |
+ROW |22478 |15374 |15373 |
+ROW |22479 |15376 |15375 |
+ROW |22480 |14914 |14915 |
+ROW |22481 |14589 |14590 |
+ROW |22482 |15338 |15337 |
+ROW |22483 |17205 |17204 |
+ROW |22484 |14624 |14625 |
+ROW |22485 |18159 |18158 |
+ROW |22486 |18160 |18159 |
+ROW |22487 |18160 |18158 |
+ROW |22488 |18163 |18164 |
+ROW |22489 |18164 |18158 |
+ROW |22490 |18166 |18169 |
+ROW |22491 |18167 |18169 |
+ROW |22492 |18168 |18169 |
+ROW |22493 |18171 |18172 |
+ROW |22494 |18175 |18174 |
+ROW |22495 |14664 |14665 |
+ROW |22496 |17207 |17208 |
+ROW |22497 |16547 |16546 |
+ROW |22498 |17323 |17324 |
+ROW |22499 |17325 |17326 |
+ROW |22500 |17374 |17375 |
+ROW |22501 |17376 |17377 |
+ROW |22502 |17378 |17379 |
+ROW |22503 |17380 |17381 |
+ROW |22504 |17382 |17383 |
+ROW |22505 |17384 |17385 |
+ROW |22506 |17432 |17433 |
+ROW |22507 |17434 |17435 |
+ROW |22508 |17436 |17437 |
+ROW |22509 |17438 |17439 |
+ROW |22510 |17440 |17441 |
+ROW |22511 |17442 |17443 |
+ROW |22512 |17476 |17477 |
+ROW |22513 |17478 |17479 |
+ROW |22514 |17480 |17481 |
+ROW |22515 |17482 |17483 |
+ROW |22516 |17484 |17485 |
+ROW |22517 |17500 |17501 |
+ROW |22518 |17502 |17503 |
+ROW |22519 |17504 |17505 |
+ROW |22520 |17565 |17566 |
+ROW |22521 |17567 |17568 |
+ROW |22522 |17569 |17570 |
+ROW |22523 |17571 |17572 |
+ROW |22524 |17573 |17574 |
+ROW |22525 |17606 |17607 |
+ROW |22526 |17608 |17609 |
+ROW |22527 |17610 |17611 |
+ROW |22528 |17612 |17613 |
+ROW |22529 |17645 |17646 |
+ROW |22530 |17647 |17648 |
+ROW |22531 |17649 |17650 |
+ROW |22532 |17651 |17652 |
+ROW |22533 |17653 |17654 |
+ROW |22534 |17655 |17656 |
+ROW |22535 |17212 |17211 |
+ROW |22536 |16551 |16552 |
+ROW |22537 |17888 |17890 |
+ROW |22538 |17891 |17893 |
+ROW |22539 |17894 |17896 |
+ROW |22540 |17888 |17889 |
+ROW |22541 |17891 |17892 |
+ROW |22542 |17894 |17895 |
+ROW |22543 |16031 |16563 |
+ROW |22544 |16045 |16564 |
+ROW |22545 |16046 |16565 |
+ROW |22546 |16039 |16040 |
+ROW |22547 |16061 |16063 |
+ROW |22548 |16062 |16064 |
+ROW |22549 |16042 |16579 |
+ROW |22550 |16067 |16580 |
+ROW |22551 |16068 |16581 |
+ROW |22552 |16041 |16042 |
+ROW |22553 |16065 |16067 |
+ROW |22554 |16066 |16068 |
+ROW |22555 |16041 |16579 |
+ROW |22556 |16065 |16580 |
+ROW |22557 |16066 |16581 |
+ROW |22558 |17890 |17889 |
+ROW |22559 |17893 |17892 |
+ROW |22560 |17896 |17895 |
+ROW |22561 |16070 |16069 |
+ROW |22562 |16072 |16071 |
+ROW |22563 |16076 |16994 |
+ROW |22564 |17897 |16994 |
+ROW |22565 |16079 |16077 |
+ROW |22566 |16080 |16078 |
+ROW |22567 |16083 |16081 |
+ROW |22568 |16084 |16082 |
+ROW |22569 |16091 |16997 |
+ROW |22570 |16092 |16998 |
+ROW |22571 |17898 |16997 |
+ROW |22572 |17899 |16998 |
+ROW |22573 |17900 |17902 |
+ROW |22574 |17903 |17905 |
+ROW |22575 |17900 |17901 |
+ROW |22576 |17903 |17904 |
+ROW |22577 |16097 |16569 |
+ROW |22578 |16110 |16570 |
+ROW |22579 |16105 |16106 |
+ROW |22580 |16118 |16119 |
+ROW |22581 |16108 |16582 |
+ROW |22582 |16121 |16583 |
+ROW |22583 |16107 |16108 |
+ROW |22584 |16120 |16121 |
+ROW |22585 |16107 |16582 |
+ROW |22586 |16120 |16583 |
+ROW |22587 |17902 |17901 |
+ROW |22588 |17905 |17904 |
+ROW |22589 |16123 |16122 |
+ROW |22590 |16125 |16124 |
+ROW |22591 |16129 |17002 |
+ROW |22592 |17906 |17002 |
+ROW |22593 |16131 |16130 |
+ROW |22594 |16133 |16132 |
+ROW |22595 |16137 |17004 |
+ROW |22596 |17907 |17004 |
+ROW |22597 |17908 |17910 |
+ROW |22598 |17908 |17909 |
+ROW |22599 |16141 |16142 |
+ROW |22600 |16146 |16573 |
+ROW |22601 |16143 |16584 |
+ROW |22602 |17910 |17909 |
+ROW |22603 |16152 |16883 |
+ROW |22604 |16153 |16883 |
+ROW |22605 |17911 |16883 |
+ROW |22606 |17912 |16883 |
+ROW |22607 |16156 |16155 |
+ROW |22608 |16158 |16157 |
+ROW |22609 |17913 |17915 |
+ROW |22610 |17916 |17918 |
+ROW |22611 |17913 |17914 |
+ROW |22612 |17916 |17917 |
+ROW |22613 |17915 |17914 |
+ROW |22614 |17918 |17917 |
+ROW |22615 |16009 |16008 |
+ROW |22616 |16011 |16010 |
+ROW |22617 |16014 |16013 |
+ROW |22618 |16016 |16015 |
+ROW |22619 |17005 |16160 |
+ROW |22620 |17007 |16171 |
+ROW |22621 |17919 |17920 |
+ROW |22622 |17921 |17922 |
+ROW |22623 |16161 |16160 |
+ROW |22624 |16172 |16171 |
+ROW |22625 |16162 |16161 |
+ROW |22626 |16173 |16172 |
+ROW |22627 |16162 |16160 |
+ROW |22628 |16173 |16171 |
+ROW |22629 |16166 |17920 |
+ROW |22630 |16177 |17922 |
+ROW |22631 |16167 |17920 |
+ROW |22632 |16178 |17922 |
+ROW |22633 |16183 |16182 |
+ROW |22634 |17657 |17050 |
+ROW |22635 |17923 |17050 |
+ROW |22636 |17924 |17050 |
+ROW |22637 |17009 |17662 |
+ROW |22638 |17009 |17661 |
+ROW |22639 |16190 |16189 |
+ROW |22640 |17658 |17054 |
+ROW |22641 |17925 |17054 |
+ROW |22642 |17926 |17054 |
+ROW |22643 |17010 |17664 |
+ROW |22644 |17010 |17663 |
+ROW |22645 |17011 |16209 |
+ROW |22646 |17013 |16220 |
+ROW |22647 |17927 |17928 |
+ROW |22648 |17929 |17930 |
+ROW |22649 |16210 |16209 |
+ROW |22650 |16221 |16220 |
+ROW |22651 |16211 |16210 |
+ROW |22652 |16222 |16221 |
+ROW |22653 |16211 |16209 |
+ROW |22654 |16222 |16220 |
+ROW |22655 |16215 |17928 |
+ROW |22656 |16226 |17930 |
+ROW |22657 |16216 |17928 |
+ROW |22658 |16227 |17930 |
+ROW |22659 |16232 |16231 |
+ROW |22660 |17659 |17058 |
+ROW |22661 |17931 |17058 |
+ROW |22662 |17932 |17058 |
+ROW |22663 |17015 |17666 |
+ROW |22664 |17015 |17665 |
+ROW |22665 |16239 |16238 |
+ROW |22666 |17660 |17062 |
+ROW |22667 |17933 |17062 |
+ROW |22668 |17934 |17062 |
+ROW |22669 |17016 |17668 |
+ROW |22670 |17016 |17667 |
+ROW |22671 |18182 |18181 |
+ROW |22672 |18183 |18182 |
+ROW |22673 |18183 |18181 |
+ROW |22674 |18199 |18200 |
+ROW |22675 |18200 |18181 |
+ROW |22676 |16768 |16769 |
+ROW |22677 |16768 |16770 |
+ROW |22678 |16769 |16770 |
+ROW |22679 |16771 |16772 |
+ROW |22680 |16771 |16773 |
+ROW |22681 |16772 |16773 |
+ROW |22682 |16488 |16487 |
+ROW |22683 |16485 |16484 |
+ROW |22684 |16486 |16484 |
+ROW |22685 |16486 |16485 |
+ROW |22686 |16480 |16479 |
+ROW |22687 |16482 |16481 |
+ROW |22688 |16475 |16474 |
+ROW |22689 |16471 |16472 |
+ROW |22690 |16468 |16469 |
+ROW |22691 |16459 |16460 |
+ROW |22692 |16462 |16463 |
+ROW |22693 |16465 |16466 |
+ROW |22694 |16477 |16476 |
+ROW |22695 |15729 |15728 |
+ROW |22696 |15730 |15728 |
+ROW |22697 |15730 |15729 |
+ROW |22698 |15752 |15754 |
+ROW |22699 |15753 |15754 |
+ROW |22700 |15753 |15752 |
+ROW |22701 |15742 |15741 |
+ROW |22702 |15750 |15749 |
+ROW |22703 |15751 |15750 |
+ROW |22704 |15751 |15749 |
+ROW |22705 |15746 |15743 |
+ROW |22706 |15744 |15743 |
+ROW |22707 |15740 |15739 |
+ROW |22708 |17214 |17213 |
+ROW |22709 |17216 |17215 |
+ROW |22710 |15748 |15747 |
+ROW |22711 |16440 |16439 |
+ROW |22712 |17768 |15790 |
+ROW |22713 |17769 |15787 |
+ROW |22714 |17770 |15787 |
+ROW |22715 |17770 |17769 |
+ROW |22716 |15786 |15785 |
+ROW |22717 |15784 |15783 |
+ROW |22718 |15794 |15792 |
+ROW |22719 |15793 |15792 |
+ROW |22720 |15782 |15781 |
+ROW |22721 |15797 |15796 |
+ROW |22722 |15825 |15824 |
+ROW |22723 |15826 |15824 |
+ROW |22724 |15826 |15825 |
+ROW |22725 |15828 |15829 |
+ROW |22726 |15831 |15832 |
+ROW |22727 |15834 |15835 |
+ROW |22728 |15845 |15846 |
+ROW |22729 |17251 |17255 |
+ROW |22730 |17254 |17255 |
TABLE |functions
FIELDS|functionid|itemid|triggerid|name |parameter |
@@ -9543,13 +10699,6 @@ ROW |15690 |28150 |14915 |avg |5m
ROW |15691 |28150 |14915 |max |5m |
ROW |15692 |28150 |14916 |avg |5m |
ROW |15693 |28150 |14916 |min |5m |
-ROW |15713 |28185 |14928 |max |#3 |
-ROW |15714 |28186 |14929 |min |5m |
-ROW |15715 |28187 |14930 |avg |5m |
-ROW |15721 |28201 |14934 |avg |5m |
-ROW |15722 |28201 |14934 |max |5m |
-ROW |15723 |28201 |14935 |avg |5m |
-ROW |15724 |28201 |14935 |min |5m |
ROW |15726 |28204 |14937 |diff | |
ROW |15727 |28204 |14937 |strlen | |
ROW |15731 |27032 |14941 |last | |
@@ -9636,8 +10785,6 @@ ROW |16912 |27316 |15383 |count |#1,{$PSU_CRIT_STATUS},eq
ROW |16913 |27316 |15384 |count |#1,{$PSU_OK_STATUS},ne |
ROW |16914 |27317 |15385 |count |#1,{$FAN_CRIT_STATUS},eq |
ROW |16915 |27317 |15386 |count |#1,{$FAN_OK_STATUS},ne |
-ROW |16919 |28202 |15388 |count |#1,{$FAN_CRIT_STATUS},eq |
-ROW |16920 |28206 |15389 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16924 |27248 |15391 |count |#1,{$PSU_CRIT_STATUS},eq |
ROW |16925 |27248 |15392 |count |#1,{$PSU_OK_STATUS},ne |
ROW |16926 |27250 |15393 |count |#1,{$FAN_CRIT_STATUS},eq |
@@ -9739,11 +10886,6 @@ ROW |17783 |28125 |15689 |last |
ROW |17784 |28127 |15689 |last | |
ROW |17785 |28126 |15689 |last | |
ROW |17786 |28125 |15689 |prev | |
-ROW |17787 |28182 |15690 |change | |
-ROW |17788 |28182 |15690 |last | |
-ROW |17789 |28184 |15690 |last | |
-ROW |17790 |28183 |15690 |last | |
-ROW |17791 |28182 |15690 |prev | |
ROW |17792 |28230 |15691 |change | |
ROW |17793 |28230 |15691 |last | |
ROW |17794 |28232 |15691 |last | |
@@ -10300,7 +11442,6 @@ ROW |18773 |29929 |16306 |last |
ROW |18774 |29934 |16307 |last | |
ROW |18775 |29939 |16308 |last | |
ROW |18776 |29944 |16309 |last | |
-ROW |18777 |29949 |16310 |last | |
ROW |18778 |29954 |16311 |last | |
ROW |18779 |29959 |16312 |last | |
ROW |18780 |29964 |16313 |last | |
@@ -10329,7 +11470,6 @@ ROW |18860 |27929 |16364 |max |{$SNMP.TIMEOUT}
ROW |18861 |27966 |16365 |max |{$SNMP.TIMEOUT} |
ROW |18862 |27996 |16366 |max |{$SNMP.TIMEOUT} |
ROW |18863 |28140 |16367 |max |{$SNMP.TIMEOUT} |
-ROW |18864 |28195 |16368 |max |{$SNMP.TIMEOUT} |
ROW |18865 |28243 |16369 |max |{$SNMP.TIMEOUT} |
ROW |18866 |28292 |16370 |max |{$SNMP.TIMEOUT} |
ROW |18867 |28340 |16371 |max |{$SNMP.TIMEOUT} |
@@ -10587,8 +11727,6 @@ ROW |19382 |27993 |16612 |diff |
ROW |19383 |27993 |16612 |strlen | |
ROW |19384 |28137 |16613 |diff | |
ROW |19385 |28137 |16613 |strlen | |
-ROW |19386 |28192 |16614 |diff | |
-ROW |19387 |28192 |16614 |strlen | |
ROW |19388 |28240 |16615 |diff | |
ROW |19389 |28240 |16615 |strlen | |
ROW |19390 |28289 |16616 |diff | |
@@ -10609,7 +11747,6 @@ ROW |19404 |30053 |16623 |diff |
ROW |19405 |30053 |16623 |strlen | |
ROW |19406 |30142 |16624 |min |5m |
ROW |19407 |30143 |16625 |min |5m |
-ROW |19408 |30144 |16626 |min |5m |
ROW |19409 |30145 |16627 |min |5m |
ROW |19410 |30146 |16628 |min |5m |
ROW |19412 |30160 |16630 |last | |
@@ -10624,10 +11761,6 @@ ROW |19424 |30166 |16636 |last |
ROW |19425 |30167 |16636 |last | |
ROW |19426 |30168 |16636 |last | |
ROW |19427 |30166 |16636 |timeleft |1h,,100 |
-ROW |19428 |30172 |16637 |last | |
-ROW |19429 |30173 |16637 |last | |
-ROW |19430 |30174 |16637 |last | |
-ROW |19431 |30172 |16637 |timeleft |1h,,100 |
ROW |19432 |30178 |16638 |last | |
ROW |19433 |30179 |16638 |last | |
ROW |19434 |30180 |16638 |last | |
@@ -10640,10 +11773,6 @@ ROW |19440 |30166 |16640 |last |
ROW |19441 |30167 |16640 |last | |
ROW |19442 |30168 |16640 |last | |
ROW |19443 |30166 |16640 |timeleft |1h,,100 |
-ROW |19444 |30172 |16641 |last | |
-ROW |19445 |30173 |16641 |last | |
-ROW |19446 |30174 |16641 |last | |
-ROW |19447 |30172 |16641 |timeleft |1h,,100 |
ROW |19448 |30178 |16642 |last | |
ROW |19449 |30179 |16642 |last | |
ROW |19450 |30180 |16642 |last | |
@@ -10885,8 +12014,6 @@ ROW |19726 |27952 |16857 |last |
ROW |19727 |27952 |16857 |diff | |
ROW |19728 |28126 |16858 |last | |
ROW |19729 |28126 |16858 |diff | |
-ROW |19730 |28183 |16859 |last | |
-ROW |19731 |28183 |16859 |diff | |
ROW |19732 |28231 |16860 |last | |
ROW |19733 |28231 |16860 |diff | |
ROW |19734 |28301 |16861 |last | |
@@ -10994,12 +12121,6 @@ ROW |19878 |31157 |16959 |last |
ROW |19879 |31157 |16960 |last | |
ROW |19880 |31157 |16961 |last | |
ROW |19881 |31158 |16962 |last | |
-ROW |19882 |31159 |16963 |last |#1 |
-ROW |19883 |31159 |16963 |last |#2 |
-ROW |19884 |31159 |16963 |last |#3 |
-ROW |19885 |31160 |16964 |last |#1 |
-ROW |19886 |31160 |16964 |last |#2 |
-ROW |19887 |31160 |16964 |last |#3 |
ROW |19888 |31161 |16965 |last | |
ROW |19889 |31166 |16965 |last | |
ROW |19890 |31164 |16966 |last | |
@@ -11275,9 +12396,6 @@ ROW |20248 |27784 |17204 |max |5m
ROW |20249 |27784 |17205 |avg |5m |
ROW |20250 |27783 |17205 |last | |
ROW |20251 |27784 |17205 |max |5m |
-ROW |20252 |28201 |17206 |avg |5m |
-ROW |20253 |28200 |17206 |last | |
-ROW |20254 |28201 |17206 |max |5m |
ROW |20255 |31790 |17207 |avg |5m |
ROW |20256 |31790 |17207 |max |5m |
ROW |20257 |31790 |17208 |avg |5m |
@@ -11935,7 +13053,6 @@ ROW |20918 |32663 |17792 |min |5m
ROW |20919 |32670 |17792 |max |5m |
ROW |20920 |30159 |17793 |min |5m |
ROW |20921 |30165 |17794 |min |5m |
-ROW |20922 |30171 |17795 |min |5m |
ROW |20923 |30177 |17796 |min |5m |
ROW |20924 |30183 |17797 |min |5m |
ROW |20925 |27084 |17798 |avg |15m |
@@ -12024,9 +13141,6 @@ ROW |21007 |27950 |17823 |avg |15m
ROW |21008 |28121 |17824 |avg |15m |
ROW |21009 |28125 |17824 |last | |
ROW |21010 |28124 |17824 |avg |15m |
-ROW |21011 |28178 |17825 |avg |15m |
-ROW |21012 |28182 |17825 |last | |
-ROW |21013 |28181 |17825 |avg |15m |
ROW |21014 |28226 |17826 |avg |15m |
ROW |21015 |28230 |17826 |last | |
ROW |21016 |28229 |17826 |avg |15m |
@@ -12104,10 +13218,6 @@ ROW |21087 |28120 |17845 |min |5m
ROW |21088 |28123 |17845 |min |5m |
ROW |21089 |28120 |17845 |max |5m |
ROW |21090 |28123 |17845 |max |5m |
-ROW |21091 |28177 |17846 |min |5m |
-ROW |21092 |28180 |17846 |min |5m |
-ROW |21093 |28177 |17846 |max |5m |
-ROW |21094 |28180 |17846 |max |5m |
ROW |21095 |28225 |17847 |min |5m |
ROW |21096 |28228 |17847 |min |5m |
ROW |21097 |28225 |17847 |max |5m |
@@ -12312,6 +13422,394 @@ ROW |21295 |32642 |17964 |min |5m
ROW |21296 |32645 |17964 |min |5m |
ROW |21297 |32642 |17964 |max |5m |
ROW |21298 |32645 |17964 |max |5m |
+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 | |
+ROW |21325 |32956 |17990 |diff | |
+ROW |21326 |32956 |17990 |strlen | |
+ROW |21327 |32961 |17991 |min |5m |
+ROW |21328 |32960 |17992 |max |5m |
+ROW |21329 |32970 |17993 |last | |
+ROW |21330 |32976 |17994 |last | |
+ROW |21331 |32977 |17995 |last | |
+ROW |21332 |32978 |17996 |last | |
+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 | |
+ROW |21341 |33051 |18003 |min |5m |
+ROW |21342 |33039 |18004 |min |5m |
+ROW |21343 |33019 |18005 |last | |
+ROW |21344 |33037 |18006 |last | |
+ROW |21345 |33037 |18007 |nodata |10m |
+ROW |21346 |33060 |18008 |diff | |
+ROW |21347 |33060 |18008 |strlen | |
+ROW |21348 |33103 |18009 |last | |
+ROW |21349 |33121 |18009 |strlen | |
+ROW |21350 |33116 |18010 |min |5m |
+ROW |21351 |33105 |18011 |change | |
+ROW |21352 |33128 |18012 |max |5m |
+ROW |21353 |33125 |18013 |max |5m |
+ROW |21354 |33165 |18014 |max |5m |
+ROW |21355 |33161 |18015 |min |5m |
+ROW |21356 |33160 |18016 |min |5m |
+ROW |21357 |33141 |18017 |last | |
+ROW |21358 |33154 |18018 |last | |
+ROW |21359 |33154 |18019 |nodata |10m |
+ROW |21360 |33172 |18020 |diff | |
+ROW |21361 |33172 |18020 |strlen | |
+ROW |21362 |33195 |18021 |last |#1 |
+ROW |21363 |33195 |18021 |last |#2 |
+ROW |21364 |33195 |18021 |last |#3 |
+ROW |21365 |33196 |18022 |last |#1 |
+ROW |21366 |33196 |18022 |last |#2 |
+ROW |21367 |33196 |18022 |last |#3 |
+ROW |21368 |33197 |18023 |max |#3 |
+ROW |21369 |33198 |18024 |min |5m |
+ROW |21370 |33199 |18025 |avg |5m |
+ROW |21371 |33204 |18026 |diff | |
+ROW |21372 |33204 |18026 |strlen | |
+ROW |21373 |33206 |18027 |diff | |
+ROW |21374 |33206 |18027 |strlen | |
+ROW |21375 |33208 |18028 |diff | |
+ROW |21376 |33208 |18028 |strlen | |
+ROW |21377 |33209 |18029 |last | |
+ROW |21378 |33210 |18030 |max |{$SNMP.TIMEOUT} |
+ROW |21379 |33219 |18031 |min |5m |
+ROW |21380 |33220 |18032 |diff | |
+ROW |21381 |33220 |18032 |strlen | |
+ROW |21382 |33221 |18033 |last | |
+ROW |21383 |33221 |18034 |last | |
+ROW |21384 |33224 |18035 |min |5m |
+ROW |21385 |33231 |18036 |change | |
+ROW |21386 |33231 |18036 |last | |
+ROW |21387 |33233 |18036 |last | |
+ROW |21388 |33232 |18036 |last | |
+ROW |21389 |33231 |18036 |prev | |
+ROW |21390 |33227 |18037 |avg |15m |
+ROW |21391 |33231 |18037 |last | |
+ROW |21392 |33230 |18038 |avg |15m |
+ROW |21393 |33231 |18038 |last | |
+ROW |21394 |33226 |18039 |min |5m |
+ROW |21395 |33226 |18039 |max |5m |
+ROW |21396 |33229 |18040 |min |5m |
+ROW |21397 |33229 |18040 |max |5m |
+ROW |21398 |33232 |18041 |last | |
+ROW |21399 |33234 |18042 |last | |
+ROW |21400 |33235 |18043 |last | |
+ROW |21401 |33235 |18043 |last |4 |
+ROW |21402 |33235 |18044 |last | |
+ROW |21403 |33236 |18045 |last | |
+ROW |21404 |33236 |18046 |last | |
+ROW |21405 |33237 |18047 |avg |5m |
+ROW |21406 |33237 |18047 |max |5m |
+ROW |21407 |33237 |18048 |avg |5m |
+ROW |21408 |33237 |18048 |max |5m |
+ROW |21409 |33237 |18049 |avg |5m |
+ROW |21410 |33237 |18049 |min |5m |
+ROW |21411 |33238 |18050 |max |#3 |
+ROW |21412 |33239 |18051 |min |5m |
+ROW |21413 |33240 |18052 |avg |5m |
+ROW |21414 |33245 |18053 |diff | |
+ROW |21415 |33245 |18053 |strlen | |
+ROW |21416 |33247 |18054 |diff | |
+ROW |21417 |33247 |18054 |strlen | |
+ROW |21418 |33249 |18055 |diff | |
+ROW |21419 |33249 |18055 |strlen | |
+ROW |21420 |33250 |18056 |last | |
+ROW |21421 |33251 |18057 |max |{$SNMP.TIMEOUT} |
+ROW |21422 |33260 |18058 |min |5m |
+ROW |21423 |33261 |18059 |diff | |
+ROW |21424 |33261 |18059 |strlen | |
+ROW |21425 |33262 |18060 |last | |
+ROW |21426 |33262 |18061 |last | |
+ROW |21427 |33265 |18062 |min |5m |
+ROW |21428 |33272 |18063 |change | |
+ROW |21429 |33272 |18063 |last | |
+ROW |21430 |33274 |18063 |last | |
+ROW |21431 |33273 |18063 |last | |
+ROW |21432 |33272 |18063 |prev | |
+ROW |21433 |33268 |18064 |avg |15m |
+ROW |21434 |33272 |18064 |last | |
+ROW |21435 |33271 |18065 |avg |15m |
+ROW |21436 |33272 |18065 |last | |
+ROW |21437 |33267 |18066 |min |5m |
+ROW |21438 |33267 |18066 |max |5m |
+ROW |21439 |33270 |18067 |min |5m |
+ROW |21440 |33270 |18067 |max |5m |
+ROW |21441 |33273 |18068 |last | |
+ROW |21442 |33275 |18069 |last | |
+ROW |21443 |33276 |18070 |last | |
+ROW |21444 |33276 |18070 |last |4 |
+ROW |21445 |33276 |18071 |last | |
+ROW |21446 |33277 |18072 |last | |
+ROW |21447 |33277 |18073 |last | |
+ROW |21448 |33278 |18074 |avg |5m |
+ROW |21449 |33278 |18074 |max |5m |
+ROW |21450 |33278 |18075 |avg |5m |
+ROW |21451 |33278 |18075 |max |5m |
+ROW |21452 |33278 |18076 |avg |5m |
+ROW |21453 |33278 |18076 |min |5m |
+ROW |21454 |33279 |18077 |max |#3 |
+ROW |21455 |33280 |18078 |min |5m |
+ROW |21456 |33281 |18079 |avg |5m |
+ROW |21457 |33286 |18080 |diff | |
+ROW |21458 |33286 |18080 |strlen | |
+ROW |21459 |33288 |18081 |diff | |
+ROW |21460 |33288 |18081 |strlen | |
+ROW |21461 |33290 |18082 |diff | |
+ROW |21462 |33290 |18082 |strlen | |
+ROW |21463 |33291 |18083 |last | |
+ROW |21464 |33292 |18084 |max |{$SNMP.TIMEOUT} |
+ROW |21465 |33301 |18085 |min |5m |
+ROW |21466 |33302 |18086 |diff | |
+ROW |21467 |33302 |18086 |strlen | |
+ROW |21468 |33303 |18087 |last | |
+ROW |21469 |33303 |18088 |last | |
+ROW |21470 |33306 |18089 |min |5m |
+ROW |21471 |33313 |18090 |change | |
+ROW |21472 |33313 |18090 |last | |
+ROW |21473 |33315 |18090 |last | |
+ROW |21474 |33314 |18090 |last | |
+ROW |21475 |33313 |18090 |prev | |
+ROW |21476 |33309 |18091 |avg |15m |
+ROW |21477 |33313 |18091 |last | |
+ROW |21478 |33312 |18092 |avg |15m |
+ROW |21479 |33313 |18092 |last | |
+ROW |21480 |33308 |18093 |min |5m |
+ROW |21481 |33308 |18093 |max |5m |
+ROW |21482 |33311 |18094 |min |5m |
+ROW |21483 |33311 |18094 |max |5m |
+ROW |21484 |33314 |18095 |last | |
+ROW |21485 |33316 |18096 |last | |
+ROW |21486 |33317 |18097 |last | |
+ROW |21487 |33317 |18097 |last |4 |
+ROW |21488 |33317 |18098 |last | |
+ROW |21489 |33318 |18099 |last | |
+ROW |21490 |33318 |18100 |last | |
+ROW |21491 |33319 |18101 |avg |5m |
+ROW |21492 |33319 |18101 |max |5m |
+ROW |21493 |33319 |18102 |avg |5m |
+ROW |21494 |33319 |18102 |max |5m |
+ROW |21495 |33319 |18103 |avg |5m |
+ROW |21496 |33319 |18103 |min |5m |
+ROW |21497 |33320 |18104 |max |#3 |
+ROW |21498 |33321 |18105 |min |5m |
+ROW |21499 |33322 |18106 |avg |5m |
+ROW |21500 |33327 |18107 |diff | |
+ROW |21501 |33327 |18107 |strlen | |
+ROW |21502 |33329 |18108 |diff | |
+ROW |21503 |33329 |18108 |strlen | |
+ROW |21504 |33331 |18109 |diff | |
+ROW |21505 |33331 |18109 |strlen | |
+ROW |21506 |33332 |18110 |last | |
+ROW |21507 |33333 |18111 |max |{$SNMP.TIMEOUT} |
+ROW |21508 |33342 |18112 |min |5m |
+ROW |21509 |33343 |18113 |diff | |
+ROW |21510 |33343 |18113 |strlen | |
+ROW |21511 |33344 |18114 |last | |
+ROW |21512 |33344 |18115 |last | |
+ROW |21513 |33347 |18116 |min |5m |
+ROW |21514 |33354 |18117 |change | |
+ROW |21515 |33354 |18117 |last | |
+ROW |21516 |33356 |18117 |last | |
+ROW |21517 |33355 |18117 |last | |
+ROW |21518 |33354 |18117 |prev | |
+ROW |21519 |33350 |18118 |avg |15m |
+ROW |21520 |33354 |18118 |last | |
+ROW |21521 |33353 |18119 |avg |15m |
+ROW |21522 |33354 |18119 |last | |
+ROW |21523 |33349 |18120 |min |5m |
+ROW |21524 |33349 |18120 |max |5m |
+ROW |21525 |33352 |18121 |min |5m |
+ROW |21526 |33352 |18121 |max |5m |
+ROW |21527 |33355 |18122 |last | |
+ROW |21528 |33357 |18123 |last | |
+ROW |21529 |33358 |18124 |last | |
+ROW |21530 |33358 |18124 |last |4 |
+ROW |21531 |33358 |18125 |last | |
+ROW |21532 |33359 |18126 |last | |
+ROW |21533 |33359 |18127 |last | |
+ROW |21534 |33360 |18128 |avg |5m |
+ROW |21535 |33360 |18128 |max |5m |
+ROW |21536 |33360 |18129 |avg |5m |
+ROW |21537 |33360 |18129 |max |5m |
+ROW |21538 |33360 |18130 |avg |5m |
+ROW |21539 |33360 |18130 |min |5m |
+ROW |21540 |33361 |18131 |max |#3 |
+ROW |21541 |33362 |18132 |min |5m |
+ROW |21542 |33363 |18133 |avg |5m |
+ROW |21543 |33368 |18134 |diff | |
+ROW |21544 |33368 |18134 |strlen | |
+ROW |21545 |33370 |18135 |diff | |
+ROW |21546 |33370 |18135 |strlen | |
+ROW |21547 |33372 |18136 |diff | |
+ROW |21548 |33372 |18136 |strlen | |
+ROW |21549 |33373 |18137 |last | |
+ROW |21550 |33374 |18138 |max |{$SNMP.TIMEOUT} |
+ROW |21551 |33383 |18139 |min |5m |
+ROW |21552 |33384 |18140 |diff | |
+ROW |21553 |33384 |18140 |strlen | |
+ROW |21554 |33385 |18141 |last | |
+ROW |21555 |33385 |18142 |last | |
+ROW |21556 |33388 |18143 |min |5m |
+ROW |21557 |33395 |18144 |change | |
+ROW |21558 |33395 |18144 |last | |
+ROW |21559 |33397 |18144 |last | |
+ROW |21560 |33396 |18144 |last | |
+ROW |21561 |33395 |18144 |prev | |
+ROW |21562 |33391 |18145 |avg |15m |
+ROW |21563 |33395 |18145 |last | |
+ROW |21564 |33394 |18146 |avg |15m |
+ROW |21565 |33395 |18146 |last | |
+ROW |21566 |33390 |18147 |min |5m |
+ROW |21567 |33390 |18147 |max |5m |
+ROW |21568 |33393 |18148 |min |5m |
+ROW |21569 |33393 |18148 |max |5m |
+ROW |21570 |33396 |18149 |last | |
+ROW |21571 |33398 |18150 |last | |
+ROW |21572 |33399 |18151 |last | |
+ROW |21573 |33399 |18151 |last |4 |
+ROW |21574 |33399 |18152 |last | |
+ROW |21575 |33400 |18153 |last | |
+ROW |21576 |33400 |18154 |last | |
+ROW |21577 |33401 |18155 |avg |5m |
+ROW |21578 |33401 |18155 |max |5m |
+ROW |21579 |33401 |18156 |avg |5m |
+ROW |21580 |33401 |18156 |max |5m |
+ROW |21581 |33401 |18157 |avg |5m |
+ROW |21582 |33401 |18157 |min |5m |
+ROW |21583 |33402 |18158 |max |#3 |
+ROW |21584 |33403 |18159 |min |5m |
+ROW |21585 |33404 |18160 |avg |5m |
+ROW |21586 |33407 |18161 |min |5m |
+ROW |21587 |33410 |18162 |diff | |
+ROW |21588 |33410 |18162 |strlen | |
+ROW |21589 |33412 |18163 |last | |
+ROW |21590 |33413 |18164 |max |{$SNMP.TIMEOUT} |
+ROW |21591 |28202 |18165 |count |#1,{$FAN.STATUS.CRIT},eq |
+ROW |21592 |33423 |18166 |change | |
+ROW |21593 |33423 |18166 |last | |
+ROW |21594 |33425 |18166 |last | |
+ROW |21595 |33424 |18166 |last | |
+ROW |21596 |33423 |18166 |prev | |
+ROW |21597 |33419 |18167 |avg |15m |
+ROW |21598 |33423 |18167 |last | |
+ROW |21599 |33422 |18167 |avg |15m |
+ROW |21600 |33418 |18168 |min |5m |
+ROW |21601 |33421 |18168 |min |5m |
+ROW |21602 |33418 |18168 |max |5m |
+ROW |21603 |33421 |18168 |max |5m |
+ROW |21604 |33424 |18169 |last | |
+ROW |21605 |33424 |18169 |diff | |
+ROW |21606 |28206 |18170 |count |#1,{$PSU.STATUS.CRIT},eq |
+ROW |21607 |28201 |18171 |avg |5m |
+ROW |21608 |28200 |18171 |last | |
+ROW |21609 |28201 |18171 |max |5m |
+ROW |21610 |28201 |18172 |avg |5m |
+ROW |21611 |28201 |18172 |max |5m |
+ROW |21612 |28201 |18173 |avg |5m |
+ROW |21613 |28201 |18173 |min |5m |
+ROW |21614 |33426 |18174 |last | |
+ROW |21615 |33427 |18174 |last | |
+ROW |21616 |33428 |18174 |last | |
+ROW |21617 |33426 |18174 |timeleft |1h,,100 |
+ROW |21618 |33426 |18175 |last | |
+ROW |21619 |33427 |18175 |last | |
+ROW |21620 |33428 |18175 |last | |
+ROW |21621 |33426 |18175 |timeleft |1h,,100 |
+ROW |21622 |33431 |18176 |min |5m |
+ROW |21623 |33457 |18177 |last | |
+ROW |21624 |33455 |18178 |last | |
+ROW |21625 |33455 |18179 |last | |
+ROW |21626 |33454 |18180 |min |{$TIME.PERIOD} |
+ROW |21627 |33452 |18181 |max |#3 |
+ROW |21628 |33451 |18182 |min |5m |
+ROW |21629 |33450 |18183 |avg |5m |
+ROW |21630 |33448 |18184 |min |{$TIME.PERIOD} |
+ROW |21631 |33448 |18184 |max |{$TIME.PERIOD} |
+ROW |21632 |33447 |18185 |min |{$TIME.PERIOD} |
+ROW |21633 |33447 |18185 |max |{$TIME.PERIOD} |
+ROW |21634 |33433 |18186 |min |{$TIME.PERIOD} |
+ROW |21635 |33444 |18187 |last | |
+ROW |21636 |33444 |18188 |last | |
+ROW |21637 |33444 |18189 |last | |
+ROW |21638 |33444 |18190 |last | |
+ROW |21639 |33444 |18191 |last | |
+ROW |21640 |33444 |18192 |last | |
+ROW |21641 |33444 |18193 |last | |
+ROW |21642 |33444 |18194 |last | |
+ROW |21643 |33444 |18195 |last | |
+ROW |21644 |33444 |18196 |last | |
+ROW |21645 |33444 |18197 |last | |
+ROW |21646 |33437 |18198 |diff | |
+ROW |21647 |33437 |18198 |strlen | |
+ROW |21648 |33434 |18199 |last | |
+ROW |21649 |33459 |18200 |max |{$SNMP.TIMEOUT} |
+ROW |21650 |33467 |18201 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |21651 |33468 |18202 |regexp |"^(0{16})$" |
+ROW |21652 |33469 |18203 |min |{$TIME.PERIOD} |
+ROW |21653 |33472 |18204 |last | |
+ROW |21654 |33472 |18205 |last | |
+ROW |21655 |33472 |18206 |last | |
+ROW |21656 |33475 |18207 |last | |
+ROW |21657 |33475 |18208 |last | |
+ROW |21658 |33475 |18209 |last | |
+ROW |21659 |33478 |18210 |min |{$TIME.PERIOD} |
+ROW |21660 |33478 |18210 |max |{$TIME.PERIOD} |
+ROW |21661 |33493 |18211 |last | |
+ROW |21662 |33501 |18212 |diff | |
+ROW |21663 |33501 |18212 |strlen | |
+ROW |21664 |33526 |18213 |diff | |
+ROW |21665 |33526 |18213 |last | |
+ROW |21666 |33527 |18214 |diff | |
+ROW |21667 |33527 |18214 |last | |
+ROW |21668 |33528 |18215 |diff | |
+ROW |21669 |33528 |18215 |last | |
+ROW |21670 |33531 |18216 |diff | |
+ROW |21671 |33531 |18216 |last | |
+ROW |21672 |33532 |18217 |diff | |
+ROW |21673 |33532 |18217 |last | |
+ROW |21674 |33533 |18218 |diff | |
+ROW |21675 |33533 |18218 |strlen | |
+ROW |21676 |33534 |18219 |last | |
+ROW |21677 |33537 |18220 |last | |
+ROW |21678 |33538 |18221 |last | |
+ROW |21679 |33539 |18222 |diff | |
+ROW |21680 |33539 |18222 |last | |
+ROW |21681 |33541 |18223 |diff | |
+ROW |21682 |33541 |18223 |last | |
+ROW |21683 |33543 |18224 |diff | |
+ROW |21684 |33543 |18224 |last | |
+ROW |21685 |33563 |18225 |diff | |
+ROW |21686 |33563 |18225 |last | |
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|
@@ -12840,6 +14338,82 @@ 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 |
+ROW |1431 |RabbitMQ: Memory used |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1432 |RabbitMQ: Messages |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1433 |RabbitMQ: Messages per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1434 |RabbitMQ: Messages status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1435 |RabbitMQ: Node status |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1436 |RabbitMQ: Queues |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1437 |RabbitMQ: Sockets |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1438 |RabbitMQ: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1439 |MongoDB {#DBNAME}.{#COLLECTION}: Locks |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1440 |MongoDB {#DBNAME}.{#COLLECTION}: Locks time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1441 |MongoDB {#DBNAME}.{#COLLECTION}: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1442 |MongoDB {#DBNAME}.{#COLLECTION}: Operations time |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1443 |MongoDB {#DBNAME}: Collections stats |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1444 |MongoDB {#DBNAME}: Disk usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1445 |MongoDB: Replication lag time [{#RS_NAME}] |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1446 |MongoDB: Active clients |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1447 |MongoDB: Activity |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1448 |MongoDB: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1449 |MongoDB: Cursors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1450 |MongoDB: Documents |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1451 |MongoDB: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1452 |MongoDB: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1453 |MongoDB: Operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1454 |MongoDB: Queued operations |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1455 |MongoDB {#DBNAME}: Disk usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1456 |MongoDB cluster: Connection pool |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1457 |MongoDB cluster: Connections |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1458 |MongoDB cluster: Cursors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1459 |MongoDB cluster: Network |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1460 |MongoDB cluster: Operations rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1461 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1462 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1463 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1464 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1465 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1466 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1467 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1468 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1469 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1470 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1471 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1472 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1473 |#{#SNMPINDEX}: CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1474 |{#SNMPVALUE}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1475 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1476 |Interface {#IFNAME}({#IFALIAS}): Network traffic |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1477 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1478 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
+ROW |1479 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
+ROW |1480 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1481 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1482 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1483 |{#VOLUMENAME}: Volume latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1484 |{#VOLUMENAME}: Volume size |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1485 |Cluster IOPS |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1486 |Cluster latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1487 |Cluster throughput |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |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|
@@ -12872,7 +14446,6 @@ ROW |762 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0
ROW |763 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |764 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |773 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
-ROW |778 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |785 |Interface {#IFNAME}({#IFALIAS}): Network traffic|900 |200 |0 |100 |745 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |787 |{#SNMPVALUE}: CPU utilization |900 |200 |0 |100 |786 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
ROW |789 |Zabbix internal queues |900 |200 |0 |100 |788 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
@@ -12957,13 +14530,10 @@ ROW |916 |Memory utilization |900 |200 |0 |100
ROW |919 |Memory usage |900 |200 |0 |100 |918 |1 |1 |0 |1 |0 |0 |0 |1 |0 |NULL |NULL |0 |0 |
ROW |922 |Swap usage |900 |200 |0 |100 |921 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |925 |Processes |900 |200 |0 |100 |924 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1062 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
ROW |1063 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
ROW |1064 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |1061 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
-ROW |1067 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1068 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1069 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |1066 |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
-ROW |1072 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
ROW |1073 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
ROW |1074 |CPU utilization |900 |200 |0 |100 |1071 |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
ROW |1216 |{#DEVNAME}: Disk average waiting time |900 |200 |0 |100 |1215 |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
@@ -12993,367 +14563,6 @@ ROW |18847 |864 |28923 |0 |0 |1A7C11|0 |2 |0 |
ROW |18848 |864 |28924 |0 |1 |F63100|0 |2 |0 |
ROW |18849 |864 |28925 |0 |2 |2774A4|0 |2 |0 |
ROW |18850 |864 |28926 |0 |3 |A54F10|0 |2 |0 |
-ROW |44721 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44722 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44723 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
-ROW |44724 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44725 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
-ROW |44726 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44727 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
-ROW |44728 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44729 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
-ROW |44730 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44731 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
-ROW |44732 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
-ROW |44733 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44734 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |44735 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |44736 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |44737 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44738 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44739 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |44740 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44741 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44742 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |44743 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |44744 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |44745 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44746 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44747 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |44748 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |44749 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |44750 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |44751 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |44752 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44753 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |44754 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44755 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |44756 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |44757 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |44758 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44759 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44760 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44761 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |44762 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |44763 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |44764 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44765 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44766 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |44767 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |44768 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |44769 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |44770 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |44771 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44772 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |44773 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44774 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |44775 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44776 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
-ROW |44777 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44778 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
-ROW |44779 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44780 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
-ROW |44781 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
-ROW |44782 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44783 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
-ROW |44784 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44785 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
-ROW |44786 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
-ROW |44787 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
-ROW |44788 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44789 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
-ROW |44790 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
-ROW |44791 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
-ROW |44792 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44793 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44794 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44795 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
-ROW |44796 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
-ROW |44797 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44798 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |44799 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |44800 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44801 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |44802 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44803 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |44804 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |44805 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |44806 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |44807 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |44808 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44809 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |44810 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44811 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |44812 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |44813 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |44814 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44815 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44816 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |44817 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44818 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |44819 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |44820 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |44821 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |44822 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44823 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |44824 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |44825 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |44826 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44827 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |44828 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44829 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |44830 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |44831 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |44832 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44833 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |44834 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |44835 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |44836 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44837 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |44838 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |44839 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |44840 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44841 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |44842 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |44843 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |44844 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44845 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44846 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |44847 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44848 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |44849 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44850 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |44851 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44852 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |44853 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |44854 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44855 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |44856 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |44857 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44858 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |44859 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44860 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |44861 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |44862 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |44863 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44864 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |44865 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44866 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
-ROW |44867 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
-ROW |44868 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
-ROW |44869 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
-ROW |44870 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
-ROW |44871 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44872 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44873 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44874 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
-ROW |44875 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
-ROW |44876 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
-ROW |44877 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44878 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
-ROW |44879 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
-ROW |44880 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
-ROW |44881 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
-ROW |44882 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
-ROW |44883 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44884 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44885 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44886 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |44887 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |44888 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |44889 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44890 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |44891 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |44892 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44893 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |44894 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |44895 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |44896 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44897 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44898 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44899 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |44900 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |44901 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44902 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |44903 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |44904 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44905 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |44906 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |44907 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44908 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |44909 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |44910 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44911 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |44912 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |44913 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44914 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |44915 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |44916 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44917 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |44918 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |44919 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44920 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |44921 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44922 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |44923 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |44924 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
-ROW |44925 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
-ROW |44926 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44927 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |44928 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44929 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |44930 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44931 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |44932 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44933 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |44934 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44935 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |44936 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44937 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |44938 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44939 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |44940 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44941 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |44942 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44943 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |44944 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |44945 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |44946 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44947 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44948 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |44949 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44950 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |44951 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44952 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |44953 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44954 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |44955 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44956 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |44957 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44958 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |44959 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44960 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |44961 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44962 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |44963 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44964 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |44965 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44966 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |44967 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44968 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |44969 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |44970 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |44971 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44972 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44973 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |44974 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44975 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |44976 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44977 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |44978 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44979 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |44980 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44981 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |44982 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |44983 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |44984 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44985 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44986 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |44987 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |44988 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |44989 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |44990 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44991 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |44992 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |44993 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |44994 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |44995 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |44996 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |44997 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |44998 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |44999 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |45000 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45001 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
-ROW |45002 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45003 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
-ROW |45004 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45005 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
-ROW |45006 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45007 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
-ROW |45008 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
-ROW |45009 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
-ROW |45010 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45011 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
-ROW |45012 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45013 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
-ROW |45014 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45015 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
-ROW |45016 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
-ROW |45017 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
-ROW |45018 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |45019 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45020 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
-ROW |45021 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
-ROW |45022 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
-ROW |45023 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
-ROW |45024 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
-ROW |45025 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
-ROW |45026 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45027 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
-ROW |45028 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
-ROW |45029 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
-ROW |45030 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |45031 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45032 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45033 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
-ROW |45034 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
-ROW |45035 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
-ROW |45036 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45037 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |45038 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |45039 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45040 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |45041 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |45042 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45043 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |45044 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |45045 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45046 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |45047 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45048 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |45049 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45050 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45051 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |45052 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |45053 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |45054 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45055 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |45056 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |45057 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45058 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |45059 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45060 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45061 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |45062 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |45063 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |45064 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45065 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |45066 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |45067 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45068 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45069 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
-ROW |45070 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
-ROW |45071 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
-ROW |45072 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45073 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
-ROW |45074 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
-ROW |45075 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45076 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
-ROW |45077 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
-ROW |45078 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
-ROW |45079 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45080 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
-ROW |45081 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
ROW |45082 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
ROW |45083 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
ROW |45084 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
@@ -13454,1430 +14663,2031 @@ ROW |45178 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
ROW |45179 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
ROW |45180 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
ROW |45181 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45182 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45183 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
-ROW |45184 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45185 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
-ROW |45186 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
-ROW |45187 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45188 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
-ROW |45189 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
-ROW |45190 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45191 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
-ROW |45192 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45193 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
-ROW |45194 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
-ROW |45195 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45196 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
-ROW |45197 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
-ROW |45198 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45199 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
-ROW |45200 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45201 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
-ROW |45202 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
-ROW |45203 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
-ROW |45204 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45205 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45206 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
-ROW |45207 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
-ROW |45208 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
-ROW |45209 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
-ROW |45210 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
-ROW |45211 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
-ROW |45212 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45213 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
-ROW |45214 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45215 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
-ROW |45216 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
-ROW |45217 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
-ROW |45218 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45219 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
-ROW |45220 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
-ROW |45221 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45222 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
-ROW |45223 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
-ROW |45224 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45225 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
-ROW |45226 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45227 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
-ROW |45228 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45229 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
-ROW |45230 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
-ROW |45231 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45232 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
-ROW |45233 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45234 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
-ROW |45235 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |45236 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |45237 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |45238 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |45239 |804 |28602 |0 |0 |990099|0 |2 |0 |
-ROW |45240 |804 |28606 |0 |1 |990000|0 |2 |0 |
-ROW |45241 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
-ROW |45242 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
-ROW |45243 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
-ROW |45244 |804 |28611 |0 |5 |003300|0 |2 |0 |
-ROW |45245 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
-ROW |45246 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
-ROW |45247 |804 |28604 |0 |8 |000099|0 |2 |0 |
-ROW |45248 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
-ROW |45249 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
-ROW |45250 |805 |28600 |0 |1 |990099|0 |2 |0 |
-ROW |45251 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
-ROW |45252 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
-ROW |45253 |805 |28614 |0 |4 |960000|0 |2 |0 |
-ROW |45254 |805 |28601 |0 |5 |009600|0 |2 |0 |
-ROW |45255 |805 |28603 |0 |6 |009999|0 |2 |0 |
-ROW |45256 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
-ROW |45257 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |45258 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |45259 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |45260 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |45261 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |45262 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |45263 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |45264 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |45265 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |45266 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |45267 |799 |28581 |0 |0 |990099|0 |2 |0 |
-ROW |45268 |799 |28574 |0 |1 |990000|0 |2 |0 |
-ROW |45269 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
-ROW |45270 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
-ROW |45271 |799 |28570 |0 |4 |009600|0 |2 |0 |
-ROW |45272 |799 |28569 |0 |5 |003300|0 |2 |0 |
-ROW |45273 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
-ROW |45274 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
-ROW |45275 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
-ROW |45276 |799 |28579 |0 |9 |000099|0 |2 |0 |
-ROW |45277 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
-ROW |45278 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
-ROW |45279 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
-ROW |45280 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
-ROW |45281 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
-ROW |45282 |800 |28564 |0 |4 |990099|0 |2 |0 |
-ROW |45283 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
-ROW |45284 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
-ROW |45285 |800 |28580 |0 |7 |009999|0 |2 |0 |
-ROW |45286 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
-ROW |45287 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
-ROW |45288 |800 |28575 |0 |10 |990000|0 |2 |0 |
-ROW |45289 |800 |28576 |0 |11 |008800|0 |2 |0 |
-ROW |45290 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
-ROW |45291 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
-ROW |45292 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
-ROW |45293 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |45294 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |45295 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |45296 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |45297 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |45298 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |45299 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |45300 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |45301 |530 |23345 |0 |0 |990099|0 |2 |0 |
-ROW |45302 |530 |23348 |0 |1 |990000|0 |2 |0 |
-ROW |45303 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
-ROW |45304 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
-ROW |45305 |530 |23356 |0 |4 |007700|0 |2 |0 |
-ROW |45306 |530 |23354 |0 |5 |003300|0 |2 |0 |
-ROW |45307 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
-ROW |45308 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
-ROW |45309 |530 |23344 |0 |8 |000099|0 |7 |0 |
-ROW |45310 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
-ROW |45311 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
-ROW |45312 |531 |23347 |0 |1 |990099|0 |2 |0 |
-ROW |45313 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
-ROW |45314 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
-ROW |45315 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
-ROW |45316 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
-ROW |45317 |531 |25369 |0 |6 |009999|0 |2 |0 |
-ROW |45318 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
-ROW |45319 |531 |28618 |0 |8 |990000|0 |2 |0 |
-ROW |45320 |531 |28619 |0 |9 |008800|0 |2 |0 |
-ROW |45321 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |45322 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |45323 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |45324 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |45325 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |45326 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |45327 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |45328 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |45329 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |45330 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |45331 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |45332 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |45333 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |45334 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |45335 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |45336 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |45337 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |45338 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |45339 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |45340 |404 |22404 |0 |0 |990099|0 |2 |0 |
-ROW |45341 |404 |22399 |0 |1 |990000|0 |2 |0 |
-ROW |45342 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
-ROW |45343 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
-ROW |45344 |404 |22418 |0 |4 |009600|0 |2 |0 |
-ROW |45345 |404 |22402 |0 |5 |003300|0 |2 |0 |
-ROW |45346 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
-ROW |45347 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
-ROW |45348 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
-ROW |45349 |404 |23171 |0 |9 |000099|0 |2 |0 |
-ROW |45350 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
-ROW |45351 |518 |23269 |0 |0 |990099|0 |2 |0 |
-ROW |45352 |518 |23264 |0 |1 |990000|0 |2 |0 |
-ROW |45353 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
-ROW |45354 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
-ROW |45355 |518 |23260 |0 |4 |009600|0 |2 |0 |
-ROW |45356 |518 |23259 |0 |5 |003300|0 |2 |0 |
-ROW |45357 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
-ROW |45358 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
-ROW |45359 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
-ROW |45360 |518 |23267 |0 |9 |000099|0 |2 |0 |
-ROW |45361 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
-ROW |45362 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
-ROW |45363 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
-ROW |45364 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
-ROW |45365 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
-ROW |45366 |406 |22412 |0 |4 |990099|0 |2 |0 |
-ROW |45367 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
-ROW |45368 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
-ROW |45369 |406 |23663 |0 |7 |009999|0 |2 |0 |
-ROW |45370 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
-ROW |45371 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
-ROW |45372 |406 |25665 |0 |10 |990000|0 |2 |0 |
-ROW |45373 |406 |25666 |0 |11 |008800|0 |2 |0 |
-ROW |45374 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
-ROW |45375 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
-ROW |45376 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
-ROW |45377 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
-ROW |45378 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
-ROW |45379 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
-ROW |45380 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
-ROW |45381 |517 |23253 |0 |4 |990099|0 |2 |0 |
-ROW |45382 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
-ROW |45383 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
-ROW |45384 |517 |23664 |0 |7 |009999|0 |2 |0 |
-ROW |45385 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
-ROW |45386 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
-ROW |45387 |517 |25667 |0 |10 |990000|0 |2 |0 |
-ROW |45388 |517 |25668 |0 |11 |008800|0 |2 |0 |
-ROW |45389 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
-ROW |45390 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
-ROW |45391 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
-ROW |45392 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |45393 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |45394 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |45395 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |45396 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |45397 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |45398 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |45399 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |45400 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |45401 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |45402 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |45403 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |45404 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |45405 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |45406 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |45407 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |45408 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |45409 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |45410 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |45411 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |45412 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |45413 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |45414 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |45415 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |45416 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |45417 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |45418 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |45419 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |45420 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |45421 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |45422 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |45423 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |45424 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |45425 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |45426 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |45427 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |45428 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |45429 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |45430 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |45431 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |45432 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |45433 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |45434 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |45435 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |45436 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |45437 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |45438 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |45439 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |45440 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |45441 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |45442 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |45443 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |45444 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |45445 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |45446 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |45447 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |45448 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |45449 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |45450 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |45451 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |45452 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |45453 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |45454 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |45455 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |45456 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |45457 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |45458 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |45459 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |45460 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |45461 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |45462 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |45463 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |45464 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |45465 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |45466 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |45467 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |45468 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |45469 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |45470 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |45471 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |45472 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |45473 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |45474 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |45475 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |45476 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |45477 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |45478 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |45479 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |45480 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |45481 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |45482 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |45483 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |45484 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |45485 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |45486 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |45487 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |45488 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |45489 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |45490 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |45491 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |45492 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |45493 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |45494 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |45495 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |45496 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |45497 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |45498 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |45499 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |45500 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |45501 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |45502 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |45503 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45504 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |45505 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
-ROW |45506 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
-ROW |45507 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45508 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
-ROW |45509 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45510 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
-ROW |45511 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45512 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
-ROW |45513 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45514 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
-ROW |45515 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
-ROW |45516 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
-ROW |45517 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45518 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45519 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45520 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
-ROW |45521 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45522 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
-ROW |45523 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45524 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
-ROW |45525 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45526 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
-ROW |45527 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |45528 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
-ROW |45529 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45530 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45531 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45532 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |45533 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45534 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |45535 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |45536 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |45537 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45538 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45539 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |45540 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45541 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |45542 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |45543 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |45544 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |45545 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45546 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |45547 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |45548 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45549 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |45550 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45551 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |45552 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45553 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |45554 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |45555 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |45556 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45557 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45558 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |45559 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |45560 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45561 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |45562 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |45563 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45564 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |45565 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45566 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45567 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |45568 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |45569 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |45570 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45571 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
-ROW |45572 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
-ROW |45573 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
-ROW |45574 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45575 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
-ROW |45576 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
-ROW |45577 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45578 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
-ROW |45579 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45580 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
-ROW |45581 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45582 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
-ROW |45583 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
-ROW |45584 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
-ROW |45585 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45586 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
-ROW |45587 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |45588 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45589 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |45590 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45591 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
-ROW |45592 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45593 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
-ROW |45594 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45595 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
-ROW |45596 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45597 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |45598 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45599 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
-ROW |45600 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
-ROW |45601 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45602 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
-ROW |45603 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45604 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |45605 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45606 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |45607 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |45608 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45609 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45610 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |45611 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45612 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |45613 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |45614 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |45615 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45616 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45617 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45618 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |45619 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |45620 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |45621 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45622 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |45623 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45624 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |45625 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45626 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |45627 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45628 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |45629 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |45630 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |45631 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45632 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45633 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |45634 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |45635 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |45636 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45637 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45638 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |45639 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45640 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |45641 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45642 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |45643 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45644 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45645 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |45646 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |45647 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |45648 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45649 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45650 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |45651 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45652 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45653 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |45654 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |45655 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |45656 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45657 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |45658 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45659 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |45660 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45661 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |45662 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |45663 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |45664 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45665 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |45666 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45667 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |45668 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |45669 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |45670 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45671 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |45672 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |45673 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |45674 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45675 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |45676 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |45677 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |45678 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45679 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |45680 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |45681 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45682 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |45683 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |45684 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |45685 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45686 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |45687 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45688 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |45689 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |45690 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |45691 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45692 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |45693 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |45694 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |45695 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45696 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |45697 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |45698 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |45699 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45700 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |45701 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |45702 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45703 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |45704 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |45705 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |45706 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45707 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |45708 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45709 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |45710 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |45711 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |45712 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45713 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |45714 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |45715 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |45716 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45717 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |45718 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |45719 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |45720 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45721 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |45722 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |45723 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45724 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |45725 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |45726 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |45727 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45728 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
-ROW |45729 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45730 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
-ROW |45731 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
-ROW |45732 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45733 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
-ROW |45734 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45735 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
-ROW |45736 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
-ROW |45737 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45738 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
-ROW |45739 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45740 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
-ROW |45741 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45742 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
-ROW |45743 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45744 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
-ROW |45745 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
-ROW |45746 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
-ROW |45747 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45748 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45749 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
-ROW |45750 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
-ROW |45751 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
-ROW |45752 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45753 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45754 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45755 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
-ROW |45756 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45757 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
-ROW |45758 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
-ROW |45759 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45760 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
-ROW |45761 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45762 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |45763 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
-ROW |45764 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45765 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |45766 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45767 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
-ROW |45768 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45769 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
-ROW |45770 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45771 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
-ROW |45772 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
-ROW |45773 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
-ROW |45774 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45775 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45776 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
-ROW |45777 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
-ROW |45778 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
-ROW |45779 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45780 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45781 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
-ROW |45782 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
-ROW |45783 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
-ROW |45784 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45785 |816 |28715 |0 |1 |F63100|0 |2 |0 |
-ROW |45786 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
-ROW |45787 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
-ROW |45788 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
-ROW |45789 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
-ROW |45790 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
-ROW |45791 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
-ROW |45792 |818 |28725 |5 |3 |81C784|0 |2 |0 |
-ROW |45793 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
-ROW |45794 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
-ROW |45795 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45796 |819 |28724 |0 |1 |F63100|0 |2 |0 |
-ROW |45797 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
-ROW |45798 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
-ROW |45799 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
-ROW |45800 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45801 |821 |28737 |0 |1 |F63100|0 |2 |0 |
-ROW |45802 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
-ROW |45803 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
-ROW |45804 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45805 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
-ROW |45806 |822 |28698 |0 |1 |F63100|1 |2 |0 |
-ROW |45807 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
-ROW |45808 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
-ROW |45809 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45810 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45811 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45812 |823 |28699 |0 |1 |F63100|0 |2 |0 |
-ROW |45813 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
-ROW |45814 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
-ROW |45815 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |45816 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
-ROW |45817 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
-ROW |45818 |824 |28705 |0 |3 |F63100|1 |2 |0 |
-ROW |45819 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
-ROW |45820 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
-ROW |45821 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
-ROW |45822 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
-ROW |45823 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
-ROW |45824 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
-ROW |45825 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
-ROW |45826 |827 |28688 |0 |1 |F63100|1 |2 |0 |
-ROW |45827 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
-ROW |45828 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
-ROW |45829 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
-ROW |45830 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
-ROW |45831 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
-ROW |45832 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
-ROW |45833 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45834 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
-ROW |45835 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
-ROW |45836 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
-ROW |45837 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45838 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45839 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
-ROW |45840 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
-ROW |45841 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
-ROW |45842 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
-ROW |45843 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45844 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45845 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
-ROW |45846 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
-ROW |45847 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
-ROW |45848 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |45849 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
-ROW |45850 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
-ROW |45851 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
-ROW |45852 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
-ROW |45853 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |45854 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
-ROW |45855 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
-ROW |45856 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
-ROW |45857 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45858 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45859 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
-ROW |45860 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
-ROW |45861 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45862 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |45863 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45864 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |45865 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45866 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45867 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45868 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |45869 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45870 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45871 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |45872 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |45873 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |45874 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45875 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |45876 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45877 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |45878 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45879 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |45880 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |45881 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45882 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45883 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |45884 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |45885 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |45886 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45887 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45888 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |45889 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45890 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45891 |1062 |30171 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45892 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45893 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45894 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |45895 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |45896 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |45897 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |45898 |1067 |30173 |0 |0 |969696|0 |9 |2 |
-ROW |45899 |1067 |30174 |0 |1 |C80000|0 |9 |0 |
-ROW |45900 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |45901 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |45902 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |45903 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |45904 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45905 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45906 |1072 |30144 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45907 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45908 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45909 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45910 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |45911 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |45912 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |45913 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45914 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45915 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45916 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |45917 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |45918 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |45919 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45920 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45921 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45922 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |45923 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |45924 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |45925 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45926 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45927 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45928 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |45929 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |45930 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |45931 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45932 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45933 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45934 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |45935 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |45936 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |45937 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45938 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45939 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45940 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |45941 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |45942 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |45943 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45944 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45945 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45946 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |45947 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |45948 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |45949 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45950 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45951 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45952 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |45953 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |45954 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |45955 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45956 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45957 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45958 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |45959 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |45960 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |45961 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45962 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45963 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45964 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |45965 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |45966 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |45967 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45968 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45969 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45970 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |45971 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |45972 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |45973 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45974 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45975 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45976 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |45977 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |45978 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |45979 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45980 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45981 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45982 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |45983 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |45984 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |45985 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45986 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45987 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45988 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |45989 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |45990 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |45991 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45992 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45993 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |45994 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |45995 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |45996 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |45997 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |45998 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |45999 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46000 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |46001 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |46002 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |46003 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46004 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46005 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46006 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |46007 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |46008 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |46009 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46010 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46011 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46012 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |46013 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |46014 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |46015 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46016 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46017 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46018 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |46019 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |46020 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |46021 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46022 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46023 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46024 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |46025 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |46026 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |46027 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46028 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46029 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46030 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |46031 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |46032 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |46033 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46034 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46035 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46036 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |46037 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |46038 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |46039 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46040 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46041 |778 |28178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46042 |778 |28181 |2 |1 |2774A4|0 |2 |0 |
-ROW |46043 |778 |28180 |0 |2 |F63100|1 |2 |0 |
-ROW |46044 |778 |28177 |0 |3 |A54F10|1 |2 |0 |
-ROW |46045 |778 |28179 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46046 |778 |28176 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46047 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46048 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |46049 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |46050 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |46051 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46052 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46053 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46054 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |46055 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |46056 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |46057 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46058 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46059 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46060 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |46061 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |46062 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |46063 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46064 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46065 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46066 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |46067 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |46068 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |46069 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46070 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46071 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46072 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |46073 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |46074 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |46075 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46076 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46077 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46078 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46079 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |46080 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46081 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46082 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46083 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46084 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46085 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46086 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46087 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46088 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46089 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46090 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46091 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46092 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46093 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46094 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46095 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46096 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46097 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46098 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46099 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46100 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46101 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46102 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46103 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46104 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46105 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46106 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |46107 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46108 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46109 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46110 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46111 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46112 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |46113 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46114 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46115 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46116 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46117 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46118 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46119 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46120 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46121 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
-ROW |46122 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
-ROW |46123 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
-ROW |46124 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |46125 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |46126 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46127 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46128 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
-ROW |46129 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46130 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
-ROW |46131 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
-ROW |46132 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46133 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
-ROW |46134 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46135 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
-ROW |46136 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
-ROW |46137 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46138 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
-ROW |46139 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46140 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46141 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
-ROW |46142 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46143 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
-ROW |46144 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
-ROW |46145 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46146 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
-ROW |46147 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46148 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
-ROW |46149 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
-ROW |46150 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46151 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
-ROW |46152 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46153 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
-ROW |46154 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
-ROW |46155 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46156 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46157 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46158 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46159 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46160 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
-ROW |46161 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
-ROW |46162 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46163 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46164 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46165 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
-ROW |46166 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46167 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46168 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
-ROW |46169 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
-ROW |46170 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46171 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46172 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46173 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
-ROW |46174 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46175 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46176 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46177 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46178 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46179 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46180 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
-ROW |46181 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46182 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46183 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |46184 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46185 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46186 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46187 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46188 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46189 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46190 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46191 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46192 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
-ROW |46193 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46194 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
-ROW |46195 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46196 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
-ROW |46197 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46198 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
-ROW |46199 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46200 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
-ROW |46201 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46202 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
-ROW |46203 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46204 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
-ROW |46205 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46206 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
-ROW |46207 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46208 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
-ROW |46209 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |46210 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |46211 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |46212 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |46213 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |46214 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |46215 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46216 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |46217 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |46218 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |46219 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46220 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46221 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46222 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |46223 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |46224 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |46225 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46226 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46227 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46228 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |46229 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |46230 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |46231 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46232 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46233 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46234 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |46235 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46236 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |46237 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46238 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |46239 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46240 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |46241 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |46242 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |46243 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46244 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46245 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46246 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |46247 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |46248 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46249 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |46250 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |46251 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |46252 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46253 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46254 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46255 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |46256 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |46257 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46258 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |46259 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |46260 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |46261 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46262 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46263 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46264 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |46265 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |46266 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46267 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46268 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46269 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46270 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |46271 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46272 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |46273 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46274 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |46275 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46276 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46277 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46278 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46279 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |46280 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |46281 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46282 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |46283 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |46284 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46285 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |46286 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |46287 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46288 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |46289 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46290 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |46291 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46292 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |46293 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46294 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |46295 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |46296 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |46297 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46298 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |46299 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |46300 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |46301 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46302 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |46303 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |46304 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |46305 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46306 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
-ROW |46307 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46308 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
-ROW |46309 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46310 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
-ROW |46311 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46312 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
-ROW |46313 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46314 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
-ROW |46315 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46316 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
-ROW |46317 |926 |29356 |0 |0 |969696|0 |9 |2 |
-ROW |46318 |926 |29355 |0 |1 |C80000|0 |9 |0 |
-ROW |46319 |927 |29370 |0 |0 |969696|0 |9 |2 |
-ROW |46320 |927 |29369 |0 |1 |C80000|0 |9 |0 |
-ROW |46321 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46322 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
-ROW |46323 |934 |29363 |0 |2 |F63100|1 |2 |0 |
-ROW |46324 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
-ROW |46325 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46326 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46327 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46328 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
-ROW |46329 |935 |29377 |0 |2 |F63100|1 |2 |0 |
-ROW |46330 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
-ROW |46331 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46332 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46333 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46334 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
-ROW |46335 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46336 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
-ROW |46337 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46338 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
-ROW |46339 |940 |29281 |0 |2 |F63100|0 |2 |0 |
-ROW |46340 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
-ROW |46341 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46342 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46343 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46344 |940 |29277 |0 |7 |611F27|0 |2 |0 |
-ROW |46345 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
-ROW |46346 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46347 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
-ROW |46348 |941 |29318 |0 |2 |F63100|0 |2 |0 |
-ROW |46349 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
-ROW |46350 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46351 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46352 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46353 |941 |29314 |0 |7 |611F27|0 |2 |0 |
-ROW |46354 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
-ROW |46355 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46356 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46357 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46358 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
-ROW |46359 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46360 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
-ROW |46361 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46362 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46363 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46364 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
-ROW |46365 |950 |29303 |0 |2 |F63100|0 |2 |0 |
-ROW |46366 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46367 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
-ROW |46368 |951 |29340 |0 |2 |F63100|0 |2 |0 |
-ROW |46369 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46370 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
-ROW |46371 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46372 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
-ROW |46373 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46374 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
-ROW |46375 |936 |29286 |0 |2 |F63100|0 |2 |0 |
-ROW |46376 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
-ROW |46377 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46378 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
-ROW |46379 |937 |29323 |0 |2 |F63100|0 |2 |0 |
-ROW |46380 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
-ROW |46381 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46382 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |46383 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |46384 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |46385 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46386 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46387 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46388 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |46389 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46390 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |46391 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46392 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |46393 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |46394 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |46395 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46396 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |46397 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46398 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |46399 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |46400 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |46401 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46402 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46403 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46404 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |46405 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |46406 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46407 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46408 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |46409 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46410 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46411 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |46412 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46413 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |46414 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |46415 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |46416 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46417 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |46418 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46419 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |46420 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46421 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |46422 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |46423 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |46424 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46425 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46426 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46427 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |46428 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |46429 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46430 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |46431 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |46432 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |46433 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |46434 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |46435 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |46436 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |46437 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |46438 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46439 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46440 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |46441 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |46442 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |46443 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |46444 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46445 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |46446 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46447 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |46448 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46449 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |46450 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |46451 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |46452 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46453 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46454 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46455 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |46456 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46457 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |46458 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46459 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |46460 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |46461 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |46462 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46463 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |46464 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |46465 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |46466 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |46467 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |46468 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |46469 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |46470 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46471 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
-ROW |46472 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
-ROW |46473 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
-ROW |46474 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46475 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46476 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46477 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
-ROW |46478 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
-ROW |46479 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
-ROW |46480 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46481 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46482 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46483 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
-ROW |46484 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46485 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
-ROW |46486 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46487 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
-ROW |46488 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46489 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
-ROW |46490 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46491 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
-ROW |46492 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46493 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
-ROW |46494 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46495 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
-ROW |46496 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46497 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
-ROW |46498 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46499 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |46500 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46501 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |46502 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46503 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |46504 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46505 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |46506 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46507 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46508 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46509 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46510 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46511 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |46512 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46513 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |46514 |982 |29620 |0 |0 |969696|0 |9 |2 |
-ROW |46515 |982 |29619 |0 |1 |C80000|0 |9 |0 |
-ROW |46516 |983 |29629 |0 |0 |969696|0 |9 |2 |
-ROW |46517 |983 |29628 |0 |1 |C80000|0 |9 |0 |
-ROW |46518 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46519 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
-ROW |46520 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
-ROW |46521 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
-ROW |46522 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46523 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46524 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46525 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
-ROW |46526 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
-ROW |46527 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
-ROW |46528 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46529 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46530 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46531 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
-ROW |46532 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46533 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
-ROW |46534 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46535 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
-ROW |46536 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46537 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
-ROW |46538 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46539 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
-ROW |46540 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46541 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
-ROW |46542 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46543 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
-ROW |46544 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
-ROW |46545 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
-ROW |46546 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46547 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
-ROW |46548 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46549 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
-ROW |46550 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46551 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
-ROW |46552 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46553 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
-ROW |46554 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46555 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46556 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46557 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46558 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46559 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
-ROW |46560 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46561 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
-ROW |46562 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46563 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46564 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
-ROW |46565 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
-ROW |46566 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46567 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
-ROW |46568 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
-ROW |46569 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46570 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
-ROW |46571 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
-ROW |46572 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46573 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46574 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
-ROW |46575 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
-ROW |46576 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46577 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
-ROW |46578 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
-ROW |46579 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46580 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
-ROW |46581 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
-ROW |46582 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46583 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
-ROW |46584 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46585 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
-ROW |46586 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
-ROW |46587 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
-ROW |46588 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
-ROW |46589 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
-ROW |46590 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
-ROW |46591 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |46592 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
-ROW |46593 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46594 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46595 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
-ROW |46596 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
-ROW |46597 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46598 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
-ROW |46599 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
-ROW |46600 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46601 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
-ROW |46602 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |46603 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
-ROW |46604 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
-ROW |46605 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
+ROW |46606 |1374 |32471 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46607 |1375 |32469 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46608 |1375 |32468 |5 |1 |2774A4|0 |2 |0 |
+ROW |46609 |1376 |32472 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46610 |1376 |32467 |5 |1 |2774A4|0 |2 |0 |
+ROW |46611 |1377 |32483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46612 |1377 |32482 |5 |1 |2774A4|0 |2 |0 |
+ROW |46613 |1378 |32484 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46614 |1378 |32481 |5 |1 |2774A4|0 |2 |0 |
+ROW |46615 |1379 |32476 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46616 |1379 |32478 |5 |1 |2774A4|0 |2 |0 |
+ROW |46617 |1379 |32480 |5 |2 |F63100|0 |2 |0 |
+ROW |46618 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46619 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |46620 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |46621 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |46622 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46623 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46624 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |46625 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46626 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46627 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |46628 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |46629 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |46630 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46631 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46632 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46633 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |46634 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |46635 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |46636 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |46637 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46638 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |46639 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46640 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |46641 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |46642 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |46643 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46644 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46645 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46646 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |46647 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |46648 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |46649 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46650 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46651 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46652 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |46653 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |46654 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |46655 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |46656 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46657 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |46658 |1278 |31855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46659 |1278 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |46660 |1304 |32007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46661 |1304 |32010 |0 |1 |2774A4|0 |2 |0 |
+ROW |46662 |1305 |32008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46663 |1305 |32011 |0 |1 |2774A4|0 |2 |0 |
+ROW |46664 |1306 |32003 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46665 |1306 |32004 |0 |1 |2774A4|0 |2 |0 |
+ROW |46666 |1306 |32009 |0 |2 |F63100|0 |2 |0 |
+ROW |46667 |1282 |31818 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46668 |1282 |31825 |0 |1 |2774A4|0 |2 |0 |
+ROW |46669 |1283 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46670 |1283 |31819 |0 |1 |2774A4|0 |2 |0 |
+ROW |46671 |1284 |31824 |1 |0 |1A7C11|0 |2 |0 |
+ROW |46672 |1284 |31821 |1 |1 |2774A4|0 |2 |0 |
+ROW |46673 |1285 |31839 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46674 |1285 |31841 |0 |1 |2774A4|0 |2 |0 |
+ROW |46675 |1285 |31842 |0 |2 |F63100|0 |2 |0 |
+ROW |46676 |1285 |31837 |2 |3 |A54F10|0 |2 |0 |
+ROW |46677 |1285 |31838 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46678 |1285 |31829 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46679 |1286 |31833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46680 |1286 |31834 |0 |1 |2774A4|0 |2 |0 |
+ROW |46681 |1286 |31835 |0 |2 |F63100|0 |2 |0 |
+ROW |46682 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46683 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |46684 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |46685 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46686 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |46687 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46688 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |46689 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |46690 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |46691 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |46692 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |46693 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46694 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |46695 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46696 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |46697 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |46698 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |46699 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46700 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46701 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |46702 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46703 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46704 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |46705 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |46706 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |46707 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46708 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |46709 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |46710 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |46711 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46712 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |46713 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46714 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |46715 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |46716 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |46717 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46718 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |46719 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |46720 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |46721 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46722 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |46723 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |46724 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |46725 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46726 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |46727 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |46728 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |46729 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46730 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46731 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46732 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46733 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |46734 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46735 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |46736 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46737 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |46738 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |46739 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46740 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |46741 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |46742 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46743 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |46744 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46745 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |46746 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |46747 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |46748 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46749 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |46750 |1380 |32498 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46751 |1380 |32499 |0 |1 |2774A4|0 |2 |0 |
+ROW |46752 |1381 |32505 |0 |0 |1A7C11|1 |2 |0 |
+ROW |46753 |1381 |32508 |0 |1 |2774A4|1 |2 |0 |
+ROW |46754 |1381 |32506 |0 |2 |F63100|0 |2 |0 |
+ROW |46755 |1381 |32507 |0 |3 |A54F10|0 |2 |0 |
+ROW |46756 |1381 |32509 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46757 |1381 |32510 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46758 |1382 |32488 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46759 |1382 |32491 |0 |1 |2774A4|0 |2 |0 |
+ROW |46760 |1382 |32493 |0 |2 |F63100|0 |2 |0 |
+ROW |46761 |1382 |32494 |0 |3 |A54F10|0 |2 |0 |
+ROW |46762 |1383 |32528 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46763 |1383 |32529 |0 |1 |2774A4|0 |2 |0 |
+ROW |46764 |1384 |32535 |0 |0 |1A7C11|1 |2 |0 |
+ROW |46765 |1384 |32538 |0 |1 |2774A4|1 |2 |0 |
+ROW |46766 |1384 |32536 |0 |2 |F63100|0 |2 |0 |
+ROW |46767 |1384 |32537 |0 |3 |A54F10|0 |2 |0 |
+ROW |46768 |1384 |32539 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46769 |1384 |32540 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46770 |1385 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46771 |1385 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |46772 |1385 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |46773 |1385 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |46774 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46775 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |46776 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |46777 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46778 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |46779 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |46780 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |46781 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46782 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46783 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46784 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |46785 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |46786 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46787 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |46788 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |46789 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46790 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |46791 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |46792 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46793 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |46794 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |46795 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46796 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |46797 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |46798 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46799 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |46800 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |46801 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46802 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |46803 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |46804 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46805 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |46806 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46807 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |46808 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |46809 |1307 |32051 |1 |0 |1A7C11|0 |2 |0 |
+ROW |46810 |1307 |32057 |1 |1 |2774A4|0 |2 |0 |
+ROW |46811 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46812 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |46813 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46814 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |46815 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46816 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |46817 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46818 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |46819 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46820 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |46821 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46822 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |46823 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46824 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |46825 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46826 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |46827 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46828 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |46829 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |46830 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |46831 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46832 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46833 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |46834 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46835 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |46836 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46837 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |46838 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46839 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |46840 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46841 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |46842 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46843 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |46844 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46845 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |46846 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46847 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |46848 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46849 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |46850 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46851 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |46852 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46853 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |46854 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |46855 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |46856 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46857 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46858 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |46859 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46860 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |46861 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46862 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |46863 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46864 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |46865 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46866 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |46867 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |46868 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |46869 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46870 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46871 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46872 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |46873 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46874 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |46875 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46876 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |46877 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46878 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |46879 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |46880 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |46881 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46882 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46883 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46884 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |46885 |1308 |32078 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46886 |1308 |32077 |0 |1 |2774A4|0 |2 |0 |
+ROW |46887 |1309 |32088 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46888 |1309 |32087 |0 |1 |2774A4|0 |2 |0 |
+ROW |46889 |1310 |32071 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46890 |1310 |32102 |0 |1 |2774A4|0 |2 |0 |
+ROW |46891 |1311 |32108 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46892 |1311 |32109 |0 |1 |2774A4|0 |2 |0 |
+ROW |46893 |1311 |32106 |0 |2 |F63100|0 |2 |0 |
+ROW |46894 |1311 |32107 |0 |3 |A54F10|0 |2 |0 |
+ROW |46895 |1312 |32083 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46896 |1312 |32084 |0 |1 |2774A4|0 |2 |0 |
+ROW |46897 |1313 |32080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46898 |1313 |32081 |0 |1 |2774A4|0 |2 |0 |
+ROW |46899 |1314 |32086 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46900 |1314 |32100 |2 |1 |2774A4|0 |2 |0 |
+ROW |46901 |1314 |32073 |0 |2 |F63100|0 |2 |0 |
+ROW |46902 |1314 |32131 |0 |3 |A54F10|0 |2 |0 |
+ROW |46903 |1314 |32118 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |46904 |1314 |32101 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46905 |1314 |32125 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46906 |1314 |32126 |2 |7 |611F27|0 |2 |0 |
+ROW |46907 |1314 |32127 |0 |8 |F230E0|0 |2 |0 |
+ROW |46908 |1314 |32128 |0 |9 |FFAD40|0 |2 |0 |
+ROW |46909 |1314 |32129 |2 |10 |40CDFF|0 |2 |0 |
+ROW |46910 |1314 |32130 |0 |11 |40FFA0|0 |2 |0 |
+ROW |46911 |1315 |32124 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46912 |1315 |32123 |2 |1 |2774A4|0 |2 |0 |
+ROW |46913 |1315 |32122 |0 |2 |F63100|0 |2 |0 |
+ROW |46914 |1315 |32121 |0 |3 |A54F10|0 |2 |0 |
+ROW |46915 |1315 |32121 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |46916 |1315 |32120 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46917 |1316 |32098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46918 |1316 |32099 |0 |1 |2774A4|0 |2 |0 |
+ROW |46919 |1316 |32097 |0 |2 |F63100|0 |2 |0 |
+ROW |46920 |1316 |32096 |0 |3 |A54F10|0 |2 |0 |
+ROW |46921 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46922 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |46923 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |46924 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46925 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |46926 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |46927 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46928 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |46929 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |46930 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46931 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |46932 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46933 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |46934 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46935 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46936 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |46937 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |46938 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |46939 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46940 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |46941 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |46942 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46943 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |46944 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46945 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |46946 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |46947 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |46948 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |46949 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46950 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |46951 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |46952 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46953 |1287 |31890 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46954 |1287 |31882 |0 |1 |2774A4|0 |2 |0 |
+ROW |46955 |1287 |31880 |0 |2 |F63100|0 |2 |0 |
+ROW |46956 |1287 |31883 |0 |3 |A54F10|0 |2 |0 |
+ROW |46957 |1288 |31889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46958 |1288 |31881 |0 |1 |2774A4|0 |2 |0 |
+ROW |46959 |1288 |31888 |0 |2 |F63100|0 |2 |0 |
+ROW |46960 |1289 |31900 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46961 |1289 |31895 |0 |1 |2774A4|0 |2 |0 |
+ROW |46962 |1289 |31899 |0 |2 |F63100|0 |2 |0 |
+ROW |46963 |1289 |31902 |0 |3 |A54F10|0 |2 |0 |
+ROW |46964 |1290 |31907 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46965 |1290 |31908 |0 |1 |2774A4|0 |2 |0 |
+ROW |46966 |1290 |31906 |0 |2 |F63100|0 |2 |0 |
+ROW |46967 |1412 |32908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46968 |1412 |32923 |0 |1 |2774A4|0 |2 |0 |
+ROW |46969 |1412 |32921 |0 |2 |F63100|0 |2 |0 |
+ROW |46970 |1412 |32919 |0 |3 |A54F10|0 |2 |0 |
+ROW |46971 |1412 |32917 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46972 |1412 |32911 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46973 |1412 |32914 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46974 |1412 |32909 |0 |7 |611F27|0 |2 |0 |
+ROW |46975 |1413 |32912 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46976 |1413 |32922 |0 |1 |2774A4|0 |2 |0 |
+ROW |46977 |1413 |32920 |0 |2 |F63100|0 |2 |0 |
+ROW |46978 |1413 |32918 |0 |3 |A54F10|0 |2 |0 |
+ROW |46979 |1413 |32915 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |46980 |1413 |32910 |0 |5 |6C59DC|0 |2 |0 |
+ROW |46981 |1413 |32913 |0 |6 |AC8C14|0 |2 |0 |
+ROW |46982 |1413 |32924 |0 |7 |611F27|0 |2 |0 |
+ROW |46983 |1414 |32847 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46984 |1414 |32848 |0 |1 |2774A4|0 |2 |0 |
+ROW |46985 |1414 |32846 |0 |2 |F63100|0 |2 |0 |
+ROW |46986 |1415 |32871 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46987 |1415 |32876 |2 |1 |FF0000|0 |2 |0 |
+ROW |46988 |1416 |32875 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46989 |1417 |32839 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46990 |1417 |32838 |0 |1 |2774A4|0 |2 |0 |
+ROW |46991 |1418 |32878 |5 |0 |1A7C11|0 |2 |0 |
+ROW |46992 |1418 |32873 |2 |1 |FF0000|0 |2 |0 |
+ROW |46993 |1419 |32843 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46994 |1419 |32842 |0 |1 |2774A4|0 |2 |0 |
+ROW |46995 |1419 |32841 |0 |2 |F63100|0 |2 |0 |
+ROW |46996 |1420 |32857 |0 |0 |1A7C11|0 |2 |0 |
+ROW |46997 |1420 |32851 |0 |1 |2774A4|0 |2 |0 |
+ROW |46998 |1420 |32861 |0 |2 |F63100|0 |2 |0 |
+ROW |46999 |1420 |32859 |0 |3 |A54F10|0 |2 |0 |
+ROW |47000 |1420 |32855 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47001 |1420 |32853 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47002 |1420 |32863 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47003 |1420 |32849 |0 |7 |611F27|0 |2 |0 |
+ROW |47004 |1421 |32858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47005 |1421 |32850 |0 |1 |2774A4|0 |2 |0 |
+ROW |47006 |1421 |32862 |0 |2 |F63100|0 |2 |0 |
+ROW |47007 |1421 |32860 |0 |3 |A54F10|0 |2 |0 |
+ROW |47008 |1421 |32856 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47009 |1421 |32854 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47010 |1421 |32852 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47011 |1421 |32840 |0 |7 |611F27|0 |2 |0 |
+ROW |47012 |1422 |32864 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47013 |1423 |32844 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47014 |1424 |32866 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47015 |1424 |32867 |0 |1 |2774A4|0 |2 |0 |
+ROW |47016 |1425 |32865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47017 |1426 |33000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47018 |1426 |33015 |0 |1 |2774A4|0 |2 |0 |
+ROW |47019 |1426 |33013 |0 |2 |F63100|0 |2 |0 |
+ROW |47020 |1426 |33011 |0 |3 |A54F10|0 |2 |0 |
+ROW |47021 |1426 |33009 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47022 |1426 |33003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47023 |1426 |33006 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47024 |1426 |33001 |0 |7 |611F27|0 |2 |0 |
+ROW |47025 |1427 |33004 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47026 |1427 |33014 |0 |1 |2774A4|0 |2 |0 |
+ROW |47027 |1427 |33012 |0 |2 |F63100|0 |2 |0 |
+ROW |47028 |1427 |33010 |0 |3 |A54F10|0 |2 |0 |
+ROW |47029 |1427 |33007 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47030 |1427 |33002 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47031 |1427 |33005 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47032 |1427 |33016 |0 |7 |611F27|0 |2 |0 |
+ROW |47033 |1428 |32937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47034 |1428 |32938 |0 |1 |2774A4|0 |2 |0 |
+ROW |47035 |1428 |32936 |0 |2 |F63100|0 |2 |0 |
+ROW |47036 |1429 |32969 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47037 |1429 |32967 |2 |1 |FF0000|0 |2 |0 |
+ROW |47038 |1430 |32966 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47039 |1431 |32964 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47040 |1431 |32962 |2 |1 |FF0000|0 |2 |0 |
+ROW |47041 |1432 |32933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47042 |1432 |32932 |0 |1 |2774A4|0 |2 |0 |
+ROW |47043 |1432 |32955 |0 |2 |F63100|0 |2 |0 |
+ROW |47044 |1433 |32947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47045 |1433 |32953 |0 |1 |2774A4|0 |2 |0 |
+ROW |47046 |1433 |32951 |0 |2 |F63100|0 |2 |0 |
+ROW |47047 |1433 |32949 |0 |3 |A54F10|0 |2 |0 |
+ROW |47048 |1433 |32945 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47049 |1433 |32943 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47050 |1433 |32941 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47051 |1433 |32939 |0 |7 |611F27|0 |2 |0 |
+ROW |47052 |1434 |32948 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47053 |1434 |32954 |0 |1 |2774A4|0 |2 |0 |
+ROW |47054 |1434 |32952 |0 |2 |F63100|0 |2 |0 |
+ROW |47055 |1434 |32950 |0 |3 |A54F10|0 |2 |0 |
+ROW |47056 |1434 |32946 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47057 |1434 |32944 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47058 |1434 |32942 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47059 |1434 |32940 |0 |7 |611F27|0 |2 |0 |
+ROW |47060 |1435 |32960 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47061 |1436 |32934 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47062 |1437 |32957 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47063 |1437 |32958 |0 |1 |2774A4|0 |2 |0 |
+ROW |47064 |1438 |32970 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47065 |1291 |31947 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47066 |1291 |31946 |0 |1 |2774A4|0 |2 |0 |
+ROW |47067 |1292 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47068 |1292 |31938 |0 |1 |2774A4|0 |2 |0 |
+ROW |47069 |1292 |31950 |0 |2 |F63100|0 |2 |0 |
+ROW |47070 |1293 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47071 |1293 |31945 |0 |1 |2774A4|0 |2 |0 |
+ROW |47072 |1293 |31942 |0 |2 |F63100|0 |2 |0 |
+ROW |47073 |1294 |31959 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47074 |1294 |31962 |0 |1 |2774A4|0 |2 |0 |
+ROW |47075 |1295 |31918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47076 |1295 |31916 |0 |1 |2774A4|0 |2 |0 |
+ROW |47077 |1295 |31917 |0 |2 |F63100|0 |2 |0 |
+ROW |47078 |1296 |31919 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47079 |1296 |31920 |0 |1 |2774A4|0 |2 |0 |
+ROW |47080 |1296 |31921 |0 |2 |F63100|0 |2 |0 |
+ROW |47081 |1297 |31911 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47082 |1297 |31944 |0 |1 |2774A4|0 |2 |0 |
+ROW |47083 |1298 |31953 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47084 |1298 |31954 |0 |1 |2774A4|0 |2 |0 |
+ROW |47085 |1298 |31960 |0 |2 |F63100|0 |2 |0 |
+ROW |47086 |1298 |31961 |0 |3 |A54F10|0 |2 |0 |
+ROW |47087 |1298 |31957 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47088 |1298 |31958 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47089 |1298 |31912 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47090 |1298 |31913 |0 |7 |611F27|0 |2 |0 |
+ROW |47091 |1298 |31914 |0 |8 |F230E0|0 |2 |0 |
+ROW |47092 |1298 |31915 |0 |9 |FFAD40|0 |2 |0 |
+ROW |47093 |1298 |31948 |0 |10 |40CDFF|0 |2 |0 |
+ROW |47094 |1298 |31949 |0 |11 |40FFA0|0 |2 |0 |
+ROW |47095 |1317 |32146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47096 |1317 |32145 |5 |1 |2774A4|0 |2 |0 |
+ROW |47097 |1318 |32151 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47098 |1318 |32150 |5 |1 |2774A4|0 |2 |0 |
+ROW |47099 |1318 |32153 |5 |2 |F63100|0 |2 |0 |
+ROW |47100 |1318 |32152 |5 |3 |A54F10|0 |2 |0 |
+ROW |47101 |1319 |32157 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47102 |1319 |32155 |5 |1 |2774A4|0 |2 |0 |
+ROW |47103 |1319 |32156 |5 |2 |F63100|0 |2 |0 |
+ROW |47104 |1320 |32196 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47105 |1320 |32197 |0 |1 |2774A4|0 |2 |0 |
+ROW |47106 |1320 |32195 |2 |2 |F63100|0 |2 |0 |
+ROW |47107 |1321 |32200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47108 |1321 |32199 |0 |1 |2774A4|0 |2 |0 |
+ROW |47109 |1322 |32175 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47110 |1322 |32165 |0 |1 |2774A4|0 |2 |0 |
+ROW |47111 |1323 |32162 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47112 |1323 |32163 |0 |1 |2774A4|0 |2 |0 |
+ROW |47113 |1323 |32190 |2 |2 |F63100|0 |2 |0 |
+ROW |47114 |1324 |32192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47115 |1324 |32179 |0 |1 |2774A4|0 |2 |0 |
+ROW |47116 |1325 |32168 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47117 |1325 |32166 |0 |1 |2774A4|0 |2 |0 |
+ROW |47118 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |47119 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |47120 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |47121 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |47122 |804 |28602 |0 |0 |990099|0 |2 |0 |
+ROW |47123 |804 |28606 |0 |1 |990000|0 |2 |0 |
+ROW |47124 |804 |28608 |0 |2 |0000EE|0 |2 |0 |
+ROW |47125 |804 |28615 |0 |3 |FF33FF|0 |2 |0 |
+ROW |47126 |804 |28610 |0 |4 |00EE00|0 |2 |0 |
+ROW |47127 |804 |28611 |0 |5 |003300|0 |2 |0 |
+ROW |47128 |804 |28616 |0 |6 |33FFFF|0 |2 |0 |
+ROW |47129 |804 |28607 |0 |7 |DD0000|0 |2 |0 |
+ROW |47130 |804 |28604 |0 |8 |000099|0 |2 |0 |
+ROW |47131 |804 |28588 |0 |9 |00FF00|0 |2 |0 |
+ROW |47132 |805 |28612 |0 |0 |FFAA00|0 |2 |0 |
+ROW |47133 |805 |28600 |0 |1 |990099|0 |2 |0 |
+ROW |47134 |805 |28613 |0 |2 |EE0000|0 |2 |0 |
+ROW |47135 |805 |28605 |0 |3 |FF66FF|0 |2 |0 |
+ROW |47136 |805 |28614 |0 |4 |960000|0 |2 |0 |
+ROW |47137 |805 |28601 |0 |5 |009600|0 |2 |0 |
+ROW |47138 |805 |28603 |0 |6 |009999|0 |2 |0 |
+ROW |47139 |805 |28609 |0 |7 |BBBB00|0 |2 |0 |
+ROW |47140 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |47141 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |47142 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |47143 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |47144 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |47145 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |47146 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |47147 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |47148 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |47149 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |47150 |799 |28581 |0 |0 |990099|0 |2 |0 |
+ROW |47151 |799 |28574 |0 |1 |990000|0 |2 |0 |
+ROW |47152 |799 |28571 |0 |2 |0000EE|0 |2 |0 |
+ROW |47153 |799 |28565 |0 |3 |FF33FF|0 |2 |0 |
+ROW |47154 |799 |28570 |0 |4 |009600|0 |2 |0 |
+ROW |47155 |799 |28569 |0 |5 |003300|0 |2 |0 |
+ROW |47156 |799 |28577 |0 |6 |CCCC00|0 |2 |0 |
+ROW |47157 |799 |28552 |0 |7 |33FFFF|0 |2 |0 |
+ROW |47158 |799 |28573 |0 |8 |DD0000|0 |2 |0 |
+ROW |47159 |799 |28579 |0 |9 |000099|0 |2 |0 |
+ROW |47160 |799 |28559 |0 |10 |00FF00|0 |2 |0 |
+ROW |47161 |800 |28572 |0 |0 |00EE00|0 |2 |0 |
+ROW |47162 |800 |28566 |0 |1 |0000EE|0 |2 |0 |
+ROW |47163 |800 |28568 |0 |2 |FFAA00|0 |2 |0 |
+ROW |47164 |800 |28561 |0 |3 |00EEEE|0 |2 |0 |
+ROW |47165 |800 |28564 |0 |4 |990099|0 |2 |0 |
+ROW |47166 |800 |28567 |0 |5 |EE0000|0 |2 |0 |
+ROW |47167 |800 |28578 |0 |6 |FF66FF|0 |2 |0 |
+ROW |47168 |800 |28580 |0 |7 |009999|0 |2 |0 |
+ROW |47169 |800 |28562 |0 |8 |BBBB00|0 |2 |0 |
+ROW |47170 |800 |28563 |0 |9 |AA0000|0 |2 |0 |
+ROW |47171 |800 |28575 |0 |10 |990000|0 |2 |0 |
+ROW |47172 |800 |28576 |0 |11 |008800|0 |2 |0 |
+ROW |47173 |800 |28582 |0 |12 |80B0E0|0 |2 |0 |
+ROW |47174 |800 |28583 |0 |13 |4080B0|0 |2 |0 |
+ROW |47175 |800 |29821 |0 |14 |8000FF|0 |2 |0 |
+ROW |47176 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |47177 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |47178 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |47179 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |47180 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |47181 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |47182 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |47183 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |47184 |530 |23345 |0 |0 |990099|0 |2 |0 |
+ROW |47185 |530 |23348 |0 |1 |990000|0 |2 |0 |
+ROW |47186 |530 |23355 |0 |2 |0000EE|0 |2 |0 |
+ROW |47187 |530 |23352 |0 |3 |FF33FF|0 |2 |0 |
+ROW |47188 |530 |23356 |0 |4 |007700|0 |2 |0 |
+ROW |47189 |530 |23354 |0 |5 |003300|0 |2 |0 |
+ROW |47190 |530 |23346 |0 |6 |33FFFF|0 |2 |0 |
+ROW |47191 |530 |23349 |0 |7 |DD0000|0 |2 |0 |
+ROW |47192 |530 |23344 |0 |8 |000099|0 |7 |0 |
+ROW |47193 |530 |28250 |0 |9 |00FF00|0 |2 |0 |
+ROW |47194 |531 |23353 |0 |0 |FFAA00|0 |2 |0 |
+ROW |47195 |531 |23347 |0 |1 |990099|0 |2 |0 |
+ROW |47196 |531 |23350 |0 |2 |EE0000|0 |2 |0 |
+ROW |47197 |531 |23343 |0 |3 |FF66FF|0 |2 |0 |
+ROW |47198 |531 |23351 |0 |4 |0000EE|0 |2 |0 |
+ROW |47199 |531 |23360 |0 |5 |00EE00|0 |2 |0 |
+ROW |47200 |531 |25369 |0 |6 |009999|0 |2 |0 |
+ROW |47201 |531 |25368 |0 |7 |BBBB00|0 |2 |0 |
+ROW |47202 |531 |28618 |0 |8 |990000|0 |2 |0 |
+ROW |47203 |531 |28619 |0 |9 |008800|0 |2 |0 |
+ROW |47204 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |47205 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |47206 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |47207 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |47208 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |47209 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |47210 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |47211 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |47212 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |47213 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |47214 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |47215 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |47216 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |47217 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |47218 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |47219 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |47220 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |47221 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |47222 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |47223 |404 |22404 |0 |0 |990099|0 |2 |0 |
+ROW |47224 |404 |22399 |0 |1 |990000|0 |2 |0 |
+ROW |47225 |404 |22416 |0 |2 |0000EE|0 |2 |0 |
+ROW |47226 |404 |22430 |0 |3 |FF33FF|0 |2 |0 |
+ROW |47227 |404 |22418 |0 |4 |009600|0 |2 |0 |
+ROW |47228 |404 |22402 |0 |5 |003300|0 |2 |0 |
+ROW |47229 |404 |22420 |0 |6 |CCCC00|0 |2 |0 |
+ROW |47230 |404 |22400 |0 |7 |33FFFF|0 |2 |0 |
+ROW |47231 |404 |22689 |0 |8 |DD0000|0 |2 |0 |
+ROW |47232 |404 |23171 |0 |9 |000099|0 |2 |0 |
+ROW |47233 |404 |22401 |0 |10 |00FF00|0 |2 |0 |
+ROW |47234 |518 |23269 |0 |0 |990099|0 |2 |0 |
+ROW |47235 |518 |23264 |0 |1 |990000|0 |2 |0 |
+ROW |47236 |518 |23261 |0 |2 |0000EE|0 |2 |0 |
+ROW |47237 |518 |23255 |0 |3 |FF33FF|0 |2 |0 |
+ROW |47238 |518 |23260 |0 |4 |009600|0 |2 |0 |
+ROW |47239 |518 |23259 |0 |5 |003300|0 |2 |0 |
+ROW |47240 |518 |23265 |0 |6 |CCCC00|0 |2 |0 |
+ROW |47241 |518 |23270 |0 |7 |33FFFF|0 |2 |0 |
+ROW |47242 |518 |23262 |0 |8 |DD0000|0 |2 |0 |
+ROW |47243 |518 |23267 |0 |9 |000099|0 |2 |0 |
+ROW |47244 |518 |23328 |0 |10 |00FF00|0 |2 |0 |
+ROW |47245 |406 |22426 |0 |0 |00EE00|0 |2 |0 |
+ROW |47246 |406 |22422 |0 |1 |0000EE|0 |2 |0 |
+ROW |47247 |406 |22408 |0 |2 |FFAA00|0 |2 |0 |
+ROW |47248 |406 |22424 |0 |3 |00EEEE|0 |2 |0 |
+ROW |47249 |406 |22412 |0 |4 |990099|0 |2 |0 |
+ROW |47250 |406 |22406 |0 |5 |EE0000|0 |2 |0 |
+ROW |47251 |406 |22414 |0 |6 |FF66FF|0 |2 |0 |
+ROW |47252 |406 |23663 |0 |7 |009999|0 |2 |0 |
+ROW |47253 |406 |25366 |0 |8 |BBBB00|0 |2 |0 |
+ROW |47254 |406 |25370 |0 |9 |AA0000|0 |2 |0 |
+ROW |47255 |406 |25665 |0 |10 |990000|0 |2 |0 |
+ROW |47256 |406 |25666 |0 |11 |008800|0 |2 |0 |
+ROW |47257 |406 |28535 |0 |12 |80B0E0|0 |2 |0 |
+ROW |47258 |406 |28537 |0 |13 |4080B0|0 |2 |0 |
+ROW |47259 |406 |29822 |0 |14 |8000FF|0 |2 |0 |
+ROW |47260 |517 |23268 |0 |0 |00EE00|0 |2 |0 |
+ROW |47261 |517 |23256 |0 |1 |0000EE|0 |2 |0 |
+ROW |47262 |517 |23258 |0 |2 |FFAA00|0 |2 |0 |
+ROW |47263 |517 |23252 |0 |3 |00EEEE|0 |2 |0 |
+ROW |47264 |517 |23253 |0 |4 |990099|0 |2 |0 |
+ROW |47265 |517 |23257 |0 |5 |EE0000|0 |2 |0 |
+ROW |47266 |517 |23266 |0 |6 |FF66FF|0 |2 |0 |
+ROW |47267 |517 |23664 |0 |7 |009999|0 |2 |0 |
+ROW |47268 |517 |25367 |0 |8 |BBBB00|0 |2 |0 |
+ROW |47269 |517 |25371 |0 |9 |AA0000|0 |2 |0 |
+ROW |47270 |517 |25667 |0 |10 |990000|0 |2 |0 |
+ROW |47271 |517 |25668 |0 |11 |008800|0 |2 |0 |
+ROW |47272 |517 |28536 |0 |12 |80B0E0|0 |2 |0 |
+ROW |47273 |517 |28538 |0 |13 |4080B0|0 |2 |0 |
+ROW |47274 |517 |29823 |0 |14 |8000FF|0 |2 |0 |
+ROW |47275 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |47276 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |47277 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |47278 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |47279 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |47280 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |47281 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |47282 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |47283 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |47284 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |47285 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |47286 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |47287 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |47288 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |47289 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |47290 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |47291 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |47292 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |47293 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |47294 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |47295 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |47296 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |47297 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |47298 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |47299 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |47300 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |47301 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |47302 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |47303 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |47304 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |47305 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |47306 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |47307 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |47308 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |47309 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |47310 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |47311 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |47312 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |47313 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |47314 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |47315 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |47316 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |47317 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |47318 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |47319 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |47320 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |47321 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |47322 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |47323 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |47324 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |47325 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |47326 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |47327 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |47328 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |47329 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |47330 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |47331 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |47332 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |47333 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |47334 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |47335 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |47336 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |47337 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |47338 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |47339 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |47340 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |47341 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |47342 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |47343 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |47344 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |47345 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |47346 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |47347 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |47348 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |47349 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |47350 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |47351 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |47352 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |47353 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |47354 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |47355 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |47356 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |47357 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |47358 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |47359 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |47360 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |47361 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |47362 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |47363 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |47364 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |47365 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |47366 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |47367 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |47368 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |47369 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |47370 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |47371 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |47372 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |47373 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |47374 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |47375 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |47376 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |47377 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |47378 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |47379 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |47380 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |47381 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |47382 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |47383 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |47384 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |47385 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |47386 |1326 |32292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47387 |1326 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |47388 |1326 |32278 |0 |2 |F63100|0 |2 |0 |
+ROW |47389 |1326 |32277 |0 |3 |A54F10|0 |2 |0 |
+ROW |47390 |1327 |32304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47391 |1327 |32289 |0 |1 |2774A4|0 |2 |0 |
+ROW |47392 |1328 |32259 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47393 |1328 |32260 |2 |1 |2774A4|0 |2 |0 |
+ROW |47394 |1329 |32268 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47395 |1329 |32264 |2 |1 |2774A4|0 |2 |0 |
+ROW |47396 |1330 |32261 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47397 |1330 |32265 |2 |1 |2774A4|0 |2 |0 |
+ROW |47398 |1330 |32262 |0 |2 |F63100|0 |2 |0 |
+ROW |47399 |1330 |32263 |0 |3 |A54F10|0 |2 |0 |
+ROW |47400 |1330 |32266 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47401 |1330 |32267 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47402 |1331 |32272 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47403 |1331 |32271 |2 |1 |2774A4|0 |2 |0 |
+ROW |47404 |1332 |32256 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47405 |1332 |32242 |2 |1 |2774A4|0 |2 |0 |
+ROW |47406 |1333 |32273 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47407 |1333 |32238 |0 |1 |2774A4|0 |2 |0 |
+ROW |47408 |1334 |32245 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47409 |1334 |32250 |2 |1 |2774A4|0 |2 |0 |
+ROW |47410 |1334 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |47411 |1334 |32247 |0 |3 |A54F10|0 |2 |0 |
+ROW |47412 |1334 |32251 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47413 |1334 |32252 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47414 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47415 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |47416 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47417 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |47418 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |47419 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |47420 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47421 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47422 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |47423 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47424 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |47425 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |47426 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |47427 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |47428 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47429 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |47430 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |47431 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47432 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |47433 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47434 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |47435 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47436 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |47437 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |47438 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |47439 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47440 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47441 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |47442 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |47443 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47444 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |47445 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |47446 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47447 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |47448 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47449 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47450 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |47451 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |47452 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |47453 |1390 |32665 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47454 |1390 |32668 |0 |1 |2774A4|0 |2 |0 |
+ROW |47455 |1390 |32666 |0 |2 |F63100|0 |2 |0 |
+ROW |47456 |1390 |32667 |0 |3 |A54F10|0 |2 |0 |
+ROW |47457 |1391 |32674 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47458 |1391 |32673 |0 |1 |2774A4|0 |2 |0 |
+ROW |47459 |1391 |32672 |0 |2 |F63100|0 |2 |0 |
+ROW |47460 |1392 |32677 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47461 |1392 |32686 |0 |1 |2774A4|0 |2 |0 |
+ROW |47462 |1393 |32681 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47463 |1393 |32682 |0 |1 |2774A4|0 |2 |0 |
+ROW |47464 |1394 |32687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47465 |1394 |32692 |0 |1 |2774A4|0 |2 |0 |
+ROW |47466 |1394 |32690 |0 |2 |F63100|0 |2 |0 |
+ROW |47467 |1394 |32688 |0 |3 |A54F10|0 |2 |0 |
+ROW |47468 |1395 |32694 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47469 |1395 |32696 |0 |1 |2774A4|0 |2 |0 |
+ROW |47470 |1395 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |47471 |1396 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47472 |1396 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |47473 |1397 |32715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47474 |1397 |32716 |0 |1 |2774A4|0 |2 |0 |
+ROW |47475 |1398 |32718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47476 |1398 |32720 |0 |1 |2774A4|0 |2 |0 |
+ROW |47477 |1399 |32721 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47478 |1399 |32719 |0 |1 |2774A4|0 |2 |0 |
+ROW |47479 |1400 |32723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47480 |1400 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |47481 |1401 |32722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47482 |1401 |32725 |0 |1 |2774A4|0 |2 |0 |
+ROW |47483 |1401 |32726 |0 |2 |F63100|0 |2 |0 |
+ROW |47484 |1402 |32728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47485 |1402 |32729 |0 |1 |2774A4|0 |2 |0 |
+ROW |47486 |1439 |33072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47487 |1439 |33092 |0 |1 |2774A4|0 |2 |0 |
+ROW |47488 |1440 |33073 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47489 |1440 |33069 |0 |1 |2774A4|0 |2 |0 |
+ROW |47490 |1441 |33079 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47491 |1441 |33084 |0 |1 |2774A4|0 |2 |0 |
+ROW |47492 |1441 |33082 |0 |2 |F63100|0 |2 |0 |
+ROW |47493 |1441 |33074 |0 |3 |A54F10|0 |2 |0 |
+ROW |47494 |1441 |33078 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47495 |1441 |33086 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47496 |1441 |33076 |2 |6 |AC8C14|0 |2 |0 |
+ROW |47497 |1442 |33081 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47498 |1442 |33085 |0 |1 |2774A4|0 |2 |0 |
+ROW |47499 |1442 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |47500 |1442 |33075 |0 |3 |A54F10|0 |2 |0 |
+ROW |47501 |1442 |33068 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47502 |1442 |33087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47503 |1442 |33077 |2 |6 |AC8C14|0 |2 |0 |
+ROW |47504 |1443 |33093 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47505 |1443 |33098 |0 |1 |2774A4|0 |2 |0 |
+ROW |47506 |1444 |33097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47507 |1444 |33100 |0 |1 |2774A4|0 |2 |0 |
+ROW |47508 |1444 |33096 |0 |2 |F63100|0 |2 |0 |
+ROW |47509 |1444 |33094 |0 |3 |A54F10|0 |2 |0 |
+ROW |47510 |1445 |33116 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47511 |1446 |33045 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47512 |1446 |33044 |0 |1 |2774A4|0 |2 |0 |
+ROW |47513 |1446 |33046 |0 |2 |F63100|0 |2 |0 |
+ROW |47514 |1447 |33055 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47515 |1447 |33023 |0 |1 |2774A4|0 |2 |0 |
+ROW |47516 |1448 |33053 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47517 |1448 |33052 |0 |1 |2774A4|0 |2 |0 |
+ROW |47518 |1448 |33054 |0 |2 |F63100|0 |2 |0 |
+ROW |47519 |1449 |33051 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47520 |1449 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |47521 |1449 |33027 |0 |2 |F63100|0 |2 |0 |
+ROW |47522 |1450 |33022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47523 |1450 |33040 |0 |1 |2774A4|0 |2 |0 |
+ROW |47524 |1450 |33042 |0 |2 |F63100|0 |2 |0 |
+ROW |47525 |1450 |33043 |0 |3 |A54F10|0 |2 |0 |
+ROW |47526 |1451 |33038 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47527 |1451 |33025 |0 |1 |2774A4|0 |2 |0 |
+ROW |47528 |1451 |33026 |0 |2 |F63100|0 |2 |0 |
+ROW |47529 |1451 |33024 |0 |3 |A54F10|0 |2 |0 |
+ROW |47530 |1452 |33029 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47531 |1452 |33028 |0 |1 |2774A4|0 |2 |0 |
+ROW |47532 |1453 |33035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47533 |1453 |33034 |0 |1 |2774A4|0 |2 |0 |
+ROW |47534 |1453 |33033 |0 |2 |F63100|0 |2 |0 |
+ROW |47535 |1453 |33036 |0 |3 |A54F10|0 |2 |0 |
+ROW |47536 |1453 |33030 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47537 |1453 |33031 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47538 |1454 |33057 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47539 |1454 |33056 |2 |1 |2774A4|0 |2 |0 |
+ROW |47540 |1454 |33058 |2 |2 |F63100|0 |2 |0 |
+ROW |47541 |1455 |33190 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47542 |1455 |33193 |0 |1 |2774A4|0 |2 |0 |
+ROW |47543 |1455 |33189 |0 |2 |F63100|0 |2 |0 |
+ROW |47544 |1455 |33187 |0 |3 |A54F10|0 |2 |0 |
+ROW |47545 |1456 |33158 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47546 |1456 |33168 |0 |1 |2774A4|0 |2 |0 |
+ROW |47547 |1456 |33169 |0 |2 |F63100|0 |2 |0 |
+ROW |47548 |1456 |33167 |0 |3 |A54F10|0 |2 |0 |
+ROW |47549 |1456 |33171 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47550 |1457 |33165 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47551 |1457 |33166 |0 |1 |2774A4|0 |2 |0 |
+ROW |47552 |1457 |33164 |0 |2 |F63100|0 |2 |0 |
+ROW |47553 |1457 |33163 |2 |3 |A54F10|1 |2 |0 |
+ROW |47554 |1458 |33161 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47555 |1458 |33162 |0 |1 |2774A4|0 |2 |0 |
+ROW |47556 |1458 |33155 |0 |2 |F63100|0 |2 |0 |
+ROW |47557 |1459 |33146 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47558 |1459 |33145 |0 |1 |2774A4|0 |2 |0 |
+ROW |47559 |1460 |33152 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47560 |1460 |33151 |2 |1 |2774A4|0 |2 |0 |
+ROW |47561 |1460 |33148 |2 |2 |F63100|0 |2 |0 |
+ROW |47562 |1460 |33153 |2 |3 |A54F10|0 |2 |0 |
+ROW |47563 |1460 |33149 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |47564 |1460 |33144 |2 |5 |6C59DC|0 |2 |0 |
+ROW |47565 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47566 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |47567 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47568 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |47569 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |47570 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47571 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47572 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |47573 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47574 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |47575 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |47576 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |47577 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47578 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47579 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47580 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |47581 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |47582 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |47583 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47584 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |47585 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47586 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |47587 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47588 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |47589 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47590 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |47591 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |47592 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |47593 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47594 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47595 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |47596 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |47597 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |47598 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47599 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47600 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |47601 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47602 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |47603 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47604 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |47605 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47606 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47607 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |47608 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |47609 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |47610 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47611 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47612 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47613 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47614 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47615 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |47616 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |47617 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |47618 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47619 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |47620 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47621 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |47622 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47623 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |47624 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |47625 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |47626 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47627 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |47628 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47629 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |47630 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |47631 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |47632 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47633 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |47634 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |47635 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |47636 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47637 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |47638 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |47639 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |47640 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47641 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |47642 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |47643 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47644 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |47645 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |47646 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |47647 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47648 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |47649 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47650 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |47651 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |47652 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |47653 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47654 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |47655 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |47656 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |47657 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47658 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |47659 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |47660 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |47661 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47662 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |47663 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |47664 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47665 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |47666 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |47667 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |47668 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47669 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |47670 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47671 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |47672 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |47673 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |47674 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47675 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |47676 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |47677 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |47678 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47679 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |47680 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |47681 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |47682 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47683 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |47684 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |47685 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47686 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |47687 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |47688 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |47689 |1262 |31718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47690 |1262 |31719 |0 |1 |2774A4|0 |2 |0 |
+ROW |47691 |1263 |31722 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47692 |1263 |31724 |0 |1 |2774A4|0 |2 |0 |
+ROW |47693 |1263 |32588 |0 |2 |F63100|0 |2 |0 |
+ROW |47694 |1264 |31630 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47695 |1264 |31683 |0 |1 |2774A4|0 |2 |0 |
+ROW |47696 |1265 |31668 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47697 |1265 |31702 |0 |1 |2774A4|0 |2 |0 |
+ROW |47698 |1265 |31666 |0 |2 |F63100|0 |2 |0 |
+ROW |47699 |1266 |31673 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47700 |1266 |31704 |0 |1 |2774A4|0 |2 |0 |
+ROW |47701 |1267 |31690 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47702 |1267 |31672 |0 |1 |2774A4|0 |2 |0 |
+ROW |47703 |1268 |31632 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47704 |1268 |31655 |0 |1 |2774A4|0 |2 |0 |
+ROW |47705 |1269 |31650 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47706 |1269 |31648 |0 |1 |2774A4|0 |2 |0 |
+ROW |47707 |1269 |31651 |0 |2 |F63100|0 |2 |0 |
+ROW |47708 |1269 |31646 |0 |3 |A54F10|0 |2 |0 |
+ROW |47709 |1269 |31653 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47710 |1270 |31660 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47711 |1270 |31671 |0 |1 |2774A4|0 |2 |0 |
+ROW |47712 |1270 |31662 |0 |2 |F63100|0 |2 |0 |
+ROW |47713 |1270 |31661 |0 |3 |A54F10|0 |2 |0 |
+ROW |47714 |1270 |31659 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47715 |1270 |31658 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47716 |1237 |31442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47717 |1237 |31443 |0 |1 |2774A4|0 |2 |0 |
+ROW |47718 |1238 |31786 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47719 |1238 |31451 |0 |1 |2774A4|0 |2 |0 |
+ROW |47720 |1238 |32590 |0 |2 |F63100|0 |2 |0 |
+ROW |47721 |1271 |31770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47722 |1271 |31771 |0 |1 |2774A4|0 |2 |0 |
+ROW |47723 |1272 |31755 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47724 |1272 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |47725 |1272 |31753 |0 |2 |F63100|0 |2 |0 |
+ROW |47726 |1273 |31730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47727 |1273 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |47728 |1274 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47729 |1274 |31758 |0 |1 |2774A4|0 |2 |0 |
+ROW |47730 |1275 |31731 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47731 |1275 |31732 |0 |1 |2774A4|0 |2 |0 |
+ROW |47732 |1276 |31739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47733 |1276 |31736 |0 |1 |2774A4|0 |2 |0 |
+ROW |47734 |1276 |31740 |0 |2 |F63100|0 |2 |0 |
+ROW |47735 |1276 |31737 |0 |3 |A54F10|0 |2 |0 |
+ROW |47736 |1276 |31741 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47737 |1277 |31746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47738 |1277 |31747 |0 |1 |2774A4|0 |2 |0 |
+ROW |47739 |1277 |31749 |0 |2 |F63100|0 |2 |0 |
+ROW |47740 |1277 |31748 |0 |3 |A54F10|0 |2 |0 |
+ROW |47741 |1277 |31757 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47742 |1277 |31744 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47743 |814 |28730 |0 |0 |66BB6A|0 |2 |0 |
+ROW |47744 |814 |28728 |0 |1 |42A5F5|0 |2 |0 |
+ROW |47745 |815 |28712 |0 |0 |66BB6A|0 |2 |0 |
+ROW |47746 |816 |28733 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47747 |816 |28715 |0 |1 |F63100|0 |2 |0 |
+ROW |47748 |816 |28729 |0 |2 |2774A4|0 |2 |0 |
+ROW |47749 |816 |28732 |0 |3 |A54F10|0 |2 |0 |
+ROW |47750 |817 |28716 |0 |0 |EC407A|0 |2 |0 |
+ROW |47751 |818 |28726 |0 |0 |4CAF50|1 |2 |0 |
+ROW |47752 |818 |28723 |0 |1 |03A9F4|1 |2 |0 |
+ROW |47753 |818 |28720 |0 |2 |9C27B0|1 |2 |0 |
+ROW |47754 |818 |28725 |5 |3 |81C784|0 |2 |0 |
+ROW |47755 |818 |28722 |5 |4 |90CAF9|0 |2 |0 |
+ROW |47756 |818 |28719 |5 |5 |CE93D8|0 |2 |0 |
+ROW |47757 |819 |28727 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47758 |819 |28724 |0 |1 |F63100|0 |2 |0 |
+ROW |47759 |819 |28721 |0 |2 |2774A4|0 |2 |0 |
+ROW |47760 |820 |28740 |5 |0 |66BB6A|0 |2 |0 |
+ROW |47761 |820 |28739 |0 |1 |42A5F5|1 |2 |0 |
+ROW |47762 |821 |28738 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47763 |821 |28737 |0 |1 |F63100|0 |2 |0 |
+ROW |47764 |821 |28736 |0 |2 |2774A4|0 |2 |0 |
+ROW |47765 |821 |28735 |0 |3 |A54F10|0 |2 |0 |
+ROW |47766 |821 |28734 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47767 |822 |28693 |0 |0 |1A7C11|1 |2 |0 |
+ROW |47768 |822 |28698 |0 |1 |F63100|1 |2 |0 |
+ROW |47769 |822 |28694 |0 |2 |2774A4|1 |2 |0 |
+ROW |47770 |822 |28697 |0 |3 |A54F10|1 |2 |0 |
+ROW |47771 |822 |28702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47772 |822 |28696 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47773 |823 |28700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47774 |823 |28699 |0 |1 |F63100|0 |2 |0 |
+ROW |47775 |823 |28701 |0 |2 |2774A4|1 |2 |0 |
+ROW |47776 |823 |28695 |0 |3 |A54F10|1 |2 |0 |
+ROW |47777 |824 |28708 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |47778 |824 |28709 |0 |1 |6C59DC|0 |2 |0 |
+ROW |47779 |824 |28704 |0 |2 |1A7C11|1 |2 |0 |
+ROW |47780 |824 |28705 |0 |3 |F63100|1 |2 |0 |
+ROW |47781 |824 |28706 |0 |4 |2774A4|1 |2 |0 |
+ROW |47782 |824 |28707 |0 |5 |A54F10|1 |2 |0 |
+ROW |47783 |824 |28703 |0 |6 |AC8C14|1 |2 |0 |
+ROW |47784 |825 |28674 |5 |0 |A5D6A7|0 |2 |0 |
+ROW |47785 |825 |28673 |0 |1 |039BE5|1 |2 |0 |
+ROW |47786 |826 |28677 |0 |0 |42A5F5|0 |2 |0 |
+ROW |47787 |827 |28689 |0 |0 |1A7C11|1 |2 |0 |
+ROW |47788 |827 |28688 |0 |1 |F63100|1 |2 |0 |
+ROW |47789 |827 |28690 |0 |2 |2774A4|1 |2 |0 |
+ROW |47790 |827 |28691 |0 |3 |A54F10|1 |2 |0 |
+ROW |47791 |828 |28684 |0 |0 |66BB6A|0 |2 |0 |
+ROW |47792 |828 |28681 |0 |1 |03A9F4|1 |2 |0 |
+ROW |47793 |829 |28710 |0 |0 |29B6F6|0 |2 |0 |
+ROW |47794 |829 |28692 |0 |1 |AB47BC|1 |2 |0 |
+ROW |47795 |1210 |31269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47796 |1210 |31252 |0 |1 |2774A4|0 |2 |0 |
+ROW |47797 |1210 |31251 |0 |2 |F63100|0 |2 |0 |
+ROW |47798 |1210 |31250 |0 |3 |A54F10|0 |2 |0 |
+ROW |47799 |1210 |31249 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47800 |1210 |31248 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47801 |1210 |31246 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47802 |1210 |31245 |0 |7 |611F27|0 |2 |0 |
+ROW |47803 |1210 |31247 |0 |8 |F230E0|0 |2 |0 |
+ROW |47804 |1210 |31247 |0 |9 |FFAD40|0 |2 |0 |
+ROW |47805 |1211 |31243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47806 |1212 |31266 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47807 |1212 |31265 |0 |1 |2774A4|0 |2 |0 |
+ROW |47808 |1212 |31263 |0 |2 |F63100|0 |2 |0 |
+ROW |47809 |1212 |31262 |0 |3 |A54F10|0 |2 |0 |
+ROW |47810 |1212 |31260 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |47811 |1212 |31259 |0 |5 |6C59DC|0 |2 |0 |
+ROW |47812 |1212 |31258 |0 |6 |AC8C14|0 |2 |0 |
+ROW |47813 |1212 |31256 |0 |7 |611F27|0 |2 |0 |
+ROW |47814 |1212 |31257 |0 |8 |F230E0|0 |2 |0 |
+ROW |47815 |1212 |31244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |47816 |1212 |31255 |0 |10 |40CDFF|0 |2 |0 |
+ROW |47817 |1212 |31254 |0 |11 |40FFA0|0 |2 |0 |
+ROW |47818 |1212 |31253 |0 |12 |AE4500|0 |2 |0 |
+ROW |47819 |1213 |31242 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47820 |1386 |32598 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47821 |1386 |32599 |0 |1 |2774A4|0 |2 |0 |
+ROW |47822 |1386 |32600 |0 |2 |F63100|0 |2 |0 |
+ROW |47823 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47824 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |47825 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47826 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |47827 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47828 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47829 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47830 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |47831 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47832 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47833 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |47834 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |47835 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |47836 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47837 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |47838 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47839 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |47840 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47841 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |47842 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |47843 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47844 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47845 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |47846 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |47847 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |47848 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47849 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47850 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |47851 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47852 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47854 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47855 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47856 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |47857 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |47858 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |47859 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |47862 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |47863 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |47864 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |47865 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |47866 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47867 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47869 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47870 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47871 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47872 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |47873 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |47874 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |47875 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47876 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47877 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47878 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |47879 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |47880 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |47881 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47882 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47883 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47884 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |47885 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |47886 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |47887 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47888 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47889 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47890 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |47891 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |47892 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |47893 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47894 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47895 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47896 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |47897 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |47898 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |47899 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47900 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47901 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47902 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |47903 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |47904 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |47905 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47906 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47907 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47908 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |47909 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |47910 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |47911 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47912 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47913 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47914 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |47915 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |47916 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |47917 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47918 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47919 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47920 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |47921 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |47922 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |47923 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47924 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47925 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47926 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |47927 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |47928 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |47929 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47930 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47931 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47932 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |47933 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |47934 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |47935 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47936 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47937 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47938 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |47939 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |47940 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |47941 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47942 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47943 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47944 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |47945 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |47946 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |47947 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47948 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47949 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47950 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |47951 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |47952 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |47953 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47954 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47955 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47956 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |47957 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |47958 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |47959 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47960 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47961 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47962 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |47963 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |47964 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |47965 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47966 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47967 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47968 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |47969 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |47970 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |47971 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47972 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47973 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47974 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |47975 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |47976 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |47977 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47978 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47979 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47980 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |47981 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |47982 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |47983 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47984 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47985 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47986 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |47987 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |47988 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |47989 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47990 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47991 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47992 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |47993 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |47994 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |47995 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |47996 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |47997 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |47998 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |47999 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |48000 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |48001 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48002 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48009 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48010 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |48011 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |48012 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |48013 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48014 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48015 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48016 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |48017 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |48018 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |48019 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48020 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48021 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48022 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |48023 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |48024 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |48025 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48026 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48027 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48028 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |48029 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |48030 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |48031 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48032 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48033 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48034 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |48035 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |48036 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |48037 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48038 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48039 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48040 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48041 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |48042 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48043 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48044 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48045 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48046 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48047 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48048 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48049 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48050 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48051 |1461 |33219 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48052 |1462 |33224 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48053 |1463 |33227 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48054 |1463 |33230 |2 |1 |2774A4|0 |2 |0 |
+ROW |48055 |1463 |33229 |0 |2 |F63100|1 |2 |0 |
+ROW |48056 |1463 |33226 |0 |3 |A54F10|1 |2 |0 |
+ROW |48057 |1463 |33228 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48058 |1463 |33225 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48059 |1464 |33260 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48060 |1465 |33265 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48061 |1466 |33268 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48062 |1466 |33271 |2 |1 |2774A4|0 |2 |0 |
+ROW |48063 |1466 |33270 |0 |2 |F63100|1 |2 |0 |
+ROW |48064 |1466 |33267 |0 |3 |A54F10|1 |2 |0 |
+ROW |48065 |1466 |33269 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48066 |1466 |33266 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48067 |1467 |33301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48068 |1468 |33306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48069 |1469 |33309 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48070 |1469 |33312 |2 |1 |2774A4|0 |2 |0 |
+ROW |48071 |1469 |33311 |0 |2 |F63100|1 |2 |0 |
+ROW |48072 |1469 |33308 |0 |3 |A54F10|1 |2 |0 |
+ROW |48073 |1469 |33310 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48074 |1469 |33307 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48075 |1470 |33342 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48076 |1471 |33347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48077 |1472 |33350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48078 |1472 |33353 |2 |1 |2774A4|0 |2 |0 |
+ROW |48079 |1472 |33352 |0 |2 |F63100|1 |2 |0 |
+ROW |48080 |1472 |33349 |0 |3 |A54F10|1 |2 |0 |
+ROW |48081 |1472 |33351 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48082 |1472 |33348 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48083 |1473 |33383 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48084 |1474 |33388 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48085 |1475 |33391 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48086 |1475 |33394 |2 |1 |2774A4|0 |2 |0 |
+ROW |48087 |1475 |33393 |0 |2 |F63100|1 |2 |0 |
+ROW |48088 |1475 |33390 |0 |3 |A54F10|1 |2 |0 |
+ROW |48089 |1475 |33392 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48090 |1475 |33389 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48091 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48092 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48093 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48094 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48095 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48096 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48097 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48098 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48099 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48100 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48101 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48102 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48103 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48104 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48105 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48106 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48107 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48108 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |48109 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48110 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48111 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48112 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48113 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48114 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |48115 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48116 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48117 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48118 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48119 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48120 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48121 |1476 |33419 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48122 |1476 |33422 |2 |1 |2774A4|0 |2 |0 |
+ROW |48123 |1476 |33421 |0 |2 |F63100|1 |2 |0 |
+ROW |48124 |1476 |33418 |0 |3 |A54F10|1 |2 |0 |
+ROW |48125 |1476 |33420 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48126 |1476 |33417 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48127 |1477 |33427 |0 |0 |969696|0 |9 |2 |
+ROW |48128 |1477 |33428 |0 |1 |C80000|0 |9 |0 |
+ROW |48129 |1478 |33431 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48130 |1479 |33407 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48131 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48132 |1299 |31968 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48133 |1299 |31966 |0 |1 |2774A4|0 |2 |0 |
+ROW |48134 |1299 |31965 |0 |2 |F63100|0 |2 |0 |
+ROW |48135 |1299 |31967 |0 |3 |A54F10|0 |2 |0 |
+ROW |48136 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |48137 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |48138 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48139 |1335 |32330 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48140 |1335 |32317 |5 |1 |2774A4|0 |2 |0 |
+ROW |48141 |1336 |32319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48142 |1336 |32327 |5 |1 |2774A4|0 |2 |0 |
+ROW |48143 |1336 |32326 |5 |2 |F63100|0 |2 |0 |
+ROW |48144 |1337 |32324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48145 |1337 |32318 |5 |1 |2774A4|0 |2 |0 |
+ROW |48146 |1338 |32311 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48147 |1338 |32310 |5 |1 |2774A4|0 |2 |0 |
+ROW |48148 |1338 |32328 |5 |2 |F63100|0 |2 |0 |
+ROW |48149 |1339 |32350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48150 |1339 |32339 |5 |1 |2774A4|0 |2 |0 |
+ROW |48151 |1340 |32331 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48152 |1341 |32347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48153 |1341 |32342 |5 |1 |2774A4|0 |2 |0 |
+ROW |48154 |1342 |32334 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48155 |1342 |32333 |5 |1 |2774A4|0 |2 |0 |
+ROW |48156 |1342 |32348 |5 |2 |F63100|0 |2 |0 |
+ROW |48157 |1343 |32373 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48158 |1343 |32360 |5 |1 |2774A4|0 |2 |0 |
+ROW |48159 |1344 |32362 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48160 |1344 |32370 |5 |1 |2774A4|0 |2 |0 |
+ROW |48161 |1344 |32369 |5 |2 |F63100|0 |2 |0 |
+ROW |48162 |1345 |32367 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48163 |1345 |32361 |5 |1 |2774A4|0 |2 |0 |
+ROW |48164 |1346 |32354 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48165 |1346 |32353 |5 |1 |2774A4|0 |2 |0 |
+ROW |48166 |1346 |32371 |5 |2 |F63100|0 |2 |0 |
+ROW |48167 |1347 |32382 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48168 |1348 |32375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48169 |1349 |32380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48170 |1350 |32401 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48171 |1351 |32398 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48172 |1351 |32397 |5 |1 |2774A4|0 |2 |0 |
+ROW |48173 |1351 |32396 |5 |2 |F63100|0 |2 |0 |
+ROW |48174 |1352 |32394 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48175 |1353 |32393 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48176 |1354 |32385 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48177 |1354 |32399 |5 |1 |2774A4|0 |2 |0 |
+ROW |48178 |1355 |32420 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48179 |1356 |32417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48180 |1356 |32416 |5 |1 |2774A4|0 |2 |0 |
+ROW |48181 |1356 |32415 |5 |2 |F63100|0 |2 |0 |
+ROW |48182 |1357 |32413 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48183 |1358 |32412 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48184 |1359 |32404 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48185 |1359 |32418 |5 |1 |2774A4|0 |2 |0 |
+ROW |48186 |1360 |32436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48187 |1361 |32439 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48188 |1362 |32440 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48189 |1363 |32442 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48190 |1364 |32443 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48191 |1365 |32428 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48192 |1365 |32429 |5 |1 |2774A4|0 |2 |0 |
+ROW |48193 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48194 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48195 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |48196 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48197 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48198 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48199 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48200 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48201 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48202 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48203 |1214 |31276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48204 |1214 |31277 |5 |1 |2774A4|0 |2 |0 |
+ROW |48205 |1215 |31279 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48206 |1215 |31280 |5 |1 |2774A4|0 |2 |0 |
+ROW |48207 |1216 |31282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48208 |1216 |31283 |5 |1 |2774A4|0 |2 |0 |
+ROW |48209 |1217 |31286 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48210 |1217 |31289 |5 |1 |2774A4|0 |2 |0 |
+ROW |48211 |1218 |31292 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48212 |1218 |31295 |5 |1 |2774A4|0 |2 |0 |
+ROW |48213 |1219 |31298 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48214 |1219 |31301 |5 |1 |2774A4|0 |2 |0 |
+ROW |48215 |1220 |31285 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48216 |1220 |31288 |5 |1 |2774A4|0 |2 |0 |
+ROW |48217 |1221 |31291 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48218 |1221 |31294 |5 |1 |2774A4|0 |2 |0 |
+ROW |48219 |1222 |31297 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48220 |1222 |31300 |5 |1 |2774A4|0 |2 |0 |
+ROW |48221 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |48222 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |48223 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |48224 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |48225 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |48226 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |48227 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48228 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |48229 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |48230 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |48231 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48232 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48233 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48234 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |48235 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |48236 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |48237 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48238 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48239 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48240 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |48241 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |48242 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |48243 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48244 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48245 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48246 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |48247 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48248 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |48249 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48250 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |48251 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48252 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |48253 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |48254 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |48255 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48256 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48257 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48258 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |48259 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |48260 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48261 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |48262 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |48263 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |48264 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48265 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48266 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48267 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |48268 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |48269 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48270 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |48271 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |48272 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |48273 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48274 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48275 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48276 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |48277 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |48278 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48279 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48280 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48281 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48282 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |48283 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48284 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |48285 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48286 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |48287 |914 |31270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48288 |915 |31271 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48289 |916 |31272 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48290 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48291 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |48292 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |48293 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48294 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |48295 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |48296 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48297 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |48298 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |48299 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48300 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |48301 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48302 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |48303 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48304 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |48305 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48306 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |48307 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |48308 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |48309 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48310 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |48311 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |48312 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |48313 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48314 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |48315 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |48316 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |48317 |1223 |31307 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48318 |1223 |31308 |5 |1 |2774A4|0 |2 |0 |
+ROW |48319 |1224 |31310 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48320 |1224 |31311 |5 |1 |2774A4|0 |2 |0 |
+ROW |48321 |1225 |31314 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48322 |1225 |31317 |5 |1 |2774A4|0 |2 |0 |
+ROW |48323 |1226 |31320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48324 |1226 |31323 |5 |1 |2774A4|0 |2 |0 |
+ROW |48325 |1227 |31313 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48326 |1227 |31316 |5 |1 |2774A4|0 |2 |0 |
+ROW |48327 |1228 |31319 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48328 |1228 |31322 |5 |1 |2774A4|0 |2 |0 |
+ROW |48329 |926 |29356 |0 |0 |969696|0 |9 |2 |
+ROW |48330 |926 |29355 |0 |1 |C80000|0 |9 |0 |
+ROW |48331 |927 |29370 |0 |0 |969696|0 |9 |2 |
+ROW |48332 |927 |29369 |0 |1 |C80000|0 |9 |0 |
+ROW |48333 |934 |29361 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48334 |934 |29362 |2 |1 |2774A4|0 |2 |0 |
+ROW |48335 |934 |29363 |0 |2 |F63100|1 |2 |0 |
+ROW |48336 |934 |29364 |0 |3 |A54F10|1 |2 |0 |
+ROW |48337 |934 |29365 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48338 |934 |29366 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48339 |935 |29375 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48340 |935 |29376 |2 |1 |2774A4|0 |2 |0 |
+ROW |48341 |935 |29377 |0 |2 |F63100|1 |2 |0 |
+ROW |48342 |935 |29378 |0 |3 |A54F10|1 |2 |0 |
+ROW |48343 |935 |29379 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48344 |935 |29380 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48345 |942 |29275 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48346 |942 |29288 |0 |1 |2774A4|0 |2 |0 |
+ROW |48347 |943 |29312 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48348 |943 |29325 |0 |1 |2774A4|0 |2 |0 |
+ROW |48349 |940 |29284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48350 |940 |29283 |0 |1 |2774A4|0 |2 |0 |
+ROW |48351 |940 |29281 |0 |2 |F63100|0 |2 |0 |
+ROW |48352 |940 |29274 |0 |3 |A54F10|0 |2 |0 |
+ROW |48353 |940 |29280 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48354 |940 |29279 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48355 |940 |29278 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48356 |940 |29277 |0 |7 |611F27|0 |2 |0 |
+ROW |48357 |940 |29276 |0 |8 |F230E0|0 |2 |0 |
+ROW |48358 |941 |29321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48359 |941 |29320 |0 |1 |2774A4|0 |2 |0 |
+ROW |48360 |941 |29318 |0 |2 |F63100|0 |2 |0 |
+ROW |48361 |941 |29311 |0 |3 |A54F10|0 |2 |0 |
+ROW |48362 |941 |29317 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48363 |941 |29316 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48364 |941 |29315 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48365 |941 |29314 |0 |7 |611F27|0 |2 |0 |
+ROW |48366 |941 |29313 |0 |8 |F230E0|0 |2 |0 |
+ROW |48367 |938 |29347 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48368 |939 |29348 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48369 |946 |29290 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48370 |946 |29291 |5 |1 |2774A4|0 |2 |0 |
+ROW |48371 |947 |29327 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48372 |947 |29328 |5 |1 |2774A4|0 |2 |0 |
+ROW |48373 |944 |31303 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48374 |945 |31304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48375 |950 |29304 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48376 |950 |29305 |0 |1 |2774A4|0 |2 |0 |
+ROW |48377 |950 |29303 |0 |2 |F63100|0 |2 |0 |
+ROW |48378 |951 |29341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48379 |951 |29342 |0 |1 |2774A4|0 |2 |0 |
+ROW |48380 |951 |29340 |0 |2 |F63100|0 |2 |0 |
+ROW |48381 |948 |29293 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48382 |948 |29292 |0 |1 |2774A4|0 |2 |0 |
+ROW |48383 |949 |29330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48384 |949 |29329 |0 |1 |2774A4|0 |2 |0 |
+ROW |48385 |936 |29282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48386 |936 |29287 |0 |1 |2774A4|0 |2 |0 |
+ROW |48387 |936 |29286 |0 |2 |F63100|0 |2 |0 |
+ROW |48388 |936 |29273 |0 |3 |A54F10|1 |2 |0 |
+ROW |48389 |937 |29319 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48390 |937 |29324 |0 |1 |2774A4|0 |2 |0 |
+ROW |48391 |937 |29323 |0 |2 |F63100|0 |2 |0 |
+ROW |48392 |937 |29310 |0 |3 |A54F10|1 |2 |0 |
+ROW |48393 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48394 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |48395 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |48396 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |48397 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48398 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48399 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48400 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |48401 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48402 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |48403 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48404 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |48405 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |48406 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |48407 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48408 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |48409 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48410 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |48411 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |48412 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |48413 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48414 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48415 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48416 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |48417 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |48418 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48419 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48420 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |48421 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48422 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48423 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |48424 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48425 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |48426 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |48427 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |48428 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48429 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |48430 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48431 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |48432 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48433 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |48434 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |48435 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |48436 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48437 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48438 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48439 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |48440 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |48441 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48442 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |48443 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |48444 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |48445 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |48446 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |48447 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |48448 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |48449 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |48450 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48451 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48452 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |48453 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |48454 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |48455 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |48456 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48457 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |48458 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48459 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |48460 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48461 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |48462 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |48463 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |48464 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48465 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48466 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48467 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |48468 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48469 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |48470 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48471 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |48472 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |48473 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |48474 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48475 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |48476 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |48477 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |48478 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |48479 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |48480 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |48481 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |48482 |1246 |31461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48483 |1246 |31464 |2 |1 |2774A4|0 |2 |0 |
+ROW |48484 |1246 |31463 |0 |2 |F63100|1 |2 |0 |
+ROW |48485 |1246 |31460 |0 |3 |A54F10|1 |2 |0 |
+ROW |48486 |1246 |31462 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48487 |1246 |31459 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48488 |1247 |31467 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48489 |1247 |31470 |2 |1 |2774A4|0 |2 |0 |
+ROW |48490 |1247 |31469 |0 |2 |F63100|1 |2 |0 |
+ROW |48491 |1247 |31466 |0 |3 |A54F10|1 |2 |0 |
+ROW |48492 |1247 |31468 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48493 |1247 |31465 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48494 |1366 |32445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48495 |1366 |32448 |0 |1 |2774A4|0 |2 |0 |
+ROW |48496 |1367 |32449 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48497 |1367 |32452 |0 |1 |2774A4|0 |2 |0 |
+ROW |48498 |1368 |32446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48499 |1368 |32447 |5 |1 |2774A4|0 |2 |0 |
+ROW |48500 |1369 |32450 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48501 |1369 |32451 |5 |1 |2774A4|0 |2 |0 |
+ROW |48502 |1229 |31337 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48503 |1229 |31338 |5 |1 |2774A4|0 |2 |0 |
+ROW |48504 |1230 |31341 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48505 |1230 |31342 |5 |1 |2774A4|0 |2 |0 |
+ROW |48506 |1231 |31336 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48507 |1231 |31335 |5 |1 |2774A4|0 |2 |0 |
+ROW |48508 |1232 |31340 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48509 |1232 |31339 |5 |1 |2774A4|0 |2 |0 |
+ROW |48510 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48511 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |48512 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48513 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |48514 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48515 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |48516 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48517 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |48518 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48519 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48520 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48521 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48522 |980 |31327 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48523 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |48524 |981 |31330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48525 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |48526 |982 |29620 |0 |0 |969696|0 |9 |2 |
+ROW |48527 |982 |29619 |0 |1 |C80000|0 |9 |0 |
+ROW |48528 |983 |29629 |0 |0 |969696|0 |9 |2 |
+ROW |48529 |983 |29628 |0 |1 |C80000|0 |9 |0 |
+ROW |48530 |1248 |31483 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48531 |1248 |31486 |2 |1 |2774A4|0 |2 |0 |
+ROW |48532 |1248 |31485 |0 |2 |F63100|1 |2 |0 |
+ROW |48533 |1248 |31482 |0 |3 |A54F10|1 |2 |0 |
+ROW |48534 |1248 |31484 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48535 |1248 |31481 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48536 |1249 |31489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48537 |1249 |31492 |2 |1 |2774A4|0 |2 |0 |
+ROW |48538 |1249 |31491 |0 |2 |F63100|1 |2 |0 |
+ROW |48539 |1249 |31488 |0 |3 |A54F10|1 |2 |0 |
+ROW |48540 |1249 |31490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48541 |1249 |31487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48542 |1370 |32453 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48543 |1370 |32456 |0 |1 |2774A4|0 |2 |0 |
+ROW |48544 |1371 |32457 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48545 |1371 |32460 |0 |1 |2774A4|0 |2 |0 |
+ROW |48546 |1372 |32454 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48547 |1372 |32455 |5 |1 |2774A4|0 |2 |0 |
+ROW |48548 |1373 |32458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48549 |1373 |32459 |5 |1 |2774A4|0 |2 |0 |
+ROW |48550 |1233 |31355 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48551 |1233 |31356 |5 |1 |2774A4|0 |2 |0 |
+ROW |48552 |1234 |31359 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48553 |1234 |31360 |5 |1 |2774A4|0 |2 |0 |
+ROW |48554 |1235 |31354 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48555 |1235 |31353 |5 |1 |2774A4|0 |2 |0 |
+ROW |48556 |1236 |31358 |0 |0 |1A7C11|1 |2 |0 |
+ROW |48557 |1236 |31357 |5 |1 |2774A4|0 |2 |0 |
+ROW |48558 |992 |29563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48559 |992 |29562 |0 |1 |2774A4|0 |2 |0 |
+ROW |48560 |993 |29589 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48561 |993 |29588 |0 |1 |2774A4|0 |2 |0 |
+ROW |48562 |994 |29565 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48563 |994 |29564 |0 |1 |2774A4|0 |2 |0 |
+ROW |48564 |995 |29591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48565 |995 |29590 |0 |1 |2774A4|0 |2 |0 |
+ROW |48566 |990 |29561 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48567 |991 |29587 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48568 |996 |29569 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48569 |997 |29595 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48570 |998 |31345 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48571 |998 |29573 |0 |1 |2774A4|0 |2 |0 |
+ROW |48572 |999 |31348 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48573 |999 |29599 |0 |1 |2774A4|0 |2 |0 |
+ROW |48574 |1480 |33432 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48575 |1481 |33445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48576 |1481 |33433 |0 |1 |2774A4|0 |2 |0 |
+ROW |48577 |1482 |33447 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48578 |1482 |33443 |0 |1 |2774A4|0 |2 |0 |
+ROW |48579 |1403 |32790 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48580 |1404 |32809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48581 |1404 |32807 |0 |1 |2774A4|0 |2 |0 |
+ROW |48582 |1404 |32811 |0 |2 |F63100|0 |2 |0 |
+ROW |48583 |1405 |32804 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48584 |1405 |32805 |0 |1 |2774A4|0 |2 |0 |
+ROW |48585 |1405 |32806 |0 |2 |F63100|0 |2 |0 |
+ROW |48586 |1406 |32810 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48587 |1406 |32808 |0 |1 |2774A4|0 |2 |0 |
+ROW |48588 |1406 |32812 |0 |2 |F63100|0 |2 |0 |
+ROW |48589 |1407 |32815 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48590 |1408 |32819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48591 |1408 |32817 |0 |1 |2774A4|0 |2 |0 |
+ROW |48592 |1408 |32821 |0 |2 |F63100|0 |2 |0 |
+ROW |48593 |1409 |32820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48594 |1409 |32818 |0 |1 |2774A4|0 |2 |0 |
+ROW |48595 |1409 |32822 |0 |2 |F63100|0 |2 |0 |
+ROW |48596 |1410 |32828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48597 |1410 |32827 |0 |1 |2774A4|0 |2 |0 |
+ROW |48598 |1410 |32823 |0 |2 |F63100|0 |2 |0 |
+ROW |48599 |1411 |32777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48600 |1411 |32778 |0 |1 |2774A4|0 |2 |0 |
+ROW |48601 |1483 |33525 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48602 |1483 |33524 |0 |1 |2774A4|0 |2 |0 |
+ROW |48603 |1483 |33523 |0 |2 |F63100|0 |2 |0 |
+ROW |48604 |1483 |33522 |0 |3 |A54F10|0 |2 |0 |
+ROW |48605 |1484 |33564 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48606 |1484 |33554 |0 |1 |2774A4|0 |2 |0 |
+ROW |48607 |1485 |33500 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48608 |1485 |33507 |0 |1 |2774A4|0 |2 |0 |
+ROW |48609 |1485 |33509 |0 |2 |F63100|0 |2 |0 |
+ROW |48610 |1485 |33508 |0 |3 |A54F10|0 |2 |0 |
+ROW |48611 |1486 |33480 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48612 |1486 |33491 |0 |1 |2774A4|0 |2 |0 |
+ROW |48613 |1486 |33488 |0 |2 |F63100|0 |2 |0 |
+ROW |48614 |1486 |33489 |0 |3 |A54F10|0 |2 |0 |
+ROW |48615 |1487 |33506 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48616 |1487 |33505 |0 |1 |2774A4|0 |2 |0 |
+ROW |48617 |1487 |33512 |0 |2 |F63100|0 |2 |0 |
+ROW |48618 |1487 |33504 |0 |3 |A54F10|0 |2 |0 |
+ROW |48619 |1387 |32632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48620 |1388 |32635 |1 |0 |1A7C11|0 |2 |0 |
+ROW |48621 |1388 |32635 |1 |1 |2774A4|0 |2 |0 |
+ROW |48622 |1389 |32643 |5 |0 |1A7C11|0 |2 |0 |
+ROW |48623 |1389 |32646 |2 |1 |2774A4|0 |2 |0 |
+ROW |48624 |1389 |32645 |0 |2 |F63100|1 |2 |0 |
+ROW |48625 |1389 |32642 |0 |3 |A54F10|1 |2 |0 |
+ROW |48626 |1389 |32644 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |48627 |1389 |32641 |0 |5 |6C59DC|1 |2 |0 |
+ROW |48628 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48629 |1300 |31981 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48630 |1300 |31979 |0 |1 |2774A4|0 |2 |0 |
+ROW |48631 |1300 |31987 |0 |2 |F63100|1 |2 |0 |
+ROW |48632 |1301 |32462 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48633 |1301 |31986 |0 |1 |2774A4|0 |2 |0 |
+ROW |48634 |1301 |31984 |0 |2 |F63100|0 |2 |0 |
+ROW |48635 |1302 |32461 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48636 |1302 |31982 |0 |1 |2774A4|0 |2 |0 |
+ROW |48637 |1303 |31980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |48638 |1303 |31989 |0 |1 |2774A4|0 |2 |0 |
+ROW |48639 |1303 |31977 |0 |2 |F63100|0 |2 |0 |
+ROW |48640 |1303 |31978 |0 |3 |A54F10|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -14992,12 +16802,6 @@ ROW |620 |10250 |{$PSU_CRIT_STATUS:"bad"}
ROW |625 |10250 |{$TEMP_CRIT} |60 | |0 |
ROW |626 |10250 |{$TEMP_WARN} |50 | |0 |
ROW |627 |10250 |{$TEMP_CRIT_LOW} |5 | |0 |
-ROW |630 |10251 |{$PSU_CRIT_STATUS} |2 | |0 |
-ROW |631 |10251 |{$FAN_CRIT_STATUS} |3 | |0 |
-ROW |632 |10251 |{$TEMP_WARN_STATUS} |3 | |0 |
-ROW |635 |10251 |{$TEMP_CRIT} |60 | |0 |
-ROW |636 |10251 |{$TEMP_WARN} |50 | |0 |
-ROW |637 |10251 |{$TEMP_CRIT_LOW} |5 | |0 |
ROW |647 |10230 |{$PSU_WARN_STATUS} |4 | |0 |
ROW |648 |10217 |{$PSU_CRIT_STATUS:"critical"} |3 | |0 |
ROW |649 |10217 |{$PSU_CRIT_STATUS:"shutdown"} |4 | |0 |
@@ -15989,6 +17793,226 @@ ROW |1736 |10357 |{$HUAWEI.5300.NODE.IO.DELAY.MAX.WARN}
ROW |1737 |10357 |{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME} |5m |The time during which free capacity may exceed the {#THRESHOLD} from hwInfoStoragePoolFullThreshold. |0 |
ROW |1738 |10357 |{$HUAWEI.5300.TEMP.MAX.TIME} |3m |The time during which temperature of enclosure may exceed the threshold. |0 |
ROW |1739 |10357 |{$HUAWEI.5300.TEMP.MAX.WARN} |35 |Maximum temperature of enclosure |0 |
+ROW |1740 |10358 |{$RABBITMQ.API.CLUSTER_HOST} |127.0.0.1 |The hostname or IP of RabbitMQ cluster API endpoint |0 |
+ROW |1741 |10358 |{$RABBITMQ.API.PASSWORD} |zabbix | |0 |
+ROW |1742 |10358 |{$RABBITMQ.API.PORT} |15672 |The port of RabbitMQ API endpoint |0 |
+ROW |1743 |10358 |{$RABBITMQ.API.USER} |zbx_monitor | |0 |
+ROW |1744 |10358 |{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES} |.* |Filter of discoverable exchanges |0 |
+ROW |1745 |10358 |{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered exchanges |0 |
+ROW |1746 |10359 |{$RABBITMQ.API.HOST} |127.0.0.1 |The hostname or IP of RabbitMQ API endpoint |0 |
+ROW |1747 |10359 |{$RABBITMQ.API.PASSWORD} |zabbix | |0 |
+ROW |1748 |10359 |{$RABBITMQ.API.PORT} |15672 |The port of RabbitMQ API endpoint |0 |
+ROW |1749 |10359 |{$RABBITMQ.API.USER} |zbx_monitor | |0 |
+ROW |1750 |10359 |{$RABBITMQ.CLUSTER.NAME} |rabbit |The name of RabbitMQ cluster |0 |
+ROW |1751 |10359 |{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES} |.* |Filter of discoverable queues |0 |
+ROW |1752 |10359 |{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered queues |0 |
+ROW |1753 |10359 |{$RABBITMQ.MESSAGES.MAX.WARN} |1000 |Maximum number of messages in the queue for trigger expression |0 |
+ROW |1754 |10359 |{$RABBITMQ.PROCESS_NAME} |beam.smp |RabbitMQ server process name |0 |
+ROW |1755 |10359 |{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |10 |Maximum RabbitMQ response time in seconds for trigger expression |0 |
+ROW |1756 |10360 |{$RABBITMQ.API.PASSWORD} |zabbix | |0 |
+ROW |1757 |10360 |{$RABBITMQ.API.PORT} |15672 |The port of RabbitMQ API endpoint |0 |
+ROW |1758 |10360 |{$RABBITMQ.API.SCHEME} |http |Request scheme which may be http or https |0 |
+ROW |1759 |10360 |{$RABBITMQ.API.USER} |zbx_monitor | |0 |
+ROW |1760 |10360 |{$RABBITMQ.LLD.FILTER.EXCHANGE.MATCHES} |.* |Filter of discoverable exchanges |0 |
+ROW |1761 |10360 |{$RABBITMQ.LLD.FILTER.EXCHANGE.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered exchanges |0 |
+ROW |1762 |10361 |{$RABBITMQ.API.PASSWORD} |zabbix | |0 |
+ROW |1763 |10361 |{$RABBITMQ.API.PORT} |15672 |The port of RabbitMQ API endpoint |0 |
+ROW |1764 |10361 |{$RABBITMQ.API.SCHEME} |http |Request scheme which may be http or https |0 |
+ROW |1765 |10361 |{$RABBITMQ.API.USER} |zbx_monitor | |0 |
+ROW |1766 |10361 |{$RABBITMQ.CLUSTER.NAME} |rabbit |The name of RabbitMQ cluster |0 |
+ROW |1767 |10361 |{$RABBITMQ.LLD.FILTER.QUEUE.MATCHES} |.* |Filter of discoverable queues |0 |
+ROW |1768 |10361 |{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered queues |0 |
+ROW |1769 |10361 |{$RABBITMQ.MESSAGES.MAX.WARN} |1000 |Maximum number of messages in the queue for trigger expression |0 |
+ROW |1770 |10361 |{$RABBITMQ.RESPONSE_TIME.MAX.WARN} |10 |Maximum RabbitMQ response time in seconds for trigger expression |0 |
+ROW |1771 |10362 |{$MONGODB.CONNS.PCT.USED.MAX.WARN} |80 |Maximum percentage of used connections |0 |
+ROW |1772 |10362 |{$MONGODB.CONNSTRING} |tcp://localhost:27017 |Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it's set), otherwise, the plugin's default value is used: "tcp://localhost:27017" |0 |
+ROW |1773 |10362 |{$MONGODB.CURSOR.OPEN.MAX.WARN} |10000 |Maximum number of open cursors |0 |
+ROW |1774 |10362 |{$MONGODB.CURSOR.TIMEOUT.MAX.WARN} |1 |Maximum number of cursors timing out per second |0 |
+ROW |1775 |10362 |{$MONGODB.LLD.FILTER.COLLECTION.MATCHES} |.* |Filter of discoverable collections |0 |
+ROW |1776 |10362 |{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered collections |0 |
+ROW |1777 |10362 |{$MONGODB.LLD.FILTER.DB.MATCHES} |.* |Filter of discoverable databases |0 |
+ROW |1778 |10362 |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |(admin&pipe;config&pipe;local) |Filter to exclude discovered databases |0 |
+ROW |1779 |10362 |{$MONGODB.PASSWORD} | |MongoDB user password |0 |
+ROW |1780 |10362 |{$MONGODB.REPL.LAG.MAX.WARN} |10s |Maximum replication lag in seconds |0 |
+ROW |1781 |10362 |{$MONGODB.USER} | |MongoDB username |0 |
+ROW |1782 |10362 |{$MONGODB.WIRED_TIGER.TICKETS.AVAILABLE.MIN.WARN} |5 |Minimum number of available WiredTiger read or write tickets remaining |0 |
+ROW |1783 |10363 |{$MONGODB.CONNS.AVAILABLE.MIN.WARN} |1000 |Minimum number of available connections |0 |
+ROW |1784 |10363 |{$MONGODB.CONNSTRING} |tcp://localhost:27017 |Connection string in the URI format (password is not used). This param overwrites a value configured in the "Server" option of the configuration file (if it's set), otherwise, the plugin's default value is used: "tcp://localhost:27017" |0 |
+ROW |1785 |10363 |{$MONGODB.CURSOR.OPEN.MAX.WARN} |10000 |Maximum number of open cursors |0 |
+ROW |1786 |10363 |{$MONGODB.CURSOR.TIMEOUT.MAX.WARN} |1 |Maximum number of cursors timing out per second |0 |
+ROW |1787 |10363 |{$MONGODB.LLD.FILTER.COLLECTION.MATCHES} |.* |Filter of discoverable collections |0 |
+ROW |1788 |10363 |{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered collections |0 |
+ROW |1789 |10363 |{$MONGODB.LLD.FILTER.DB.MATCHES} |.* |Filter of discoverable databases |0 |
+ROW |1790 |10363 |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |(admin&pipe;config&pipe;local) |Filter to exclude discovered databases |0 |
+ROW |1791 |10363 |{$MONGODB.PASSWORD} | |MongoDB user password |0 |
+ROW |1792 |10363 |{$MONGODB.USER} | |MongoDB username |0 |
+ROW |1793 |10364 |{$MONGODB.CONNSTRING} |{#MONGOD_URI} |Connection string in the URI format (password is not used). |0 |
+ROW |1794 |10365 |{$MONGODB.CONNSTRING} |{#MONGOD_URI} |Connection string in the URI format (password is not used). |0 |
+ROW |1795 |10366 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1796 |10366 |{$ICMP_LOSS_WARN} |20 | |0 |
+ROW |1797 |10366 |{$ICMP_RESPONSE_TIME_WARN} |0.15 | |0 |
+ROW |1798 |10366 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1799 |10366 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1800 |10366 |{$IFCONTROL} |1 | |0 |
+ROW |1801 |10366 |{$MEMORY.UTIL.MAX} |90 | |0 |
+ROW |1802 |10366 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* | |0 |
+ROW |1803 |10366 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status |0 |
+ROW |1804 |10366 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1805 |10366 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1806 |10366 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1807 |10366 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1808 |10366 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1809 |10366 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1810 |10366 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1811 |10366 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6) |0 |
+ROW |1812 |10366 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1813 |10366 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1814 |10366 |{$SNMP.TIMEOUT} |5m | |0 |
+ROW |1815 |10366 |{$TEMP_CRIT} |60 | |0 |
+ROW |1816 |10366 |{$TEMP_CRIT_LOW} |5 | |0 |
+ROW |1817 |10366 |{$TEMP_WARN} |50 | |0 |
+ROW |1818 |10367 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1819 |10367 |{$ICMP_LOSS_WARN} |20 | |0 |
+ROW |1820 |10367 |{$ICMP_RESPONSE_TIME_WARN} |0.15 | |0 |
+ROW |1821 |10367 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1822 |10367 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1823 |10367 |{$IFCONTROL} |1 | |0 |
+ROW |1824 |10367 |{$MEMORY.UTIL.MAX} |90 | |0 |
+ROW |1825 |10367 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* | |0 |
+ROW |1826 |10367 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status |0 |
+ROW |1827 |10367 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1828 |10367 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1829 |10367 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1830 |10367 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1831 |10367 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1832 |10367 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1833 |10367 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1834 |10367 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6) |0 |
+ROW |1835 |10367 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1836 |10367 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1837 |10367 |{$SNMP.TIMEOUT} |5m | |0 |
+ROW |1838 |10367 |{$TEMP_CRIT} |60 | |0 |
+ROW |1839 |10367 |{$TEMP_CRIT_LOW} |5 | |0 |
+ROW |1840 |10367 |{$TEMP_WARN} |50 | |0 |
+ROW |1841 |10368 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1842 |10368 |{$ICMP_LOSS_WARN} |20 | |0 |
+ROW |1843 |10368 |{$ICMP_RESPONSE_TIME_WARN} |0.15 | |0 |
+ROW |1844 |10368 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1845 |10368 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1846 |10368 |{$IFCONTROL} |1 | |0 |
+ROW |1847 |10368 |{$MEMORY.UTIL.MAX} |90 | |0 |
+ROW |1848 |10368 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* | |0 |
+ROW |1849 |10368 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status |0 |
+ROW |1850 |10368 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1851 |10368 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1852 |10368 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1853 |10368 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1854 |10368 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1855 |10368 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1856 |10368 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1857 |10368 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6) |0 |
+ROW |1858 |10368 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1859 |10368 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1860 |10368 |{$SNMP.TIMEOUT} |5m | |0 |
+ROW |1861 |10368 |{$TEMP_CRIT} |60 | |0 |
+ROW |1862 |10368 |{$TEMP_CRIT_LOW} |5 | |0 |
+ROW |1863 |10368 |{$TEMP_WARN} |50 | |0 |
+ROW |1864 |10369 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1865 |10369 |{$ICMP_LOSS_WARN} |20 | |0 |
+ROW |1866 |10369 |{$ICMP_RESPONSE_TIME_WARN} |0.15 | |0 |
+ROW |1867 |10369 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1868 |10369 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1869 |10369 |{$IFCONTROL} |1 | |0 |
+ROW |1870 |10369 |{$MEMORY.UTIL.MAX} |90 | |0 |
+ROW |1871 |10369 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* | |0 |
+ROW |1872 |10369 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status |0 |
+ROW |1873 |10369 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1874 |10369 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1875 |10369 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1876 |10369 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1877 |10369 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1878 |10369 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1879 |10369 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1880 |10369 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6) |0 |
+ROW |1881 |10369 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1882 |10369 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1883 |10369 |{$SNMP.TIMEOUT} |5m | |0 |
+ROW |1884 |10369 |{$TEMP_CRIT} |60 | |0 |
+ROW |1885 |10369 |{$TEMP_CRIT_LOW} |5 | |0 |
+ROW |1886 |10369 |{$TEMP_WARN} |50 | |0 |
+ROW |1887 |10370 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1888 |10370 |{$ICMP_LOSS_WARN} |20 | |0 |
+ROW |1889 |10370 |{$ICMP_RESPONSE_TIME_WARN} |0.15 | |0 |
+ROW |1890 |10370 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1891 |10370 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1892 |10370 |{$IFCONTROL} |1 | |0 |
+ROW |1893 |10370 |{$MEMORY.UTIL.MAX} |90 | |0 |
+ROW |1894 |10370 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* | |0 |
+ROW |1895 |10370 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status |0 |
+ROW |1896 |10370 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1897 |10370 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1898 |10370 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1899 |10370 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1900 |10370 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1901 |10370 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default |0 |
+ROW |1902 |10370 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1903 |10370 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6) |0 |
+ROW |1904 |10370 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1905 |10370 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1906 |10370 |{$SNMP.TIMEOUT} |5m | |0 |
+ROW |1907 |10370 |{$TEMP_CRIT} |60 | |0 |
+ROW |1908 |10370 |{$TEMP_CRIT_LOW} |5 | |0 |
+ROW |1909 |10370 |{$TEMP_WARN} |50 | |0 |
+ROW |1910 |10251 |{$CPU.UTIL.CRIT} |90 | |0 |
+ROW |1911 |10251 |{$FAN.STATUS.CRIT} |3 |The critical value of the FAN sensor for trigger expression. |0 |
+ROW |1912 |10251 |{$ICMP.LOSS.WARN} |20 | |0 |
+ROW |1913 |10251 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
+ROW |1914 |10251 |{$IF.ERRORS.WARN} |2 | |0 |
+ROW |1915 |10251 |{$IF.UTIL.MAX} |90 | |0 |
+ROW |1916 |10251 |{$IFCONTROL} |1 | |0 |
+ROW |1917 |10251 |{$MEMORY.NAME.MATCHES} |.* |This macro is used in memory discovery. Can be overridden on the host level. |0 |
+ROW |1918 |10251 |{$MEMORY.NAME.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results. |0 |
+ROW |1919 |10251 |{$MEMORY.TYPE.MATCHES} |.*(\.2&pipe;hrStorageRam)$ |This macro is used in memory discovery. Can be overridden on the host level. |0 |
+ROW |1920 |10251 |{$MEMORY.TYPE.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in memory discovery. Can be overridden on the host level if you need to filter out results. |0 |
+ROW |1921 |10251 |{$MEMORY.UTIL.MAX} |90 |The warning threshold of the "Physical memory: Memory utilization" item. |0 |
+ROW |1922 |10251 |{$NET.IF.IFADMINSTATUS.MATCHES} |^.* |Ignore notPresent(6) |0 |
+ROW |1923 |10251 |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |^2$ |Ignore down(2) administrative status. |0 |
+ROW |1924 |10251 |{$NET.IF.IFALIAS.MATCHES} |.* | |0 |
+ROW |1925 |10251 |{$NET.IF.IFALIAS.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1926 |10251 |{$NET.IF.IFDESCR.MATCHES} |.* | |0 |
+ROW |1927 |10251 |{$NET.IF.IFDESCR.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1928 |10251 |{$NET.IF.IFNAME.MATCHES} |^.*$ | |0 |
+ROW |1929 |10251 |{$NET.IF.IFNAME.NOT_MATCHES} |(^Software Loopback Interface&pipe;^NULL[0-9.]*$&pipe;^[Ll]o[0-9.]*$&pipe;^[Ss]ystem$&pipe;^Nu[0-9.]*$&pipe;^veth[0-9a-z]+$&pipe;docker[0-9]+&pipe;br-[a-z0-9]{12}) |Filter out loopbacks, nulls, docker veth links and docker0 bridge by default. |0 |
+ROW |1930 |10251 |{$NET.IF.IFOPERSTATUS.MATCHES} |^.*$ | |0 |
+ROW |1931 |10251 |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |^6$ |Ignore notPresent(6). |0 |
+ROW |1932 |10251 |{$NET.IF.IFTYPE.MATCHES} |.* | |0 |
+ROW |1933 |10251 |{$NET.IF.IFTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED | |0 |
+ROW |1934 |10251 |{$PSU.STATUS.CRIT} |2 |The critical value of the PSU sensor for trigger expression. |0 |
+ROW |1935 |10251 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |1936 |10251 |{$TEMP.MAX.CRIT} |60 |The temperature maximum critical value for trigger expression. |0 |
+ROW |1937 |10251 |{$TEMP.MAX.WARN} |50 |The temperature maximum warning value for trigger expression. |0 |
+ROW |1938 |10251 |{$TEMP.MIN.CRIT} |5 |The temperature minimum critical value for trigger expression. |0 |
+ROW |1939 |10251 |{$TEMP.STATUS.WARN} |3 |The critical value of the TEMP sensor for trigger expression. |0 |
+ROW |1940 |10251 |{$VFS.FS.FSNAME.MATCHES} |.+ |This macro is used in filesystems discovery. Can be overridden on the host level. |0 |
+ROW |1941 |10251 |{$VFS.FS.FSNAME.NOT_MATCHES} |^(/dev&pipe;/sys&pipe;/$&pipe;/run&pipe;/proc&pipe;.+/shm$) |This macro is used in filesystems discovery. Can be overridden on the host level. |0 |
+ROW |1942 |10251 |{$VFS.FS.FSTYPE.MATCHES} |.*(\.4&pipe;\.9&pipe;hrStorageFixedDisk&pipe;hrStorageFlashMemory)$ |This macro is used in filesystems discovery. Can be overridden on the host level. |0 |
+ROW |1943 |10251 |{$VFS.FS.FSTYPE.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in filesystems discovery. Can be overridden on the host level. |0 |
+ROW |1944 |10251 |{$VFS.FS.PUSED.MAX.CRIT} |90 | |0 |
+ROW |1945 |10251 |{$VFS.FS.PUSED.MAX.WARN} |80 | |0 |
+ROW |1946 |10371 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |1947 |10371 |{$ICMP.LOSS.WARN} |20 | |0 |
+ROW |1948 |10371 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
+ROW |1949 |10371 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |1950 |10371 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |1951 |10371 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |1952 |10371 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |1953 |10371 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |1954 |10371 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |1955 |10371 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |1956 |10372 |{$HTTP.AGENT.TIMEOUT} |3s |The HTTP agent timeout to wait for a response from AFF700. |0 |
+ROW |1957 |10372 |{$PASSWORD} | |AFF700 user password. |0 |
+ROW |1958 |10372 |{$URL} | |AFF700 cluster URL address. |0 |
+ROW |1959 |10372 |{$USERNAME} | |AFF700 user name. |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -16159,6 +18183,19 @@ ROW |381 |10354 |13 |
ROW |382 |10355 |8 |
ROW |383 |10356 |8 |
ROW |384 |10357 |16 |
+ROW |385 |10358 |12 |
+ROW |386 |10359 |12 |
+ROW |387 |10360 |12 |
+ROW |388 |10361 |12 |
+ROW |389 |10362 |13 |
+ROW |390 |10363 |13 |
+ROW |391 |10366 |8 |
+ROW |392 |10367 |8 |
+ROW |393 |10368 |8 |
+ROW |394 |10369 |8 |
+ROW |395 |10370 |8 |
+ROW |396 |10371 |17 |
+ROW |397 |10372 |16 |
TABLE |hosts_templates
FIELDS|hosttemplateid|hostid|templateid|
@@ -16233,9 +18270,6 @@ ROW |208 |10236 |10204 |
ROW |218 |10250 |10190 |
ROW |219 |10250 |10183 |
ROW |220 |10250 |10204 |
-ROW |221 |10251 |10185 |
-ROW |222 |10251 |10190 |
-ROW |223 |10251 |10204 |
ROW |224 |10253 |10216 |
ROW |225 |10253 |10217 |
ROW |226 |10253 |10212 |
@@ -16301,6 +18335,8 @@ ROW |290 |10331 |10175 |
ROW |291 |10332 |10174 |
ROW |292 |10353 |10204 |
ROW |293 |10357 |10204 |
+ROW |294 |10364 |10362 |
+ROW |295 |10365 |10362 |
TABLE |items_applications
FIELDS|itemappid|applicationid|itemid|
@@ -16348,592 +18384,6 @@ ROW |46636 |1124 |28951 |
ROW |46637 |740 |28952 |
ROW |46638 |740 |28953 |
ROW |46639 |740 |28954 |
-ROW |94922 |1116 |28743 |
-ROW |94923 |1116 |28744 |
-ROW |94924 |1116 |28745 |
-ROW |94925 |1116 |28746 |
-ROW |94926 |1116 |28747 |
-ROW |94927 |1116 |28748 |
-ROW |94928 |1117 |30896 |
-ROW |94929 |1116 |30897 |
-ROW |94930 |1116 |30898 |
-ROW |94931 |1116 |30899 |
-ROW |94932 |1116 |30900 |
-ROW |94933 |1116 |30901 |
-ROW |94934 |1116 |30902 |
-ROW |94935 |1116 |30903 |
-ROW |94936 |1116 |30904 |
-ROW |94937 |1116 |30905 |
-ROW |94938 |1116 |30906 |
-ROW |94939 |1116 |30907 |
-ROW |94940 |1116 |30908 |
-ROW |94941 |1116 |30909 |
-ROW |94942 |1116 |30910 |
-ROW |94943 |1116 |30911 |
-ROW |94944 |1116 |30912 |
-ROW |94945 |1116 |30913 |
-ROW |94946 |1116 |30914 |
-ROW |94947 |1116 |30915 |
-ROW |94948 |1116 |30917 |
-ROW |94949 |1116 |30918 |
-ROW |94950 |1116 |30919 |
-ROW |94951 |1116 |30920 |
-ROW |94952 |1116 |30921 |
-ROW |94953 |1116 |30922 |
-ROW |94954 |1119 |28775 |
-ROW |94955 |1118 |28776 |
-ROW |94956 |1118 |28777 |
-ROW |94957 |1118 |28778 |
-ROW |94958 |1118 |28779 |
-ROW |94959 |1118 |28780 |
-ROW |94960 |1118 |28781 |
-ROW |94961 |1118 |28782 |
-ROW |94962 |1118 |28783 |
-ROW |94963 |1118 |28784 |
-ROW |94964 |1118 |28785 |
-ROW |94965 |1118 |28786 |
-ROW |94966 |1118 |28787 |
-ROW |94967 |1118 |28788 |
-ROW |94968 |1118 |28789 |
-ROW |94969 |1118 |28790 |
-ROW |94970 |1118 |28791 |
-ROW |94971 |1118 |28792 |
-ROW |94972 |1118 |28793 |
-ROW |94973 |1118 |28794 |
-ROW |94974 |1118 |28795 |
-ROW |94975 |1118 |28796 |
-ROW |94976 |1118 |28798 |
-ROW |94977 |1118 |28799 |
-ROW |94978 |1118 |28800 |
-ROW |94979 |1118 |28801 |
-ROW |94980 |1118 |28802 |
-ROW |94981 |1118 |28803 |
-ROW |94982 |1349 |31800 |
-ROW |94983 |1349 |31801 |
-ROW |94984 |1349 |31802 |
-ROW |94985 |1348 |31803 |
-ROW |94986 |1349 |31804 |
-ROW |94987 |1348 |31805 |
-ROW |94988 |1348 |31806 |
-ROW |94989 |1348 |31807 |
-ROW |94990 |1348 |31808 |
-ROW |94991 |1348 |31809 |
-ROW |94992 |1348 |31810 |
-ROW |94993 |1348 |31811 |
-ROW |94994 |1348 |31812 |
-ROW |94995 |1348 |31813 |
-ROW |94996 |1348 |31814 |
-ROW |94997 |1348 |31815 |
-ROW |94998 |1348 |31816 |
-ROW |94999 |1348 |31817 |
-ROW |95000 |1348 |31818 |
-ROW |95001 |1348 |31819 |
-ROW |95002 |1348 |31820 |
-ROW |95003 |1348 |31821 |
-ROW |95004 |1348 |31822 |
-ROW |95005 |1348 |31823 |
-ROW |95006 |1348 |31824 |
-ROW |95007 |1348 |31825 |
-ROW |95008 |1348 |31826 |
-ROW |95009 |1348 |31827 |
-ROW |95010 |1348 |31828 |
-ROW |95011 |1348 |31829 |
-ROW |95012 |1348 |31830 |
-ROW |95013 |1348 |31831 |
-ROW |95014 |1348 |31832 |
-ROW |95015 |1348 |31833 |
-ROW |95016 |1348 |31834 |
-ROW |95017 |1348 |31835 |
-ROW |95018 |1348 |31836 |
-ROW |95019 |1348 |31837 |
-ROW |95020 |1348 |31838 |
-ROW |95021 |1348 |31839 |
-ROW |95022 |1348 |31840 |
-ROW |95023 |1348 |31841 |
-ROW |95024 |1348 |31842 |
-ROW |95025 |1348 |31843 |
-ROW |95026 |1348 |31844 |
-ROW |95027 |1348 |31845 |
-ROW |95028 |1348 |31846 |
-ROW |95029 |1348 |31847 |
-ROW |95030 |1348 |31848 |
-ROW |95031 |1348 |31849 |
-ROW |95032 |1348 |31850 |
-ROW |95033 |1319 |30527 |
-ROW |95034 |1319 |30528 |
-ROW |95035 |1319 |30529 |
-ROW |95036 |1318 |30530 |
-ROW |95037 |1319 |30531 |
-ROW |95038 |1318 |30532 |
-ROW |95039 |1318 |30533 |
-ROW |95040 |1318 |30534 |
-ROW |95041 |1318 |30535 |
-ROW |95042 |1318 |30536 |
-ROW |95043 |1318 |30537 |
-ROW |95044 |1318 |30538 |
-ROW |95045 |1318 |30539 |
-ROW |95046 |1318 |30540 |
-ROW |95047 |1318 |30541 |
-ROW |95048 |1318 |30542 |
-ROW |95049 |1318 |30543 |
-ROW |95050 |1318 |30544 |
-ROW |95051 |1318 |30545 |
-ROW |95052 |1318 |30546 |
-ROW |95053 |1318 |30547 |
-ROW |95054 |1318 |30548 |
-ROW |95055 |1318 |30549 |
-ROW |95056 |1318 |30550 |
-ROW |95057 |1318 |30551 |
-ROW |95058 |1318 |30552 |
-ROW |95059 |1318 |30553 |
-ROW |95060 |1318 |30554 |
-ROW |95061 |1318 |30555 |
-ROW |95062 |1318 |30556 |
-ROW |95063 |1318 |30557 |
-ROW |95064 |1318 |30558 |
-ROW |95065 |1318 |30559 |
-ROW |95066 |1318 |30560 |
-ROW |95067 |1318 |30561 |
-ROW |95068 |1318 |30562 |
-ROW |95069 |1318 |30563 |
-ROW |95070 |1318 |30564 |
-ROW |95071 |1318 |30565 |
-ROW |95072 |1318 |30566 |
-ROW |95073 |1318 |30567 |
-ROW |95074 |1318 |30568 |
-ROW |95075 |1318 |30569 |
-ROW |95076 |1318 |30570 |
-ROW |95077 |1326 |30690 |
-ROW |95078 |1327 |30691 |
-ROW |95079 |1326 |30692 |
-ROW |95080 |1327 |30693 |
-ROW |95081 |1327 |30694 |
-ROW |95082 |1326 |30695 |
-ROW |95083 |1326 |30696 |
-ROW |95084 |1326 |30697 |
-ROW |95085 |1326 |30698 |
-ROW |95086 |1326 |30699 |
-ROW |95087 |1326 |30700 |
-ROW |95088 |1326 |30701 |
-ROW |95089 |1326 |30702 |
-ROW |95090 |1326 |30703 |
-ROW |95091 |1326 |30704 |
-ROW |95092 |1326 |30705 |
-ROW |95093 |1326 |30706 |
-ROW |95094 |1326 |30707 |
-ROW |95095 |1326 |30708 |
-ROW |95096 |1326 |30709 |
-ROW |95097 |1326 |30710 |
-ROW |95098 |1326 |30711 |
-ROW |95099 |1326 |30712 |
-ROW |95100 |1327 |30719 |
-ROW |95101 |1327 |30739 |
-ROW |95102 |1327 |30743 |
-ROW |95103 |1327 |30744 |
-ROW |95104 |1327 |30746 |
-ROW |95105 |1327 |30747 |
-ROW |95106 |1327 |30754 |
-ROW |95107 |1327 |30756 |
-ROW |95108 |1331 |30923 |
-ROW |95109 |1331 |30924 |
-ROW |95110 |1332 |30925 |
-ROW |95111 |1332 |30926 |
-ROW |95112 |1331 |30927 |
-ROW |95113 |1331 |30928 |
-ROW |95114 |1331 |30929 |
-ROW |95115 |1331 |30930 |
-ROW |95116 |1331 |30931 |
-ROW |95117 |1331 |30932 |
-ROW |95118 |1331 |30933 |
-ROW |95119 |1331 |30934 |
-ROW |95120 |1331 |30935 |
-ROW |95121 |1331 |30936 |
-ROW |95122 |1331 |30937 |
-ROW |95123 |1331 |30938 |
-ROW |95124 |1331 |30939 |
-ROW |95125 |1331 |30940 |
-ROW |95126 |1331 |30941 |
-ROW |95127 |1331 |30942 |
-ROW |95128 |1331 |30943 |
-ROW |95129 |1331 |30944 |
-ROW |95130 |1331 |30945 |
-ROW |95131 |1331 |30946 |
-ROW |95132 |1331 |30947 |
-ROW |95133 |1331 |30948 |
-ROW |95134 |1331 |30949 |
-ROW |95135 |1331 |30950 |
-ROW |95136 |1331 |30951 |
-ROW |95137 |1331 |30952 |
-ROW |95138 |1331 |30953 |
-ROW |95139 |1331 |30954 |
-ROW |95140 |1331 |30955 |
-ROW |95141 |1331 |30956 |
-ROW |95142 |1331 |30957 |
-ROW |95143 |1331 |30958 |
-ROW |95144 |1331 |30959 |
-ROW |95145 |1331 |30960 |
-ROW |95146 |1331 |30963 |
-ROW |95147 |1411 |32486 |
-ROW |95148 |1411 |32487 |
-ROW |95149 |1411 |32488 |
-ROW |95150 |1411 |32489 |
-ROW |95151 |1411 |32490 |
-ROW |95152 |1411 |32491 |
-ROW |95153 |1411 |32492 |
-ROW |95154 |1411 |32493 |
-ROW |95155 |1411 |32494 |
-ROW |95156 |1411 |32498 |
-ROW |95157 |1411 |32499 |
-ROW |95158 |1411 |32500 |
-ROW |95159 |1412 |32516 |
-ROW |95160 |1412 |32517 |
-ROW |95161 |1412 |32518 |
-ROW |95162 |1412 |32519 |
-ROW |95163 |1412 |32520 |
-ROW |95164 |1412 |32521 |
-ROW |95165 |1412 |32522 |
-ROW |95166 |1412 |32523 |
-ROW |95167 |1412 |32524 |
-ROW |95168 |1412 |32528 |
-ROW |95169 |1412 |32529 |
-ROW |95170 |1412 |32530 |
-ROW |95171 |1341 |31499 |
-ROW |95172 |1341 |31500 |
-ROW |95173 |1341 |31501 |
-ROW |95174 |1341 |31502 |
-ROW |95175 |1341 |31503 |
-ROW |95176 |1341 |31504 |
-ROW |95177 |1341 |31505 |
-ROW |95178 |1341 |31506 |
-ROW |95179 |1341 |31507 |
-ROW |95180 |1341 |31508 |
-ROW |95181 |1341 |31509 |
-ROW |95182 |1341 |31510 |
-ROW |95183 |1341 |31511 |
-ROW |95184 |1341 |31512 |
-ROW |95185 |1341 |31513 |
-ROW |95186 |1341 |31514 |
-ROW |95187 |1341 |31515 |
-ROW |95188 |1341 |31516 |
-ROW |95189 |1341 |31517 |
-ROW |95190 |1341 |31518 |
-ROW |95191 |1341 |31519 |
-ROW |95192 |1341 |31520 |
-ROW |95193 |1341 |31521 |
-ROW |95194 |1341 |31522 |
-ROW |95195 |1341 |31523 |
-ROW |95196 |1341 |31524 |
-ROW |95197 |1341 |31525 |
-ROW |95198 |1341 |31526 |
-ROW |95199 |1341 |31527 |
-ROW |95200 |1341 |31528 |
-ROW |95201 |1341 |31529 |
-ROW |95202 |1341 |31530 |
-ROW |95203 |1341 |31531 |
-ROW |95204 |1341 |31532 |
-ROW |95205 |1341 |31533 |
-ROW |95206 |1341 |31534 |
-ROW |95207 |1341 |31535 |
-ROW |95208 |1341 |31536 |
-ROW |95209 |1341 |31537 |
-ROW |95210 |1341 |31538 |
-ROW |95211 |1341 |31539 |
-ROW |95212 |1341 |31540 |
-ROW |95213 |1341 |31541 |
-ROW |95214 |1341 |31542 |
-ROW |95215 |1341 |31543 |
-ROW |95216 |1341 |31544 |
-ROW |95217 |1341 |31545 |
-ROW |95218 |1341 |31546 |
-ROW |95219 |1341 |31547 |
-ROW |95220 |1341 |31548 |
-ROW |95221 |1341 |31549 |
-ROW |95222 |1341 |31550 |
-ROW |95223 |1341 |31551 |
-ROW |95224 |1341 |31552 |
-ROW |95225 |1341 |31553 |
-ROW |95226 |1358 |32012 |
-ROW |95227 |1358 |32013 |
-ROW |95228 |1357 |32014 |
-ROW |95229 |1357 |32015 |
-ROW |95230 |1357 |32016 |
-ROW |95231 |1358 |32017 |
-ROW |95232 |1357 |32018 |
-ROW |95233 |1358 |32019 |
-ROW |95234 |1357 |32020 |
-ROW |95235 |1357 |32021 |
-ROW |95236 |1357 |32022 |
-ROW |95237 |1357 |32023 |
-ROW |95238 |1357 |32024 |
-ROW |95239 |1357 |32025 |
-ROW |95240 |1357 |32026 |
-ROW |95241 |1357 |32027 |
-ROW |95242 |1357 |32028 |
-ROW |95243 |1357 |32029 |
-ROW |95244 |1357 |32030 |
-ROW |95245 |1357 |32031 |
-ROW |95246 |1357 |32032 |
-ROW |95247 |1357 |32033 |
-ROW |95248 |1357 |32034 |
-ROW |95249 |1357 |32035 |
-ROW |95250 |1357 |32036 |
-ROW |95251 |1357 |32037 |
-ROW |95252 |1357 |32038 |
-ROW |95253 |1357 |32039 |
-ROW |95254 |1357 |32040 |
-ROW |95255 |1357 |32041 |
-ROW |95256 |1357 |32042 |
-ROW |95257 |1357 |32043 |
-ROW |95258 |1357 |32044 |
-ROW |95259 |1357 |32045 |
-ROW |95260 |1358 |32048 |
-ROW |95261 |1358 |32049 |
-ROW |95262 |1298 |30187 |
-ROW |95263 |1298 |30188 |
-ROW |95264 |1299 |30189 |
-ROW |95265 |1299 |30190 |
-ROW |95266 |1298 |30191 |
-ROW |95267 |1298 |30192 |
-ROW |95268 |1301 |30230 |
-ROW |95269 |1301 |30231 |
-ROW |95270 |1300 |30789 |
-ROW |95271 |1300 |30790 |
-ROW |95272 |1300 |30234 |
-ROW |95273 |1300 |30235 |
-ROW |95274 |1333 |30968 |
-ROW |95275 |1333 |30969 |
-ROW |95276 |1333 |30970 |
-ROW |95277 |1333 |30971 |
-ROW |95278 |1333 |30972 |
-ROW |95279 |1333 |30973 |
-ROW |95280 |1333 |30974 |
-ROW |95281 |1333 |30975 |
-ROW |95282 |1333 |30976 |
-ROW |95283 |1333 |30977 |
-ROW |95284 |1333 |30978 |
-ROW |95285 |1333 |30979 |
-ROW |95286 |1333 |30980 |
-ROW |95287 |1333 |30981 |
-ROW |95288 |1333 |30982 |
-ROW |95289 |1333 |30983 |
-ROW |95290 |1333 |30984 |
-ROW |95291 |1333 |30985 |
-ROW |95292 |1333 |30986 |
-ROW |95293 |1333 |30987 |
-ROW |95294 |1333 |30988 |
-ROW |95295 |1333 |30989 |
-ROW |95296 |1333 |30990 |
-ROW |95297 |1333 |30991 |
-ROW |95298 |1333 |30992 |
-ROW |95299 |1333 |30993 |
-ROW |95300 |1333 |30994 |
-ROW |95301 |1333 |30995 |
-ROW |95302 |1333 |30996 |
-ROW |95303 |1333 |30997 |
-ROW |95304 |1333 |30998 |
-ROW |95305 |1333 |30999 |
-ROW |95306 |1333 |31000 |
-ROW |95307 |1333 |31001 |
-ROW |95308 |1333 |31002 |
-ROW |95309 |1333 |31003 |
-ROW |95310 |1333 |31004 |
-ROW |95311 |1334 |31010 |
-ROW |95312 |1334 |31011 |
-ROW |95313 |1334 |31012 |
-ROW |95314 |1334 |31013 |
-ROW |95315 |1334 |31014 |
-ROW |95316 |1334 |31015 |
-ROW |95317 |1334 |31016 |
-ROW |95318 |1334 |31017 |
-ROW |95319 |1334 |31018 |
-ROW |95320 |1334 |31019 |
-ROW |95321 |1334 |31020 |
-ROW |95322 |1334 |31021 |
-ROW |95323 |1334 |31022 |
-ROW |95324 |1334 |31023 |
-ROW |95325 |1334 |31024 |
-ROW |95326 |1334 |31025 |
-ROW |95327 |1334 |31026 |
-ROW |95328 |1334 |31027 |
-ROW |95329 |1334 |31028 |
-ROW |95330 |1334 |31029 |
-ROW |95331 |1334 |31030 |
-ROW |95332 |1334 |31031 |
-ROW |95333 |1334 |31032 |
-ROW |95334 |1334 |31033 |
-ROW |95335 |1334 |31034 |
-ROW |95336 |1334 |31035 |
-ROW |95337 |1334 |31036 |
-ROW |95338 |1334 |31037 |
-ROW |95339 |1334 |31038 |
-ROW |95340 |1334 |31039 |
-ROW |95341 |1334 |31040 |
-ROW |95342 |1334 |31041 |
-ROW |95343 |1334 |31042 |
-ROW |95344 |1334 |31043 |
-ROW |95345 |1334 |31044 |
-ROW |95346 |1334 |31045 |
-ROW |95347 |1334 |31046 |
-ROW |95348 |1359 |32071 |
-ROW |95349 |1359 |32072 |
-ROW |95350 |1359 |32073 |
-ROW |95351 |1359 |32074 |
-ROW |95352 |1359 |32075 |
-ROW |95353 |1359 |32076 |
-ROW |95354 |1359 |32077 |
-ROW |95355 |1359 |32078 |
-ROW |95356 |1359 |32079 |
-ROW |95357 |1359 |32080 |
-ROW |95358 |1359 |32081 |
-ROW |95359 |1359 |32082 |
-ROW |95360 |1359 |32083 |
-ROW |95361 |1359 |32084 |
-ROW |95362 |1359 |32085 |
-ROW |95363 |1359 |32086 |
-ROW |95364 |1359 |32087 |
-ROW |95365 |1359 |32088 |
-ROW |95366 |1359 |32089 |
-ROW |95367 |1359 |32090 |
-ROW |95368 |1359 |32091 |
-ROW |95369 |1359 |32092 |
-ROW |95370 |1359 |32093 |
-ROW |95371 |1359 |32094 |
-ROW |95372 |1359 |32095 |
-ROW |95373 |1359 |32096 |
-ROW |95374 |1359 |32097 |
-ROW |95375 |1359 |32098 |
-ROW |95376 |1359 |32099 |
-ROW |95377 |1359 |32100 |
-ROW |95378 |1359 |32101 |
-ROW |95379 |1359 |32102 |
-ROW |95380 |1359 |32103 |
-ROW |95381 |1359 |32104 |
-ROW |95382 |1359 |32105 |
-ROW |95383 |1359 |32106 |
-ROW |95384 |1359 |32107 |
-ROW |95385 |1359 |32108 |
-ROW |95386 |1359 |32109 |
-ROW |95387 |1359 |32110 |
-ROW |95388 |1359 |32111 |
-ROW |95389 |1359 |32112 |
-ROW |95390 |1359 |32113 |
-ROW |95391 |1359 |32114 |
-ROW |95392 |1359 |32115 |
-ROW |95393 |1359 |32116 |
-ROW |95394 |1359 |32117 |
-ROW |95395 |1359 |32118 |
-ROW |95396 |1359 |32119 |
-ROW |95397 |1359 |32120 |
-ROW |95398 |1359 |32121 |
-ROW |95399 |1359 |32122 |
-ROW |95400 |1359 |32123 |
-ROW |95401 |1359 |32124 |
-ROW |95402 |1359 |32125 |
-ROW |95403 |1359 |32126 |
-ROW |95404 |1359 |32127 |
-ROW |95405 |1359 |32128 |
-ROW |95406 |1359 |32129 |
-ROW |95407 |1359 |32130 |
-ROW |95408 |1359 |32131 |
-ROW |95409 |1359 |32132 |
-ROW |95410 |1320 |30611 |
-ROW |95411 |1321 |30612 |
-ROW |95412 |1320 |30613 |
-ROW |95413 |1320 |30614 |
-ROW |95414 |1320 |30615 |
-ROW |95415 |1320 |30616 |
-ROW |95416 |1320 |30617 |
-ROW |95417 |1320 |30618 |
-ROW |95418 |1320 |30619 |
-ROW |95419 |1320 |30620 |
-ROW |95420 |1320 |30621 |
-ROW |95421 |1320 |30622 |
-ROW |95422 |1320 |30623 |
-ROW |95423 |1320 |30624 |
-ROW |95424 |1320 |30625 |
-ROW |95425 |1320 |30626 |
-ROW |95426 |1320 |30627 |
-ROW |95427 |1320 |30628 |
-ROW |95428 |1320 |30629 |
-ROW |95429 |1320 |30630 |
-ROW |95430 |1320 |30631 |
-ROW |95431 |1320 |30632 |
-ROW |95432 |1320 |30633 |
-ROW |95433 |1320 |30634 |
-ROW |95434 |1320 |30635 |
-ROW |95435 |1320 |30636 |
-ROW |95436 |1121 |28804 |
-ROW |95437 |1120 |28805 |
-ROW |95438 |1120 |28806 |
-ROW |95439 |1120 |28807 |
-ROW |95440 |1120 |28808 |
-ROW |95441 |1120 |28809 |
-ROW |95442 |1120 |28810 |
-ROW |95443 |1120 |28811 |
-ROW |95444 |1120 |28812 |
-ROW |95445 |1120 |28813 |
-ROW |95446 |1120 |28814 |
-ROW |95447 |1120 |28815 |
-ROW |95448 |1120 |28816 |
-ROW |95449 |1120 |28817 |
-ROW |95450 |1120 |28818 |
-ROW |95451 |1120 |28819 |
-ROW |95452 |1120 |28820 |
-ROW |95453 |1123 |28821 |
-ROW |95454 |1122 |28822 |
-ROW |95455 |1122 |28823 |
-ROW |95456 |1122 |28824 |
-ROW |95457 |1122 |28825 |
-ROW |95458 |1122 |28826 |
-ROW |95459 |1122 |28827 |
-ROW |95460 |1122 |28828 |
-ROW |95461 |1122 |28829 |
-ROW |95462 |1122 |28830 |
-ROW |95463 |1122 |28831 |
-ROW |95464 |1122 |28832 |
-ROW |95465 |1122 |28833 |
-ROW |95466 |1351 |31868 |
-ROW |95467 |1351 |31869 |
-ROW |95468 |1350 |31870 |
-ROW |95469 |1350 |31871 |
-ROW |95470 |1350 |31872 |
-ROW |95471 |1350 |31873 |
-ROW |95472 |1350 |31874 |
-ROW |95473 |1350 |31875 |
-ROW |95474 |1350 |31876 |
-ROW |95475 |1350 |31877 |
-ROW |95476 |1350 |31878 |
-ROW |95477 |1350 |31879 |
-ROW |95478 |1350 |31880 |
-ROW |95479 |1350 |31881 |
-ROW |95480 |1350 |31882 |
-ROW |95481 |1350 |31883 |
-ROW |95482 |1350 |31884 |
-ROW |95483 |1350 |31885 |
-ROW |95484 |1350 |31886 |
-ROW |95485 |1350 |31887 |
-ROW |95486 |1350 |31888 |
-ROW |95487 |1350 |31889 |
-ROW |95488 |1350 |31890 |
-ROW |95489 |1352 |31891 |
-ROW |95490 |1353 |31892 |
-ROW |95491 |1353 |31893 |
-ROW |95492 |1352 |31894 |
-ROW |95493 |1352 |31895 |
-ROW |95494 |1352 |31896 |
-ROW |95495 |1352 |31897 |
-ROW |95496 |1352 |31898 |
-ROW |95497 |1352 |31899 |
-ROW |95498 |1352 |31900 |
-ROW |95499 |1352 |31901 |
-ROW |95500 |1352 |31902 |
-ROW |95501 |1352 |31903 |
-ROW |95502 |1352 |31904 |
-ROW |95503 |1352 |31905 |
-ROW |95504 |1352 |31906 |
-ROW |95505 |1352 |31907 |
-ROW |95506 |1352 |31908 |
-ROW |95507 |1352 |31909 |
ROW |95508 |1264 |29653 |
ROW |95509 |1264 |29654 |
ROW |95510 |1263 |29655 |
@@ -17032,2786 +18482,3780 @@ ROW |95602 |1267 |29783 |
ROW |95603 |1267 |29784 |
ROW |95604 |1267 |30044 |
ROW |95605 |1267 |30045 |
-ROW |95606 |1354 |31910 |
-ROW |95607 |1354 |31911 |
-ROW |95608 |1354 |31912 |
-ROW |95609 |1354 |31913 |
-ROW |95610 |1354 |31914 |
-ROW |95611 |1354 |31915 |
-ROW |95612 |1354 |31916 |
-ROW |95613 |1354 |31917 |
-ROW |95614 |1354 |31918 |
-ROW |95615 |1354 |31919 |
-ROW |95616 |1354 |31920 |
-ROW |95617 |1354 |31921 |
-ROW |95618 |1354 |31922 |
-ROW |95619 |1354 |31923 |
-ROW |95620 |1354 |31924 |
-ROW |95621 |1354 |31925 |
-ROW |95622 |1354 |31926 |
-ROW |95623 |1354 |31927 |
-ROW |95624 |1354 |31928 |
-ROW |95625 |1354 |31929 |
-ROW |95626 |1354 |31930 |
-ROW |95627 |1354 |31931 |
-ROW |95628 |1354 |31932 |
-ROW |95629 |1354 |31933 |
-ROW |95630 |1354 |31934 |
-ROW |95631 |1354 |31935 |
-ROW |95632 |1354 |31936 |
-ROW |95633 |1354 |31937 |
-ROW |95634 |1354 |31938 |
-ROW |95635 |1354 |31939 |
-ROW |95636 |1354 |31940 |
-ROW |95637 |1354 |31941 |
-ROW |95638 |1354 |31942 |
-ROW |95639 |1354 |31943 |
-ROW |95640 |1354 |31944 |
-ROW |95641 |1354 |31945 |
-ROW |95642 |1354 |31946 |
-ROW |95643 |1354 |31947 |
-ROW |95644 |1354 |31948 |
-ROW |95645 |1354 |31949 |
-ROW |95646 |1354 |31950 |
-ROW |95647 |1354 |31951 |
-ROW |95648 |1354 |31952 |
-ROW |95649 |1354 |31953 |
-ROW |95650 |1354 |31954 |
-ROW |95651 |1354 |31955 |
-ROW |95652 |1354 |31956 |
-ROW |95653 |1354 |31957 |
-ROW |95654 |1354 |31958 |
-ROW |95655 |1354 |31959 |
-ROW |95656 |1354 |31960 |
-ROW |95657 |1354 |31961 |
-ROW |95658 |1354 |31962 |
-ROW |95659 |1354 |31963 |
-ROW |95660 |1109 |28511 |
-ROW |95661 |1342 |31554 |
-ROW |95662 |1342 |31555 |
-ROW |95663 |1342 |31556 |
-ROW |95664 |1343 |31557 |
-ROW |95665 |1343 |31558 |
-ROW |95666 |1343 |31559 |
-ROW |95667 |1343 |31560 |
-ROW |95668 |1343 |31561 |
-ROW |95669 |1343 |31562 |
-ROW |95670 |1343 |31563 |
-ROW |95671 |1343 |31564 |
-ROW |95672 |1343 |31565 |
-ROW |95673 |1343 |31566 |
-ROW |95674 |1343 |31567 |
-ROW |95675 |1343 |31568 |
-ROW |95676 |1343 |31569 |
-ROW |95677 |1343 |31570 |
-ROW |95678 |1343 |31571 |
-ROW |95679 |1343 |31572 |
-ROW |95680 |1343 |31573 |
-ROW |95681 |1343 |31574 |
-ROW |95682 |1343 |31575 |
-ROW |95683 |1344 |31576 |
-ROW |95684 |1344 |31577 |
-ROW |95685 |1344 |31578 |
-ROW |95686 |1344 |31579 |
-ROW |95687 |1344 |31580 |
-ROW |95688 |1344 |31581 |
-ROW |95689 |1344 |31582 |
-ROW |95690 |1344 |31583 |
-ROW |95691 |1344 |31584 |
-ROW |95692 |1344 |31585 |
-ROW |95693 |1344 |31586 |
-ROW |95694 |1344 |31587 |
-ROW |95695 |1344 |31588 |
-ROW |95696 |1344 |31589 |
-ROW |95697 |1344 |31590 |
-ROW |95698 |1344 |31591 |
-ROW |95699 |1344 |31592 |
-ROW |95700 |1344 |31593 |
-ROW |95701 |1344 |31594 |
-ROW |95702 |1344 |31595 |
-ROW |95703 |1344 |31596 |
-ROW |95704 |1342 |31605 |
-ROW |95705 |1342 |31606 |
-ROW |95706 |1342 |31607 |
-ROW |95707 |1342 |31608 |
-ROW |95708 |1342 |31609 |
-ROW |95709 |1343 |31610 |
-ROW |95710 |1343 |31611 |
-ROW |95711 |1343 |31612 |
-ROW |95712 |1343 |31613 |
-ROW |95713 |1343 |31614 |
-ROW |95714 |1343 |31615 |
-ROW |95715 |1343 |31616 |
-ROW |95716 |1343 |31617 |
-ROW |95717 |1343 |31618 |
-ROW |95718 |1343 |31619 |
-ROW |95719 |1343 |31620 |
-ROW |95720 |1343 |31621 |
-ROW |95721 |1344 |31622 |
-ROW |95722 |1344 |31623 |
-ROW |95723 |1344 |31624 |
-ROW |95724 |1344 |31625 |
-ROW |95725 |1360 |32158 |
-ROW |95726 |1360 |32159 |
-ROW |95727 |1361 |32160 |
-ROW |95728 |1361 |32161 |
-ROW |95729 |1361 |32162 |
-ROW |95730 |1361 |32163 |
-ROW |95731 |1361 |32164 |
-ROW |95732 |1361 |32165 |
-ROW |95733 |1361 |32166 |
-ROW |95734 |1361 |32167 |
-ROW |95735 |1361 |32168 |
-ROW |95736 |1361 |32169 |
-ROW |95737 |1361 |32170 |
-ROW |95738 |1361 |32171 |
-ROW |95739 |1361 |32172 |
-ROW |95740 |1361 |32173 |
-ROW |95741 |1361 |32174 |
-ROW |95742 |1361 |32175 |
-ROW |95743 |1361 |32176 |
-ROW |95744 |1361 |32177 |
-ROW |95745 |1361 |32178 |
-ROW |95746 |1361 |32179 |
-ROW |95747 |1361 |32180 |
-ROW |95748 |1361 |32181 |
-ROW |95749 |1361 |32182 |
-ROW |95750 |1361 |32183 |
-ROW |95751 |1361 |32184 |
-ROW |95752 |1361 |32185 |
-ROW |95753 |1361 |32186 |
-ROW |95754 |1361 |32187 |
-ROW |95755 |1361 |32188 |
-ROW |95756 |1361 |32189 |
-ROW |95757 |1361 |32190 |
-ROW |95758 |1361 |32191 |
-ROW |95759 |1361 |32192 |
-ROW |95760 |1361 |32201 |
-ROW |95761 |1361 |32202 |
-ROW |95762 |1361 |32203 |
-ROW |95763 |1361 |32204 |
-ROW |95764 |1361 |32205 |
-ROW |95765 |1361 |32206 |
-ROW |95766 |446 |23644 |
-ROW |95767 |447 |23645 |
-ROW |95768 |448 |23646 |
-ROW |95769 |449 |23647 |
-ROW |95770 |450 |23648 |
-ROW |95771 |451 |23649 |
-ROW |95772 |452 |23650 |
-ROW |95773 |453 |23651 |
-ROW |95774 |1111 |28585 |
-ROW |95775 |1111 |28586 |
-ROW |95776 |1111 |28587 |
-ROW |95777 |1111 |28588 |
-ROW |95778 |1111 |28589 |
-ROW |95779 |1111 |28590 |
-ROW |95780 |1111 |28591 |
-ROW |95781 |1111 |28592 |
-ROW |95782 |1111 |28593 |
-ROW |95783 |1111 |28594 |
-ROW |95784 |1111 |28595 |
-ROW |95785 |1111 |28596 |
-ROW |95786 |1111 |28597 |
-ROW |95787 |1111 |28598 |
-ROW |95788 |1111 |28599 |
-ROW |95789 |1111 |28600 |
-ROW |95790 |1111 |28601 |
-ROW |95791 |1111 |28602 |
-ROW |95792 |1111 |28603 |
-ROW |95793 |1111 |28604 |
-ROW |95794 |1111 |28605 |
-ROW |95795 |1111 |28606 |
-ROW |95796 |1111 |28607 |
-ROW |95797 |1111 |28608 |
-ROW |95798 |1111 |28609 |
-ROW |95799 |1111 |28610 |
-ROW |95800 |1111 |28611 |
-ROW |95801 |1111 |28612 |
-ROW |95802 |1111 |28613 |
-ROW |95803 |1111 |28614 |
-ROW |95804 |1111 |28615 |
-ROW |95805 |1111 |28616 |
-ROW |95806 |1111 |31052 |
-ROW |95807 |1110 |28539 |
-ROW |95808 |1110 |28540 |
-ROW |95809 |1110 |28541 |
-ROW |95810 |1110 |28542 |
-ROW |95811 |1110 |28543 |
-ROW |95812 |1110 |28544 |
-ROW |95813 |1110 |28545 |
-ROW |95814 |1110 |28546 |
-ROW |95815 |1110 |28547 |
-ROW |95816 |1110 |28548 |
-ROW |95817 |1110 |28549 |
-ROW |95818 |1110 |28550 |
-ROW |95819 |1110 |28551 |
-ROW |95820 |1110 |28552 |
-ROW |95821 |1110 |28553 |
-ROW |95822 |1110 |28554 |
-ROW |95823 |1110 |28555 |
-ROW |95824 |1110 |28556 |
-ROW |95825 |1110 |28557 |
-ROW |95826 |1110 |28558 |
-ROW |95827 |1110 |28559 |
-ROW |95828 |1110 |28560 |
-ROW |95829 |1110 |28561 |
-ROW |95830 |1110 |28562 |
-ROW |95831 |1110 |28563 |
-ROW |95832 |1110 |28564 |
-ROW |95833 |1110 |28565 |
-ROW |95834 |1110 |28566 |
-ROW |95835 |1110 |28567 |
-ROW |95836 |1110 |28568 |
-ROW |95837 |1110 |28569 |
-ROW |95838 |1110 |28570 |
-ROW |95839 |1110 |28571 |
-ROW |95840 |1110 |28572 |
-ROW |95841 |1110 |28573 |
-ROW |95842 |1110 |28574 |
-ROW |95843 |1110 |28575 |
-ROW |95844 |1110 |28576 |
-ROW |95845 |1110 |28577 |
-ROW |95846 |1110 |28578 |
-ROW |95847 |1110 |28579 |
-ROW |95848 |1110 |28580 |
-ROW |95849 |1110 |28581 |
-ROW |95850 |1110 |28582 |
-ROW |95851 |1110 |28583 |
-ROW |95852 |1110 |28584 |
-ROW |95853 |1110 |29821 |
-ROW |95854 |1110 |31053 |
-ROW |95855 |454 |23652 |
-ROW |95856 |455 |23653 |
-ROW |95857 |456 |23654 |
-ROW |95858 |356 |10067 |
-ROW |95859 |356 |10068 |
-ROW |95860 |356 |10069 |
-ROW |95861 |356 |10070 |
-ROW |95862 |356 |10071 |
-ROW |95863 |356 |10072 |
-ROW |95864 |356 |23340 |
-ROW |95865 |356 |23341 |
-ROW |95866 |356 |23342 |
-ROW |95867 |356 |23343 |
-ROW |95868 |356 |23344 |
-ROW |95869 |356 |23345 |
-ROW |95870 |356 |23346 |
-ROW |95871 |356 |23347 |
-ROW |95872 |356 |23348 |
-ROW |95873 |356 |23349 |
-ROW |95874 |356 |23350 |
-ROW |95875 |356 |23351 |
-ROW |95876 |356 |23352 |
-ROW |95877 |356 |23353 |
-ROW |95878 |356 |23354 |
-ROW |95879 |356 |23355 |
-ROW |95880 |356 |23356 |
-ROW |95881 |356 |23357 |
-ROW |95882 |356 |23358 |
-ROW |95883 |356 |23359 |
-ROW |95884 |356 |23360 |
-ROW |95885 |356 |25368 |
-ROW |95886 |356 |25369 |
-ROW |95887 |356 |28250 |
-ROW |95888 |356 |28251 |
-ROW |95889 |356 |28617 |
-ROW |95890 |356 |28618 |
-ROW |95891 |356 |28619 |
-ROW |95892 |179 |10061 |
-ROW |95893 |179 |10062 |
-ROW |95894 |179 |10063 |
-ROW |95895 |179 |10064 |
-ROW |95896 |179 |10065 |
-ROW |95897 |179 |10066 |
-ROW |95898 |179 |22183 |
-ROW |95899 |179 |22185 |
-ROW |95900 |179 |22187 |
-ROW |95901 |179 |22189 |
-ROW |95902 |179 |22191 |
-ROW |95903 |179 |22196 |
-ROW |95904 |179 |22199 |
-ROW |95905 |179 |22219 |
-ROW |95906 |179 |22396 |
-ROW |95907 |179 |22399 |
-ROW |95908 |179 |22400 |
-ROW |95909 |179 |22401 |
-ROW |95910 |179 |22402 |
-ROW |95911 |179 |22404 |
-ROW |95912 |179 |22406 |
-ROW |95913 |179 |22408 |
-ROW |95914 |179 |22412 |
-ROW |95915 |179 |22414 |
-ROW |95916 |179 |22416 |
-ROW |95917 |179 |22418 |
-ROW |95918 |179 |22420 |
-ROW |95919 |179 |22422 |
-ROW |95920 |179 |22424 |
-ROW |95921 |179 |22426 |
-ROW |95922 |179 |22430 |
-ROW |95923 |179 |22689 |
-ROW |95924 |179 |23171 |
-ROW |95925 |179 |23251 |
-ROW |95926 |179 |23634 |
-ROW |95927 |179 |23661 |
-ROW |95928 |179 |23663 |
-ROW |95929 |179 |25366 |
-ROW |95930 |179 |25370 |
-ROW |95931 |179 |25665 |
-ROW |95932 |179 |25666 |
-ROW |95933 |179 |28248 |
-ROW |95934 |179 |28533 |
-ROW |95935 |179 |28535 |
-ROW |95936 |179 |28537 |
-ROW |95937 |179 |29822 |
-ROW |95938 |345 |10073 |
-ROW |95939 |345 |10074 |
-ROW |95940 |345 |10075 |
-ROW |95941 |345 |10076 |
-ROW |95942 |345 |10077 |
-ROW |95943 |345 |10078 |
-ROW |95944 |345 |23252 |
-ROW |95945 |345 |23253 |
-ROW |95946 |345 |23255 |
-ROW |95947 |345 |23256 |
-ROW |95948 |345 |23257 |
-ROW |95949 |345 |23258 |
-ROW |95950 |345 |23259 |
-ROW |95951 |345 |23260 |
-ROW |95952 |345 |23261 |
-ROW |95953 |345 |23262 |
-ROW |95954 |345 |23264 |
-ROW |95955 |345 |23265 |
-ROW |95956 |345 |23266 |
-ROW |95957 |345 |23267 |
-ROW |95958 |345 |23268 |
-ROW |95959 |345 |23269 |
-ROW |95960 |345 |23270 |
-ROW |95961 |345 |23271 |
-ROW |95962 |345 |23272 |
-ROW |95963 |345 |23273 |
-ROW |95964 |345 |23274 |
-ROW |95965 |345 |23275 |
-ROW |95966 |345 |23276 |
-ROW |95967 |345 |23277 |
-ROW |95968 |345 |23328 |
-ROW |95969 |345 |23620 |
-ROW |95970 |345 |23625 |
-ROW |95971 |345 |23628 |
-ROW |95972 |345 |23635 |
-ROW |95973 |345 |23662 |
-ROW |95974 |345 |23664 |
-ROW |95975 |345 |25367 |
-ROW |95976 |345 |25371 |
-ROW |95977 |345 |25667 |
-ROW |95978 |345 |25668 |
-ROW |95979 |345 |28249 |
-ROW |95980 |345 |28534 |
-ROW |95981 |345 |28536 |
-ROW |95982 |345 |28538 |
-ROW |95983 |345 |29823 |
-ROW |95984 |280 |22917 |
-ROW |95985 |280 |22918 |
-ROW |95986 |273 |22920 |
-ROW |95987 |279 |22920 |
-ROW |95988 |273 |22921 |
-ROW |95989 |279 |22921 |
-ROW |95990 |273 |22922 |
-ROW |95991 |279 |22922 |
-ROW |95992 |273 |22923 |
-ROW |95993 |279 |22923 |
-ROW |95994 |273 |22924 |
-ROW |95995 |279 |22924 |
-ROW |95996 |275 |22933 |
-ROW |95997 |278 |22933 |
-ROW |95998 |275 |22934 |
-ROW |95999 |278 |22934 |
-ROW |96000 |275 |22938 |
-ROW |96001 |278 |22938 |
-ROW |96002 |275 |22939 |
-ROW |96003 |278 |22939 |
-ROW |96004 |278 |22940 |
-ROW |96005 |281 |22940 |
-ROW |96006 |281 |22941 |
-ROW |96007 |276 |22942 |
-ROW |96008 |276 |22943 |
-ROW |96009 |273 |23108 |
-ROW |96010 |331 |23108 |
-ROW |96011 |279 |23108 |
-ROW |96012 |273 |23109 |
-ROW |96013 |331 |23109 |
-ROW |96014 |279 |23109 |
-ROW |96015 |273 |23110 |
-ROW |96016 |279 |23110 |
-ROW |96017 |273 |23111 |
-ROW |96018 |331 |23111 |
-ROW |96019 |279 |23111 |
-ROW |96020 |273 |23112 |
-ROW |96021 |331 |23112 |
-ROW |96022 |279 |23112 |
-ROW |96023 |273 |23113 |
-ROW |96024 |279 |23113 |
-ROW |96025 |273 |23114 |
-ROW |96026 |279 |23114 |
-ROW |96027 |273 |23115 |
-ROW |96028 |279 |23115 |
-ROW |96029 |274 |23116 |
-ROW |96030 |279 |23116 |
-ROW |96031 |274 |23117 |
-ROW |96032 |279 |23117 |
-ROW |96033 |273 |23118 |
-ROW |96034 |331 |23118 |
-ROW |96035 |273 |23119 |
-ROW |96036 |279 |23119 |
-ROW |96037 |273 |23120 |
-ROW |96038 |279 |23120 |
-ROW |96039 |273 |23121 |
-ROW |96040 |279 |23121 |
-ROW |96041 |276 |23122 |
-ROW |96042 |279 |23122 |
-ROW |96043 |273 |23123 |
-ROW |96044 |279 |23123 |
-ROW |96045 |276 |23124 |
-ROW |96046 |276 |23125 |
-ROW |96047 |276 |23126 |
-ROW |96048 |276 |23127 |
-ROW |96049 |276 |23128 |
-ROW |96050 |276 |23129 |
-ROW |96051 |276 |23130 |
-ROW |96052 |276 |23131 |
-ROW |96053 |277 |22945 |
-ROW |96054 |277 |22946 |
-ROW |96055 |274 |22948 |
-ROW |96056 |274 |22949 |
-ROW |96057 |274 |22950 |
-ROW |96058 |274 |22951 |
-ROW |96059 |274 |22952 |
-ROW |96060 |268 |22875 |
-ROW |96061 |268 |22876 |
-ROW |96062 |270 |22877 |
-ROW |96063 |270 |22878 |
-ROW |96064 |265 |22879 |
-ROW |96065 |268 |22879 |
-ROW |96066 |263 |22880 |
-ROW |96067 |269 |22880 |
-ROW |96068 |263 |22881 |
-ROW |96069 |269 |22881 |
-ROW |96070 |263 |22882 |
-ROW |96071 |269 |22882 |
-ROW |96072 |263 |22883 |
-ROW |96073 |269 |22883 |
-ROW |96074 |263 |22884 |
-ROW |96075 |269 |22884 |
-ROW |96076 |263 |22885 |
-ROW |96077 |269 |22885 |
-ROW |96078 |263 |22886 |
-ROW |96079 |269 |22886 |
-ROW |96080 |263 |22888 |
-ROW |96081 |269 |22888 |
-ROW |96082 |263 |22891 |
-ROW |96083 |269 |22891 |
-ROW |96084 |263 |22892 |
-ROW |96085 |269 |22892 |
-ROW |96086 |265 |22893 |
-ROW |96087 |268 |22893 |
-ROW |96088 |265 |22894 |
-ROW |96089 |268 |22894 |
-ROW |96090 |266 |22895 |
-ROW |96091 |266 |22896 |
-ROW |96092 |266 |22897 |
-ROW |96093 |265 |22898 |
-ROW |96094 |268 |22898 |
-ROW |96095 |265 |22899 |
-ROW |96096 |268 |22899 |
-ROW |96097 |268 |22900 |
-ROW |96098 |271 |22900 |
-ROW |96099 |271 |22901 |
-ROW |96100 |266 |22902 |
-ROW |96101 |266 |22903 |
-ROW |96102 |264 |22908 |
-ROW |96103 |264 |22909 |
-ROW |96104 |264 |22910 |
-ROW |96105 |264 |22911 |
-ROW |96106 |264 |22912 |
-ROW |96107 |267 |23073 |
-ROW |96108 |267 |23074 |
-ROW |96109 |283 |22961 |
-ROW |96110 |289 |22961 |
-ROW |96111 |283 |22962 |
-ROW |96112 |289 |22962 |
-ROW |96113 |283 |22963 |
-ROW |96114 |289 |22963 |
-ROW |96115 |283 |22965 |
-ROW |96116 |289 |22965 |
-ROW |96117 |283 |22968 |
-ROW |96118 |289 |22968 |
-ROW |96119 |283 |22971 |
-ROW |96120 |289 |22971 |
-ROW |96121 |283 |22972 |
-ROW |96122 |289 |22972 |
-ROW |96123 |285 |22973 |
-ROW |96124 |288 |22973 |
-ROW |96125 |285 |22974 |
-ROW |96126 |288 |22974 |
-ROW |96127 |285 |22978 |
-ROW |96128 |288 |22978 |
-ROW |96129 |288 |22980 |
-ROW |96130 |291 |22980 |
-ROW |96131 |291 |22981 |
-ROW |96132 |286 |22982 |
-ROW |96133 |286 |22983 |
-ROW |96134 |287 |22985 |
-ROW |96135 |287 |22986 |
-ROW |96136 |284 |22988 |
-ROW |96137 |284 |22989 |
-ROW |96138 |284 |22990 |
-ROW |96139 |284 |22991 |
-ROW |96140 |284 |22992 |
-ROW |96141 |308 |23035 |
-ROW |96142 |308 |23036 |
-ROW |96143 |305 |23039 |
-ROW |96144 |308 |23039 |
-ROW |96145 |303 |23041 |
-ROW |96146 |309 |23041 |
-ROW |96147 |303 |23042 |
-ROW |96148 |309 |23042 |
-ROW |96149 |303 |23043 |
-ROW |96150 |309 |23043 |
-ROW |96151 |305 |23053 |
-ROW |96152 |308 |23053 |
-ROW |96153 |305 |23054 |
-ROW |96154 |308 |23054 |
-ROW |96155 |305 |23058 |
-ROW |96156 |308 |23058 |
-ROW |96157 |305 |23059 |
-ROW |96158 |308 |23059 |
-ROW |96159 |308 |23060 |
-ROW |96160 |311 |23060 |
-ROW |96161 |311 |23061 |
-ROW |96162 |306 |23062 |
-ROW |96163 |306 |23063 |
-ROW |96164 |307 |23077 |
-ROW |96165 |307 |23078 |
-ROW |96166 |304 |23068 |
-ROW |96167 |304 |23069 |
-ROW |96168 |304 |23070 |
-ROW |96169 |304 |23071 |
-ROW |96170 |304 |23072 |
-ROW |96171 |258 |22835 |
-ROW |96172 |258 |22836 |
-ROW |96173 |260 |22837 |
-ROW |96174 |260 |22838 |
-ROW |96175 |255 |22839 |
-ROW |96176 |258 |22839 |
-ROW |96177 |253 |22840 |
-ROW |96178 |259 |22840 |
-ROW |96179 |253 |22841 |
-ROW |96180 |259 |22841 |
-ROW |96181 |253 |22842 |
-ROW |96182 |259 |22842 |
-ROW |96183 |253 |22843 |
-ROW |96184 |259 |22843 |
-ROW |96185 |253 |22844 |
-ROW |96186 |259 |22844 |
-ROW |96187 |253 |22845 |
-ROW |96188 |259 |22845 |
-ROW |96189 |253 |22846 |
-ROW |96190 |259 |22846 |
-ROW |96191 |253 |22848 |
-ROW |96192 |259 |22848 |
-ROW |96193 |253 |22851 |
-ROW |96194 |259 |22851 |
-ROW |96195 |253 |22852 |
-ROW |96196 |259 |22852 |
-ROW |96197 |255 |22853 |
-ROW |96198 |258 |22853 |
-ROW |96199 |255 |22854 |
-ROW |96200 |258 |22854 |
-ROW |96201 |256 |22855 |
-ROW |96202 |256 |22856 |
-ROW |96203 |256 |22857 |
-ROW |96204 |255 |22858 |
-ROW |96205 |258 |22858 |
-ROW |96206 |255 |22859 |
-ROW |96207 |258 |22859 |
-ROW |96208 |258 |22860 |
-ROW |96209 |261 |22860 |
-ROW |96210 |261 |22861 |
-ROW |96211 |256 |22862 |
-ROW |96212 |256 |22863 |
-ROW |96213 |254 |22868 |
-ROW |96214 |254 |22869 |
-ROW |96215 |254 |22870 |
-ROW |96216 |254 |22871 |
-ROW |96217 |254 |22872 |
-ROW |96218 |257 |23075 |
-ROW |96219 |257 |23076 |
-ROW |96220 |298 |22996 |
-ROW |96221 |300 |22997 |
-ROW |96222 |300 |22998 |
-ROW |96223 |295 |22999 |
-ROW |96224 |298 |22999 |
-ROW |96225 |293 |23000 |
-ROW |96226 |299 |23000 |
-ROW |96227 |293 |23001 |
-ROW |96228 |299 |23001 |
-ROW |96229 |293 |23002 |
-ROW |96230 |299 |23002 |
-ROW |96231 |293 |23003 |
-ROW |96232 |299 |23003 |
-ROW |96233 |293 |23004 |
-ROW |96234 |299 |23004 |
-ROW |96235 |293 |23005 |
-ROW |96236 |299 |23005 |
-ROW |96237 |293 |23007 |
-ROW |96238 |299 |23007 |
-ROW |96239 |293 |23011 |
-ROW |96240 |299 |23011 |
-ROW |96241 |293 |23012 |
-ROW |96242 |299 |23012 |
-ROW |96243 |295 |23013 |
-ROW |96244 |298 |23013 |
-ROW |96245 |295 |23014 |
-ROW |96246 |298 |23014 |
-ROW |96247 |296 |23015 |
-ROW |96248 |296 |23016 |
-ROW |96249 |296 |23017 |
-ROW |96250 |295 |23018 |
-ROW |96251 |298 |23018 |
-ROW |96252 |295 |23019 |
-ROW |96253 |298 |23019 |
-ROW |96254 |298 |23020 |
-ROW |96255 |301 |23020 |
-ROW |96256 |301 |23021 |
-ROW |96257 |296 |23022 |
-ROW |96258 |296 |23023 |
-ROW |96259 |297 |23025 |
-ROW |96260 |297 |23026 |
-ROW |96261 |294 |23028 |
-ROW |96262 |294 |23029 |
-ROW |96263 |294 |23030 |
-ROW |96264 |294 |23031 |
-ROW |96265 |294 |23032 |
-ROW |96266 |743 |26925 |
-ROW |96267 |743 |26926 |
-ROW |96268 |741 |26927 |
-ROW |96269 |742 |26928 |
-ROW |96270 |743 |26929 |
-ROW |96271 |743 |26930 |
-ROW |96272 |743 |26931 |
-ROW |96273 |743 |26932 |
-ROW |96274 |745 |26933 |
-ROW |96275 |746 |26934 |
-ROW |96276 |744 |26935 |
-ROW |96277 |744 |26936 |
-ROW |96278 |746 |26937 |
-ROW |96279 |746 |26938 |
-ROW |96280 |746 |26939 |
-ROW |96281 |746 |26940 |
-ROW |96282 |746 |26941 |
-ROW |96283 |746 |26942 |
-ROW |96284 |745 |26943 |
-ROW |96285 |1362 |32207 |
-ROW |96286 |1362 |32208 |
-ROW |96287 |1362 |32209 |
-ROW |96288 |1362 |32210 |
-ROW |96289 |1362 |32211 |
-ROW |96290 |1362 |32212 |
-ROW |96291 |1362 |32213 |
-ROW |96292 |1362 |32214 |
-ROW |96293 |1362 |32215 |
-ROW |96294 |1362 |32216 |
-ROW |96295 |1362 |32217 |
-ROW |96296 |1362 |32218 |
-ROW |96297 |1362 |32219 |
-ROW |96298 |1362 |32220 |
-ROW |96299 |1362 |32221 |
-ROW |96300 |1362 |32222 |
-ROW |96301 |1362 |32223 |
-ROW |96302 |1362 |32224 |
-ROW |96303 |1362 |32225 |
-ROW |96304 |1362 |32226 |
-ROW |96305 |1362 |32227 |
-ROW |96306 |1362 |32228 |
-ROW |96307 |1362 |32229 |
-ROW |96308 |1362 |32230 |
-ROW |96309 |1362 |32231 |
-ROW |96310 |1362 |32232 |
-ROW |96311 |1362 |32233 |
-ROW |96312 |1362 |32234 |
-ROW |96313 |1362 |32235 |
-ROW |96314 |1362 |32236 |
-ROW |96315 |1362 |32237 |
-ROW |96316 |1362 |32238 |
-ROW |96317 |1362 |32239 |
-ROW |96318 |1362 |32240 |
-ROW |96319 |1362 |32241 |
-ROW |96320 |1362 |32242 |
-ROW |96321 |1362 |32243 |
-ROW |96322 |1362 |32244 |
-ROW |96323 |1362 |32245 |
-ROW |96324 |1362 |32246 |
-ROW |96325 |1362 |32247 |
-ROW |96326 |1362 |32248 |
-ROW |96327 |1362 |32249 |
-ROW |96328 |1362 |32250 |
-ROW |96329 |1362 |32251 |
-ROW |96330 |1362 |32252 |
-ROW |96331 |1362 |32253 |
-ROW |96332 |1362 |32254 |
-ROW |96333 |1362 |32255 |
-ROW |96334 |1362 |32256 |
-ROW |96335 |1362 |32257 |
-ROW |96336 |1362 |32258 |
-ROW |96337 |1362 |32259 |
-ROW |96338 |1362 |32260 |
-ROW |96339 |1362 |32261 |
-ROW |96340 |1362 |32262 |
-ROW |96341 |1362 |32263 |
-ROW |96342 |1362 |32264 |
-ROW |96343 |1362 |32265 |
-ROW |96344 |1362 |32266 |
-ROW |96345 |1362 |32267 |
-ROW |96346 |1362 |32268 |
-ROW |96347 |1362 |32269 |
-ROW |96348 |1362 |32270 |
-ROW |96349 |1362 |32271 |
-ROW |96350 |1362 |32272 |
-ROW |96351 |1362 |32273 |
-ROW |96352 |1328 |30821 |
-ROW |96353 |1328 |30822 |
-ROW |96354 |1330 |30823 |
-ROW |96355 |1330 |30824 |
-ROW |96356 |1330 |30825 |
-ROW |96357 |1330 |30826 |
-ROW |96358 |1328 |30827 |
-ROW |96359 |1330 |30828 |
-ROW |96360 |1330 |30829 |
-ROW |96361 |1330 |30830 |
-ROW |96362 |1328 |31054 |
-ROW |96363 |1328 |30831 |
-ROW |96364 |1328 |30832 |
-ROW |96365 |1328 |30833 |
-ROW |96366 |1328 |30834 |
-ROW |96367 |1328 |30835 |
-ROW |96368 |1329 |30836 |
-ROW |96369 |1328 |30837 |
-ROW |96370 |1328 |30838 |
-ROW |96371 |1328 |30839 |
-ROW |96372 |1329 |30840 |
-ROW |96373 |1328 |30841 |
-ROW |96374 |1329 |30842 |
-ROW |96375 |1329 |30843 |
-ROW |96376 |1329 |30844 |
-ROW |96377 |1329 |30845 |
-ROW |96378 |1328 |30846 |
-ROW |96379 |1328 |30847 |
-ROW |96380 |1328 |30848 |
-ROW |96381 |1328 |30849 |
-ROW |96382 |1328 |30850 |
-ROW |96383 |1328 |30851 |
-ROW |96384 |1328 |30852 |
-ROW |96385 |1328 |30853 |
-ROW |96386 |1328 |30854 |
-ROW |96387 |1328 |30855 |
-ROW |96388 |1328 |30856 |
-ROW |96389 |1328 |30857 |
-ROW |96390 |1328 |30858 |
-ROW |96391 |1328 |30859 |
-ROW |96392 |1328 |30860 |
-ROW |96393 |1328 |30861 |
-ROW |96394 |1328 |30862 |
-ROW |96395 |1328 |30863 |
-ROW |96396 |1328 |30864 |
-ROW |96397 |1328 |30865 |
-ROW |96398 |1328 |30866 |
-ROW |96399 |1328 |30867 |
-ROW |96400 |1328 |30868 |
-ROW |96401 |1328 |30869 |
-ROW |96402 |1328 |30870 |
-ROW |96403 |1328 |30871 |
-ROW |96404 |1328 |30872 |
-ROW |96405 |1329 |30873 |
-ROW |96406 |1336 |31055 |
-ROW |96407 |1335 |31056 |
-ROW |96408 |1335 |31057 |
-ROW |96409 |1335 |31058 |
-ROW |96410 |1335 |31626 |
-ROW |96411 |1335 |31627 |
-ROW |96412 |1335 |31628 |
-ROW |96413 |1336 |31059 |
-ROW |96414 |1335 |31060 |
-ROW |96415 |1335 |31061 |
-ROW |96416 |1335 |31062 |
-ROW |96417 |1335 |31063 |
-ROW |96418 |1335 |31064 |
-ROW |96419 |1335 |31065 |
-ROW |96420 |1335 |31066 |
-ROW |96421 |1335 |31067 |
-ROW |96422 |1335 |31068 |
-ROW |96423 |1335 |31069 |
-ROW |96424 |1335 |31070 |
-ROW |96425 |1335 |31071 |
-ROW |96426 |1335 |31072 |
-ROW |96427 |1335 |31073 |
-ROW |96428 |1335 |31074 |
-ROW |96429 |1335 |31075 |
-ROW |96430 |1335 |31076 |
-ROW |96431 |1335 |31077 |
-ROW |96432 |1335 |31078 |
-ROW |96433 |1335 |31079 |
-ROW |96434 |1335 |31080 |
-ROW |96435 |1335 |31081 |
-ROW |96436 |1335 |31082 |
-ROW |96437 |1335 |31083 |
-ROW |96438 |1335 |31084 |
-ROW |96439 |1335 |31085 |
-ROW |96440 |1335 |31086 |
-ROW |96441 |1335 |31087 |
-ROW |96442 |1335 |31088 |
-ROW |96443 |1335 |31089 |
-ROW |96444 |1335 |31090 |
-ROW |96445 |1336 |31091 |
-ROW |96446 |1335 |31092 |
-ROW |96447 |1336 |31093 |
-ROW |96448 |1336 |31094 |
-ROW |96449 |1335 |31095 |
-ROW |96450 |1335 |31096 |
-ROW |96451 |1335 |31097 |
-ROW |96452 |1335 |31098 |
-ROW |96453 |1335 |31099 |
-ROW |96454 |1335 |31100 |
-ROW |96455 |1335 |31101 |
-ROW |96456 |1335 |31102 |
-ROW |96457 |1335 |31103 |
-ROW |96458 |1335 |31104 |
-ROW |96459 |1335 |31105 |
-ROW |96460 |1335 |31106 |
-ROW |96461 |1335 |31107 |
-ROW |96462 |1335 |31108 |
-ROW |96463 |1335 |31109 |
-ROW |96464 |1335 |31110 |
-ROW |96465 |1335 |31111 |
-ROW |96466 |1335 |31112 |
-ROW |96467 |1335 |31113 |
-ROW |96468 |1335 |31114 |
-ROW |96469 |1335 |31115 |
-ROW |96470 |1335 |31116 |
-ROW |96471 |1335 |31117 |
-ROW |96472 |1335 |31118 |
-ROW |96473 |1335 |31119 |
-ROW |96474 |1335 |31120 |
-ROW |96475 |1335 |31121 |
-ROW |96476 |1336 |31128 |
-ROW |96477 |1336 |31129 |
-ROW |96478 |1336 |31130 |
-ROW |96479 |1336 |31131 |
-ROW |96480 |1336 |31132 |
-ROW |96481 |1314 |30431 |
-ROW |96482 |1314 |30432 |
-ROW |96483 |1315 |30433 |
-ROW |96484 |1314 |30434 |
-ROW |96485 |1314 |30435 |
-ROW |96486 |1314 |32546 |
-ROW |96487 |1315 |30436 |
-ROW |96488 |1314 |30437 |
-ROW |96489 |1314 |30438 |
-ROW |96490 |1314 |30439 |
-ROW |96491 |1314 |30440 |
-ROW |96492 |1314 |30441 |
-ROW |96493 |1314 |30442 |
-ROW |96494 |1315 |30443 |
-ROW |96495 |1314 |30444 |
-ROW |96496 |1314 |30445 |
-ROW |96497 |1314 |30446 |
-ROW |96498 |1314 |30447 |
-ROW |96499 |1314 |30449 |
-ROW |96500 |1314 |30450 |
-ROW |96501 |1314 |30451 |
-ROW |96502 |1314 |30452 |
-ROW |96503 |1314 |30453 |
-ROW |96504 |1314 |30454 |
-ROW |96505 |1314 |30455 |
-ROW |96506 |1314 |30456 |
-ROW |96507 |1314 |30457 |
-ROW |96508 |1314 |30458 |
-ROW |96509 |1314 |30459 |
-ROW |96510 |1314 |30460 |
-ROW |96511 |1314 |30461 |
-ROW |96512 |1314 |30462 |
-ROW |96513 |1314 |30463 |
-ROW |96514 |1314 |30464 |
-ROW |96515 |1314 |30465 |
-ROW |96516 |1314 |30466 |
-ROW |96517 |1314 |30470 |
-ROW |96518 |1314 |30471 |
-ROW |96519 |1314 |31168 |
-ROW |96520 |1314 |31169 |
-ROW |96521 |1314 |31170 |
-ROW |96522 |1314 |31171 |
-ROW |96523 |1314 |32547 |
-ROW |96524 |1314 |32548 |
-ROW |96525 |1314 |32549 |
-ROW |96526 |1314 |32550 |
-ROW |96527 |1314 |32551 |
-ROW |96528 |1314 |32552 |
-ROW |96529 |1314 |30474 |
-ROW |96530 |1315 |30475 |
-ROW |96531 |1314 |30476 |
-ROW |96532 |1314 |30477 |
-ROW |96533 |1314 |30478 |
-ROW |96534 |1314 |32554 |
-ROW |96535 |1314 |32555 |
-ROW |96536 |1314 |32556 |
-ROW |96537 |1314 |32557 |
-ROW |96538 |1314 |32558 |
-ROW |96539 |1314 |32559 |
-ROW |96540 |1322 |30637 |
-ROW |96541 |1322 |30638 |
-ROW |96542 |1323 |30639 |
-ROW |96543 |1322 |30640 |
-ROW |96544 |1322 |30641 |
-ROW |96545 |1322 |32560 |
-ROW |96546 |1323 |30642 |
-ROW |96547 |1322 |30643 |
-ROW |96548 |1322 |30644 |
-ROW |96549 |1322 |30645 |
-ROW |96550 |1322 |30646 |
-ROW |96551 |1322 |30647 |
-ROW |96552 |1322 |30648 |
-ROW |96553 |1323 |30649 |
-ROW |96554 |1322 |30650 |
-ROW |96555 |1322 |30651 |
-ROW |96556 |1322 |30652 |
-ROW |96557 |1322 |30653 |
-ROW |96558 |1322 |30655 |
-ROW |96559 |1322 |30656 |
-ROW |96560 |1322 |30657 |
-ROW |96561 |1322 |30658 |
-ROW |96562 |1322 |30659 |
-ROW |96563 |1322 |30660 |
-ROW |96564 |1322 |30661 |
-ROW |96565 |1322 |30662 |
-ROW |96566 |1322 |30663 |
-ROW |96567 |1322 |30664 |
-ROW |96568 |1322 |30665 |
-ROW |96569 |1322 |30666 |
-ROW |96570 |1322 |30667 |
-ROW |96571 |1322 |30668 |
-ROW |96572 |1322 |30669 |
-ROW |96573 |1322 |30670 |
-ROW |96574 |1322 |30671 |
-ROW |96575 |1322 |30672 |
-ROW |96576 |1322 |30676 |
-ROW |96577 |1322 |30677 |
-ROW |96578 |1322 |31172 |
-ROW |96579 |1322 |31173 |
-ROW |96580 |1322 |31174 |
-ROW |96581 |1322 |31175 |
-ROW |96582 |1322 |32561 |
-ROW |96583 |1322 |32562 |
-ROW |96584 |1322 |32563 |
-ROW |96585 |1322 |32564 |
-ROW |96586 |1322 |32565 |
-ROW |96587 |1322 |32566 |
-ROW |96588 |1322 |30680 |
-ROW |96589 |1323 |30681 |
-ROW |96590 |1322 |30682 |
-ROW |96591 |1322 |30683 |
-ROW |96592 |1322 |30684 |
-ROW |96593 |1322 |32568 |
-ROW |96594 |1322 |32569 |
-ROW |96595 |1322 |32570 |
-ROW |96596 |1322 |32571 |
-ROW |96597 |1322 |32572 |
-ROW |96598 |1322 |32573 |
-ROW |96599 |1317 |30479 |
-ROW |96600 |1316 |30480 |
-ROW |96601 |1316 |30481 |
-ROW |96602 |1316 |30482 |
-ROW |96603 |1316 |30483 |
-ROW |96604 |1316 |32574 |
-ROW |96605 |1316 |30484 |
-ROW |96606 |1317 |30485 |
-ROW |96607 |1316 |30486 |
-ROW |96608 |1317 |30487 |
-ROW |96609 |1316 |30488 |
-ROW |96610 |1316 |30489 |
-ROW |96611 |1316 |30490 |
-ROW |96612 |1316 |30491 |
-ROW |96613 |1316 |30492 |
-ROW |96614 |1316 |30493 |
-ROW |96615 |1316 |30494 |
-ROW |96616 |1316 |30495 |
-ROW |96617 |1316 |30496 |
-ROW |96618 |1316 |30497 |
-ROW |96619 |1316 |30499 |
-ROW |96620 |1316 |30500 |
-ROW |96621 |1316 |30503 |
-ROW |96622 |1316 |30504 |
-ROW |96623 |1316 |30505 |
-ROW |96624 |1316 |30506 |
-ROW |96625 |1316 |30507 |
-ROW |96626 |1316 |30508 |
-ROW |96627 |1316 |30509 |
-ROW |96628 |1316 |30510 |
-ROW |96629 |1316 |30512 |
-ROW |96630 |1316 |30513 |
-ROW |96631 |1316 |30514 |
-ROW |96632 |1316 |30515 |
-ROW |96633 |1316 |30516 |
-ROW |96634 |1316 |30517 |
-ROW |96635 |1316 |30518 |
-ROW |96636 |1316 |30519 |
-ROW |96637 |1316 |31176 |
-ROW |96638 |1316 |31177 |
-ROW |96639 |1316 |31178 |
-ROW |96640 |1316 |31179 |
-ROW |96641 |1316 |32575 |
-ROW |96642 |1316 |32576 |
-ROW |96643 |1316 |32577 |
-ROW |96644 |1316 |32578 |
-ROW |96645 |1316 |32579 |
-ROW |96646 |1316 |32580 |
-ROW |96647 |1316 |30522 |
-ROW |96648 |1317 |30523 |
-ROW |96649 |1316 |30524 |
-ROW |96650 |1316 |30525 |
-ROW |96651 |1316 |30526 |
-ROW |96652 |1316 |32582 |
-ROW |96653 |1316 |32583 |
-ROW |96654 |1316 |32584 |
-ROW |96655 |1316 |32585 |
-ROW |96656 |1316 |32586 |
-ROW |96657 |1316 |32587 |
-ROW |96658 |1345 |31629 |
-ROW |96659 |1345 |31630 |
-ROW |96660 |1346 |31631 |
-ROW |96661 |1345 |31632 |
-ROW |96662 |1346 |31633 |
-ROW |96663 |1346 |31634 |
-ROW |96664 |1346 |31635 |
-ROW |96665 |1346 |31636 |
-ROW |96666 |1346 |31637 |
-ROW |96667 |1346 |31638 |
-ROW |96668 |1346 |31639 |
-ROW |96669 |1345 |31640 |
-ROW |96670 |1345 |31641 |
-ROW |96671 |1346 |31642 |
-ROW |96672 |1346 |31643 |
-ROW |96673 |1346 |31644 |
-ROW |96674 |1346 |31645 |
-ROW |96675 |1345 |31646 |
-ROW |96676 |1345 |31647 |
-ROW |96677 |1345 |31648 |
-ROW |96678 |1345 |31649 |
-ROW |96679 |1345 |31650 |
-ROW |96680 |1345 |31651 |
-ROW |96681 |1345 |31652 |
-ROW |96682 |1345 |31653 |
-ROW |96683 |1345 |31654 |
-ROW |96684 |1345 |31655 |
-ROW |96685 |1345 |31656 |
-ROW |96686 |1345 |31657 |
-ROW |96687 |1345 |31658 |
-ROW |96688 |1345 |31659 |
-ROW |96689 |1345 |31660 |
-ROW |96690 |1345 |31661 |
-ROW |96691 |1345 |31662 |
-ROW |96692 |1345 |31663 |
-ROW |96693 |1345 |31664 |
-ROW |96694 |1345 |31665 |
-ROW |96695 |1345 |31666 |
-ROW |96696 |1345 |31667 |
-ROW |96697 |1345 |31668 |
-ROW |96698 |1345 |31669 |
-ROW |96699 |1345 |31670 |
-ROW |96700 |1345 |31671 |
-ROW |96701 |1345 |31672 |
-ROW |96702 |1345 |31673 |
-ROW |96703 |1345 |31674 |
-ROW |96704 |1345 |31675 |
-ROW |96705 |1345 |31676 |
-ROW |96706 |1345 |31677 |
-ROW |96707 |1345 |31678 |
-ROW |96708 |1345 |31679 |
-ROW |96709 |1345 |31680 |
-ROW |96710 |1345 |31681 |
-ROW |96711 |1345 |31682 |
-ROW |96712 |1345 |31683 |
-ROW |96713 |1345 |31684 |
-ROW |96714 |1345 |31685 |
-ROW |96715 |1345 |31686 |
-ROW |96716 |1345 |31687 |
-ROW |96717 |1345 |31688 |
-ROW |96718 |1345 |31689 |
-ROW |96719 |1345 |31690 |
-ROW |96720 |1345 |31691 |
-ROW |96721 |1345 |31692 |
-ROW |96722 |1345 |31693 |
-ROW |96723 |1345 |31694 |
-ROW |96724 |1345 |31695 |
-ROW |96725 |1345 |31696 |
-ROW |96726 |1345 |31697 |
-ROW |96727 |1345 |31698 |
-ROW |96728 |1345 |31699 |
-ROW |96729 |1345 |31700 |
-ROW |96730 |1345 |31701 |
-ROW |96731 |1345 |31702 |
-ROW |96732 |1345 |31703 |
-ROW |96733 |1345 |31704 |
-ROW |96734 |1345 |31705 |
-ROW |96735 |1340 |31361 |
-ROW |96736 |1340 |31362 |
-ROW |96737 |1340 |31363 |
-ROW |96738 |1339 |31364 |
-ROW |96739 |1339 |31365 |
-ROW |96740 |1340 |31367 |
-ROW |96741 |1340 |31368 |
-ROW |96742 |1340 |31369 |
-ROW |96743 |1340 |31727 |
-ROW |96744 |1340 |31728 |
-ROW |96745 |1339 |31370 |
-ROW |96746 |1339 |31398 |
-ROW |96747 |1339 |31407 |
-ROW |96748 |1339 |31425 |
-ROW |96749 |1339 |31426 |
-ROW |96750 |1339 |31427 |
-ROW |96751 |1339 |31428 |
-ROW |96752 |1339 |31729 |
-ROW |96753 |1339 |31730 |
-ROW |96754 |1339 |31731 |
-ROW |96755 |1339 |31732 |
-ROW |96756 |1339 |31733 |
-ROW |96757 |1339 |31734 |
-ROW |96758 |1339 |31735 |
-ROW |96759 |1339 |31736 |
-ROW |96760 |1339 |31737 |
-ROW |96761 |1339 |31738 |
-ROW |96762 |1339 |31739 |
-ROW |96763 |1339 |31740 |
-ROW |96764 |1339 |31741 |
-ROW |96765 |1339 |31742 |
-ROW |96766 |1339 |31743 |
-ROW |96767 |1339 |31744 |
-ROW |96768 |1339 |31745 |
-ROW |96769 |1339 |31746 |
-ROW |96770 |1339 |31747 |
-ROW |96771 |1339 |31748 |
-ROW |96772 |1339 |31749 |
-ROW |96773 |1339 |31750 |
-ROW |96774 |1339 |31751 |
-ROW |96775 |1339 |31752 |
-ROW |96776 |1339 |31753 |
-ROW |96777 |1339 |31754 |
-ROW |96778 |1339 |31755 |
-ROW |96779 |1339 |31756 |
-ROW |96780 |1339 |31757 |
-ROW |96781 |1339 |31758 |
-ROW |96782 |1339 |31759 |
-ROW |96783 |1339 |31760 |
-ROW |96784 |1339 |31761 |
-ROW |96785 |1339 |31762 |
-ROW |96786 |1339 |31763 |
-ROW |96787 |1339 |31764 |
-ROW |96788 |1339 |31765 |
-ROW |96789 |1339 |31766 |
-ROW |96790 |1339 |31767 |
-ROW |96791 |1339 |31768 |
-ROW |96792 |1339 |31769 |
-ROW |96793 |1339 |31770 |
-ROW |96794 |1339 |31771 |
-ROW |96795 |1339 |31772 |
-ROW |96796 |1339 |31773 |
-ROW |96797 |1339 |31774 |
-ROW |96798 |1339 |31775 |
-ROW |96799 |1339 |31776 |
-ROW |96800 |1339 |31777 |
-ROW |96801 |1339 |31778 |
-ROW |96802 |1339 |31779 |
-ROW |96803 |1339 |31780 |
-ROW |96804 |1339 |31781 |
-ROW |96805 |1339 |31782 |
-ROW |96806 |1339 |31783 |
-ROW |96807 |1339 |31784 |
-ROW |96808 |1339 |31785 |
-ROW |96809 |1115 |28671 |
-ROW |96810 |1115 |28672 |
-ROW |96811 |1114 |28673 |
-ROW |96812 |1114 |28674 |
-ROW |96813 |1115 |28675 |
-ROW |96814 |1114 |28676 |
-ROW |96815 |1114 |28677 |
-ROW |96816 |1114 |28678 |
-ROW |96817 |1114 |28679 |
-ROW |96818 |1114 |28680 |
-ROW |96819 |1114 |28681 |
-ROW |96820 |1115 |28682 |
-ROW |96821 |1115 |28683 |
-ROW |96822 |1114 |28684 |
-ROW |96823 |1114 |28685 |
-ROW |96824 |1115 |28686 |
-ROW |96825 |1115 |28687 |
-ROW |96826 |1114 |28688 |
-ROW |96827 |1114 |28689 |
-ROW |96828 |1114 |28690 |
-ROW |96829 |1114 |28691 |
-ROW |96830 |1114 |28692 |
-ROW |96831 |1114 |28693 |
-ROW |96832 |1114 |28694 |
-ROW |96833 |1114 |28695 |
-ROW |96834 |1114 |28696 |
-ROW |96835 |1114 |28697 |
-ROW |96836 |1114 |28698 |
-ROW |96837 |1114 |28699 |
-ROW |96838 |1114 |28700 |
-ROW |96839 |1114 |28701 |
-ROW |96840 |1114 |28702 |
-ROW |96841 |1114 |28703 |
-ROW |96842 |1114 |28704 |
-ROW |96843 |1114 |28705 |
-ROW |96844 |1114 |28706 |
-ROW |96845 |1114 |28707 |
-ROW |96846 |1114 |28708 |
-ROW |96847 |1114 |28709 |
-ROW |96848 |1114 |28710 |
-ROW |96849 |1115 |28713 |
-ROW |96850 |1115 |28714 |
-ROW |96851 |1338 |31180 |
-ROW |96852 |1337 |31181 |
-ROW |96853 |1338 |31182 |
-ROW |96854 |1338 |31183 |
-ROW |96855 |1338 |31185 |
-ROW |96856 |1338 |31186 |
-ROW |96857 |1337 |31188 |
-ROW |96858 |1337 |31189 |
-ROW |96859 |1337 |31190 |
-ROW |96860 |1337 |31191 |
-ROW |96861 |1337 |31192 |
-ROW |96862 |1337 |31193 |
-ROW |96863 |1337 |31194 |
-ROW |96864 |1338 |31195 |
-ROW |96865 |1338 |31196 |
-ROW |96866 |1337 |32592 |
-ROW |96867 |1337 |32593 |
-ROW |96868 |1337 |32594 |
-ROW |96869 |1338 |32595 |
-ROW |96870 |1337 |31197 |
-ROW |96871 |1337 |31199 |
-ROW |96872 |1337 |31200 |
-ROW |96873 |1337 |31201 |
-ROW |96874 |1337 |31202 |
-ROW |96875 |1337 |31203 |
-ROW |96876 |1337 |31204 |
-ROW |96877 |1337 |31205 |
-ROW |96878 |1337 |31206 |
-ROW |96879 |1337 |31207 |
-ROW |96880 |1337 |31208 |
-ROW |96881 |1337 |31209 |
-ROW |96882 |1337 |31210 |
-ROW |96883 |1337 |31211 |
-ROW |96884 |1337 |31212 |
-ROW |96885 |1337 |31213 |
-ROW |96886 |1337 |31215 |
-ROW |96887 |1337 |31216 |
-ROW |96888 |1337 |31217 |
-ROW |96889 |1337 |31218 |
-ROW |96890 |1337 |31219 |
-ROW |96891 |1337 |31220 |
-ROW |96892 |1337 |31221 |
-ROW |96893 |1337 |31222 |
-ROW |96894 |1337 |31223 |
-ROW |96895 |1337 |31224 |
-ROW |96896 |1337 |31225 |
-ROW |96897 |1337 |31226 |
-ROW |96898 |1337 |31227 |
-ROW |96899 |1337 |31228 |
-ROW |96900 |1337 |31229 |
-ROW |96901 |1337 |31230 |
-ROW |96902 |1337 |31231 |
-ROW |96903 |1337 |31232 |
-ROW |96904 |1337 |31233 |
-ROW |96905 |1337 |31234 |
-ROW |96906 |1337 |31235 |
-ROW |96907 |1337 |31236 |
-ROW |96908 |1337 |31237 |
-ROW |96909 |1337 |31238 |
-ROW |96910 |1337 |31239 |
-ROW |96911 |1337 |32596 |
-ROW |96912 |1302 |30273 |
-ROW |96913 |1302 |30274 |
-ROW |96914 |1303 |30275 |
-ROW |96915 |1303 |30276 |
-ROW |96916 |1302 |30277 |
-ROW |96917 |1302 |30278 |
-ROW |96918 |1302 |30279 |
-ROW |96919 |1302 |30280 |
-ROW |96920 |1302 |30281 |
-ROW |96921 |1302 |30282 |
-ROW |96922 |1302 |30283 |
-ROW |96923 |1302 |30284 |
-ROW |96924 |1302 |30285 |
-ROW |96925 |1302 |30286 |
-ROW |96926 |1302 |30287 |
-ROW |96927 |1302 |30288 |
-ROW |96928 |1302 |30289 |
-ROW |96929 |1302 |30290 |
-ROW |96930 |1302 |30291 |
-ROW |96931 |1302 |30292 |
-ROW |96932 |1302 |30293 |
-ROW |96933 |1302 |30294 |
-ROW |96934 |1302 |30295 |
-ROW |96935 |1302 |30296 |
-ROW |96936 |1302 |30297 |
-ROW |96937 |1302 |30298 |
-ROW |96938 |1302 |30299 |
-ROW |96939 |1302 |30300 |
-ROW |96940 |1302 |30301 |
-ROW |96941 |1302 |30302 |
-ROW |96942 |1302 |30303 |
-ROW |96943 |1302 |30304 |
-ROW |96944 |1302 |30305 |
-ROW |96945 |1302 |30306 |
-ROW |96946 |1302 |30307 |
-ROW |96947 |1302 |30308 |
-ROW |96948 |1302 |30309 |
-ROW |96949 |1302 |30310 |
-ROW |96950 |1302 |30311 |
-ROW |96951 |1302 |30312 |
-ROW |96952 |1302 |30313 |
-ROW |96953 |1302 |30314 |
-ROW |96954 |1302 |30315 |
-ROW |96955 |1302 |30316 |
-ROW |96956 |1302 |30317 |
-ROW |96957 |1302 |30318 |
-ROW |96958 |1302 |30319 |
-ROW |96959 |1302 |30320 |
-ROW |96960 |1302 |30321 |
-ROW |96961 |1302 |30322 |
-ROW |96962 |1302 |30323 |
-ROW |96963 |1302 |30324 |
-ROW |96964 |1302 |30325 |
-ROW |96965 |1302 |30326 |
-ROW |96966 |1302 |30327 |
-ROW |96967 |1302 |30328 |
-ROW |96968 |1302 |30329 |
-ROW |96969 |1302 |30330 |
-ROW |96970 |1302 |30331 |
-ROW |96971 |1302 |30332 |
-ROW |96972 |1302 |30333 |
-ROW |96973 |1302 |30334 |
-ROW |96974 |1302 |30335 |
-ROW |96975 |1302 |30336 |
-ROW |96976 |1302 |30344 |
-ROW |96977 |1302 |30345 |
-ROW |96978 |1302 |30346 |
-ROW |96979 |1302 |30347 |
-ROW |96980 |1302 |30351 |
-ROW |96981 |1302 |30352 |
-ROW |96982 |1302 |30353 |
-ROW |96983 |1302 |30354 |
-ROW |96984 |1302 |30355 |
-ROW |96985 |1302 |30356 |
-ROW |96986 |1302 |30357 |
-ROW |96987 |1302 |30358 |
-ROW |96988 |1302 |30359 |
-ROW |96989 |1302 |30360 |
-ROW |96990 |1302 |30361 |
-ROW |96991 |1302 |30362 |
-ROW |96992 |1302 |30363 |
-ROW |96993 |1302 |30364 |
-ROW |96994 |1302 |30365 |
-ROW |96995 |1302 |30366 |
-ROW |96996 |1302 |30367 |
-ROW |96997 |1302 |30368 |
-ROW |96998 |1302 |30369 |
-ROW |96999 |1302 |30370 |
-ROW |97000 |1302 |30371 |
-ROW |97001 |1302 |30372 |
-ROW |97002 |1302 |30373 |
-ROW |97003 |1302 |30374 |
-ROW |97004 |1302 |30375 |
-ROW |97005 |1302 |30376 |
-ROW |97006 |1302 |30377 |
-ROW |97007 |1302 |30378 |
-ROW |97008 |1302 |30379 |
-ROW |97009 |1302 |30380 |
-ROW |97010 |1302 |30381 |
-ROW |97011 |1302 |30382 |
-ROW |97012 |1302 |30383 |
-ROW |97013 |1302 |30384 |
-ROW |97014 |1302 |30385 |
-ROW |97015 |1302 |30386 |
-ROW |97016 |1302 |30387 |
-ROW |97017 |1302 |30388 |
-ROW |97018 |1302 |30389 |
-ROW |97019 |1302 |30390 |
-ROW |97020 |1302 |30391 |
-ROW |97021 |1302 |30392 |
-ROW |97022 |1302 |30393 |
-ROW |97023 |1302 |30394 |
-ROW |97024 |1302 |30395 |
-ROW |97025 |1302 |30397 |
-ROW |97026 |1302 |30398 |
-ROW |97027 |1302 |30399 |
-ROW |97028 |1302 |30400 |
-ROW |97029 |1302 |30401 |
-ROW |97030 |1302 |30402 |
-ROW |97031 |1302 |30403 |
-ROW |97032 |1302 |30404 |
-ROW |97033 |780 |27065 |
-ROW |97034 |780 |27066 |
-ROW |97035 |780 |27067 |
-ROW |97036 |799 |27149 |
-ROW |97037 |799 |27150 |
-ROW |97038 |799 |27151 |
-ROW |97039 |805 |27192 |
-ROW |97040 |805 |27193 |
-ROW |97041 |805 |27194 |
-ROW |97042 |813 |27225 |
-ROW |97043 |813 |27226 |
-ROW |97044 |813 |27227 |
-ROW |97045 |822 |27261 |
-ROW |97046 |822 |27262 |
-ROW |97047 |822 |27263 |
-ROW |97048 |825 |27282 |
-ROW |97049 |825 |27283 |
-ROW |97050 |825 |27284 |
-ROW |97051 |842 |27333 |
-ROW |97052 |842 |27334 |
-ROW |97053 |842 |27335 |
-ROW |97054 |847 |27365 |
-ROW |97055 |847 |27366 |
-ROW |97056 |847 |27367 |
-ROW |97057 |876 |27462 |
-ROW |97058 |876 |27463 |
-ROW |97059 |876 |27464 |
-ROW |97060 |885 |27496 |
-ROW |97061 |885 |27497 |
-ROW |97062 |885 |27498 |
-ROW |97063 |894 |27532 |
-ROW |97064 |894 |27533 |
-ROW |97065 |894 |27534 |
-ROW |97066 |903 |27568 |
-ROW |97067 |903 |27569 |
-ROW |97068 |903 |27570 |
-ROW |97069 |915 |27631 |
-ROW |97070 |915 |27632 |
-ROW |97071 |915 |27633 |
-ROW |97072 |918 |27654 |
-ROW |97073 |918 |27655 |
-ROW |97074 |918 |27656 |
-ROW |97075 |936 |27734 |
-ROW |97076 |936 |27735 |
-ROW |97077 |936 |27736 |
-ROW |97078 |944 |27766 |
-ROW |97079 |944 |27767 |
-ROW |97080 |944 |27768 |
-ROW |97081 |951 |27800 |
-ROW |97082 |951 |27801 |
-ROW |97083 |951 |27802 |
-ROW |97084 |971 |27882 |
-ROW |97085 |971 |27883 |
-ROW |97086 |971 |27884 |
-ROW |97087 |979 |27919 |
-ROW |97088 |979 |27920 |
-ROW |97089 |979 |27921 |
-ROW |97090 |988 |27956 |
-ROW |97091 |988 |27957 |
-ROW |97092 |988 |27958 |
-ROW |97093 |994 |27986 |
-ROW |97094 |994 |27987 |
-ROW |97095 |994 |27988 |
-ROW |97096 |1000 |28015 |
-ROW |97097 |1000 |28016 |
-ROW |97098 |1000 |28017 |
-ROW |97099 |1030 |28130 |
-ROW |97100 |1030 |28131 |
-ROW |97101 |1030 |28132 |
-ROW |97102 |1043 |28185 |
-ROW |97103 |1043 |28186 |
-ROW |97104 |1043 |28187 |
-ROW |97105 |1055 |28233 |
-ROW |97106 |1055 |28234 |
-ROW |97107 |1055 |28235 |
-ROW |97108 |1060 |28282 |
-ROW |97109 |1060 |28283 |
-ROW |97110 |1060 |28284 |
-ROW |97111 |1070 |28330 |
-ROW |97112 |1070 |28331 |
-ROW |97113 |1070 |28332 |
-ROW |97114 |1079 |28377 |
-ROW |97115 |1079 |28378 |
-ROW |97116 |1079 |28379 |
-ROW |97117 |1095 |28454 |
-ROW |97118 |1095 |28455 |
-ROW |97119 |1095 |28456 |
-ROW |97120 |1102 |28482 |
-ROW |97121 |1102 |28483 |
-ROW |97122 |1102 |28484 |
-ROW |97123 |1127 |28957 |
-ROW |97124 |1127 |28958 |
-ROW |97125 |1127 |28959 |
-ROW |97126 |1136 |29050 |
-ROW |97127 |1136 |29051 |
-ROW |97128 |1136 |29052 |
-ROW |97129 |1271 |30046 |
-ROW |97130 |1271 |30047 |
-ROW |97131 |1271 |30048 |
-ROW |97132 |1414 |32601 |
-ROW |97133 |1414 |32602 |
-ROW |97134 |1414 |32603 |
-ROW |97135 |800 |27152 |
-ROW |97136 |799 |27154 |
-ROW |97137 |800 |27157 |
-ROW |97138 |799 |29844 |
-ROW |97139 |800 |29845 |
-ROW |97140 |800 |29846 |
-ROW |97141 |800 |29847 |
-ROW |97142 |800 |29848 |
-ROW |97143 |804 |27195 |
-ROW |97144 |804 |27199 |
-ROW |97145 |805 |27202 |
-ROW |97146 |812 |27228 |
-ROW |97147 |812 |27232 |
-ROW |97148 |813 |27235 |
-ROW |97149 |821 |27264 |
-ROW |97150 |821 |27268 |
-ROW |97151 |822 |27271 |
-ROW |97152 |824 |27285 |
-ROW |97153 |824 |27289 |
-ROW |97154 |825 |27292 |
-ROW |97155 |841 |27336 |
-ROW |97156 |841 |27340 |
-ROW |97157 |842 |27343 |
-ROW |97158 |846 |27368 |
-ROW |97159 |846 |27372 |
-ROW |97160 |847 |27375 |
-ROW |97161 |875 |27465 |
-ROW |97162 |875 |27469 |
-ROW |97163 |876 |27472 |
-ROW |97164 |884 |27499 |
-ROW |97165 |884 |27503 |
-ROW |97166 |885 |27506 |
-ROW |97167 |893 |27535 |
-ROW |97168 |893 |27539 |
-ROW |97169 |894 |27542 |
-ROW |97170 |902 |27571 |
-ROW |97171 |902 |27575 |
-ROW |97172 |903 |27578 |
-ROW |97173 |914 |27634 |
-ROW |97174 |914 |27638 |
-ROW |97175 |915 |27641 |
-ROW |97176 |917 |27657 |
-ROW |97177 |917 |27661 |
-ROW |97178 |918 |27664 |
-ROW |97179 |935 |27737 |
-ROW |97180 |935 |27741 |
-ROW |97181 |936 |27744 |
-ROW |97182 |943 |27769 |
-ROW |97183 |943 |27773 |
-ROW |97184 |944 |27776 |
-ROW |97185 |950 |27803 |
-ROW |97186 |950 |27807 |
-ROW |97187 |951 |27810 |
-ROW |97188 |970 |27885 |
-ROW |97189 |970 |27889 |
-ROW |97190 |971 |27892 |
-ROW |97191 |978 |27922 |
-ROW |97192 |978 |27926 |
-ROW |97193 |979 |27929 |
-ROW |97194 |987 |27959 |
-ROW |97195 |987 |27963 |
-ROW |97196 |988 |27966 |
-ROW |97197 |993 |27989 |
-ROW |97198 |993 |27993 |
-ROW |97199 |994 |27996 |
-ROW |97200 |999 |28018 |
-ROW |97201 |999 |28022 |
-ROW |97202 |1000 |28025 |
-ROW |97203 |1029 |28133 |
-ROW |97204 |1029 |28137 |
-ROW |97205 |1030 |28140 |
-ROW |97206 |1042 |28188 |
-ROW |97207 |1042 |28192 |
-ROW |97208 |1043 |28195 |
-ROW |97209 |1054 |28236 |
-ROW |97210 |1054 |28240 |
-ROW |97211 |1055 |28243 |
-ROW |97212 |1059 |28285 |
-ROW |97213 |1059 |28289 |
-ROW |97214 |1060 |28292 |
-ROW |97215 |1069 |28333 |
-ROW |97216 |1069 |28337 |
-ROW |97217 |1070 |28340 |
-ROW |97218 |1078 |28380 |
-ROW |97219 |1078 |28384 |
-ROW |97220 |1079 |28387 |
-ROW |97221 |1094 |28457 |
-ROW |97222 |1094 |28461 |
-ROW |97223 |1095 |28464 |
-ROW |97224 |1101 |28485 |
-ROW |97225 |1101 |28489 |
-ROW |97226 |1102 |28492 |
-ROW |97227 |1126 |28960 |
-ROW |97228 |1126 |28964 |
-ROW |97229 |1127 |28967 |
-ROW |97230 |1135 |29053 |
-ROW |97231 |1135 |29057 |
-ROW |97232 |1136 |29060 |
-ROW |97233 |1000 |29834 |
-ROW |97234 |999 |29835 |
-ROW |97235 |999 |29836 |
-ROW |97236 |999 |29837 |
-ROW |97237 |999 |29838 |
-ROW |97238 |805 |29849 |
-ROW |97239 |804 |29850 |
-ROW |97240 |804 |29851 |
-ROW |97241 |804 |29852 |
-ROW |97242 |804 |29853 |
-ROW |97243 |813 |29854 |
-ROW |97244 |812 |29855 |
-ROW |97245 |812 |29856 |
-ROW |97246 |812 |29857 |
-ROW |97247 |812 |29858 |
-ROW |97248 |822 |29859 |
-ROW |97249 |821 |29860 |
-ROW |97250 |821 |29861 |
-ROW |97251 |821 |29862 |
-ROW |97252 |821 |29863 |
-ROW |97253 |825 |29864 |
-ROW |97254 |824 |29865 |
-ROW |97255 |824 |29866 |
-ROW |97256 |824 |29867 |
-ROW |97257 |824 |29868 |
-ROW |97258 |842 |29869 |
-ROW |97259 |841 |29870 |
-ROW |97260 |841 |29871 |
-ROW |97261 |841 |29872 |
-ROW |97262 |841 |29873 |
-ROW |97263 |847 |29874 |
-ROW |97264 |846 |29875 |
-ROW |97265 |846 |29876 |
-ROW |97266 |846 |29877 |
-ROW |97267 |846 |29878 |
-ROW |97268 |876 |29879 |
-ROW |97269 |875 |29880 |
-ROW |97270 |875 |29881 |
-ROW |97271 |875 |29882 |
-ROW |97272 |875 |29883 |
-ROW |97273 |885 |29884 |
-ROW |97274 |884 |29885 |
-ROW |97275 |884 |29886 |
-ROW |97276 |884 |29887 |
-ROW |97277 |884 |29888 |
-ROW |97278 |894 |29889 |
-ROW |97279 |893 |29890 |
-ROW |97280 |893 |29891 |
-ROW |97281 |893 |29892 |
-ROW |97282 |893 |29893 |
-ROW |97283 |903 |29894 |
-ROW |97284 |902 |29895 |
-ROW |97285 |902 |29896 |
-ROW |97286 |902 |29897 |
-ROW |97287 |902 |29898 |
-ROW |97288 |915 |29899 |
-ROW |97289 |914 |29900 |
-ROW |97290 |914 |29901 |
-ROW |97291 |914 |29902 |
-ROW |97292 |914 |29903 |
-ROW |97293 |918 |29904 |
-ROW |97294 |917 |29905 |
-ROW |97295 |917 |29906 |
-ROW |97296 |917 |29907 |
-ROW |97297 |917 |29908 |
-ROW |97298 |936 |29909 |
-ROW |97299 |935 |29910 |
-ROW |97300 |935 |29911 |
-ROW |97301 |935 |29912 |
-ROW |97302 |935 |29913 |
-ROW |97303 |944 |29914 |
-ROW |97304 |943 |29915 |
-ROW |97305 |943 |29916 |
-ROW |97306 |943 |29917 |
-ROW |97307 |943 |29918 |
-ROW |97308 |951 |29919 |
-ROW |97309 |950 |29920 |
-ROW |97310 |950 |29921 |
-ROW |97311 |950 |29922 |
-ROW |97312 |950 |29923 |
-ROW |97313 |971 |29924 |
-ROW |97314 |970 |29925 |
-ROW |97315 |970 |29926 |
-ROW |97316 |970 |29927 |
-ROW |97317 |970 |29928 |
-ROW |97318 |979 |29929 |
-ROW |97319 |978 |29930 |
-ROW |97320 |978 |29931 |
-ROW |97321 |978 |29932 |
-ROW |97322 |978 |29933 |
-ROW |97323 |988 |29934 |
-ROW |97324 |987 |29935 |
-ROW |97325 |987 |29936 |
-ROW |97326 |987 |29937 |
-ROW |97327 |987 |29938 |
-ROW |97328 |994 |29939 |
-ROW |97329 |993 |29940 |
-ROW |97330 |993 |29941 |
-ROW |97331 |993 |29942 |
-ROW |97332 |993 |29943 |
-ROW |97333 |1030 |29944 |
-ROW |97334 |1029 |29945 |
-ROW |97335 |1029 |29946 |
-ROW |97336 |1029 |29947 |
-ROW |97337 |1029 |29948 |
-ROW |97338 |1043 |29949 |
-ROW |97339 |1042 |29950 |
-ROW |97340 |1042 |29951 |
-ROW |97341 |1042 |29952 |
-ROW |97342 |1042 |29953 |
-ROW |97343 |1055 |29954 |
-ROW |97344 |1054 |29955 |
-ROW |97345 |1054 |29956 |
-ROW |97346 |1054 |29957 |
-ROW |97347 |1054 |29958 |
-ROW |97348 |1060 |29959 |
-ROW |97349 |1059 |29960 |
-ROW |97350 |1059 |29961 |
-ROW |97351 |1059 |29962 |
-ROW |97352 |1059 |29963 |
-ROW |97353 |1070 |29964 |
-ROW |97354 |1069 |29965 |
-ROW |97355 |1069 |29966 |
-ROW |97356 |1069 |29967 |
-ROW |97357 |1069 |29968 |
-ROW |97358 |1079 |29969 |
-ROW |97359 |1078 |29970 |
-ROW |97360 |1078 |29971 |
-ROW |97361 |1078 |29972 |
-ROW |97362 |1078 |29973 |
-ROW |97363 |1095 |29974 |
-ROW |97364 |1094 |29975 |
-ROW |97365 |1094 |29976 |
-ROW |97366 |1094 |29977 |
-ROW |97367 |1094 |29978 |
-ROW |97368 |1102 |29979 |
-ROW |97369 |1101 |29980 |
-ROW |97370 |1101 |29981 |
-ROW |97371 |1101 |29982 |
-ROW |97372 |1101 |29983 |
-ROW |97373 |1127 |29984 |
-ROW |97374 |1126 |29985 |
-ROW |97375 |1126 |29986 |
-ROW |97376 |1126 |29987 |
-ROW |97377 |1126 |29988 |
-ROW |97378 |1136 |29989 |
-ROW |97379 |1135 |29990 |
-ROW |97380 |1135 |29991 |
-ROW |97381 |1135 |29992 |
-ROW |97382 |1135 |29993 |
-ROW |97383 |1270 |30049 |
-ROW |97384 |1270 |30050 |
-ROW |97385 |1270 |30051 |
-ROW |97386 |1270 |30052 |
-ROW |97387 |1270 |30053 |
-ROW |97388 |1270 |30054 |
-ROW |97389 |1271 |30055 |
-ROW |97390 |1271 |30056 |
-ROW |97391 |1413 |32604 |
-ROW |97392 |1413 |32605 |
-ROW |97393 |1413 |32606 |
-ROW |97394 |1413 |32607 |
-ROW |97395 |1413 |32608 |
-ROW |97396 |1413 |32609 |
-ROW |97397 |1414 |32610 |
-ROW |97398 |1414 |32611 |
-ROW |97399 |1283 |30142 |
-ROW |97400 |1286 |30143 |
-ROW |97401 |1289 |30144 |
-ROW |97402 |1292 |30145 |
-ROW |97403 |1295 |30146 |
-ROW |97404 |1284 |30157 |
-ROW |97405 |1284 |30158 |
-ROW |97406 |1284 |30159 |
-ROW |97407 |1287 |30163 |
-ROW |97408 |1287 |30164 |
-ROW |97409 |1287 |30165 |
-ROW |97410 |1290 |30169 |
-ROW |97411 |1290 |30170 |
-ROW |97412 |1290 |30171 |
-ROW |97413 |1293 |30175 |
-ROW |97414 |1293 |30176 |
-ROW |97415 |1293 |30177 |
-ROW |97416 |1296 |30181 |
-ROW |97417 |1296 |30182 |
-ROW |97418 |1296 |30183 |
-ROW |97419 |1419 |32741 |
-ROW |97420 |1420 |32753 |
-ROW |97421 |1221 |22231 |
-ROW |97422 |1221 |22232 |
-ROW |97423 |1221 |23318 |
-ROW |97424 |1222 |29544 |
-ROW |97425 |1223 |29545 |
-ROW |97426 |1223 |29546 |
-ROW |97427 |1224 |29547 |
-ROW |97428 |1225 |10020 |
-ROW |97429 |1225 |10059 |
-ROW |97430 |1226 |22833 |
-ROW |97431 |1226 |22834 |
-ROW |97432 |1228 |22873 |
-ROW |97433 |1228 |22874 |
-ROW |97434 |1230 |22913 |
-ROW |97435 |1230 |22914 |
-ROW |97436 |1232 |22953 |
-ROW |97437 |1232 |22954 |
-ROW |97438 |1234 |22993 |
-ROW |97439 |1234 |22994 |
-ROW |97440 |1236 |23033 |
-ROW |97441 |1236 |23034 |
-ROW |97442 |1238 |23160 |
-ROW |97443 |1238 |23161 |
-ROW |97444 |1225 |23319 |
-ROW |97445 |1226 |23320 |
-ROW |97446 |1228 |23321 |
-ROW |97447 |1230 |23322 |
-ROW |97448 |1232 |23323 |
-ROW |97449 |1234 |23324 |
-ROW |97450 |1236 |23325 |
-ROW |97451 |1238 |23326 |
-ROW |97452 |1161 |29548 |
-ROW |97453 |1227 |29549 |
-ROW |97454 |1229 |29550 |
-ROW |97455 |1231 |29551 |
-ROW |97456 |1233 |29552 |
-ROW |97457 |1235 |29553 |
-ROW |97458 |1237 |29554 |
-ROW |97459 |1219 |29555 |
-ROW |97460 |1241 |29558 |
-ROW |97461 |1242 |29559 |
-ROW |97462 |1241 |29560 |
-ROW |97463 |1269 |29995 |
-ROW |97464 |1192 |29996 |
-ROW |97465 |1269 |29997 |
-ROW |97466 |1240 |23287 |
-ROW |97467 |1240 |23288 |
-ROW |97468 |1240 |23327 |
-ROW |97469 |1171 |29557 |
-ROW |97470 |810 |27203 |
-ROW |97471 |807 |27207 |
-ROW |97472 |806 |27208 |
-ROW |97473 |810 |30086 |
-ROW |97474 |807 |30087 |
-ROW |97475 |807 |30088 |
-ROW |97476 |807 |30089 |
-ROW |97477 |808 |27212 |
-ROW |97478 |809 |27213 |
-ROW |97479 |810 |27214 |
-ROW |97480 |1279 |30091 |
-ROW |97481 |1279 |30092 |
-ROW |97482 |1364 |28305 |
-ROW |97483 |1068 |28323 |
-ROW |97484 |1068 |28324 |
-ROW |97485 |1062 |28325 |
-ROW |97486 |1062 |28326 |
-ROW |97487 |1064 |28327 |
-ROW |97488 |1064 |28328 |
-ROW |97489 |1066 |28329 |
-ROW |97490 |1363 |32307 |
-ROW |97491 |819 |27236 |
-ROW |97492 |819 |27237 |
-ROW |97493 |813 |27238 |
-ROW |97494 |814 |27240 |
-ROW |97495 |815 |30093 |
-ROW |97496 |816 |27246 |
-ROW |97497 |816 |27247 |
-ROW |97498 |817 |27248 |
-ROW |97499 |818 |27249 |
-ROW |97500 |818 |27250 |
-ROW |97501 |826 |27294 |
-ROW |97502 |831 |27295 |
-ROW |97503 |831 |27296 |
-ROW |97504 |835 |27297 |
-ROW |97505 |827 |30094 |
-ROW |97506 |836 |27299 |
-ROW |97507 |838 |27301 |
-ROW |97508 |837 |30095 |
-ROW |97509 |839 |30096 |
-ROW |97510 |829 |27312 |
-ROW |97511 |830 |27313 |
-ROW |97512 |828 |27314 |
-ROW |97513 |828 |27315 |
-ROW |97514 |833 |27316 |
-ROW |97515 |834 |27317 |
-ROW |97516 |832 |27318 |
-ROW |97517 |835 |27319 |
-ROW |97518 |835 |27320 |
-ROW |97519 |851 |27376 |
-ROW |97520 |852 |27378 |
-ROW |97521 |852 |27379 |
-ROW |97522 |852 |30097 |
-ROW |97523 |869 |27380 |
-ROW |97524 |870 |27382 |
-ROW |97525 |870 |27383 |
-ROW |97526 |858 |27385 |
-ROW |97527 |858 |27386 |
-ROW |97528 |1048 |28209 |
-ROW |97529 |1048 |28210 |
-ROW |97530 |858 |30098 |
-ROW |97531 |870 |30099 |
-ROW |97532 |1048 |30100 |
-ROW |97533 |848 |27415 |
-ROW |97534 |848 |27416 |
-ROW |97535 |849 |27417 |
-ROW |97536 |852 |27419 |
-ROW |97537 |853 |27420 |
-ROW |97538 |853 |27421 |
-ROW |97539 |854 |27422 |
-ROW |97540 |855 |27423 |
-ROW |97541 |1056 |28246 |
-ROW |97542 |848 |30101 |
-ROW |97543 |856 |27425 |
-ROW |97544 |856 |27426 |
-ROW |97545 |857 |27427 |
-ROW |97546 |858 |27428 |
-ROW |97547 |859 |27429 |
-ROW |97548 |859 |27430 |
-ROW |97549 |860 |27431 |
-ROW |97550 |861 |27432 |
-ROW |97551 |868 |27443 |
-ROW |97552 |868 |27444 |
-ROW |97553 |870 |27445 |
-ROW |97554 |871 |27446 |
-ROW |97555 |871 |27447 |
-ROW |97556 |872 |27448 |
-ROW |97557 |873 |27449 |
-ROW |97558 |1048 |28208 |
-ROW |97559 |1049 |28215 |
-ROW |97560 |1050 |28216 |
-ROW |97561 |1051 |28217 |
-ROW |97562 |1051 |28218 |
-ROW |97563 |1052 |28220 |
-ROW |97564 |1052 |28222 |
-ROW |97565 |1057 |28247 |
-ROW |97566 |856 |30102 |
-ROW |97567 |868 |30103 |
-ROW |97568 |1052 |30104 |
-ROW |97569 |877 |27478 |
-ROW |97570 |880 |27479 |
-ROW |97571 |881 |27480 |
-ROW |97572 |882 |27481 |
-ROW |97573 |882 |27482 |
-ROW |97574 |882 |27483 |
-ROW |97575 |882 |27484 |
-ROW |97576 |879 |27485 |
-ROW |97577 |878 |30105 |
-ROW |97578 |891 |27508 |
-ROW |97579 |891 |27509 |
-ROW |97580 |891 |27510 |
-ROW |97581 |886 |27511 |
-ROW |97582 |891 |30106 |
-ROW |97583 |888 |27517 |
-ROW |97584 |890 |27518 |
-ROW |97585 |889 |27519 |
-ROW |97586 |887 |30107 |
-ROW |97587 |900 |27543 |
-ROW |97588 |900 |27544 |
-ROW |97589 |900 |27545 |
-ROW |97590 |900 |27546 |
-ROW |97591 |895 |27547 |
-ROW |97592 |897 |27553 |
-ROW |97593 |899 |27554 |
-ROW |97594 |898 |27555 |
-ROW |97595 |896 |30108 |
-ROW |97596 |909 |27579 |
-ROW |97597 |909 |27580 |
-ROW |97598 |909 |27582 |
-ROW |97599 |909 |27583 |
-ROW |97600 |906 |27584 |
-ROW |97601 |906 |27585 |
-ROW |97602 |904 |27586 |
-ROW |97603 |909 |30109 |
-ROW |97604 |905 |27591 |
-ROW |97605 |907 |27593 |
-ROW |97606 |908 |27594 |
-ROW |97607 |908 |27595 |
-ROW |97608 |905 |30110 |
-ROW |97609 |905 |30111 |
-ROW |97610 |919 |27671 |
-ROW |97611 |921 |27672 |
-ROW |97612 |922 |27673 |
-ROW |97613 |923 |27674 |
-ROW |97614 |924 |27675 |
-ROW |97615 |924 |27676 |
-ROW |97616 |924 |27677 |
-ROW |97617 |924 |27678 |
-ROW |97618 |924 |27679 |
-ROW |97619 |920 |30112 |
-ROW |97620 |1036 |28141 |
-ROW |97621 |1036 |28142 |
-ROW |97622 |1031 |28143 |
-ROW |97623 |1033 |28150 |
-ROW |97624 |1032 |28153 |
-ROW |97625 |1034 |28154 |
-ROW |97626 |1035 |28155 |
-ROW |97627 |1033 |28156 |
-ROW |97628 |1036 |28157 |
-ROW |97629 |1036 |28158 |
-ROW |97630 |1032 |30113 |
-ROW |97631 |1032 |30114 |
-ROW |97632 |1032 |30115 |
-ROW |97633 |941 |27748 |
-ROW |97634 |941 |27749 |
-ROW |97635 |941 |27750 |
-ROW |97636 |939 |27751 |
-ROW |97637 |937 |27753 |
-ROW |97638 |941 |27754 |
-ROW |97639 |940 |27755 |
-ROW |97640 |938 |30116 |
-ROW |97641 |948 |27777 |
-ROW |97642 |948 |27778 |
-ROW |97643 |945 |27783 |
-ROW |97644 |945 |27784 |
-ROW |97645 |948 |27785 |
-ROW |97646 |946 |27786 |
-ROW |97647 |947 |27787 |
-ROW |97648 |957 |27812 |
-ROW |97649 |957 |27813 |
-ROW |97650 |951 |27814 |
-ROW |97651 |957 |30117 |
-ROW |97652 |954 |27821 |
-ROW |97653 |956 |27822 |
-ROW |97654 |955 |27823 |
-ROW |97655 |952 |28894 |
-ROW |97656 |953 |30118 |
-ROW |97657 |1044 |28200 |
-ROW |97658 |1044 |28201 |
-ROW |97659 |1045 |28202 |
-ROW |97660 |1045 |28203 |
-ROW |97661 |1047 |28204 |
-ROW |97662 |1047 |28205 |
-ROW |97663 |1046 |28206 |
-ROW |97664 |976 |27893 |
-ROW |97665 |976 |27894 |
-ROW |97666 |976 |27895 |
-ROW |97667 |973 |27898 |
-ROW |97668 |973 |27900 |
-ROW |97669 |976 |30119 |
-ROW |97670 |973 |30120 |
-ROW |97671 |972 |27904 |
-ROW |97672 |974 |27905 |
-ROW |97673 |975 |27906 |
-ROW |97674 |975 |27907 |
-ROW |97675 |975 |27908 |
-ROW |97676 |974 |31790 |
-ROW |97677 |1365 |32308 |
-ROW |97678 |1368 |32309 |
-ROW |97679 |1370 |32310 |
-ROW |97680 |1370 |32311 |
-ROW |97681 |1366 |32312 |
-ROW |97682 |1369 |32313 |
-ROW |97683 |1369 |32314 |
-ROW |97684 |1369 |32315 |
-ROW |97685 |1369 |32316 |
-ROW |97686 |1368 |32317 |
-ROW |97687 |1368 |32318 |
-ROW |97688 |1365 |32319 |
-ROW |97689 |1367 |32320 |
-ROW |97690 |1367 |32321 |
-ROW |97691 |1367 |32322 |
-ROW |97692 |1366 |32323 |
-ROW |97693 |1366 |32324 |
-ROW |97694 |1371 |32325 |
-ROW |97695 |1365 |32326 |
-ROW |97696 |1365 |32327 |
-ROW |97697 |1370 |32328 |
-ROW |97698 |1366 |32330 |
-ROW |97699 |1372 |32331 |
-ROW |97700 |1376 |32332 |
-ROW |97701 |1377 |32333 |
-ROW |97702 |1377 |32334 |
-ROW |97703 |1373 |32335 |
-ROW |97704 |1376 |32336 |
-ROW |97705 |1376 |32337 |
-ROW |97706 |1376 |32338 |
-ROW |97707 |1375 |32339 |
-ROW |97708 |1378 |32340 |
-ROW |97709 |1375 |32341 |
-ROW |97710 |1375 |32342 |
-ROW |97711 |1374 |32343 |
-ROW |97712 |1374 |32344 |
-ROW |97713 |1374 |32345 |
-ROW |97714 |1373 |32346 |
-ROW |97715 |1373 |32347 |
-ROW |97716 |1377 |32348 |
-ROW |97717 |1373 |32350 |
-ROW |97718 |1379 |32351 |
-ROW |97719 |1382 |32352 |
-ROW |97720 |1384 |32353 |
-ROW |97721 |1384 |32354 |
-ROW |97722 |1380 |32355 |
-ROW |97723 |1383 |32356 |
-ROW |97724 |1383 |32357 |
-ROW |97725 |1383 |32358 |
-ROW |97726 |1383 |32359 |
-ROW |97727 |1382 |32360 |
-ROW |97728 |1382 |32361 |
-ROW |97729 |1379 |32362 |
-ROW |97730 |1381 |32363 |
-ROW |97731 |1381 |32364 |
-ROW |97732 |1381 |32365 |
-ROW |97733 |1380 |32366 |
-ROW |97734 |1380 |32367 |
-ROW |97735 |1385 |32368 |
-ROW |97736 |1379 |32369 |
-ROW |97737 |1379 |32370 |
-ROW |97738 |1384 |32371 |
-ROW |97739 |1380 |32373 |
-ROW |97740 |1390 |32374 |
-ROW |97741 |1387 |32375 |
-ROW |97742 |1387 |32376 |
-ROW |97743 |1388 |32377 |
-ROW |97744 |1388 |32378 |
-ROW |97745 |1388 |32379 |
-ROW |97746 |1389 |32380 |
-ROW |97747 |1386 |32382 |
-ROW |97748 |1391 |32383 |
-ROW |97749 |1393 |32384 |
-ROW |97750 |1395 |32385 |
-ROW |97751 |1392 |32386 |
-ROW |97752 |1394 |32387 |
-ROW |97753 |1394 |32388 |
-ROW |97754 |1394 |32389 |
-ROW |97755 |1393 |32390 |
-ROW |97756 |1392 |32391 |
-ROW |97757 |1391 |32392 |
-ROW |97758 |1392 |32393 |
-ROW |97759 |1392 |32394 |
-ROW |97760 |1396 |32395 |
-ROW |97761 |1391 |32396 |
-ROW |97762 |1391 |32397 |
-ROW |97763 |1391 |32398 |
-ROW |97764 |1395 |32399 |
-ROW |97765 |1392 |32401 |
-ROW |97766 |1397 |32402 |
-ROW |97767 |1399 |32403 |
-ROW |97768 |1401 |32404 |
-ROW |97769 |1398 |32405 |
-ROW |97770 |1400 |32406 |
-ROW |97771 |1400 |32407 |
-ROW |97772 |1400 |32408 |
-ROW |97773 |1399 |32409 |
-ROW |97774 |1398 |32410 |
-ROW |97775 |1397 |32411 |
-ROW |97776 |1398 |32412 |
-ROW |97777 |1398 |32413 |
-ROW |97778 |1402 |32414 |
-ROW |97779 |1397 |32415 |
-ROW |97780 |1397 |32416 |
-ROW |97781 |1397 |32417 |
-ROW |97782 |1401 |32418 |
-ROW |97783 |1398 |32420 |
-ROW |97784 |1409 |32421 |
-ROW |97785 |1407 |32422 |
-ROW |97786 |1405 |32423 |
-ROW |97787 |1405 |32424 |
-ROW |97788 |1407 |32425 |
-ROW |97789 |1407 |32426 |
-ROW |97790 |1407 |32427 |
-ROW |97791 |1408 |32428 |
-ROW |97792 |1408 |32429 |
-ROW |97793 |1404 |32436 |
-ROW |97794 |1404 |32437 |
-ROW |97795 |1404 |32438 |
-ROW |97796 |1403 |32439 |
-ROW |97797 |1404 |32440 |
-ROW |97798 |1406 |32441 |
-ROW |97799 |1406 |32442 |
-ROW |97800 |1406 |32443 |
-ROW |97801 |1406 |32444 |
-ROW |97802 |985 |27930 |
-ROW |97803 |985 |27931 |
-ROW |97804 |981 |27935 |
-ROW |97805 |980 |27936 |
-ROW |97806 |985 |30121 |
-ROW |97807 |981 |30122 |
-ROW |97808 |981 |30123 |
-ROW |97809 |982 |27940 |
-ROW |97810 |982 |27941 |
-ROW |97811 |984 |27942 |
-ROW |97812 |983 |27943 |
-ROW |97813 |991 |27967 |
-ROW |97814 |991 |27968 |
-ROW |97815 |991 |27970 |
-ROW |97816 |991 |27971 |
-ROW |97817 |990 |27972 |
-ROW |97818 |990 |27973 |
-ROW |97819 |989 |27975 |
-ROW |97820 |1282 |30124 |
-ROW |97821 |991 |30125 |
-ROW |97822 |990 |30126 |
-ROW |97823 |1280 |30129 |
-ROW |97824 |1281 |30130 |
-ROW |97825 |997 |27997 |
-ROW |97826 |997 |27998 |
-ROW |97827 |997 |27999 |
-ROW |97828 |997 |28000 |
-ROW |97829 |995 |28003 |
-ROW |97830 |996 |30131 |
-ROW |97831 |1003 |28026 |
-ROW |97832 |1003 |28027 |
-ROW |97833 |1001 |28031 |
-ROW |97834 |1002 |30132 |
-ROW |97835 |1002 |30133 |
-ROW |97836 |1002 |30134 |
-ROW |97837 |1002 |30135 |
-ROW |97838 |1002 |30136 |
-ROW |97839 |1142 |29087 |
-ROW |97840 |1142 |29088 |
-ROW |97841 |1142 |29089 |
-ROW |97842 |1142 |29090 |
-ROW |97843 |1142 |29091 |
-ROW |97844 |1142 |29092 |
-ROW |97845 |1142 |29093 |
-ROW |97846 |1142 |29094 |
-ROW |97847 |1142 |29095 |
-ROW |97848 |1142 |29096 |
-ROW |97849 |1142 |29097 |
-ROW |97850 |1142 |29098 |
-ROW |97851 |1142 |29099 |
-ROW |97852 |1142 |29100 |
-ROW |97853 |1142 |29101 |
-ROW |97854 |1142 |29102 |
-ROW |97855 |1144 |29103 |
-ROW |97856 |1144 |29104 |
-ROW |97857 |1144 |29105 |
-ROW |97858 |1144 |29106 |
-ROW |97859 |1144 |29107 |
-ROW |97860 |1144 |29108 |
-ROW |97861 |1151 |29110 |
-ROW |97862 |1148 |29111 |
-ROW |97863 |1148 |29112 |
-ROW |97864 |1148 |29113 |
-ROW |97865 |1148 |29114 |
-ROW |97866 |1148 |29115 |
-ROW |97867 |1148 |29116 |
-ROW |97868 |1148 |29117 |
-ROW |97869 |1148 |29118 |
-ROW |97870 |1148 |29119 |
-ROW |97871 |1150 |29120 |
-ROW |97872 |1149 |29121 |
-ROW |97873 |1149 |29122 |
-ROW |97874 |1149 |29123 |
-ROW |97875 |1152 |29124 |
-ROW |97876 |1152 |29125 |
-ROW |97877 |1152 |29126 |
-ROW |97878 |1152 |29127 |
-ROW |97879 |1152 |29128 |
-ROW |97880 |1152 |29129 |
-ROW |97881 |1152 |29130 |
-ROW |97882 |1152 |29131 |
-ROW |97883 |1152 |29132 |
-ROW |97884 |1152 |29133 |
-ROW |97885 |1152 |29134 |
-ROW |97886 |1152 |29135 |
-ROW |97887 |1152 |29136 |
-ROW |97888 |1152 |29137 |
-ROW |97889 |1152 |29138 |
-ROW |97890 |1152 |29139 |
-ROW |97891 |1154 |29140 |
-ROW |97892 |1154 |29141 |
-ROW |97893 |1154 |29142 |
-ROW |97894 |1154 |29143 |
-ROW |97895 |1154 |29144 |
-ROW |97896 |1154 |29145 |
-ROW |97897 |1161 |29147 |
-ROW |97898 |1158 |29148 |
-ROW |97899 |1158 |29149 |
-ROW |97900 |1158 |29150 |
-ROW |97901 |1158 |29151 |
-ROW |97902 |1158 |29152 |
-ROW |97903 |1158 |29153 |
-ROW |97904 |1158 |29154 |
-ROW |97905 |1158 |29155 |
-ROW |97906 |1158 |29156 |
-ROW |97907 |1160 |29157 |
-ROW |97908 |1159 |29158 |
-ROW |97909 |1159 |29159 |
-ROW |97910 |1159 |29160 |
-ROW |97911 |1162 |29161 |
-ROW |97912 |1162 |29162 |
-ROW |97913 |1162 |29163 |
-ROW |97914 |1162 |29164 |
-ROW |97915 |1162 |29165 |
-ROW |97916 |1162 |29166 |
-ROW |97917 |1162 |29167 |
-ROW |97918 |1162 |29168 |
-ROW |97919 |1162 |29169 |
-ROW |97920 |1162 |29170 |
-ROW |97921 |1162 |29171 |
-ROW |97922 |1162 |29172 |
-ROW |97923 |1162 |29173 |
-ROW |97924 |1162 |29174 |
-ROW |97925 |1162 |29175 |
-ROW |97926 |1162 |29176 |
-ROW |97927 |1164 |29177 |
-ROW |97928 |1164 |29178 |
-ROW |97929 |1164 |29179 |
-ROW |97930 |1164 |29180 |
-ROW |97931 |1164 |29181 |
-ROW |97932 |1164 |29182 |
-ROW |97933 |1171 |29184 |
-ROW |97934 |1168 |29185 |
-ROW |97935 |1168 |29186 |
-ROW |97936 |1168 |29187 |
-ROW |97937 |1168 |29188 |
-ROW |97938 |1168 |29189 |
-ROW |97939 |1168 |29190 |
-ROW |97940 |1168 |29191 |
-ROW |97941 |1168 |29192 |
-ROW |97942 |1168 |29193 |
-ROW |97943 |1170 |29194 |
-ROW |97944 |1169 |29195 |
-ROW |97945 |1169 |29196 |
-ROW |97946 |1169 |29197 |
-ROW |97947 |1142 |29198 |
-ROW |97948 |1144 |31270 |
-ROW |97949 |1152 |29199 |
-ROW |97950 |1154 |31271 |
-ROW |97951 |1162 |29200 |
-ROW |97952 |1164 |31272 |
-ROW |97953 |1146 |31278 |
-ROW |97954 |1156 |31281 |
-ROW |97955 |1166 |31284 |
-ROW |97956 |1146 |31287 |
-ROW |97957 |1146 |31290 |
-ROW |97958 |1156 |31293 |
-ROW |97959 |1156 |31296 |
-ROW |97960 |1166 |31299 |
-ROW |97961 |1166 |31302 |
-ROW |97962 |1173 |29273 |
-ROW |97963 |1173 |29274 |
-ROW |97964 |1173 |29275 |
-ROW |97965 |1173 |29276 |
-ROW |97966 |1173 |29277 |
-ROW |97967 |1173 |29278 |
-ROW |97968 |1173 |29279 |
-ROW |97969 |1173 |29280 |
-ROW |97970 |1173 |29281 |
-ROW |97971 |1173 |29282 |
-ROW |97972 |1173 |29283 |
-ROW |97973 |1173 |29284 |
-ROW |97974 |1173 |29285 |
-ROW |97975 |1173 |29286 |
-ROW |97976 |1173 |29287 |
-ROW |97977 |1173 |29288 |
-ROW |97978 |1175 |29289 |
-ROW |97979 |1175 |29290 |
-ROW |97980 |1175 |29291 |
-ROW |97981 |1175 |29292 |
-ROW |97982 |1175 |29293 |
-ROW |97983 |1175 |29294 |
-ROW |97984 |1182 |29296 |
-ROW |97985 |1179 |29297 |
-ROW |97986 |1179 |29298 |
-ROW |97987 |1179 |29299 |
-ROW |97988 |1179 |29300 |
-ROW |97989 |1179 |29301 |
-ROW |97990 |1179 |29302 |
-ROW |97991 |1179 |29303 |
-ROW |97992 |1179 |29304 |
-ROW |97993 |1179 |29305 |
-ROW |97994 |1181 |29306 |
-ROW |97995 |1180 |29307 |
-ROW |97996 |1180 |29308 |
-ROW |97997 |1180 |29309 |
-ROW |97998 |1183 |29310 |
-ROW |97999 |1183 |29311 |
-ROW |98000 |1183 |29312 |
-ROW |98001 |1183 |29313 |
-ROW |98002 |1183 |29314 |
-ROW |98003 |1183 |29315 |
-ROW |98004 |1183 |29316 |
-ROW |98005 |1183 |29317 |
-ROW |98006 |1183 |29318 |
-ROW |98007 |1183 |29319 |
-ROW |98008 |1183 |29320 |
-ROW |98009 |1183 |29321 |
-ROW |98010 |1183 |29322 |
-ROW |98011 |1183 |29323 |
-ROW |98012 |1183 |29324 |
-ROW |98013 |1183 |29325 |
-ROW |98014 |1185 |29326 |
-ROW |98015 |1185 |29327 |
-ROW |98016 |1185 |29328 |
-ROW |98017 |1185 |29329 |
-ROW |98018 |1185 |29330 |
-ROW |98019 |1185 |29331 |
-ROW |98020 |1192 |29333 |
-ROW |98021 |1189 |29334 |
-ROW |98022 |1189 |29335 |
-ROW |98023 |1189 |29336 |
-ROW |98024 |1189 |29337 |
-ROW |98025 |1189 |29338 |
-ROW |98026 |1189 |29339 |
-ROW |98027 |1189 |29340 |
-ROW |98028 |1189 |29341 |
-ROW |98029 |1189 |29342 |
-ROW |98030 |1191 |29343 |
-ROW |98031 |1190 |29344 |
-ROW |98032 |1190 |29345 |
-ROW |98033 |1190 |29346 |
-ROW |98034 |1173 |29347 |
-ROW |98035 |1175 |31303 |
-ROW |98036 |1183 |29348 |
-ROW |98037 |1185 |31304 |
-ROW |98038 |1177 |31309 |
-ROW |98039 |1187 |31312 |
-ROW |98040 |1177 |31315 |
-ROW |98041 |1177 |31318 |
-ROW |98042 |1187 |31321 |
-ROW |98043 |1187 |31324 |
-ROW |98044 |1201 |29395 |
-ROW |98045 |1196 |29396 |
-ROW |98046 |1196 |29397 |
-ROW |98047 |1194 |29398 |
-ROW |98048 |1193 |29399 |
-ROW |98049 |1196 |29400 |
-ROW |98050 |1196 |29401 |
-ROW |98051 |1196 |29402 |
-ROW |98052 |1196 |29403 |
-ROW |98053 |1194 |29404 |
-ROW |98054 |1193 |29405 |
-ROW |98055 |1193 |29406 |
-ROW |98056 |1193 |29407 |
-ROW |98057 |1193 |29408 |
-ROW |98058 |1193 |29409 |
-ROW |98059 |1193 |29410 |
-ROW |98060 |1193 |29411 |
-ROW |98061 |1193 |29412 |
-ROW |98062 |1193 |29413 |
-ROW |98063 |1194 |29414 |
-ROW |98064 |1197 |29415 |
-ROW |98065 |1193 |29416 |
-ROW |98066 |1193 |29417 |
-ROW |98067 |1193 |29418 |
-ROW |98068 |1193 |29419 |
-ROW |98069 |1193 |29420 |
-ROW |98070 |1199 |29421 |
-ROW |98071 |1195 |29422 |
-ROW |98072 |1194 |29423 |
-ROW |98073 |1194 |29424 |
-ROW |98074 |1194 |29425 |
-ROW |98075 |1193 |29426 |
-ROW |98076 |1193 |29427 |
-ROW |98077 |1195 |29428 |
-ROW |98078 |1201 |29450 |
-ROW |98079 |1201 |29451 |
-ROW |98080 |1128 |28978 |
-ROW |98081 |1128 |28979 |
-ROW |98082 |1128 |28980 |
-ROW |98083 |1128 |28981 |
-ROW |98084 |1128 |28982 |
-ROW |98085 |1128 |28983 |
-ROW |98086 |1128 |28984 |
-ROW |98087 |1128 |28985 |
-ROW |98088 |1128 |28986 |
-ROW |98089 |1130 |28987 |
-ROW |98090 |1130 |28988 |
-ROW |98091 |1130 |28989 |
-ROW |98092 |1130 |28990 |
-ROW |98093 |1130 |28991 |
-ROW |98094 |1130 |28992 |
-ROW |98095 |1132 |28993 |
-ROW |98096 |1132 |28994 |
-ROW |98097 |1132 |28995 |
-ROW |98098 |1132 |28996 |
-ROW |98099 |1132 |28997 |
-ROW |98100 |1132 |28998 |
-ROW |98101 |1132 |28999 |
-ROW |98102 |1132 |29000 |
-ROW |98103 |1132 |29001 |
-ROW |98104 |1134 |29002 |
-ROW |98105 |1134 |29003 |
-ROW |98106 |1134 |29004 |
-ROW |98107 |1134 |29005 |
-ROW |98108 |1134 |29006 |
-ROW |98109 |1134 |29007 |
-ROW |98110 |1130 |29017 |
-ROW |98111 |1130 |29018 |
-ROW |98112 |1130 |29019 |
-ROW |98113 |1130 |29020 |
-ROW |98114 |1130 |29021 |
-ROW |98115 |1130 |29022 |
-ROW |98116 |1130 |29023 |
-ROW |98117 |1130 |29024 |
-ROW |98118 |1130 |29025 |
-ROW |98119 |1130 |29026 |
-ROW |98120 |1134 |29034 |
-ROW |98121 |1134 |29035 |
-ROW |98122 |1134 |29036 |
-ROW |98123 |1134 |29037 |
-ROW |98124 |1134 |29038 |
-ROW |98125 |1134 |29039 |
-ROW |98126 |1134 |29040 |
-ROW |98127 |1134 |29041 |
-ROW |98128 |1134 |29042 |
-ROW |98129 |1134 |29043 |
-ROW |98130 |1130 |29048 |
-ROW |98131 |1134 |29049 |
-ROW |98132 |1202 |29454 |
-ROW |98133 |1202 |29455 |
-ROW |98134 |1202 |29456 |
-ROW |98135 |1202 |29457 |
-ROW |98136 |1202 |29458 |
-ROW |98137 |1202 |29459 |
-ROW |98138 |1203 |29460 |
-ROW |98139 |1203 |29461 |
-ROW |98140 |1203 |29462 |
-ROW |98141 |1203 |29463 |
-ROW |98142 |1203 |29466 |
-ROW |98143 |1203 |29467 |
-ROW |98144 |1203 |29468 |
-ROW |98145 |1203 |29469 |
-ROW |98146 |1203 |29470 |
-ROW |98147 |1209 |29472 |
-ROW |98148 |1207 |29473 |
-ROW |98149 |1207 |29474 |
-ROW |98150 |1207 |29475 |
-ROW |98151 |1207 |29476 |
-ROW |98152 |1207 |29477 |
-ROW |98153 |1208 |29478 |
-ROW |98154 |1202 |30137 |
-ROW |98155 |1202 |31325 |
-ROW |98156 |1203 |31326 |
-ROW |98157 |1203 |31327 |
-ROW |98158 |1211 |31455 |
-ROW |98159 |1212 |29480 |
-ROW |98160 |1212 |29481 |
-ROW |98161 |1212 |29482 |
-ROW |98162 |1212 |29483 |
-ROW |98163 |1212 |29484 |
-ROW |98164 |1212 |29485 |
-ROW |98165 |1213 |29486 |
-ROW |98166 |1213 |29487 |
-ROW |98167 |1213 |29488 |
-ROW |98168 |1213 |29489 |
-ROW |98169 |1213 |29492 |
-ROW |98170 |1213 |29493 |
-ROW |98171 |1213 |29494 |
-ROW |98172 |1213 |29495 |
-ROW |98173 |1213 |29496 |
-ROW |98174 |1219 |29498 |
-ROW |98175 |1217 |29499 |
-ROW |98176 |1217 |29500 |
-ROW |98177 |1217 |29501 |
-ROW |98178 |1217 |29502 |
-ROW |98179 |1217 |29503 |
-ROW |98180 |1218 |29504 |
-ROW |98181 |1212 |30138 |
-ROW |98182 |1212 |31328 |
-ROW |98183 |1213 |31329 |
-ROW |98184 |1213 |31330 |
-ROW |98185 |1216 |31456 |
-ROW |98186 |1203 |31331 |
-ROW |98187 |1213 |31332 |
-ROW |98188 |1310 |30425 |
-ROW |98189 |1311 |30426 |
-ROW |98190 |1243 |29561 |
-ROW |98191 |1243 |29562 |
-ROW |98192 |1243 |29563 |
-ROW |98193 |1243 |29564 |
-ROW |98194 |1243 |29565 |
-ROW |98195 |1243 |29566 |
-ROW |98196 |1244 |29567 |
-ROW |98197 |1244 |29568 |
-ROW |98198 |1244 |29569 |
-ROW |98199 |1244 |29570 |
-ROW |98200 |1244 |29573 |
-ROW |98201 |1244 |29574 |
-ROW |98202 |1244 |29575 |
-ROW |98203 |1244 |29576 |
-ROW |98204 |1244 |29577 |
-ROW |98205 |1250 |29579 |
-ROW |98206 |1248 |29580 |
-ROW |98207 |1248 |29581 |
-ROW |98208 |1248 |29582 |
-ROW |98209 |1248 |29583 |
-ROW |98210 |1248 |29584 |
-ROW |98211 |1249 |29585 |
-ROW |98212 |1243 |30139 |
-ROW |98213 |1243 |31343 |
-ROW |98214 |1244 |31344 |
-ROW |98215 |1244 |31345 |
-ROW |98216 |1252 |31477 |
-ROW |98217 |1253 |29587 |
-ROW |98218 |1253 |29588 |
-ROW |98219 |1253 |29589 |
-ROW |98220 |1253 |29590 |
-ROW |98221 |1253 |29591 |
-ROW |98222 |1253 |29592 |
-ROW |98223 |1254 |29593 |
-ROW |98224 |1254 |29594 |
-ROW |98225 |1254 |29595 |
-ROW |98226 |1254 |29596 |
-ROW |98227 |1254 |29599 |
-ROW |98228 |1254 |29600 |
-ROW |98229 |1254 |29601 |
-ROW |98230 |1254 |29602 |
-ROW |98231 |1254 |29603 |
-ROW |98232 |1242 |29605 |
-ROW |98233 |1258 |29606 |
-ROW |98234 |1258 |29607 |
-ROW |98235 |1258 |29608 |
-ROW |98236 |1258 |29609 |
-ROW |98237 |1258 |29610 |
-ROW |98238 |1259 |29611 |
-ROW |98239 |1253 |30140 |
-ROW |98240 |1253 |31346 |
-ROW |98241 |1254 |31347 |
-ROW |98242 |1254 |31348 |
-ROW |98243 |1257 |31478 |
-ROW |98244 |1244 |31349 |
-ROW |98245 |1254 |31350 |
-ROW |98246 |1312 |30429 |
-ROW |98247 |1313 |30430 |
-ROW |98248 |1422 |32765 |
-ROW |98249 |1422 |32766 |
-ROW |98250 |1422 |32767 |
-ROW |98251 |1421 |32768 |
-ROW |98252 |1421 |32769 |
-ROW |98253 |1421 |32770 |
-ROW |98254 |1421 |32771 |
-ROW |98255 |1421 |32772 |
-ROW |98256 |1421 |32773 |
-ROW |98257 |1422 |32774 |
-ROW |98258 |1422 |32775 |
-ROW |98259 |1424 |32776 |
-ROW |98260 |1424 |32777 |
-ROW |98261 |1424 |32778 |
-ROW |98262 |1424 |32779 |
-ROW |98263 |1416 |32612 |
-ROW |98264 |1416 |32613 |
-ROW |98265 |1416 |32614 |
-ROW |98266 |1416 |32615 |
-ROW |98267 |1325 |30685 |
-ROW |98268 |1277 |30066 |
-ROW |98269 |1277 |30067 |
-ROW |98270 |1277 |30068 |
-ROW |98271 |1277 |30069 |
-ROW |98272 |1277 |30070 |
-ROW |98273 |1276 |30071 |
-ROW |98274 |1271 |30072 |
-ROW |98275 |1274 |30073 |
-ROW |98276 |1274 |30074 |
-ROW |98277 |1273 |30075 |
-ROW |98278 |1275 |30076 |
-ROW |98279 |1275 |30077 |
-ROW |98280 |1275 |30078 |
-ROW |98281 |1275 |30079 |
-ROW |98282 |1278 |30080 |
-ROW |98283 |1278 |30081 |
-ROW |98284 |1278 |30082 |
-ROW |98285 |1272 |30083 |
-ROW |98286 |1272 |30084 |
-ROW |98287 |1272 |30085 |
-ROW |98288 |1070 |28341 |
-ROW |98289 |1073 |28342 |
-ROW |98290 |1073 |28344 |
-ROW |98291 |1073 |28345 |
-ROW |98292 |1073 |30141 |
-ROW |98293 |1076 |28354 |
-ROW |98294 |1076 |28355 |
-ROW |98295 |1076 |28356 |
-ROW |98296 |1076 |28357 |
-ROW |98297 |1075 |28358 |
-ROW |98298 |1072 |28359 |
-ROW |98299 |1072 |28360 |
-ROW |98300 |1074 |28361 |
-ROW |98301 |1074 |28362 |
-ROW |98302 |1074 |28363 |
-ROW |98303 |1074 |28364 |
-ROW |98304 |1074 |28365 |
-ROW |98305 |1074 |28366 |
-ROW |98306 |1074 |28367 |
-ROW |98307 |1077 |28368 |
-ROW |98308 |1077 |28369 |
-ROW |98309 |1077 |28370 |
-ROW |98310 |1077 |28371 |
-ROW |98311 |1077 |28372 |
-ROW |98312 |1077 |28373 |
-ROW |98313 |1071 |28374 |
-ROW |98314 |1071 |28375 |
-ROW |98315 |1071 |28376 |
-ROW |98316 |1085 |28388 |
-ROW |98317 |1082 |28390 |
-ROW |98318 |1082 |28391 |
-ROW |98319 |1079 |29994 |
-ROW |98320 |1085 |28404 |
-ROW |98321 |1085 |28405 |
-ROW |98322 |1085 |28406 |
-ROW |98323 |1085 |28407 |
-ROW |98324 |1085 |28408 |
-ROW |98325 |1085 |28409 |
-ROW |98326 |1084 |28411 |
-ROW |98327 |1081 |28412 |
-ROW |98328 |1080 |28413 |
-ROW |98329 |1080 |28414 |
-ROW |98330 |1080 |28415 |
-ROW |98331 |1080 |28416 |
-ROW |98332 |1083 |28417 |
-ROW |98333 |1083 |28418 |
-ROW |98334 |1083 |28419 |
-ROW |98335 |1083 |28420 |
-ROW |98336 |1083 |28421 |
-ROW |98337 |1083 |28422 |
-ROW |98338 |1086 |28423 |
-ROW |98339 |1086 |28424 |
-ROW |98340 |1086 |28425 |
-ROW |98341 |1085 |32732 |
-ROW |98342 |1085 |32733 |
-ROW |98343 |1085 |32734 |
-ROW |98344 |1085 |32735 |
-ROW |98345 |1085 |32736 |
-ROW |98346 |1085 |32737 |
-ROW |98347 |1085 |32738 |
-ROW |98348 |1085 |32739 |
-ROW |98349 |1085 |32740 |
-ROW |98350 |1095 |28465 |
-ROW |98351 |1097 |28466 |
-ROW |98352 |1097 |28467 |
-ROW |98353 |1100 |28474 |
-ROW |98354 |1100 |28475 |
-ROW |98355 |1100 |28476 |
-ROW |98356 |1099 |28477 |
-ROW |98357 |1096 |28478 |
-ROW |98358 |1096 |28479 |
-ROW |98359 |1098 |28480 |
-ROW |98360 |1098 |28481 |
-ROW |98361 |1104 |28495 |
-ROW |98362 |1103 |28496 |
-ROW |98363 |1355 |31969 |
-ROW |98364 |1355 |31970 |
-ROW |98365 |1356 |31971 |
-ROW |98366 |1355 |31972 |
-ROW |98367 |1355 |31973 |
-ROW |98368 |1355 |31974 |
-ROW |98369 |1355 |31975 |
-ROW |98370 |1355 |31976 |
-ROW |98371 |1355 |31977 |
-ROW |98372 |1355 |31978 |
-ROW |98373 |1355 |31979 |
-ROW |98374 |1355 |31980 |
-ROW |98375 |1355 |31981 |
-ROW |98376 |1355 |31982 |
-ROW |98377 |1355 |31983 |
-ROW |98378 |1355 |31984 |
-ROW |98379 |1355 |31985 |
-ROW |98380 |1355 |31986 |
-ROW |98381 |1355 |31987 |
-ROW |98382 |1355 |31988 |
-ROW |98383 |1355 |31989 |
-ROW |98384 |1355 |32461 |
-ROW |98385 |1355 |32462 |
+ROW |98386 |1116 |28743 |
+ROW |98387 |1116 |28744 |
+ROW |98388 |1116 |28745 |
+ROW |98389 |1116 |28746 |
+ROW |98390 |1116 |28747 |
+ROW |98391 |1116 |28748 |
+ROW |98392 |1117 |30896 |
+ROW |98393 |1116 |30897 |
+ROW |98394 |1116 |30898 |
+ROW |98395 |1116 |30899 |
+ROW |98396 |1116 |30900 |
+ROW |98397 |1116 |30901 |
+ROW |98398 |1116 |30902 |
+ROW |98399 |1116 |30903 |
+ROW |98400 |1116 |30904 |
+ROW |98401 |1116 |30905 |
+ROW |98402 |1116 |30906 |
+ROW |98403 |1116 |30907 |
+ROW |98404 |1116 |30908 |
+ROW |98405 |1116 |30909 |
+ROW |98406 |1116 |30910 |
+ROW |98407 |1116 |30911 |
+ROW |98408 |1116 |30912 |
+ROW |98409 |1116 |30913 |
+ROW |98410 |1116 |30914 |
+ROW |98411 |1116 |30915 |
+ROW |98412 |1116 |30917 |
+ROW |98413 |1116 |30918 |
+ROW |98414 |1116 |30919 |
+ROW |98415 |1116 |30920 |
+ROW |98416 |1116 |30921 |
+ROW |98417 |1116 |30922 |
+ROW |98418 |1119 |28775 |
+ROW |98419 |1118 |28776 |
+ROW |98420 |1118 |28777 |
+ROW |98421 |1118 |28778 |
+ROW |98422 |1118 |28779 |
+ROW |98423 |1118 |28780 |
+ROW |98424 |1118 |28781 |
+ROW |98425 |1118 |28782 |
+ROW |98426 |1118 |28783 |
+ROW |98427 |1118 |28784 |
+ROW |98428 |1118 |28785 |
+ROW |98429 |1118 |28786 |
+ROW |98430 |1118 |28787 |
+ROW |98431 |1118 |28788 |
+ROW |98432 |1118 |28789 |
+ROW |98433 |1118 |28790 |
+ROW |98434 |1118 |28791 |
+ROW |98435 |1118 |28792 |
+ROW |98436 |1118 |28793 |
+ROW |98437 |1118 |28794 |
+ROW |98438 |1118 |28795 |
+ROW |98439 |1118 |28796 |
+ROW |98440 |1118 |28798 |
+ROW |98441 |1118 |28799 |
+ROW |98442 |1118 |28800 |
+ROW |98443 |1118 |28801 |
+ROW |98444 |1118 |28802 |
+ROW |98445 |1118 |28803 |
+ROW |98446 |1349 |31800 |
+ROW |98447 |1349 |31801 |
+ROW |98448 |1349 |31802 |
+ROW |98449 |1348 |31803 |
+ROW |98450 |1349 |31804 |
+ROW |98451 |1348 |31805 |
+ROW |98452 |1348 |31806 |
+ROW |98453 |1348 |31807 |
+ROW |98454 |1348 |31808 |
+ROW |98455 |1348 |31809 |
+ROW |98456 |1348 |31810 |
+ROW |98457 |1348 |31811 |
+ROW |98458 |1348 |31812 |
+ROW |98459 |1348 |31813 |
+ROW |98460 |1348 |31814 |
+ROW |98461 |1348 |31815 |
+ROW |98462 |1348 |31816 |
+ROW |98463 |1348 |31817 |
+ROW |98464 |1348 |31818 |
+ROW |98465 |1348 |31819 |
+ROW |98466 |1348 |31820 |
+ROW |98467 |1348 |31821 |
+ROW |98468 |1348 |31822 |
+ROW |98469 |1348 |31823 |
+ROW |98470 |1348 |31824 |
+ROW |98471 |1348 |31825 |
+ROW |98472 |1348 |31826 |
+ROW |98473 |1348 |31827 |
+ROW |98474 |1348 |31828 |
+ROW |98475 |1348 |31829 |
+ROW |98476 |1348 |31830 |
+ROW |98477 |1348 |31831 |
+ROW |98478 |1348 |31832 |
+ROW |98479 |1348 |31833 |
+ROW |98480 |1348 |31834 |
+ROW |98481 |1348 |31835 |
+ROW |98482 |1348 |31836 |
+ROW |98483 |1348 |31837 |
+ROW |98484 |1348 |31838 |
+ROW |98485 |1348 |31839 |
+ROW |98486 |1348 |31840 |
+ROW |98487 |1348 |31841 |
+ROW |98488 |1348 |31842 |
+ROW |98489 |1348 |31843 |
+ROW |98490 |1348 |31844 |
+ROW |98491 |1348 |31845 |
+ROW |98492 |1348 |31846 |
+ROW |98493 |1348 |31847 |
+ROW |98494 |1348 |31848 |
+ROW |98495 |1348 |31849 |
+ROW |98496 |1348 |31850 |
+ROW |98497 |1319 |30527 |
+ROW |98498 |1319 |30528 |
+ROW |98499 |1319 |30529 |
+ROW |98500 |1318 |30530 |
+ROW |98501 |1319 |30531 |
+ROW |98502 |1318 |30532 |
+ROW |98503 |1318 |30533 |
+ROW |98504 |1318 |30534 |
+ROW |98505 |1318 |30535 |
+ROW |98506 |1318 |30536 |
+ROW |98507 |1318 |30537 |
+ROW |98508 |1318 |30538 |
+ROW |98509 |1318 |30539 |
+ROW |98510 |1318 |30540 |
+ROW |98511 |1318 |30541 |
+ROW |98512 |1318 |30542 |
+ROW |98513 |1318 |30543 |
+ROW |98514 |1318 |30544 |
+ROW |98515 |1318 |30545 |
+ROW |98516 |1318 |30546 |
+ROW |98517 |1318 |30547 |
+ROW |98518 |1318 |30548 |
+ROW |98519 |1318 |30549 |
+ROW |98520 |1318 |30550 |
+ROW |98521 |1318 |30551 |
+ROW |98522 |1318 |30552 |
+ROW |98523 |1318 |30553 |
+ROW |98524 |1318 |30554 |
+ROW |98525 |1318 |30555 |
+ROW |98526 |1318 |30556 |
+ROW |98527 |1318 |30557 |
+ROW |98528 |1318 |30558 |
+ROW |98529 |1318 |30559 |
+ROW |98530 |1318 |30560 |
+ROW |98531 |1318 |30561 |
+ROW |98532 |1318 |30562 |
+ROW |98533 |1318 |30563 |
+ROW |98534 |1318 |30564 |
+ROW |98535 |1318 |30565 |
+ROW |98536 |1318 |30566 |
+ROW |98537 |1318 |30567 |
+ROW |98538 |1318 |30568 |
+ROW |98539 |1318 |30569 |
+ROW |98540 |1318 |30570 |
+ROW |98541 |1326 |30690 |
+ROW |98542 |1327 |30691 |
+ROW |98543 |1326 |30692 |
+ROW |98544 |1327 |30693 |
+ROW |98545 |1327 |30694 |
+ROW |98546 |1326 |30695 |
+ROW |98547 |1326 |30696 |
+ROW |98548 |1326 |30697 |
+ROW |98549 |1326 |30698 |
+ROW |98550 |1326 |30699 |
+ROW |98551 |1326 |30700 |
+ROW |98552 |1326 |30701 |
+ROW |98553 |1326 |30702 |
+ROW |98554 |1326 |30703 |
+ROW |98555 |1326 |30704 |
+ROW |98556 |1326 |30705 |
+ROW |98557 |1326 |30706 |
+ROW |98558 |1326 |30707 |
+ROW |98559 |1326 |30708 |
+ROW |98560 |1326 |30709 |
+ROW |98561 |1326 |30710 |
+ROW |98562 |1326 |30711 |
+ROW |98563 |1326 |30712 |
+ROW |98564 |1327 |30719 |
+ROW |98565 |1327 |30739 |
+ROW |98566 |1327 |30743 |
+ROW |98567 |1327 |30744 |
+ROW |98568 |1327 |30746 |
+ROW |98569 |1327 |30747 |
+ROW |98570 |1327 |30754 |
+ROW |98571 |1327 |30756 |
+ROW |98572 |1331 |30923 |
+ROW |98573 |1331 |30924 |
+ROW |98574 |1332 |30925 |
+ROW |98575 |1332 |30926 |
+ROW |98576 |1331 |30927 |
+ROW |98577 |1331 |30928 |
+ROW |98578 |1331 |30929 |
+ROW |98579 |1331 |30930 |
+ROW |98580 |1331 |30931 |
+ROW |98581 |1331 |30932 |
+ROW |98582 |1331 |30933 |
+ROW |98583 |1331 |30934 |
+ROW |98584 |1331 |30935 |
+ROW |98585 |1331 |30936 |
+ROW |98586 |1331 |30937 |
+ROW |98587 |1331 |30938 |
+ROW |98588 |1331 |30939 |
+ROW |98589 |1331 |30940 |
+ROW |98590 |1331 |30941 |
+ROW |98591 |1331 |30942 |
+ROW |98592 |1331 |30943 |
+ROW |98593 |1331 |30944 |
+ROW |98594 |1331 |30945 |
+ROW |98595 |1331 |30946 |
+ROW |98596 |1331 |30947 |
+ROW |98597 |1331 |30948 |
+ROW |98598 |1331 |30949 |
+ROW |98599 |1331 |30950 |
+ROW |98600 |1331 |30951 |
+ROW |98601 |1331 |30952 |
+ROW |98602 |1331 |30953 |
+ROW |98603 |1331 |30954 |
+ROW |98604 |1331 |30955 |
+ROW |98605 |1331 |30956 |
+ROW |98606 |1331 |30957 |
+ROW |98607 |1331 |30958 |
+ROW |98608 |1331 |30959 |
+ROW |98609 |1331 |30960 |
+ROW |98610 |1331 |30963 |
+ROW |98611 |1411 |32486 |
+ROW |98612 |1411 |32487 |
+ROW |98613 |1411 |32488 |
+ROW |98614 |1411 |32489 |
+ROW |98615 |1411 |32490 |
+ROW |98616 |1411 |32491 |
+ROW |98617 |1411 |32492 |
+ROW |98618 |1411 |32493 |
+ROW |98619 |1411 |32494 |
+ROW |98620 |1411 |32498 |
+ROW |98621 |1411 |32499 |
+ROW |98622 |1411 |32500 |
+ROW |98623 |1412 |32516 |
+ROW |98624 |1412 |32517 |
+ROW |98625 |1412 |32518 |
+ROW |98626 |1412 |32519 |
+ROW |98627 |1412 |32520 |
+ROW |98628 |1412 |32521 |
+ROW |98629 |1412 |32522 |
+ROW |98630 |1412 |32523 |
+ROW |98631 |1412 |32524 |
+ROW |98632 |1412 |32528 |
+ROW |98633 |1412 |32529 |
+ROW |98634 |1412 |32530 |
+ROW |98635 |1341 |31499 |
+ROW |98636 |1341 |31500 |
+ROW |98637 |1341 |31501 |
+ROW |98638 |1341 |31502 |
+ROW |98639 |1341 |31503 |
+ROW |98640 |1341 |31504 |
+ROW |98641 |1341 |31505 |
+ROW |98642 |1341 |31506 |
+ROW |98643 |1341 |31507 |
+ROW |98644 |1341 |31508 |
+ROW |98645 |1341 |31509 |
+ROW |98646 |1341 |31510 |
+ROW |98647 |1341 |31511 |
+ROW |98648 |1341 |31512 |
+ROW |98649 |1341 |31513 |
+ROW |98650 |1341 |31514 |
+ROW |98651 |1341 |31515 |
+ROW |98652 |1341 |31516 |
+ROW |98653 |1341 |31517 |
+ROW |98654 |1341 |31518 |
+ROW |98655 |1341 |31519 |
+ROW |98656 |1341 |31520 |
+ROW |98657 |1341 |31521 |
+ROW |98658 |1341 |31522 |
+ROW |98659 |1341 |31523 |
+ROW |98660 |1341 |31524 |
+ROW |98661 |1341 |31525 |
+ROW |98662 |1341 |31526 |
+ROW |98663 |1341 |31527 |
+ROW |98664 |1341 |31528 |
+ROW |98665 |1341 |31529 |
+ROW |98666 |1341 |31530 |
+ROW |98667 |1341 |31531 |
+ROW |98668 |1341 |31532 |
+ROW |98669 |1341 |31533 |
+ROW |98670 |1341 |31534 |
+ROW |98671 |1341 |31535 |
+ROW |98672 |1341 |31536 |
+ROW |98673 |1341 |31537 |
+ROW |98674 |1341 |31538 |
+ROW |98675 |1341 |31539 |
+ROW |98676 |1341 |31540 |
+ROW |98677 |1341 |31541 |
+ROW |98678 |1341 |31542 |
+ROW |98679 |1341 |31543 |
+ROW |98680 |1341 |31544 |
+ROW |98681 |1341 |31545 |
+ROW |98682 |1341 |31546 |
+ROW |98683 |1341 |31547 |
+ROW |98684 |1341 |31548 |
+ROW |98685 |1341 |31549 |
+ROW |98686 |1341 |31550 |
+ROW |98687 |1341 |31551 |
+ROW |98688 |1341 |31552 |
+ROW |98689 |1341 |31553 |
+ROW |98690 |1358 |32012 |
+ROW |98691 |1358 |32013 |
+ROW |98692 |1357 |32014 |
+ROW |98693 |1357 |32015 |
+ROW |98694 |1357 |32016 |
+ROW |98695 |1358 |32017 |
+ROW |98696 |1357 |32018 |
+ROW |98697 |1358 |32019 |
+ROW |98698 |1357 |32020 |
+ROW |98699 |1357 |32021 |
+ROW |98700 |1357 |32022 |
+ROW |98701 |1357 |32023 |
+ROW |98702 |1357 |32024 |
+ROW |98703 |1357 |32025 |
+ROW |98704 |1357 |32026 |
+ROW |98705 |1357 |32027 |
+ROW |98706 |1357 |32028 |
+ROW |98707 |1357 |32029 |
+ROW |98708 |1357 |32030 |
+ROW |98709 |1357 |32031 |
+ROW |98710 |1357 |32032 |
+ROW |98711 |1357 |32033 |
+ROW |98712 |1357 |32034 |
+ROW |98713 |1357 |32035 |
+ROW |98714 |1357 |32036 |
+ROW |98715 |1357 |32037 |
+ROW |98716 |1357 |32038 |
+ROW |98717 |1357 |32039 |
+ROW |98718 |1357 |32040 |
+ROW |98719 |1357 |32041 |
+ROW |98720 |1357 |32042 |
+ROW |98721 |1357 |32043 |
+ROW |98722 |1357 |32044 |
+ROW |98723 |1357 |32045 |
+ROW |98724 |1358 |32048 |
+ROW |98725 |1358 |32049 |
+ROW |98726 |1298 |30187 |
+ROW |98727 |1298 |30188 |
+ROW |98728 |1299 |30189 |
+ROW |98729 |1299 |30190 |
+ROW |98730 |1298 |30191 |
+ROW |98731 |1298 |30192 |
+ROW |98732 |1301 |30230 |
+ROW |98733 |1301 |30231 |
+ROW |98734 |1300 |30789 |
+ROW |98735 |1300 |30790 |
+ROW |98736 |1300 |30234 |
+ROW |98737 |1300 |30235 |
+ROW |98738 |1333 |30968 |
+ROW |98739 |1333 |30969 |
+ROW |98740 |1333 |30970 |
+ROW |98741 |1333 |30971 |
+ROW |98742 |1333 |30972 |
+ROW |98743 |1333 |30973 |
+ROW |98744 |1333 |30974 |
+ROW |98745 |1333 |30975 |
+ROW |98746 |1333 |30976 |
+ROW |98747 |1333 |30977 |
+ROW |98748 |1333 |30978 |
+ROW |98749 |1333 |30979 |
+ROW |98750 |1333 |30980 |
+ROW |98751 |1333 |30981 |
+ROW |98752 |1333 |30982 |
+ROW |98753 |1333 |30983 |
+ROW |98754 |1333 |30984 |
+ROW |98755 |1333 |30985 |
+ROW |98756 |1333 |30986 |
+ROW |98757 |1333 |30987 |
+ROW |98758 |1333 |30988 |
+ROW |98759 |1333 |30989 |
+ROW |98760 |1333 |30990 |
+ROW |98761 |1333 |30991 |
+ROW |98762 |1333 |30992 |
+ROW |98763 |1333 |30993 |
+ROW |98764 |1333 |30994 |
+ROW |98765 |1333 |30995 |
+ROW |98766 |1333 |30996 |
+ROW |98767 |1333 |30997 |
+ROW |98768 |1333 |30998 |
+ROW |98769 |1333 |30999 |
+ROW |98770 |1333 |31000 |
+ROW |98771 |1333 |31001 |
+ROW |98772 |1333 |31002 |
+ROW |98773 |1333 |31003 |
+ROW |98774 |1333 |31004 |
+ROW |98775 |1334 |31010 |
+ROW |98776 |1334 |31011 |
+ROW |98777 |1334 |31012 |
+ROW |98778 |1334 |31013 |
+ROW |98779 |1334 |31014 |
+ROW |98780 |1334 |31015 |
+ROW |98781 |1334 |31016 |
+ROW |98782 |1334 |31017 |
+ROW |98783 |1334 |31018 |
+ROW |98784 |1334 |31019 |
+ROW |98785 |1334 |31020 |
+ROW |98786 |1334 |31021 |
+ROW |98787 |1334 |31022 |
+ROW |98788 |1334 |31023 |
+ROW |98789 |1334 |31024 |
+ROW |98790 |1334 |31025 |
+ROW |98791 |1334 |31026 |
+ROW |98792 |1334 |31027 |
+ROW |98793 |1334 |31028 |
+ROW |98794 |1334 |31029 |
+ROW |98795 |1334 |31030 |
+ROW |98796 |1334 |31031 |
+ROW |98797 |1334 |31032 |
+ROW |98798 |1334 |31033 |
+ROW |98799 |1334 |31034 |
+ROW |98800 |1334 |31035 |
+ROW |98801 |1334 |31036 |
+ROW |98802 |1334 |31037 |
+ROW |98803 |1334 |31038 |
+ROW |98804 |1334 |31039 |
+ROW |98805 |1334 |31040 |
+ROW |98806 |1334 |31041 |
+ROW |98807 |1334 |31042 |
+ROW |98808 |1334 |31043 |
+ROW |98809 |1334 |31044 |
+ROW |98810 |1334 |31045 |
+ROW |98811 |1334 |31046 |
+ROW |98812 |1359 |32071 |
+ROW |98813 |1359 |32072 |
+ROW |98814 |1359 |32073 |
+ROW |98815 |1359 |32074 |
+ROW |98816 |1359 |32075 |
+ROW |98817 |1359 |32076 |
+ROW |98818 |1359 |32077 |
+ROW |98819 |1359 |32078 |
+ROW |98820 |1359 |32079 |
+ROW |98821 |1359 |32080 |
+ROW |98822 |1359 |32081 |
+ROW |98823 |1359 |32082 |
+ROW |98824 |1359 |32083 |
+ROW |98825 |1359 |32084 |
+ROW |98826 |1359 |32085 |
+ROW |98827 |1359 |32086 |
+ROW |98828 |1359 |32087 |
+ROW |98829 |1359 |32088 |
+ROW |98830 |1359 |32089 |
+ROW |98831 |1359 |32090 |
+ROW |98832 |1359 |32091 |
+ROW |98833 |1359 |32092 |
+ROW |98834 |1359 |32093 |
+ROW |98835 |1359 |32094 |
+ROW |98836 |1359 |32095 |
+ROW |98837 |1359 |32096 |
+ROW |98838 |1359 |32097 |
+ROW |98839 |1359 |32098 |
+ROW |98840 |1359 |32099 |
+ROW |98841 |1359 |32100 |
+ROW |98842 |1359 |32101 |
+ROW |98843 |1359 |32102 |
+ROW |98844 |1359 |32103 |
+ROW |98845 |1359 |32104 |
+ROW |98846 |1359 |32105 |
+ROW |98847 |1359 |32106 |
+ROW |98848 |1359 |32107 |
+ROW |98849 |1359 |32108 |
+ROW |98850 |1359 |32109 |
+ROW |98851 |1359 |32110 |
+ROW |98852 |1359 |32111 |
+ROW |98853 |1359 |32112 |
+ROW |98854 |1359 |32113 |
+ROW |98855 |1359 |32114 |
+ROW |98856 |1359 |32115 |
+ROW |98857 |1359 |32116 |
+ROW |98858 |1359 |32117 |
+ROW |98859 |1359 |32118 |
+ROW |98860 |1359 |32119 |
+ROW |98861 |1359 |32120 |
+ROW |98862 |1359 |32121 |
+ROW |98863 |1359 |32122 |
+ROW |98864 |1359 |32123 |
+ROW |98865 |1359 |32124 |
+ROW |98866 |1359 |32125 |
+ROW |98867 |1359 |32126 |
+ROW |98868 |1359 |32127 |
+ROW |98869 |1359 |32128 |
+ROW |98870 |1359 |32129 |
+ROW |98871 |1359 |32130 |
+ROW |98872 |1359 |32131 |
+ROW |98873 |1359 |32132 |
+ROW |98874 |1320 |30611 |
+ROW |98875 |1321 |30612 |
+ROW |98876 |1320 |30613 |
+ROW |98877 |1320 |30614 |
+ROW |98878 |1320 |30615 |
+ROW |98879 |1320 |30616 |
+ROW |98880 |1320 |30617 |
+ROW |98881 |1320 |30618 |
+ROW |98882 |1320 |30619 |
+ROW |98883 |1320 |30620 |
+ROW |98884 |1320 |30621 |
+ROW |98885 |1320 |30622 |
+ROW |98886 |1320 |30623 |
+ROW |98887 |1320 |30624 |
+ROW |98888 |1320 |30625 |
+ROW |98889 |1320 |30626 |
+ROW |98890 |1320 |30627 |
+ROW |98891 |1320 |30628 |
+ROW |98892 |1320 |30629 |
+ROW |98893 |1320 |30630 |
+ROW |98894 |1320 |30631 |
+ROW |98895 |1320 |30632 |
+ROW |98896 |1320 |30633 |
+ROW |98897 |1320 |30634 |
+ROW |98898 |1320 |30635 |
+ROW |98899 |1320 |30636 |
+ROW |98900 |1121 |28804 |
+ROW |98901 |1120 |28805 |
+ROW |98902 |1120 |28806 |
+ROW |98903 |1120 |28807 |
+ROW |98904 |1120 |28808 |
+ROW |98905 |1120 |28809 |
+ROW |98906 |1120 |28810 |
+ROW |98907 |1120 |28811 |
+ROW |98908 |1120 |28812 |
+ROW |98909 |1120 |28813 |
+ROW |98910 |1120 |28814 |
+ROW |98911 |1120 |28815 |
+ROW |98912 |1120 |28816 |
+ROW |98913 |1120 |28817 |
+ROW |98914 |1120 |28818 |
+ROW |98915 |1120 |28819 |
+ROW |98916 |1120 |28820 |
+ROW |98917 |1123 |28821 |
+ROW |98918 |1122 |28822 |
+ROW |98919 |1122 |28823 |
+ROW |98920 |1122 |28824 |
+ROW |98921 |1122 |28825 |
+ROW |98922 |1122 |28826 |
+ROW |98923 |1122 |28827 |
+ROW |98924 |1122 |28828 |
+ROW |98925 |1122 |28829 |
+ROW |98926 |1122 |28830 |
+ROW |98927 |1122 |28831 |
+ROW |98928 |1122 |28832 |
+ROW |98929 |1122 |28833 |
+ROW |98930 |1351 |31868 |
+ROW |98931 |1351 |31869 |
+ROW |98932 |1350 |31870 |
+ROW |98933 |1350 |31871 |
+ROW |98934 |1350 |31872 |
+ROW |98935 |1350 |31873 |
+ROW |98936 |1350 |31874 |
+ROW |98937 |1350 |31875 |
+ROW |98938 |1350 |31876 |
+ROW |98939 |1350 |31877 |
+ROW |98940 |1350 |31878 |
+ROW |98941 |1350 |31879 |
+ROW |98942 |1350 |31880 |
+ROW |98943 |1350 |31881 |
+ROW |98944 |1350 |31882 |
+ROW |98945 |1350 |31883 |
+ROW |98946 |1350 |31884 |
+ROW |98947 |1350 |31885 |
+ROW |98948 |1350 |31886 |
+ROW |98949 |1350 |31887 |
+ROW |98950 |1350 |31888 |
+ROW |98951 |1350 |31889 |
+ROW |98952 |1350 |31890 |
+ROW |98953 |1352 |31891 |
+ROW |98954 |1353 |31892 |
+ROW |98955 |1353 |31893 |
+ROW |98956 |1352 |31894 |
+ROW |98957 |1352 |31895 |
+ROW |98958 |1352 |31896 |
+ROW |98959 |1352 |31897 |
+ROW |98960 |1352 |31898 |
+ROW |98961 |1352 |31899 |
+ROW |98962 |1352 |31900 |
+ROW |98963 |1352 |31901 |
+ROW |98964 |1352 |31902 |
+ROW |98965 |1352 |31903 |
+ROW |98966 |1352 |31904 |
+ROW |98967 |1352 |31905 |
+ROW |98968 |1352 |31906 |
+ROW |98969 |1352 |31907 |
+ROW |98970 |1352 |31908 |
+ROW |98971 |1352 |31909 |
+ROW |98972 |1426 |32829 |
+ROW |98973 |1426 |32830 |
+ROW |98974 |1427 |32831 |
+ROW |98975 |1427 |32832 |
+ROW |98976 |1428 |32833 |
+ROW |98977 |1428 |32834 |
+ROW |98978 |1428 |32835 |
+ROW |98979 |1427 |32836 |
+ROW |98980 |1427 |32837 |
+ROW |98981 |1427 |32838 |
+ROW |98982 |1427 |32839 |
+ROW |98983 |1425 |32840 |
+ROW |98984 |1425 |32841 |
+ROW |98985 |1425 |32842 |
+ROW |98986 |1425 |32843 |
+ROW |98987 |1425 |32844 |
+ROW |98988 |1425 |32845 |
+ROW |98989 |1425 |32846 |
+ROW |98990 |1425 |32847 |
+ROW |98991 |1425 |32848 |
+ROW |98992 |1425 |32849 |
+ROW |98993 |1425 |32850 |
+ROW |98994 |1425 |32851 |
+ROW |98995 |1425 |32852 |
+ROW |98996 |1425 |32853 |
+ROW |98997 |1425 |32854 |
+ROW |98998 |1425 |32855 |
+ROW |98999 |1425 |32856 |
+ROW |99000 |1425 |32857 |
+ROW |99001 |1425 |32858 |
+ROW |99002 |1425 |32859 |
+ROW |99003 |1425 |32860 |
+ROW |99004 |1425 |32861 |
+ROW |99005 |1425 |32862 |
+ROW |99006 |1425 |32863 |
+ROW |99007 |1427 |32864 |
+ROW |99008 |1427 |32865 |
+ROW |99009 |1427 |32866 |
+ROW |99010 |1427 |32867 |
+ROW |99011 |1427 |32868 |
+ROW |99012 |1427 |32869 |
+ROW |99013 |1427 |32870 |
+ROW |99014 |1427 |32871 |
+ROW |99015 |1427 |32872 |
+ROW |99016 |1427 |32873 |
+ROW |99017 |1427 |32874 |
+ROW |99018 |1427 |32875 |
+ROW |99019 |1427 |32876 |
+ROW |99020 |1427 |32877 |
+ROW |99021 |1427 |32878 |
+ROW |99022 |1425 |32884 |
+ROW |99023 |1427 |32885 |
+ROW |99024 |1427 |32886 |
+ROW |99025 |1427 |32887 |
+ROW |99026 |1427 |32888 |
+ROW |99027 |1427 |32889 |
+ROW |99028 |1427 |32890 |
+ROW |99029 |1430 |32925 |
+ROW |99030 |1430 |32926 |
+ROW |99031 |1431 |32927 |
+ROW |99032 |1432 |32928 |
+ROW |99033 |1432 |32929 |
+ROW |99034 |1432 |32930 |
+ROW |99035 |1431 |32931 |
+ROW |99036 |1429 |32932 |
+ROW |99037 |1429 |32933 |
+ROW |99038 |1429 |32934 |
+ROW |99039 |1429 |32935 |
+ROW |99040 |1429 |32936 |
+ROW |99041 |1429 |32937 |
+ROW |99042 |1429 |32938 |
+ROW |99043 |1429 |32939 |
+ROW |99044 |1429 |32940 |
+ROW |99045 |1429 |32941 |
+ROW |99046 |1429 |32942 |
+ROW |99047 |1429 |32943 |
+ROW |99048 |1429 |32944 |
+ROW |99049 |1429 |32945 |
+ROW |99050 |1429 |32946 |
+ROW |99051 |1429 |32947 |
+ROW |99052 |1429 |32948 |
+ROW |99053 |1429 |32949 |
+ROW |99054 |1429 |32950 |
+ROW |99055 |1429 |32951 |
+ROW |99056 |1429 |32952 |
+ROW |99057 |1429 |32953 |
+ROW |99058 |1429 |32954 |
+ROW |99059 |1429 |32955 |
+ROW |99060 |1431 |32956 |
+ROW |99061 |1431 |32957 |
+ROW |99062 |1431 |32958 |
+ROW |99063 |1431 |32959 |
+ROW |99064 |1431 |32960 |
+ROW |99065 |1431 |32961 |
+ROW |99066 |1431 |32962 |
+ROW |99067 |1431 |32963 |
+ROW |99068 |1431 |32964 |
+ROW |99069 |1431 |32965 |
+ROW |99070 |1431 |32966 |
+ROW |99071 |1431 |32967 |
+ROW |99072 |1431 |32968 |
+ROW |99073 |1431 |32969 |
+ROW |99074 |1431 |32970 |
+ROW |99075 |1429 |32976 |
+ROW |99076 |1431 |32977 |
+ROW |99077 |1431 |32978 |
+ROW |99078 |1431 |32979 |
+ROW |99079 |1431 |32980 |
+ROW |99080 |1431 |32981 |
+ROW |99081 |1431 |32982 |
+ROW |99082 |1354 |31910 |
+ROW |99083 |1354 |31911 |
+ROW |99084 |1354 |31912 |
+ROW |99085 |1354 |31913 |
+ROW |99086 |1354 |31914 |
+ROW |99087 |1354 |31915 |
+ROW |99088 |1354 |31916 |
+ROW |99089 |1354 |31917 |
+ROW |99090 |1354 |31918 |
+ROW |99091 |1354 |31919 |
+ROW |99092 |1354 |31920 |
+ROW |99093 |1354 |31921 |
+ROW |99094 |1354 |31922 |
+ROW |99095 |1354 |31923 |
+ROW |99096 |1354 |31924 |
+ROW |99097 |1354 |31925 |
+ROW |99098 |1354 |31926 |
+ROW |99099 |1354 |31927 |
+ROW |99100 |1354 |31928 |
+ROW |99101 |1354 |31929 |
+ROW |99102 |1354 |31930 |
+ROW |99103 |1354 |31931 |
+ROW |99104 |1354 |31932 |
+ROW |99105 |1354 |31933 |
+ROW |99106 |1354 |31934 |
+ROW |99107 |1354 |31935 |
+ROW |99108 |1354 |31936 |
+ROW |99109 |1354 |31937 |
+ROW |99110 |1354 |31938 |
+ROW |99111 |1354 |31939 |
+ROW |99112 |1354 |31940 |
+ROW |99113 |1354 |31941 |
+ROW |99114 |1354 |31942 |
+ROW |99115 |1354 |31943 |
+ROW |99116 |1354 |31944 |
+ROW |99117 |1354 |31945 |
+ROW |99118 |1354 |31946 |
+ROW |99119 |1354 |31947 |
+ROW |99120 |1354 |31948 |
+ROW |99121 |1354 |31949 |
+ROW |99122 |1354 |31950 |
+ROW |99123 |1354 |31951 |
+ROW |99124 |1354 |31952 |
+ROW |99125 |1354 |31953 |
+ROW |99126 |1354 |31954 |
+ROW |99127 |1354 |31955 |
+ROW |99128 |1354 |31956 |
+ROW |99129 |1354 |31957 |
+ROW |99130 |1354 |31958 |
+ROW |99131 |1354 |31959 |
+ROW |99132 |1354 |31960 |
+ROW |99133 |1354 |31961 |
+ROW |99134 |1354 |31962 |
+ROW |99135 |1354 |31963 |
+ROW |99136 |1109 |28511 |
+ROW |99137 |1342 |31554 |
+ROW |99138 |1342 |31555 |
+ROW |99139 |1342 |31556 |
+ROW |99140 |1343 |31557 |
+ROW |99141 |1343 |31558 |
+ROW |99142 |1343 |31559 |
+ROW |99143 |1343 |31560 |
+ROW |99144 |1343 |31561 |
+ROW |99145 |1343 |31562 |
+ROW |99146 |1343 |31563 |
+ROW |99147 |1343 |31564 |
+ROW |99148 |1343 |31565 |
+ROW |99149 |1343 |31566 |
+ROW |99150 |1343 |31567 |
+ROW |99151 |1343 |31568 |
+ROW |99152 |1343 |31569 |
+ROW |99153 |1343 |31570 |
+ROW |99154 |1343 |31571 |
+ROW |99155 |1343 |31572 |
+ROW |99156 |1343 |31573 |
+ROW |99157 |1343 |31574 |
+ROW |99158 |1343 |31575 |
+ROW |99159 |1344 |31576 |
+ROW |99160 |1344 |31577 |
+ROW |99161 |1344 |31578 |
+ROW |99162 |1344 |31579 |
+ROW |99163 |1344 |31580 |
+ROW |99164 |1344 |31581 |
+ROW |99165 |1344 |31582 |
+ROW |99166 |1344 |31583 |
+ROW |99167 |1344 |31584 |
+ROW |99168 |1344 |31585 |
+ROW |99169 |1344 |31586 |
+ROW |99170 |1344 |31587 |
+ROW |99171 |1344 |31588 |
+ROW |99172 |1344 |31589 |
+ROW |99173 |1344 |31590 |
+ROW |99174 |1344 |31591 |
+ROW |99175 |1344 |31592 |
+ROW |99176 |1344 |31593 |
+ROW |99177 |1344 |31594 |
+ROW |99178 |1344 |31595 |
+ROW |99179 |1344 |31596 |
+ROW |99180 |1342 |31605 |
+ROW |99181 |1342 |31606 |
+ROW |99182 |1342 |31607 |
+ROW |99183 |1342 |31608 |
+ROW |99184 |1342 |31609 |
+ROW |99185 |1343 |31610 |
+ROW |99186 |1343 |31611 |
+ROW |99187 |1343 |31612 |
+ROW |99188 |1343 |31613 |
+ROW |99189 |1343 |31614 |
+ROW |99190 |1343 |31615 |
+ROW |99191 |1343 |31616 |
+ROW |99192 |1343 |31617 |
+ROW |99193 |1343 |31618 |
+ROW |99194 |1343 |31619 |
+ROW |99195 |1343 |31620 |
+ROW |99196 |1343 |31621 |
+ROW |99197 |1344 |31622 |
+ROW |99198 |1344 |31623 |
+ROW |99199 |1344 |31624 |
+ROW |99200 |1344 |31625 |
+ROW |99201 |1360 |32158 |
+ROW |99202 |1360 |32159 |
+ROW |99203 |1361 |32160 |
+ROW |99204 |1361 |32161 |
+ROW |99205 |1361 |32162 |
+ROW |99206 |1361 |32163 |
+ROW |99207 |1361 |32164 |
+ROW |99208 |1361 |32165 |
+ROW |99209 |1361 |32166 |
+ROW |99210 |1361 |32167 |
+ROW |99211 |1361 |32168 |
+ROW |99212 |1361 |32169 |
+ROW |99213 |1361 |32170 |
+ROW |99214 |1361 |32171 |
+ROW |99215 |1361 |32172 |
+ROW |99216 |1361 |32173 |
+ROW |99217 |1361 |32174 |
+ROW |99218 |1361 |32175 |
+ROW |99219 |1361 |32176 |
+ROW |99220 |1361 |32177 |
+ROW |99221 |1361 |32178 |
+ROW |99222 |1361 |32179 |
+ROW |99223 |1361 |32180 |
+ROW |99224 |1361 |32181 |
+ROW |99225 |1361 |32182 |
+ROW |99226 |1361 |32183 |
+ROW |99227 |1361 |32184 |
+ROW |99228 |1361 |32185 |
+ROW |99229 |1361 |32186 |
+ROW |99230 |1361 |32187 |
+ROW |99231 |1361 |32188 |
+ROW |99232 |1361 |32189 |
+ROW |99233 |1361 |32190 |
+ROW |99234 |1361 |32191 |
+ROW |99235 |1361 |32192 |
+ROW |99236 |1361 |32201 |
+ROW |99237 |1361 |32202 |
+ROW |99238 |1361 |32203 |
+ROW |99239 |1361 |32204 |
+ROW |99240 |1361 |32205 |
+ROW |99241 |1361 |32206 |
+ROW |99242 |446 |23644 |
+ROW |99243 |447 |23645 |
+ROW |99244 |448 |23646 |
+ROW |99245 |449 |23647 |
+ROW |99246 |450 |23648 |
+ROW |99247 |451 |23649 |
+ROW |99248 |452 |23650 |
+ROW |99249 |453 |23651 |
+ROW |99250 |1111 |28585 |
+ROW |99251 |1111 |28586 |
+ROW |99252 |1111 |28587 |
+ROW |99253 |1111 |28588 |
+ROW |99254 |1111 |28589 |
+ROW |99255 |1111 |28590 |
+ROW |99256 |1111 |28591 |
+ROW |99257 |1111 |28592 |
+ROW |99258 |1111 |28593 |
+ROW |99259 |1111 |28594 |
+ROW |99260 |1111 |28595 |
+ROW |99261 |1111 |28596 |
+ROW |99262 |1111 |28597 |
+ROW |99263 |1111 |28598 |
+ROW |99264 |1111 |28599 |
+ROW |99265 |1111 |28600 |
+ROW |99266 |1111 |28601 |
+ROW |99267 |1111 |28602 |
+ROW |99268 |1111 |28603 |
+ROW |99269 |1111 |28604 |
+ROW |99270 |1111 |28605 |
+ROW |99271 |1111 |28606 |
+ROW |99272 |1111 |28607 |
+ROW |99273 |1111 |28608 |
+ROW |99274 |1111 |28609 |
+ROW |99275 |1111 |28610 |
+ROW |99276 |1111 |28611 |
+ROW |99277 |1111 |28612 |
+ROW |99278 |1111 |28613 |
+ROW |99279 |1111 |28614 |
+ROW |99280 |1111 |28615 |
+ROW |99281 |1111 |28616 |
+ROW |99282 |1111 |31052 |
+ROW |99283 |1110 |28539 |
+ROW |99284 |1110 |28540 |
+ROW |99285 |1110 |28541 |
+ROW |99286 |1110 |28542 |
+ROW |99287 |1110 |28543 |
+ROW |99288 |1110 |28544 |
+ROW |99289 |1110 |28545 |
+ROW |99290 |1110 |28546 |
+ROW |99291 |1110 |28547 |
+ROW |99292 |1110 |28548 |
+ROW |99293 |1110 |28549 |
+ROW |99294 |1110 |28550 |
+ROW |99295 |1110 |28551 |
+ROW |99296 |1110 |28552 |
+ROW |99297 |1110 |28553 |
+ROW |99298 |1110 |28554 |
+ROW |99299 |1110 |28555 |
+ROW |99300 |1110 |28556 |
+ROW |99301 |1110 |28557 |
+ROW |99302 |1110 |28558 |
+ROW |99303 |1110 |28559 |
+ROW |99304 |1110 |28560 |
+ROW |99305 |1110 |28561 |
+ROW |99306 |1110 |28562 |
+ROW |99307 |1110 |28563 |
+ROW |99308 |1110 |28564 |
+ROW |99309 |1110 |28565 |
+ROW |99310 |1110 |28566 |
+ROW |99311 |1110 |28567 |
+ROW |99312 |1110 |28568 |
+ROW |99313 |1110 |28569 |
+ROW |99314 |1110 |28570 |
+ROW |99315 |1110 |28571 |
+ROW |99316 |1110 |28572 |
+ROW |99317 |1110 |28573 |
+ROW |99318 |1110 |28574 |
+ROW |99319 |1110 |28575 |
+ROW |99320 |1110 |28576 |
+ROW |99321 |1110 |28577 |
+ROW |99322 |1110 |28578 |
+ROW |99323 |1110 |28579 |
+ROW |99324 |1110 |28580 |
+ROW |99325 |1110 |28581 |
+ROW |99326 |1110 |28582 |
+ROW |99327 |1110 |28583 |
+ROW |99328 |1110 |28584 |
+ROW |99329 |1110 |29821 |
+ROW |99330 |1110 |31053 |
+ROW |99331 |454 |23652 |
+ROW |99332 |455 |23653 |
+ROW |99333 |456 |23654 |
+ROW |99334 |356 |10067 |
+ROW |99335 |356 |10068 |
+ROW |99336 |356 |10069 |
+ROW |99337 |356 |10070 |
+ROW |99338 |356 |10071 |
+ROW |99339 |356 |10072 |
+ROW |99340 |356 |23340 |
+ROW |99341 |356 |23341 |
+ROW |99342 |356 |23342 |
+ROW |99343 |356 |23343 |
+ROW |99344 |356 |23344 |
+ROW |99345 |356 |23345 |
+ROW |99346 |356 |23346 |
+ROW |99347 |356 |23347 |
+ROW |99348 |356 |23348 |
+ROW |99349 |356 |23349 |
+ROW |99350 |356 |23350 |
+ROW |99351 |356 |23351 |
+ROW |99352 |356 |23352 |
+ROW |99353 |356 |23353 |
+ROW |99354 |356 |23354 |
+ROW |99355 |356 |23355 |
+ROW |99356 |356 |23356 |
+ROW |99357 |356 |23357 |
+ROW |99358 |356 |23358 |
+ROW |99359 |356 |23359 |
+ROW |99360 |356 |23360 |
+ROW |99361 |356 |25368 |
+ROW |99362 |356 |25369 |
+ROW |99363 |356 |28250 |
+ROW |99364 |356 |28251 |
+ROW |99365 |356 |28617 |
+ROW |99366 |356 |28618 |
+ROW |99367 |356 |28619 |
+ROW |99368 |179 |10061 |
+ROW |99369 |179 |10062 |
+ROW |99370 |179 |10063 |
+ROW |99371 |179 |10064 |
+ROW |99372 |179 |10065 |
+ROW |99373 |179 |10066 |
+ROW |99374 |179 |22183 |
+ROW |99375 |179 |22185 |
+ROW |99376 |179 |22187 |
+ROW |99377 |179 |22189 |
+ROW |99378 |179 |22191 |
+ROW |99379 |179 |22196 |
+ROW |99380 |179 |22199 |
+ROW |99381 |179 |22219 |
+ROW |99382 |179 |22396 |
+ROW |99383 |179 |22399 |
+ROW |99384 |179 |22400 |
+ROW |99385 |179 |22401 |
+ROW |99386 |179 |22402 |
+ROW |99387 |179 |22404 |
+ROW |99388 |179 |22406 |
+ROW |99389 |179 |22408 |
+ROW |99390 |179 |22412 |
+ROW |99391 |179 |22414 |
+ROW |99392 |179 |22416 |
+ROW |99393 |179 |22418 |
+ROW |99394 |179 |22420 |
+ROW |99395 |179 |22422 |
+ROW |99396 |179 |22424 |
+ROW |99397 |179 |22426 |
+ROW |99398 |179 |22430 |
+ROW |99399 |179 |22689 |
+ROW |99400 |179 |23171 |
+ROW |99401 |179 |23251 |
+ROW |99402 |179 |23634 |
+ROW |99403 |179 |23661 |
+ROW |99404 |179 |23663 |
+ROW |99405 |179 |25366 |
+ROW |99406 |179 |25370 |
+ROW |99407 |179 |25665 |
+ROW |99408 |179 |25666 |
+ROW |99409 |179 |28248 |
+ROW |99410 |179 |28533 |
+ROW |99411 |179 |28535 |
+ROW |99412 |179 |28537 |
+ROW |99413 |179 |29822 |
+ROW |99414 |345 |10073 |
+ROW |99415 |345 |10074 |
+ROW |99416 |345 |10075 |
+ROW |99417 |345 |10076 |
+ROW |99418 |345 |10077 |
+ROW |99419 |345 |10078 |
+ROW |99420 |345 |23252 |
+ROW |99421 |345 |23253 |
+ROW |99422 |345 |23255 |
+ROW |99423 |345 |23256 |
+ROW |99424 |345 |23257 |
+ROW |99425 |345 |23258 |
+ROW |99426 |345 |23259 |
+ROW |99427 |345 |23260 |
+ROW |99428 |345 |23261 |
+ROW |99429 |345 |23262 |
+ROW |99430 |345 |23264 |
+ROW |99431 |345 |23265 |
+ROW |99432 |345 |23266 |
+ROW |99433 |345 |23267 |
+ROW |99434 |345 |23268 |
+ROW |99435 |345 |23269 |
+ROW |99436 |345 |23270 |
+ROW |99437 |345 |23271 |
+ROW |99438 |345 |23272 |
+ROW |99439 |345 |23273 |
+ROW |99440 |345 |23274 |
+ROW |99441 |345 |23275 |
+ROW |99442 |345 |23276 |
+ROW |99443 |345 |23277 |
+ROW |99444 |345 |23328 |
+ROW |99445 |345 |23620 |
+ROW |99446 |345 |23625 |
+ROW |99447 |345 |23628 |
+ROW |99448 |345 |23635 |
+ROW |99449 |345 |23662 |
+ROW |99450 |345 |23664 |
+ROW |99451 |345 |25367 |
+ROW |99452 |345 |25371 |
+ROW |99453 |345 |25667 |
+ROW |99454 |345 |25668 |
+ROW |99455 |345 |28249 |
+ROW |99456 |345 |28534 |
+ROW |99457 |345 |28536 |
+ROW |99458 |345 |28538 |
+ROW |99459 |345 |29823 |
+ROW |99460 |280 |22917 |
+ROW |99461 |280 |22918 |
+ROW |99462 |273 |22920 |
+ROW |99463 |279 |22920 |
+ROW |99464 |273 |22921 |
+ROW |99465 |279 |22921 |
+ROW |99466 |273 |22922 |
+ROW |99467 |279 |22922 |
+ROW |99468 |273 |22923 |
+ROW |99469 |279 |22923 |
+ROW |99470 |273 |22924 |
+ROW |99471 |279 |22924 |
+ROW |99472 |275 |22933 |
+ROW |99473 |278 |22933 |
+ROW |99474 |275 |22934 |
+ROW |99475 |278 |22934 |
+ROW |99476 |275 |22938 |
+ROW |99477 |278 |22938 |
+ROW |99478 |275 |22939 |
+ROW |99479 |278 |22939 |
+ROW |99480 |278 |22940 |
+ROW |99481 |281 |22940 |
+ROW |99482 |281 |22941 |
+ROW |99483 |276 |22942 |
+ROW |99484 |276 |22943 |
+ROW |99485 |273 |23108 |
+ROW |99486 |331 |23108 |
+ROW |99487 |279 |23108 |
+ROW |99488 |273 |23109 |
+ROW |99489 |331 |23109 |
+ROW |99490 |279 |23109 |
+ROW |99491 |273 |23110 |
+ROW |99492 |279 |23110 |
+ROW |99493 |273 |23111 |
+ROW |99494 |331 |23111 |
+ROW |99495 |279 |23111 |
+ROW |99496 |273 |23112 |
+ROW |99497 |331 |23112 |
+ROW |99498 |279 |23112 |
+ROW |99499 |273 |23113 |
+ROW |99500 |279 |23113 |
+ROW |99501 |273 |23114 |
+ROW |99502 |279 |23114 |
+ROW |99503 |273 |23115 |
+ROW |99504 |279 |23115 |
+ROW |99505 |274 |23116 |
+ROW |99506 |279 |23116 |
+ROW |99507 |274 |23117 |
+ROW |99508 |279 |23117 |
+ROW |99509 |273 |23118 |
+ROW |99510 |331 |23118 |
+ROW |99511 |273 |23119 |
+ROW |99512 |279 |23119 |
+ROW |99513 |273 |23120 |
+ROW |99514 |279 |23120 |
+ROW |99515 |273 |23121 |
+ROW |99516 |279 |23121 |
+ROW |99517 |276 |23122 |
+ROW |99518 |279 |23122 |
+ROW |99519 |273 |23123 |
+ROW |99520 |279 |23123 |
+ROW |99521 |276 |23124 |
+ROW |99522 |276 |23125 |
+ROW |99523 |276 |23126 |
+ROW |99524 |276 |23127 |
+ROW |99525 |276 |23128 |
+ROW |99526 |276 |23129 |
+ROW |99527 |276 |23130 |
+ROW |99528 |276 |23131 |
+ROW |99529 |277 |22945 |
+ROW |99530 |277 |22946 |
+ROW |99531 |274 |22948 |
+ROW |99532 |274 |22949 |
+ROW |99533 |274 |22950 |
+ROW |99534 |274 |22951 |
+ROW |99535 |274 |22952 |
+ROW |99536 |268 |22875 |
+ROW |99537 |268 |22876 |
+ROW |99538 |270 |22877 |
+ROW |99539 |270 |22878 |
+ROW |99540 |265 |22879 |
+ROW |99541 |268 |22879 |
+ROW |99542 |263 |22880 |
+ROW |99543 |269 |22880 |
+ROW |99544 |263 |22881 |
+ROW |99545 |269 |22881 |
+ROW |99546 |263 |22882 |
+ROW |99547 |269 |22882 |
+ROW |99548 |263 |22883 |
+ROW |99549 |269 |22883 |
+ROW |99550 |263 |22884 |
+ROW |99551 |269 |22884 |
+ROW |99552 |263 |22885 |
+ROW |99553 |269 |22885 |
+ROW |99554 |263 |22886 |
+ROW |99555 |269 |22886 |
+ROW |99556 |263 |22888 |
+ROW |99557 |269 |22888 |
+ROW |99558 |263 |22891 |
+ROW |99559 |269 |22891 |
+ROW |99560 |263 |22892 |
+ROW |99561 |269 |22892 |
+ROW |99562 |265 |22893 |
+ROW |99563 |268 |22893 |
+ROW |99564 |265 |22894 |
+ROW |99565 |268 |22894 |
+ROW |99566 |266 |22895 |
+ROW |99567 |266 |22896 |
+ROW |99568 |266 |22897 |
+ROW |99569 |265 |22898 |
+ROW |99570 |268 |22898 |
+ROW |99571 |265 |22899 |
+ROW |99572 |268 |22899 |
+ROW |99573 |268 |22900 |
+ROW |99574 |271 |22900 |
+ROW |99575 |271 |22901 |
+ROW |99576 |266 |22902 |
+ROW |99577 |266 |22903 |
+ROW |99578 |264 |22908 |
+ROW |99579 |264 |22909 |
+ROW |99580 |264 |22910 |
+ROW |99581 |264 |22911 |
+ROW |99582 |264 |22912 |
+ROW |99583 |267 |23073 |
+ROW |99584 |267 |23074 |
+ROW |99585 |283 |22961 |
+ROW |99586 |289 |22961 |
+ROW |99587 |283 |22962 |
+ROW |99588 |289 |22962 |
+ROW |99589 |283 |22963 |
+ROW |99590 |289 |22963 |
+ROW |99591 |283 |22965 |
+ROW |99592 |289 |22965 |
+ROW |99593 |283 |22968 |
+ROW |99594 |289 |22968 |
+ROW |99595 |283 |22971 |
+ROW |99596 |289 |22971 |
+ROW |99597 |283 |22972 |
+ROW |99598 |289 |22972 |
+ROW |99599 |285 |22973 |
+ROW |99600 |288 |22973 |
+ROW |99601 |285 |22974 |
+ROW |99602 |288 |22974 |
+ROW |99603 |285 |22978 |
+ROW |99604 |288 |22978 |
+ROW |99605 |288 |22980 |
+ROW |99606 |291 |22980 |
+ROW |99607 |291 |22981 |
+ROW |99608 |286 |22982 |
+ROW |99609 |286 |22983 |
+ROW |99610 |287 |22985 |
+ROW |99611 |287 |22986 |
+ROW |99612 |284 |22988 |
+ROW |99613 |284 |22989 |
+ROW |99614 |284 |22990 |
+ROW |99615 |284 |22991 |
+ROW |99616 |284 |22992 |
+ROW |99617 |308 |23035 |
+ROW |99618 |308 |23036 |
+ROW |99619 |305 |23039 |
+ROW |99620 |308 |23039 |
+ROW |99621 |303 |23041 |
+ROW |99622 |309 |23041 |
+ROW |99623 |303 |23042 |
+ROW |99624 |309 |23042 |
+ROW |99625 |303 |23043 |
+ROW |99626 |309 |23043 |
+ROW |99627 |305 |23053 |
+ROW |99628 |308 |23053 |
+ROW |99629 |305 |23054 |
+ROW |99630 |308 |23054 |
+ROW |99631 |305 |23058 |
+ROW |99632 |308 |23058 |
+ROW |99633 |305 |23059 |
+ROW |99634 |308 |23059 |
+ROW |99635 |308 |23060 |
+ROW |99636 |311 |23060 |
+ROW |99637 |311 |23061 |
+ROW |99638 |306 |23062 |
+ROW |99639 |306 |23063 |
+ROW |99640 |307 |23077 |
+ROW |99641 |307 |23078 |
+ROW |99642 |304 |23068 |
+ROW |99643 |304 |23069 |
+ROW |99644 |304 |23070 |
+ROW |99645 |304 |23071 |
+ROW |99646 |304 |23072 |
+ROW |99647 |258 |22835 |
+ROW |99648 |258 |22836 |
+ROW |99649 |260 |22837 |
+ROW |99650 |260 |22838 |
+ROW |99651 |255 |22839 |
+ROW |99652 |258 |22839 |
+ROW |99653 |253 |22840 |
+ROW |99654 |259 |22840 |
+ROW |99655 |253 |22841 |
+ROW |99656 |259 |22841 |
+ROW |99657 |253 |22842 |
+ROW |99658 |259 |22842 |
+ROW |99659 |253 |22843 |
+ROW |99660 |259 |22843 |
+ROW |99661 |253 |22844 |
+ROW |99662 |259 |22844 |
+ROW |99663 |253 |22845 |
+ROW |99664 |259 |22845 |
+ROW |99665 |253 |22846 |
+ROW |99666 |259 |22846 |
+ROW |99667 |253 |22848 |
+ROW |99668 |259 |22848 |
+ROW |99669 |253 |22851 |
+ROW |99670 |259 |22851 |
+ROW |99671 |253 |22852 |
+ROW |99672 |259 |22852 |
+ROW |99673 |255 |22853 |
+ROW |99674 |258 |22853 |
+ROW |99675 |255 |22854 |
+ROW |99676 |258 |22854 |
+ROW |99677 |256 |22855 |
+ROW |99678 |256 |22856 |
+ROW |99679 |256 |22857 |
+ROW |99680 |255 |22858 |
+ROW |99681 |258 |22858 |
+ROW |99682 |255 |22859 |
+ROW |99683 |258 |22859 |
+ROW |99684 |258 |22860 |
+ROW |99685 |261 |22860 |
+ROW |99686 |261 |22861 |
+ROW |99687 |256 |22862 |
+ROW |99688 |256 |22863 |
+ROW |99689 |254 |22868 |
+ROW |99690 |254 |22869 |
+ROW |99691 |254 |22870 |
+ROW |99692 |254 |22871 |
+ROW |99693 |254 |22872 |
+ROW |99694 |257 |23075 |
+ROW |99695 |257 |23076 |
+ROW |99696 |298 |22996 |
+ROW |99697 |300 |22997 |
+ROW |99698 |300 |22998 |
+ROW |99699 |295 |22999 |
+ROW |99700 |298 |22999 |
+ROW |99701 |293 |23000 |
+ROW |99702 |299 |23000 |
+ROW |99703 |293 |23001 |
+ROW |99704 |299 |23001 |
+ROW |99705 |293 |23002 |
+ROW |99706 |299 |23002 |
+ROW |99707 |293 |23003 |
+ROW |99708 |299 |23003 |
+ROW |99709 |293 |23004 |
+ROW |99710 |299 |23004 |
+ROW |99711 |293 |23005 |
+ROW |99712 |299 |23005 |
+ROW |99713 |293 |23007 |
+ROW |99714 |299 |23007 |
+ROW |99715 |293 |23011 |
+ROW |99716 |299 |23011 |
+ROW |99717 |293 |23012 |
+ROW |99718 |299 |23012 |
+ROW |99719 |295 |23013 |
+ROW |99720 |298 |23013 |
+ROW |99721 |295 |23014 |
+ROW |99722 |298 |23014 |
+ROW |99723 |296 |23015 |
+ROW |99724 |296 |23016 |
+ROW |99725 |296 |23017 |
+ROW |99726 |295 |23018 |
+ROW |99727 |298 |23018 |
+ROW |99728 |295 |23019 |
+ROW |99729 |298 |23019 |
+ROW |99730 |298 |23020 |
+ROW |99731 |301 |23020 |
+ROW |99732 |301 |23021 |
+ROW |99733 |296 |23022 |
+ROW |99734 |296 |23023 |
+ROW |99735 |297 |23025 |
+ROW |99736 |297 |23026 |
+ROW |99737 |294 |23028 |
+ROW |99738 |294 |23029 |
+ROW |99739 |294 |23030 |
+ROW |99740 |294 |23031 |
+ROW |99741 |294 |23032 |
+ROW |99742 |743 |26925 |
+ROW |99743 |743 |26926 |
+ROW |99744 |741 |26927 |
+ROW |99745 |742 |26928 |
+ROW |99746 |743 |26929 |
+ROW |99747 |743 |26930 |
+ROW |99748 |743 |26931 |
+ROW |99749 |743 |26932 |
+ROW |99750 |745 |26933 |
+ROW |99751 |746 |26934 |
+ROW |99752 |744 |26935 |
+ROW |99753 |744 |26936 |
+ROW |99754 |746 |26937 |
+ROW |99755 |746 |26938 |
+ROW |99756 |746 |26939 |
+ROW |99757 |746 |26940 |
+ROW |99758 |746 |26941 |
+ROW |99759 |746 |26942 |
+ROW |99760 |745 |26943 |
+ROW |99761 |1362 |32207 |
+ROW |99762 |1362 |32208 |
+ROW |99763 |1362 |32209 |
+ROW |99764 |1362 |32210 |
+ROW |99765 |1362 |32211 |
+ROW |99766 |1362 |32212 |
+ROW |99767 |1362 |32213 |
+ROW |99768 |1362 |32214 |
+ROW |99769 |1362 |32215 |
+ROW |99770 |1362 |32216 |
+ROW |99771 |1362 |32217 |
+ROW |99772 |1362 |32218 |
+ROW |99773 |1362 |32219 |
+ROW |99774 |1362 |32220 |
+ROW |99775 |1362 |32221 |
+ROW |99776 |1362 |32222 |
+ROW |99777 |1362 |32223 |
+ROW |99778 |1362 |32224 |
+ROW |99779 |1362 |32225 |
+ROW |99780 |1362 |32226 |
+ROW |99781 |1362 |32227 |
+ROW |99782 |1362 |32228 |
+ROW |99783 |1362 |32229 |
+ROW |99784 |1362 |32230 |
+ROW |99785 |1362 |32231 |
+ROW |99786 |1362 |32232 |
+ROW |99787 |1362 |32233 |
+ROW |99788 |1362 |32234 |
+ROW |99789 |1362 |32235 |
+ROW |99790 |1362 |32236 |
+ROW |99791 |1362 |32237 |
+ROW |99792 |1362 |32238 |
+ROW |99793 |1362 |32239 |
+ROW |99794 |1362 |32240 |
+ROW |99795 |1362 |32241 |
+ROW |99796 |1362 |32242 |
+ROW |99797 |1362 |32243 |
+ROW |99798 |1362 |32244 |
+ROW |99799 |1362 |32245 |
+ROW |99800 |1362 |32246 |
+ROW |99801 |1362 |32247 |
+ROW |99802 |1362 |32248 |
+ROW |99803 |1362 |32249 |
+ROW |99804 |1362 |32250 |
+ROW |99805 |1362 |32251 |
+ROW |99806 |1362 |32252 |
+ROW |99807 |1362 |32253 |
+ROW |99808 |1362 |32254 |
+ROW |99809 |1362 |32255 |
+ROW |99810 |1362 |32256 |
+ROW |99811 |1362 |32257 |
+ROW |99812 |1362 |32258 |
+ROW |99813 |1362 |32259 |
+ROW |99814 |1362 |32260 |
+ROW |99815 |1362 |32261 |
+ROW |99816 |1362 |32262 |
+ROW |99817 |1362 |32263 |
+ROW |99818 |1362 |32264 |
+ROW |99819 |1362 |32265 |
+ROW |99820 |1362 |32266 |
+ROW |99821 |1362 |32267 |
+ROW |99822 |1362 |32268 |
+ROW |99823 |1362 |32269 |
+ROW |99824 |1362 |32270 |
+ROW |99825 |1362 |32271 |
+ROW |99826 |1362 |32272 |
+ROW |99827 |1362 |32273 |
+ROW |99828 |1328 |30821 |
+ROW |99829 |1328 |30822 |
+ROW |99830 |1330 |30823 |
+ROW |99831 |1330 |30824 |
+ROW |99832 |1330 |30825 |
+ROW |99833 |1330 |30826 |
+ROW |99834 |1328 |30827 |
+ROW |99835 |1330 |30828 |
+ROW |99836 |1330 |30829 |
+ROW |99837 |1330 |30830 |
+ROW |99838 |1328 |31054 |
+ROW |99839 |1328 |30831 |
+ROW |99840 |1328 |30832 |
+ROW |99841 |1328 |30833 |
+ROW |99842 |1328 |30834 |
+ROW |99843 |1328 |30835 |
+ROW |99844 |1329 |30836 |
+ROW |99845 |1328 |30837 |
+ROW |99846 |1328 |30838 |
+ROW |99847 |1328 |30839 |
+ROW |99848 |1329 |30840 |
+ROW |99849 |1328 |30841 |
+ROW |99850 |1329 |30842 |
+ROW |99851 |1329 |30843 |
+ROW |99852 |1329 |30844 |
+ROW |99853 |1329 |30845 |
+ROW |99854 |1328 |30846 |
+ROW |99855 |1328 |30847 |
+ROW |99856 |1328 |30848 |
+ROW |99857 |1328 |30849 |
+ROW |99858 |1328 |30850 |
+ROW |99859 |1328 |30851 |
+ROW |99860 |1328 |30852 |
+ROW |99861 |1328 |30853 |
+ROW |99862 |1328 |30854 |
+ROW |99863 |1328 |30855 |
+ROW |99864 |1328 |30856 |
+ROW |99865 |1328 |30857 |
+ROW |99866 |1328 |30858 |
+ROW |99867 |1328 |30859 |
+ROW |99868 |1328 |30860 |
+ROW |99869 |1328 |30861 |
+ROW |99870 |1328 |30862 |
+ROW |99871 |1328 |30863 |
+ROW |99872 |1328 |30864 |
+ROW |99873 |1328 |30865 |
+ROW |99874 |1328 |30866 |
+ROW |99875 |1328 |30867 |
+ROW |99876 |1328 |30868 |
+ROW |99877 |1328 |30869 |
+ROW |99878 |1328 |30870 |
+ROW |99879 |1328 |30871 |
+ROW |99880 |1328 |30872 |
+ROW |99881 |1329 |30873 |
+ROW |99882 |1434 |33017 |
+ROW |99883 |1434 |33018 |
+ROW |99884 |1433 |33019 |
+ROW |99885 |1434 |33020 |
+ROW |99886 |1434 |33021 |
+ROW |99887 |1433 |33022 |
+ROW |99888 |1433 |33023 |
+ROW |99889 |1433 |33024 |
+ROW |99890 |1433 |33025 |
+ROW |99891 |1433 |33026 |
+ROW |99892 |1433 |33027 |
+ROW |99893 |1433 |33028 |
+ROW |99894 |1433 |33029 |
+ROW |99895 |1433 |33030 |
+ROW |99896 |1433 |33031 |
+ROW |99897 |1433 |33032 |
+ROW |99898 |1433 |33033 |
+ROW |99899 |1433 |33034 |
+ROW |99900 |1433 |33035 |
+ROW |99901 |1433 |33036 |
+ROW |99902 |1433 |33037 |
+ROW |99903 |1433 |33038 |
+ROW |99904 |1433 |33039 |
+ROW |99905 |1433 |33040 |
+ROW |99906 |1433 |33041 |
+ROW |99907 |1433 |33042 |
+ROW |99908 |1433 |33043 |
+ROW |99909 |1433 |33044 |
+ROW |99910 |1433 |33045 |
+ROW |99911 |1433 |33046 |
+ROW |99912 |1433 |33047 |
+ROW |99913 |1433 |33048 |
+ROW |99914 |1433 |33049 |
+ROW |99915 |1433 |33050 |
+ROW |99916 |1433 |33051 |
+ROW |99917 |1433 |33052 |
+ROW |99918 |1433 |33053 |
+ROW |99919 |1433 |33054 |
+ROW |99920 |1433 |33055 |
+ROW |99921 |1433 |33056 |
+ROW |99922 |1433 |33057 |
+ROW |99923 |1433 |33058 |
+ROW |99924 |1433 |33059 |
+ROW |99925 |1433 |33060 |
+ROW |99926 |1434 |33065 |
+ROW |99927 |1434 |33066 |
+ROW |99928 |1433 |33122 |
+ROW |99929 |1433 |33123 |
+ROW |99930 |1433 |33124 |
+ROW |99931 |1433 |33125 |
+ROW |99932 |1433 |33126 |
+ROW |99933 |1433 |33127 |
+ROW |99934 |1433 |33128 |
+ROW |99935 |1433 |33129 |
+ROW |99936 |1433 |33130 |
+ROW |99937 |1433 |33131 |
+ROW |99938 |1433 |33132 |
+ROW |99939 |1433 |33133 |
+ROW |99940 |1433 |33134 |
+ROW |99941 |1433 |33135 |
+ROW |99942 |1433 |33136 |
+ROW |99943 |1433 |33137 |
+ROW |99944 |1433 |33138 |
+ROW |99945 |1435 |33139 |
+ROW |99946 |1436 |33140 |
+ROW |99947 |1435 |33141 |
+ROW |99948 |1436 |33142 |
+ROW |99949 |1435 |33143 |
+ROW |99950 |1435 |33144 |
+ROW |99951 |1435 |33145 |
+ROW |99952 |1435 |33146 |
+ROW |99953 |1435 |33147 |
+ROW |99954 |1435 |33148 |
+ROW |99955 |1435 |33149 |
+ROW |99956 |1435 |33150 |
+ROW |99957 |1435 |33151 |
+ROW |99958 |1435 |33152 |
+ROW |99959 |1435 |33153 |
+ROW |99960 |1435 |33154 |
+ROW |99961 |1435 |33155 |
+ROW |99962 |1435 |33156 |
+ROW |99963 |1435 |33157 |
+ROW |99964 |1435 |33158 |
+ROW |99965 |1435 |33159 |
+ROW |99966 |1435 |33160 |
+ROW |99967 |1435 |33161 |
+ROW |99968 |1435 |33162 |
+ROW |99969 |1435 |33163 |
+ROW |99970 |1435 |33164 |
+ROW |99971 |1435 |33165 |
+ROW |99972 |1435 |33166 |
+ROW |99973 |1435 |33167 |
+ROW |99974 |1435 |33168 |
+ROW |99975 |1435 |33169 |
+ROW |99976 |1435 |33170 |
+ROW |99977 |1435 |33171 |
+ROW |99978 |1435 |33172 |
+ROW |99979 |1436 |33177 |
+ROW |99980 |1436 |33178 |
+ROW |99981 |1336 |31055 |
+ROW |99982 |1335 |31056 |
+ROW |99983 |1335 |31057 |
+ROW |99984 |1335 |31058 |
+ROW |99985 |1335 |31626 |
+ROW |99986 |1335 |31627 |
+ROW |99987 |1335 |31628 |
+ROW |99988 |1336 |31059 |
+ROW |99989 |1335 |31060 |
+ROW |99990 |1335 |31061 |
+ROW |99991 |1335 |31062 |
+ROW |99992 |1335 |31063 |
+ROW |99993 |1335 |31064 |
+ROW |99994 |1335 |31065 |
+ROW |99995 |1335 |31066 |
+ROW |99996 |1335 |31067 |
+ROW |99997 |1335 |31068 |
+ROW |99998 |1335 |31069 |
+ROW |99999 |1335 |31070 |
+ROW |100000 |1335 |31071 |
+ROW |100001 |1335 |31072 |
+ROW |100002 |1335 |31073 |
+ROW |100003 |1335 |31074 |
+ROW |100004 |1335 |31075 |
+ROW |100005 |1335 |31076 |
+ROW |100006 |1335 |31077 |
+ROW |100007 |1335 |31078 |
+ROW |100008 |1335 |31079 |
+ROW |100009 |1335 |31080 |
+ROW |100010 |1335 |31081 |
+ROW |100011 |1335 |31082 |
+ROW |100012 |1335 |31083 |
+ROW |100013 |1335 |31084 |
+ROW |100014 |1335 |31085 |
+ROW |100015 |1335 |31086 |
+ROW |100016 |1335 |31087 |
+ROW |100017 |1335 |31088 |
+ROW |100018 |1335 |31089 |
+ROW |100019 |1335 |31090 |
+ROW |100020 |1336 |31091 |
+ROW |100021 |1335 |31092 |
+ROW |100022 |1336 |31093 |
+ROW |100023 |1336 |31094 |
+ROW |100024 |1335 |31095 |
+ROW |100025 |1335 |31096 |
+ROW |100026 |1335 |31097 |
+ROW |100027 |1335 |31098 |
+ROW |100028 |1335 |31099 |
+ROW |100029 |1335 |31100 |
+ROW |100030 |1335 |31101 |
+ROW |100031 |1335 |31102 |
+ROW |100032 |1335 |31103 |
+ROW |100033 |1335 |31104 |
+ROW |100034 |1335 |31105 |
+ROW |100035 |1335 |31106 |
+ROW |100036 |1335 |31107 |
+ROW |100037 |1335 |31108 |
+ROW |100038 |1335 |31109 |
+ROW |100039 |1335 |31110 |
+ROW |100040 |1335 |31111 |
+ROW |100041 |1335 |31112 |
+ROW |100042 |1335 |31113 |
+ROW |100043 |1335 |31114 |
+ROW |100044 |1335 |31115 |
+ROW |100045 |1335 |31116 |
+ROW |100046 |1335 |31117 |
+ROW |100047 |1335 |31118 |
+ROW |100048 |1335 |31119 |
+ROW |100049 |1335 |31120 |
+ROW |100050 |1335 |31121 |
+ROW |100051 |1336 |33194 |
+ROW |100052 |1336 |31128 |
+ROW |100053 |1336 |31129 |
+ROW |100054 |1336 |31130 |
+ROW |100055 |1336 |31132 |
+ROW |100056 |1314 |30431 |
+ROW |100057 |1314 |30432 |
+ROW |100058 |1315 |30433 |
+ROW |100059 |1314 |30434 |
+ROW |100060 |1314 |30435 |
+ROW |100061 |1314 |32546 |
+ROW |100062 |1315 |30436 |
+ROW |100063 |1314 |30437 |
+ROW |100064 |1314 |30438 |
+ROW |100065 |1314 |30439 |
+ROW |100066 |1314 |30440 |
+ROW |100067 |1314 |30441 |
+ROW |100068 |1314 |30442 |
+ROW |100069 |1315 |30443 |
+ROW |100070 |1314 |30444 |
+ROW |100071 |1314 |30445 |
+ROW |100072 |1314 |30446 |
+ROW |100073 |1314 |30447 |
+ROW |100074 |1314 |30449 |
+ROW |100075 |1314 |30450 |
+ROW |100076 |1314 |30451 |
+ROW |100077 |1314 |30452 |
+ROW |100078 |1314 |30453 |
+ROW |100079 |1314 |30454 |
+ROW |100080 |1314 |30455 |
+ROW |100081 |1314 |30456 |
+ROW |100082 |1314 |30457 |
+ROW |100083 |1314 |30458 |
+ROW |100084 |1314 |30459 |
+ROW |100085 |1314 |30460 |
+ROW |100086 |1314 |30461 |
+ROW |100087 |1314 |30462 |
+ROW |100088 |1314 |30463 |
+ROW |100089 |1314 |30464 |
+ROW |100090 |1314 |30465 |
+ROW |100091 |1314 |30466 |
+ROW |100092 |1314 |30470 |
+ROW |100093 |1314 |30471 |
+ROW |100094 |1314 |31168 |
+ROW |100095 |1314 |31169 |
+ROW |100096 |1314 |31170 |
+ROW |100097 |1314 |31171 |
+ROW |100098 |1314 |32547 |
+ROW |100099 |1314 |32548 |
+ROW |100100 |1314 |32549 |
+ROW |100101 |1314 |32550 |
+ROW |100102 |1314 |32551 |
+ROW |100103 |1314 |32552 |
+ROW |100104 |1314 |30474 |
+ROW |100105 |1315 |30475 |
+ROW |100106 |1314 |30476 |
+ROW |100107 |1314 |30477 |
+ROW |100108 |1314 |30478 |
+ROW |100109 |1314 |32554 |
+ROW |100110 |1314 |32555 |
+ROW |100111 |1314 |32556 |
+ROW |100112 |1314 |32557 |
+ROW |100113 |1314 |32558 |
+ROW |100114 |1314 |32559 |
+ROW |100115 |1322 |30637 |
+ROW |100116 |1322 |30638 |
+ROW |100117 |1323 |30639 |
+ROW |100118 |1322 |30640 |
+ROW |100119 |1322 |30641 |
+ROW |100120 |1322 |32560 |
+ROW |100121 |1323 |30642 |
+ROW |100122 |1322 |30643 |
+ROW |100123 |1322 |30644 |
+ROW |100124 |1322 |30645 |
+ROW |100125 |1322 |30646 |
+ROW |100126 |1322 |30647 |
+ROW |100127 |1322 |30648 |
+ROW |100128 |1323 |30649 |
+ROW |100129 |1322 |30650 |
+ROW |100130 |1322 |30651 |
+ROW |100131 |1322 |30652 |
+ROW |100132 |1322 |30653 |
+ROW |100133 |1322 |30655 |
+ROW |100134 |1322 |30656 |
+ROW |100135 |1322 |30657 |
+ROW |100136 |1322 |30658 |
+ROW |100137 |1322 |30659 |
+ROW |100138 |1322 |30660 |
+ROW |100139 |1322 |30661 |
+ROW |100140 |1322 |30662 |
+ROW |100141 |1322 |30663 |
+ROW |100142 |1322 |30664 |
+ROW |100143 |1322 |30665 |
+ROW |100144 |1322 |30666 |
+ROW |100145 |1322 |30667 |
+ROW |100146 |1322 |30668 |
+ROW |100147 |1322 |30669 |
+ROW |100148 |1322 |30670 |
+ROW |100149 |1322 |30671 |
+ROW |100150 |1322 |30672 |
+ROW |100151 |1322 |30676 |
+ROW |100152 |1322 |30677 |
+ROW |100153 |1322 |31172 |
+ROW |100154 |1322 |31173 |
+ROW |100155 |1322 |31174 |
+ROW |100156 |1322 |31175 |
+ROW |100157 |1322 |32561 |
+ROW |100158 |1322 |32562 |
+ROW |100159 |1322 |32563 |
+ROW |100160 |1322 |32564 |
+ROW |100161 |1322 |32565 |
+ROW |100162 |1322 |32566 |
+ROW |100163 |1322 |30680 |
+ROW |100164 |1323 |30681 |
+ROW |100165 |1322 |30682 |
+ROW |100166 |1322 |30683 |
+ROW |100167 |1322 |30684 |
+ROW |100168 |1322 |32568 |
+ROW |100169 |1322 |32569 |
+ROW |100170 |1322 |32570 |
+ROW |100171 |1322 |32571 |
+ROW |100172 |1322 |32572 |
+ROW |100173 |1322 |32573 |
+ROW |100174 |1317 |30479 |
+ROW |100175 |1316 |30480 |
+ROW |100176 |1316 |30481 |
+ROW |100177 |1316 |30482 |
+ROW |100178 |1316 |30483 |
+ROW |100179 |1316 |32574 |
+ROW |100180 |1316 |30484 |
+ROW |100181 |1317 |30485 |
+ROW |100182 |1316 |30486 |
+ROW |100183 |1317 |30487 |
+ROW |100184 |1316 |30488 |
+ROW |100185 |1316 |30489 |
+ROW |100186 |1316 |30490 |
+ROW |100187 |1316 |30491 |
+ROW |100188 |1316 |30492 |
+ROW |100189 |1316 |30493 |
+ROW |100190 |1316 |30494 |
+ROW |100191 |1316 |30495 |
+ROW |100192 |1316 |30496 |
+ROW |100193 |1316 |30497 |
+ROW |100194 |1316 |30499 |
+ROW |100195 |1316 |30500 |
+ROW |100196 |1316 |30503 |
+ROW |100197 |1316 |30504 |
+ROW |100198 |1316 |30505 |
+ROW |100199 |1316 |30506 |
+ROW |100200 |1316 |30507 |
+ROW |100201 |1316 |30508 |
+ROW |100202 |1316 |30509 |
+ROW |100203 |1316 |30510 |
+ROW |100204 |1316 |30512 |
+ROW |100205 |1316 |30513 |
+ROW |100206 |1316 |30514 |
+ROW |100207 |1316 |30515 |
+ROW |100208 |1316 |30516 |
+ROW |100209 |1316 |30517 |
+ROW |100210 |1316 |30518 |
+ROW |100211 |1316 |30519 |
+ROW |100212 |1316 |31176 |
+ROW |100213 |1316 |31177 |
+ROW |100214 |1316 |31178 |
+ROW |100215 |1316 |31179 |
+ROW |100216 |1316 |32575 |
+ROW |100217 |1316 |32576 |
+ROW |100218 |1316 |32577 |
+ROW |100219 |1316 |32578 |
+ROW |100220 |1316 |32579 |
+ROW |100221 |1316 |32580 |
+ROW |100222 |1316 |30522 |
+ROW |100223 |1317 |30523 |
+ROW |100224 |1316 |30524 |
+ROW |100225 |1316 |30525 |
+ROW |100226 |1316 |30526 |
+ROW |100227 |1316 |32582 |
+ROW |100228 |1316 |32583 |
+ROW |100229 |1316 |32584 |
+ROW |100230 |1316 |32585 |
+ROW |100231 |1316 |32586 |
+ROW |100232 |1316 |32587 |
+ROW |100233 |1345 |31629 |
+ROW |100234 |1345 |31630 |
+ROW |100235 |1346 |31631 |
+ROW |100236 |1345 |31632 |
+ROW |100237 |1346 |31633 |
+ROW |100238 |1346 |31634 |
+ROW |100239 |1346 |31635 |
+ROW |100240 |1346 |31636 |
+ROW |100241 |1346 |31637 |
+ROW |100242 |1346 |31638 |
+ROW |100243 |1346 |31639 |
+ROW |100244 |1345 |31640 |
+ROW |100245 |1345 |31641 |
+ROW |100246 |1346 |31642 |
+ROW |100247 |1346 |31643 |
+ROW |100248 |1346 |31644 |
+ROW |100249 |1346 |31645 |
+ROW |100250 |1345 |31646 |
+ROW |100251 |1345 |31647 |
+ROW |100252 |1345 |31648 |
+ROW |100253 |1345 |31649 |
+ROW |100254 |1345 |31650 |
+ROW |100255 |1345 |31651 |
+ROW |100256 |1345 |31652 |
+ROW |100257 |1345 |31653 |
+ROW |100258 |1345 |31654 |
+ROW |100259 |1345 |31655 |
+ROW |100260 |1345 |31656 |
+ROW |100261 |1345 |31657 |
+ROW |100262 |1345 |31658 |
+ROW |100263 |1345 |31659 |
+ROW |100264 |1345 |31660 |
+ROW |100265 |1345 |31661 |
+ROW |100266 |1345 |31662 |
+ROW |100267 |1345 |31663 |
+ROW |100268 |1345 |31664 |
+ROW |100269 |1345 |31665 |
+ROW |100270 |1345 |31666 |
+ROW |100271 |1345 |31667 |
+ROW |100272 |1345 |31668 |
+ROW |100273 |1345 |31669 |
+ROW |100274 |1345 |31670 |
+ROW |100275 |1345 |31671 |
+ROW |100276 |1345 |31672 |
+ROW |100277 |1345 |31673 |
+ROW |100278 |1345 |31674 |
+ROW |100279 |1345 |31675 |
+ROW |100280 |1345 |31676 |
+ROW |100281 |1345 |31677 |
+ROW |100282 |1345 |31678 |
+ROW |100283 |1345 |31679 |
+ROW |100284 |1345 |31680 |
+ROW |100285 |1345 |31681 |
+ROW |100286 |1345 |31682 |
+ROW |100287 |1345 |31683 |
+ROW |100288 |1345 |31684 |
+ROW |100289 |1345 |31685 |
+ROW |100290 |1345 |31686 |
+ROW |100291 |1345 |31687 |
+ROW |100292 |1345 |31688 |
+ROW |100293 |1345 |31689 |
+ROW |100294 |1345 |31690 |
+ROW |100295 |1345 |31691 |
+ROW |100296 |1345 |31692 |
+ROW |100297 |1345 |31693 |
+ROW |100298 |1345 |31694 |
+ROW |100299 |1345 |31695 |
+ROW |100300 |1345 |31696 |
+ROW |100301 |1345 |31697 |
+ROW |100302 |1345 |31698 |
+ROW |100303 |1345 |31699 |
+ROW |100304 |1345 |31700 |
+ROW |100305 |1345 |31701 |
+ROW |100306 |1345 |31702 |
+ROW |100307 |1345 |31703 |
+ROW |100308 |1345 |31704 |
+ROW |100309 |1345 |31705 |
+ROW |100310 |1340 |31361 |
+ROW |100311 |1340 |31362 |
+ROW |100312 |1340 |31363 |
+ROW |100313 |1339 |31364 |
+ROW |100314 |1339 |31365 |
+ROW |100315 |1340 |31367 |
+ROW |100316 |1340 |31368 |
+ROW |100317 |1340 |31369 |
+ROW |100318 |1340 |31727 |
+ROW |100319 |1340 |31728 |
+ROW |100320 |1339 |31370 |
+ROW |100321 |1339 |31398 |
+ROW |100322 |1339 |31407 |
+ROW |100323 |1339 |31425 |
+ROW |100324 |1339 |31426 |
+ROW |100325 |1339 |31427 |
+ROW |100326 |1339 |31428 |
+ROW |100327 |1339 |31729 |
+ROW |100328 |1339 |31730 |
+ROW |100329 |1339 |31731 |
+ROW |100330 |1339 |31732 |
+ROW |100331 |1339 |31733 |
+ROW |100332 |1339 |31734 |
+ROW |100333 |1339 |31735 |
+ROW |100334 |1339 |31736 |
+ROW |100335 |1339 |31737 |
+ROW |100336 |1339 |31738 |
+ROW |100337 |1339 |31739 |
+ROW |100338 |1339 |31740 |
+ROW |100339 |1339 |31741 |
+ROW |100340 |1339 |31742 |
+ROW |100341 |1339 |31743 |
+ROW |100342 |1339 |31744 |
+ROW |100343 |1339 |31745 |
+ROW |100344 |1339 |31746 |
+ROW |100345 |1339 |31747 |
+ROW |100346 |1339 |31748 |
+ROW |100347 |1339 |31749 |
+ROW |100348 |1339 |31750 |
+ROW |100349 |1339 |31751 |
+ROW |100350 |1339 |31752 |
+ROW |100351 |1339 |31753 |
+ROW |100352 |1339 |31754 |
+ROW |100353 |1339 |31755 |
+ROW |100354 |1339 |31756 |
+ROW |100355 |1339 |31757 |
+ROW |100356 |1339 |31758 |
+ROW |100357 |1339 |31759 |
+ROW |100358 |1339 |31760 |
+ROW |100359 |1339 |31761 |
+ROW |100360 |1339 |31762 |
+ROW |100361 |1339 |31763 |
+ROW |100362 |1339 |31764 |
+ROW |100363 |1339 |31765 |
+ROW |100364 |1339 |31766 |
+ROW |100365 |1339 |31767 |
+ROW |100366 |1339 |31768 |
+ROW |100367 |1339 |31769 |
+ROW |100368 |1339 |31770 |
+ROW |100369 |1339 |31771 |
+ROW |100370 |1339 |31772 |
+ROW |100371 |1339 |31773 |
+ROW |100372 |1339 |31774 |
+ROW |100373 |1339 |31775 |
+ROW |100374 |1339 |31776 |
+ROW |100375 |1339 |31777 |
+ROW |100376 |1339 |31778 |
+ROW |100377 |1339 |31779 |
+ROW |100378 |1339 |31780 |
+ROW |100379 |1339 |31781 |
+ROW |100380 |1339 |31782 |
+ROW |100381 |1339 |31783 |
+ROW |100382 |1339 |31784 |
+ROW |100383 |1339 |31785 |
+ROW |100384 |1115 |28671 |
+ROW |100385 |1115 |28672 |
+ROW |100386 |1114 |28673 |
+ROW |100387 |1114 |28674 |
+ROW |100388 |1115 |28675 |
+ROW |100389 |1114 |28676 |
+ROW |100390 |1114 |28677 |
+ROW |100391 |1114 |28678 |
+ROW |100392 |1114 |28679 |
+ROW |100393 |1114 |28680 |
+ROW |100394 |1114 |28681 |
+ROW |100395 |1115 |28682 |
+ROW |100396 |1115 |28683 |
+ROW |100397 |1114 |28684 |
+ROW |100398 |1114 |28685 |
+ROW |100399 |1115 |28686 |
+ROW |100400 |1115 |28687 |
+ROW |100401 |1114 |28688 |
+ROW |100402 |1114 |28689 |
+ROW |100403 |1114 |28690 |
+ROW |100404 |1114 |28691 |
+ROW |100405 |1114 |28692 |
+ROW |100406 |1114 |28693 |
+ROW |100407 |1114 |28694 |
+ROW |100408 |1114 |28695 |
+ROW |100409 |1114 |28696 |
+ROW |100410 |1114 |28697 |
+ROW |100411 |1114 |28698 |
+ROW |100412 |1114 |28699 |
+ROW |100413 |1114 |28700 |
+ROW |100414 |1114 |28701 |
+ROW |100415 |1114 |28702 |
+ROW |100416 |1114 |28703 |
+ROW |100417 |1114 |28704 |
+ROW |100418 |1114 |28705 |
+ROW |100419 |1114 |28706 |
+ROW |100420 |1114 |28707 |
+ROW |100421 |1114 |28708 |
+ROW |100422 |1114 |28709 |
+ROW |100423 |1114 |28710 |
+ROW |100424 |1115 |28713 |
+ROW |100425 |1115 |28714 |
+ROW |100426 |1338 |31180 |
+ROW |100427 |1337 |31181 |
+ROW |100428 |1338 |31182 |
+ROW |100429 |1338 |31183 |
+ROW |100430 |1338 |31185 |
+ROW |100431 |1338 |31186 |
+ROW |100432 |1337 |31188 |
+ROW |100433 |1337 |31189 |
+ROW |100434 |1337 |31190 |
+ROW |100435 |1337 |31191 |
+ROW |100436 |1337 |31192 |
+ROW |100437 |1337 |31193 |
+ROW |100438 |1337 |31194 |
+ROW |100439 |1338 |31195 |
+ROW |100440 |1338 |31196 |
+ROW |100441 |1337 |32592 |
+ROW |100442 |1337 |32593 |
+ROW |100443 |1337 |32594 |
+ROW |100444 |1338 |32595 |
+ROW |100445 |1337 |31197 |
+ROW |100446 |1337 |31199 |
+ROW |100447 |1337 |31200 |
+ROW |100448 |1337 |31201 |
+ROW |100449 |1337 |31202 |
+ROW |100450 |1337 |31203 |
+ROW |100451 |1337 |31204 |
+ROW |100452 |1337 |31205 |
+ROW |100453 |1337 |31206 |
+ROW |100454 |1337 |31207 |
+ROW |100455 |1337 |31208 |
+ROW |100456 |1337 |31209 |
+ROW |100457 |1337 |31210 |
+ROW |100458 |1337 |31211 |
+ROW |100459 |1337 |31212 |
+ROW |100460 |1337 |31213 |
+ROW |100461 |1337 |31215 |
+ROW |100462 |1337 |31216 |
+ROW |100463 |1337 |31217 |
+ROW |100464 |1337 |31218 |
+ROW |100465 |1337 |31219 |
+ROW |100466 |1337 |31220 |
+ROW |100467 |1337 |31221 |
+ROW |100468 |1337 |31222 |
+ROW |100469 |1337 |31223 |
+ROW |100470 |1337 |31224 |
+ROW |100471 |1337 |31225 |
+ROW |100472 |1337 |31226 |
+ROW |100473 |1337 |31227 |
+ROW |100474 |1337 |31228 |
+ROW |100475 |1337 |31229 |
+ROW |100476 |1337 |31230 |
+ROW |100477 |1337 |31231 |
+ROW |100478 |1337 |31232 |
+ROW |100479 |1337 |31233 |
+ROW |100480 |1337 |31234 |
+ROW |100481 |1337 |31235 |
+ROW |100482 |1337 |31236 |
+ROW |100483 |1337 |31237 |
+ROW |100484 |1337 |31238 |
+ROW |100485 |1337 |31239 |
+ROW |100486 |1337 |32596 |
+ROW |100487 |1302 |30273 |
+ROW |100488 |1302 |30274 |
+ROW |100489 |1303 |30275 |
+ROW |100490 |1303 |30276 |
+ROW |100491 |1302 |30277 |
+ROW |100492 |1302 |30278 |
+ROW |100493 |1302 |30279 |
+ROW |100494 |1302 |30280 |
+ROW |100495 |1302 |30281 |
+ROW |100496 |1302 |30282 |
+ROW |100497 |1302 |30283 |
+ROW |100498 |1302 |30284 |
+ROW |100499 |1302 |30285 |
+ROW |100500 |1302 |30286 |
+ROW |100501 |1302 |30287 |
+ROW |100502 |1302 |30288 |
+ROW |100503 |1302 |30289 |
+ROW |100504 |1302 |30290 |
+ROW |100505 |1302 |30291 |
+ROW |100506 |1302 |30292 |
+ROW |100507 |1302 |30293 |
+ROW |100508 |1302 |30294 |
+ROW |100509 |1302 |30295 |
+ROW |100510 |1302 |30296 |
+ROW |100511 |1302 |30297 |
+ROW |100512 |1302 |30298 |
+ROW |100513 |1302 |30299 |
+ROW |100514 |1302 |30300 |
+ROW |100515 |1302 |30301 |
+ROW |100516 |1302 |30302 |
+ROW |100517 |1302 |30303 |
+ROW |100518 |1302 |30304 |
+ROW |100519 |1302 |30305 |
+ROW |100520 |1302 |30306 |
+ROW |100521 |1302 |30307 |
+ROW |100522 |1302 |30308 |
+ROW |100523 |1302 |30309 |
+ROW |100524 |1302 |30310 |
+ROW |100525 |1302 |30311 |
+ROW |100526 |1302 |30312 |
+ROW |100527 |1302 |30313 |
+ROW |100528 |1302 |30314 |
+ROW |100529 |1302 |30315 |
+ROW |100530 |1302 |30316 |
+ROW |100531 |1302 |30317 |
+ROW |100532 |1302 |30318 |
+ROW |100533 |1302 |30319 |
+ROW |100534 |1302 |30320 |
+ROW |100535 |1302 |30321 |
+ROW |100536 |1302 |30322 |
+ROW |100537 |1302 |30323 |
+ROW |100538 |1302 |30324 |
+ROW |100539 |1302 |30325 |
+ROW |100540 |1302 |30326 |
+ROW |100541 |1302 |30327 |
+ROW |100542 |1302 |30328 |
+ROW |100543 |1302 |30329 |
+ROW |100544 |1302 |30330 |
+ROW |100545 |1302 |30331 |
+ROW |100546 |1302 |30332 |
+ROW |100547 |1302 |30333 |
+ROW |100548 |1302 |30334 |
+ROW |100549 |1302 |30335 |
+ROW |100550 |1302 |30336 |
+ROW |100551 |1302 |30344 |
+ROW |100552 |1302 |30345 |
+ROW |100553 |1302 |30346 |
+ROW |100554 |1302 |30347 |
+ROW |100555 |1302 |30351 |
+ROW |100556 |1302 |30352 |
+ROW |100557 |1302 |30353 |
+ROW |100558 |1302 |30354 |
+ROW |100559 |1302 |30355 |
+ROW |100560 |1302 |30356 |
+ROW |100561 |1302 |30357 |
+ROW |100562 |1302 |30358 |
+ROW |100563 |1302 |30359 |
+ROW |100564 |1302 |30360 |
+ROW |100565 |1302 |30361 |
+ROW |100566 |1302 |30362 |
+ROW |100567 |1302 |30363 |
+ROW |100568 |1302 |30364 |
+ROW |100569 |1302 |30365 |
+ROW |100570 |1302 |30366 |
+ROW |100571 |1302 |30367 |
+ROW |100572 |1302 |30368 |
+ROW |100573 |1302 |30369 |
+ROW |100574 |1302 |30370 |
+ROW |100575 |1302 |30371 |
+ROW |100576 |1302 |30372 |
+ROW |100577 |1302 |30373 |
+ROW |100578 |1302 |30374 |
+ROW |100579 |1302 |30375 |
+ROW |100580 |1302 |30376 |
+ROW |100581 |1302 |30377 |
+ROW |100582 |1302 |30378 |
+ROW |100583 |1302 |30379 |
+ROW |100584 |1302 |30380 |
+ROW |100585 |1302 |30381 |
+ROW |100586 |1302 |30382 |
+ROW |100587 |1302 |30383 |
+ROW |100588 |1302 |30384 |
+ROW |100589 |1302 |30385 |
+ROW |100590 |1302 |30386 |
+ROW |100591 |1302 |30387 |
+ROW |100592 |1302 |30388 |
+ROW |100593 |1302 |30389 |
+ROW |100594 |1302 |30390 |
+ROW |100595 |1302 |30391 |
+ROW |100596 |1302 |30392 |
+ROW |100597 |1302 |30393 |
+ROW |100598 |1302 |30394 |
+ROW |100599 |1302 |30395 |
+ROW |100600 |1302 |30397 |
+ROW |100601 |1302 |30398 |
+ROW |100602 |1302 |30399 |
+ROW |100603 |1302 |30400 |
+ROW |100604 |1302 |30401 |
+ROW |100605 |1302 |30402 |
+ROW |100606 |1302 |30403 |
+ROW |100607 |1302 |30404 |
+ROW |100608 |780 |27065 |
+ROW |100609 |780 |27066 |
+ROW |100610 |780 |27067 |
+ROW |100611 |799 |27149 |
+ROW |100612 |799 |27150 |
+ROW |100613 |799 |27151 |
+ROW |100614 |805 |27192 |
+ROW |100615 |805 |27193 |
+ROW |100616 |805 |27194 |
+ROW |100617 |813 |27225 |
+ROW |100618 |813 |27226 |
+ROW |100619 |813 |27227 |
+ROW |100620 |822 |27261 |
+ROW |100621 |822 |27262 |
+ROW |100622 |822 |27263 |
+ROW |100623 |825 |27282 |
+ROW |100624 |825 |27283 |
+ROW |100625 |825 |27284 |
+ROW |100626 |842 |27333 |
+ROW |100627 |842 |27334 |
+ROW |100628 |842 |27335 |
+ROW |100629 |847 |27365 |
+ROW |100630 |847 |27366 |
+ROW |100631 |847 |27367 |
+ROW |100632 |876 |27462 |
+ROW |100633 |876 |27463 |
+ROW |100634 |876 |27464 |
+ROW |100635 |885 |27496 |
+ROW |100636 |885 |27497 |
+ROW |100637 |885 |27498 |
+ROW |100638 |894 |27532 |
+ROW |100639 |894 |27533 |
+ROW |100640 |894 |27534 |
+ROW |100641 |903 |27568 |
+ROW |100642 |903 |27569 |
+ROW |100643 |903 |27570 |
+ROW |100644 |915 |27631 |
+ROW |100645 |915 |27632 |
+ROW |100646 |915 |27633 |
+ROW |100647 |918 |27654 |
+ROW |100648 |918 |27655 |
+ROW |100649 |918 |27656 |
+ROW |100650 |936 |27734 |
+ROW |100651 |936 |27735 |
+ROW |100652 |936 |27736 |
+ROW |100653 |944 |27766 |
+ROW |100654 |944 |27767 |
+ROW |100655 |944 |27768 |
+ROW |100656 |951 |27800 |
+ROW |100657 |951 |27801 |
+ROW |100658 |951 |27802 |
+ROW |100659 |971 |27882 |
+ROW |100660 |971 |27883 |
+ROW |100661 |971 |27884 |
+ROW |100662 |979 |27919 |
+ROW |100663 |979 |27920 |
+ROW |100664 |979 |27921 |
+ROW |100665 |988 |27956 |
+ROW |100666 |988 |27957 |
+ROW |100667 |988 |27958 |
+ROW |100668 |994 |27986 |
+ROW |100669 |994 |27987 |
+ROW |100670 |994 |27988 |
+ROW |100671 |1000 |28015 |
+ROW |100672 |1000 |28016 |
+ROW |100673 |1000 |28017 |
+ROW |100674 |1030 |28130 |
+ROW |100675 |1030 |28131 |
+ROW |100676 |1030 |28132 |
+ROW |100680 |1055 |28233 |
+ROW |100681 |1055 |28234 |
+ROW |100682 |1055 |28235 |
+ROW |100683 |1060 |28282 |
+ROW |100684 |1060 |28283 |
+ROW |100685 |1060 |28284 |
+ROW |100686 |1070 |28330 |
+ROW |100687 |1070 |28331 |
+ROW |100688 |1070 |28332 |
+ROW |100689 |1079 |28377 |
+ROW |100690 |1079 |28378 |
+ROW |100691 |1079 |28379 |
+ROW |100692 |1095 |28454 |
+ROW |100693 |1095 |28455 |
+ROW |100694 |1095 |28456 |
+ROW |100695 |1102 |28482 |
+ROW |100696 |1102 |28483 |
+ROW |100697 |1102 |28484 |
+ROW |100698 |1127 |28957 |
+ROW |100699 |1127 |28958 |
+ROW |100700 |1127 |28959 |
+ROW |100701 |1136 |29050 |
+ROW |100702 |1136 |29051 |
+ROW |100703 |1136 |29052 |
+ROW |100704 |1271 |30046 |
+ROW |100705 |1271 |30047 |
+ROW |100706 |1271 |30048 |
+ROW |100707 |1414 |32601 |
+ROW |100708 |1414 |32602 |
+ROW |100709 |1414 |32603 |
+ROW |100710 |1422 |32765 |
+ROW |100711 |1422 |32766 |
+ROW |100712 |1422 |32767 |
+ROW |100713 |800 |27152 |
+ROW |100714 |799 |27154 |
+ROW |100715 |800 |27157 |
+ROW |100716 |799 |29844 |
+ROW |100717 |800 |29845 |
+ROW |100718 |800 |29846 |
+ROW |100719 |800 |29847 |
+ROW |100720 |800 |29848 |
+ROW |100721 |804 |27195 |
+ROW |100722 |804 |27199 |
+ROW |100723 |805 |27202 |
+ROW |100724 |812 |27228 |
+ROW |100725 |812 |27232 |
+ROW |100726 |813 |27235 |
+ROW |100727 |821 |27264 |
+ROW |100728 |821 |27268 |
+ROW |100729 |822 |27271 |
+ROW |100730 |824 |27285 |
+ROW |100731 |824 |27289 |
+ROW |100732 |825 |27292 |
+ROW |100733 |841 |27336 |
+ROW |100734 |841 |27340 |
+ROW |100735 |842 |27343 |
+ROW |100736 |846 |27368 |
+ROW |100737 |846 |27372 |
+ROW |100738 |847 |27375 |
+ROW |100739 |875 |27465 |
+ROW |100740 |875 |27469 |
+ROW |100741 |876 |27472 |
+ROW |100742 |884 |27499 |
+ROW |100743 |884 |27503 |
+ROW |100744 |885 |27506 |
+ROW |100745 |893 |27535 |
+ROW |100746 |893 |27539 |
+ROW |100747 |894 |27542 |
+ROW |100748 |902 |27571 |
+ROW |100749 |902 |27575 |
+ROW |100750 |903 |27578 |
+ROW |100751 |914 |27634 |
+ROW |100752 |914 |27638 |
+ROW |100753 |915 |27641 |
+ROW |100754 |917 |27657 |
+ROW |100755 |917 |27661 |
+ROW |100756 |918 |27664 |
+ROW |100757 |935 |27737 |
+ROW |100758 |935 |27741 |
+ROW |100759 |936 |27744 |
+ROW |100760 |943 |27769 |
+ROW |100761 |943 |27773 |
+ROW |100762 |944 |27776 |
+ROW |100763 |950 |27803 |
+ROW |100764 |950 |27807 |
+ROW |100765 |951 |27810 |
+ROW |100766 |970 |27885 |
+ROW |100767 |970 |27889 |
+ROW |100768 |971 |27892 |
+ROW |100769 |978 |27922 |
+ROW |100770 |978 |27926 |
+ROW |100771 |979 |27929 |
+ROW |100772 |987 |27959 |
+ROW |100773 |987 |27963 |
+ROW |100774 |988 |27966 |
+ROW |100775 |993 |27989 |
+ROW |100776 |993 |27993 |
+ROW |100777 |994 |27996 |
+ROW |100778 |999 |28018 |
+ROW |100779 |999 |28022 |
+ROW |100780 |1000 |28025 |
+ROW |100781 |1029 |28133 |
+ROW |100782 |1029 |28137 |
+ROW |100783 |1030 |28140 |
+ROW |100787 |1054 |28236 |
+ROW |100788 |1054 |28240 |
+ROW |100789 |1055 |28243 |
+ROW |100790 |1059 |28285 |
+ROW |100791 |1059 |28289 |
+ROW |100792 |1060 |28292 |
+ROW |100793 |1069 |28333 |
+ROW |100794 |1069 |28337 |
+ROW |100795 |1070 |28340 |
+ROW |100796 |1078 |28380 |
+ROW |100797 |1078 |28384 |
+ROW |100798 |1079 |28387 |
+ROW |100799 |1094 |28457 |
+ROW |100800 |1094 |28461 |
+ROW |100801 |1095 |28464 |
+ROW |100802 |1101 |28485 |
+ROW |100803 |1101 |28489 |
+ROW |100804 |1102 |28492 |
+ROW |100805 |1126 |28960 |
+ROW |100806 |1126 |28964 |
+ROW |100807 |1127 |28967 |
+ROW |100808 |1135 |29053 |
+ROW |100809 |1135 |29057 |
+ROW |100810 |1136 |29060 |
+ROW |100811 |1000 |29834 |
+ROW |100812 |999 |29835 |
+ROW |100813 |999 |29836 |
+ROW |100814 |999 |29837 |
+ROW |100815 |999 |29838 |
+ROW |100816 |805 |29849 |
+ROW |100817 |804 |29850 |
+ROW |100818 |804 |29851 |
+ROW |100819 |804 |29852 |
+ROW |100820 |804 |29853 |
+ROW |100821 |813 |29854 |
+ROW |100822 |812 |29855 |
+ROW |100823 |812 |29856 |
+ROW |100824 |812 |29857 |
+ROW |100825 |812 |29858 |
+ROW |100826 |822 |29859 |
+ROW |100827 |821 |29860 |
+ROW |100828 |821 |29861 |
+ROW |100829 |821 |29862 |
+ROW |100830 |821 |29863 |
+ROW |100831 |825 |29864 |
+ROW |100832 |824 |29865 |
+ROW |100833 |824 |29866 |
+ROW |100834 |824 |29867 |
+ROW |100835 |824 |29868 |
+ROW |100836 |842 |29869 |
+ROW |100837 |841 |29870 |
+ROW |100838 |841 |29871 |
+ROW |100839 |841 |29872 |
+ROW |100840 |841 |29873 |
+ROW |100841 |847 |29874 |
+ROW |100842 |846 |29875 |
+ROW |100843 |846 |29876 |
+ROW |100844 |846 |29877 |
+ROW |100845 |846 |29878 |
+ROW |100846 |876 |29879 |
+ROW |100847 |875 |29880 |
+ROW |100848 |875 |29881 |
+ROW |100849 |875 |29882 |
+ROW |100850 |875 |29883 |
+ROW |100851 |885 |29884 |
+ROW |100852 |884 |29885 |
+ROW |100853 |884 |29886 |
+ROW |100854 |884 |29887 |
+ROW |100855 |884 |29888 |
+ROW |100856 |894 |29889 |
+ROW |100857 |893 |29890 |
+ROW |100858 |893 |29891 |
+ROW |100859 |893 |29892 |
+ROW |100860 |893 |29893 |
+ROW |100861 |903 |29894 |
+ROW |100862 |902 |29895 |
+ROW |100863 |902 |29896 |
+ROW |100864 |902 |29897 |
+ROW |100865 |902 |29898 |
+ROW |100866 |915 |29899 |
+ROW |100867 |914 |29900 |
+ROW |100868 |914 |29901 |
+ROW |100869 |914 |29902 |
+ROW |100870 |914 |29903 |
+ROW |100871 |918 |29904 |
+ROW |100872 |917 |29905 |
+ROW |100873 |917 |29906 |
+ROW |100874 |917 |29907 |
+ROW |100875 |917 |29908 |
+ROW |100876 |936 |29909 |
+ROW |100877 |935 |29910 |
+ROW |100878 |935 |29911 |
+ROW |100879 |935 |29912 |
+ROW |100880 |935 |29913 |
+ROW |100881 |944 |29914 |
+ROW |100882 |943 |29915 |
+ROW |100883 |943 |29916 |
+ROW |100884 |943 |29917 |
+ROW |100885 |943 |29918 |
+ROW |100886 |951 |29919 |
+ROW |100887 |950 |29920 |
+ROW |100888 |950 |29921 |
+ROW |100889 |950 |29922 |
+ROW |100890 |950 |29923 |
+ROW |100891 |971 |29924 |
+ROW |100892 |970 |29925 |
+ROW |100893 |970 |29926 |
+ROW |100894 |970 |29927 |
+ROW |100895 |970 |29928 |
+ROW |100896 |979 |29929 |
+ROW |100897 |978 |29930 |
+ROW |100898 |978 |29931 |
+ROW |100899 |978 |29932 |
+ROW |100900 |978 |29933 |
+ROW |100901 |988 |29934 |
+ROW |100902 |987 |29935 |
+ROW |100903 |987 |29936 |
+ROW |100904 |987 |29937 |
+ROW |100905 |987 |29938 |
+ROW |100906 |994 |29939 |
+ROW |100907 |993 |29940 |
+ROW |100908 |993 |29941 |
+ROW |100909 |993 |29942 |
+ROW |100910 |993 |29943 |
+ROW |100911 |1030 |29944 |
+ROW |100912 |1029 |29945 |
+ROW |100913 |1029 |29946 |
+ROW |100914 |1029 |29947 |
+ROW |100915 |1029 |29948 |
+ROW |100921 |1055 |29954 |
+ROW |100922 |1054 |29955 |
+ROW |100923 |1054 |29956 |
+ROW |100924 |1054 |29957 |
+ROW |100925 |1054 |29958 |
+ROW |100926 |1060 |29959 |
+ROW |100927 |1059 |29960 |
+ROW |100928 |1059 |29961 |
+ROW |100929 |1059 |29962 |
+ROW |100930 |1059 |29963 |
+ROW |100931 |1070 |29964 |
+ROW |100932 |1069 |29965 |
+ROW |100933 |1069 |29966 |
+ROW |100934 |1069 |29967 |
+ROW |100935 |1069 |29968 |
+ROW |100936 |1079 |29969 |
+ROW |100937 |1078 |29970 |
+ROW |100938 |1078 |29971 |
+ROW |100939 |1078 |29972 |
+ROW |100940 |1078 |29973 |
+ROW |100941 |1095 |29974 |
+ROW |100942 |1094 |29975 |
+ROW |100943 |1094 |29976 |
+ROW |100944 |1094 |29977 |
+ROW |100945 |1094 |29978 |
+ROW |100946 |1102 |29979 |
+ROW |100947 |1101 |29980 |
+ROW |100948 |1101 |29981 |
+ROW |100949 |1101 |29982 |
+ROW |100950 |1101 |29983 |
+ROW |100951 |1127 |29984 |
+ROW |100952 |1126 |29985 |
+ROW |100953 |1126 |29986 |
+ROW |100954 |1126 |29987 |
+ROW |100955 |1126 |29988 |
+ROW |100956 |1136 |29989 |
+ROW |100957 |1135 |29990 |
+ROW |100958 |1135 |29991 |
+ROW |100959 |1135 |29992 |
+ROW |100960 |1135 |29993 |
+ROW |100961 |1270 |30049 |
+ROW |100962 |1270 |30050 |
+ROW |100963 |1270 |30051 |
+ROW |100964 |1270 |30052 |
+ROW |100965 |1270 |30053 |
+ROW |100966 |1270 |30054 |
+ROW |100967 |1271 |30055 |
+ROW |100968 |1271 |30056 |
+ROW |100969 |1413 |32604 |
+ROW |100970 |1413 |32605 |
+ROW |100971 |1413 |32606 |
+ROW |100972 |1413 |32607 |
+ROW |100973 |1413 |32608 |
+ROW |100974 |1413 |32609 |
+ROW |100975 |1414 |32610 |
+ROW |100976 |1414 |32611 |
+ROW |100977 |1421 |32768 |
+ROW |100978 |1421 |32769 |
+ROW |100979 |1421 |32770 |
+ROW |100980 |1421 |32771 |
+ROW |100981 |1421 |32772 |
+ROW |100982 |1421 |32773 |
+ROW |100983 |1422 |32774 |
+ROW |100984 |1422 |32775 |
+ROW |100985 |1283 |30142 |
+ROW |100986 |1286 |30143 |
+ROW |100988 |1292 |30145 |
+ROW |100989 |1295 |30146 |
+ROW |100990 |1284 |30157 |
+ROW |100991 |1284 |30158 |
+ROW |100992 |1284 |30159 |
+ROW |100993 |1287 |30163 |
+ROW |100994 |1287 |30164 |
+ROW |100995 |1287 |30165 |
+ROW |100999 |1293 |30175 |
+ROW |101000 |1293 |30176 |
+ROW |101001 |1293 |30177 |
+ROW |101002 |1296 |30181 |
+ROW |101003 |1296 |30182 |
+ROW |101004 |1296 |30183 |
+ROW |101005 |1419 |32741 |
+ROW |101006 |1420 |32753 |
+ROW |101007 |1221 |22231 |
+ROW |101008 |1221 |22232 |
+ROW |101009 |1221 |23318 |
+ROW |101010 |1222 |29544 |
+ROW |101011 |1223 |29545 |
+ROW |101012 |1223 |29546 |
+ROW |101013 |1224 |29547 |
+ROW |101014 |1225 |10020 |
+ROW |101015 |1225 |10059 |
+ROW |101016 |1226 |22833 |
+ROW |101017 |1226 |22834 |
+ROW |101018 |1228 |22873 |
+ROW |101019 |1228 |22874 |
+ROW |101020 |1230 |22913 |
+ROW |101021 |1230 |22914 |
+ROW |101022 |1232 |22953 |
+ROW |101023 |1232 |22954 |
+ROW |101024 |1234 |22993 |
+ROW |101025 |1234 |22994 |
+ROW |101026 |1236 |23033 |
+ROW |101027 |1236 |23034 |
+ROW |101028 |1238 |23160 |
+ROW |101029 |1238 |23161 |
+ROW |101030 |1225 |23319 |
+ROW |101031 |1226 |23320 |
+ROW |101032 |1228 |23321 |
+ROW |101033 |1230 |23322 |
+ROW |101034 |1232 |23323 |
+ROW |101035 |1234 |23324 |
+ROW |101036 |1236 |23325 |
+ROW |101037 |1238 |23326 |
+ROW |101038 |1161 |29548 |
+ROW |101039 |1227 |29549 |
+ROW |101040 |1229 |29550 |
+ROW |101041 |1231 |29551 |
+ROW |101042 |1233 |29552 |
+ROW |101043 |1235 |29553 |
+ROW |101044 |1237 |29554 |
+ROW |101045 |1219 |29555 |
+ROW |101046 |1241 |29558 |
+ROW |101047 |1242 |29559 |
+ROW |101048 |1241 |29560 |
+ROW |101049 |1269 |29995 |
+ROW |101050 |1192 |29996 |
+ROW |101051 |1269 |29997 |
+ROW |101052 |1240 |23287 |
+ROW |101053 |1240 |23288 |
+ROW |101054 |1240 |23327 |
+ROW |101055 |1171 |29557 |
+ROW |101056 |810 |27203 |
+ROW |101057 |807 |27207 |
+ROW |101058 |806 |27208 |
+ROW |101059 |810 |30086 |
+ROW |101060 |807 |30087 |
+ROW |101061 |807 |30088 |
+ROW |101062 |807 |30089 |
+ROW |101063 |808 |27212 |
+ROW |101064 |809 |27213 |
+ROW |101065 |810 |27214 |
+ROW |101066 |1279 |30091 |
+ROW |101067 |1279 |30092 |
+ROW |101068 |1364 |28305 |
+ROW |101069 |1068 |28323 |
+ROW |101070 |1068 |28324 |
+ROW |101071 |1062 |28325 |
+ROW |101072 |1062 |28326 |
+ROW |101073 |1064 |28327 |
+ROW |101074 |1064 |28328 |
+ROW |101075 |1066 |28329 |
+ROW |101076 |1363 |32307 |
+ROW |101077 |819 |27236 |
+ROW |101078 |819 |27237 |
+ROW |101079 |813 |27238 |
+ROW |101080 |814 |27240 |
+ROW |101081 |815 |30093 |
+ROW |101082 |816 |27246 |
+ROW |101083 |816 |27247 |
+ROW |101084 |817 |27248 |
+ROW |101085 |818 |27249 |
+ROW |101086 |818 |27250 |
+ROW |101087 |826 |27294 |
+ROW |101088 |831 |27295 |
+ROW |101089 |831 |27296 |
+ROW |101090 |835 |27297 |
+ROW |101091 |827 |30094 |
+ROW |101092 |836 |27299 |
+ROW |101093 |838 |27301 |
+ROW |101094 |837 |30095 |
+ROW |101095 |839 |30096 |
+ROW |101096 |829 |27312 |
+ROW |101097 |830 |27313 |
+ROW |101098 |828 |27314 |
+ROW |101099 |828 |27315 |
+ROW |101100 |833 |27316 |
+ROW |101101 |834 |27317 |
+ROW |101102 |832 |27318 |
+ROW |101103 |835 |27319 |
+ROW |101104 |835 |27320 |
+ROW |101105 |1444 |33197 |
+ROW |101106 |1444 |33198 |
+ROW |101107 |1444 |33199 |
+ROW |101108 |1439 |33200 |
+ROW |101109 |1439 |33201 |
+ROW |101110 |1439 |33202 |
+ROW |101111 |1440 |33203 |
+ROW |101112 |1440 |33204 |
+ROW |101113 |1439 |33205 |
+ROW |101114 |1439 |33206 |
+ROW |101115 |1439 |33207 |
+ROW |101116 |1440 |33208 |
+ROW |101117 |1444 |33209 |
+ROW |101118 |1444 |33210 |
+ROW |101119 |1437 |33219 |
+ROW |101120 |1440 |33220 |
+ROW |101121 |1438 |33221 |
+ROW |101122 |1441 |33222 |
+ROW |101123 |1441 |33223 |
+ROW |101124 |1441 |33224 |
+ROW |101125 |1443 |33235 |
+ROW |101126 |1445 |33236 |
+ROW |101127 |1445 |33237 |
+ROW |101128 |1453 |33238 |
+ROW |101129 |1453 |33239 |
+ROW |101130 |1453 |33240 |
+ROW |101131 |1448 |33241 |
+ROW |101132 |1448 |33242 |
+ROW |101133 |1448 |33243 |
+ROW |101134 |1449 |33244 |
+ROW |101135 |1449 |33245 |
+ROW |101136 |1448 |33246 |
+ROW |101137 |1448 |33247 |
+ROW |101138 |1448 |33248 |
+ROW |101139 |1449 |33249 |
+ROW |101140 |1453 |33250 |
+ROW |101141 |1453 |33251 |
+ROW |101142 |1446 |33260 |
+ROW |101143 |1449 |33261 |
+ROW |101144 |1447 |33262 |
+ROW |101145 |1450 |33263 |
+ROW |101146 |1450 |33264 |
+ROW |101147 |1450 |33265 |
+ROW |101148 |1452 |33276 |
+ROW |101149 |1454 |33277 |
+ROW |101150 |1454 |33278 |
+ROW |101151 |1462 |33279 |
+ROW |101152 |1462 |33280 |
+ROW |101153 |1462 |33281 |
+ROW |101154 |1457 |33282 |
+ROW |101155 |1457 |33283 |
+ROW |101156 |1457 |33284 |
+ROW |101157 |1458 |33285 |
+ROW |101158 |1458 |33286 |
+ROW |101159 |1457 |33287 |
+ROW |101160 |1457 |33288 |
+ROW |101161 |1457 |33289 |
+ROW |101162 |1458 |33290 |
+ROW |101163 |1462 |33291 |
+ROW |101164 |1462 |33292 |
+ROW |101165 |1455 |33301 |
+ROW |101166 |1458 |33302 |
+ROW |101167 |1456 |33303 |
+ROW |101168 |1459 |33304 |
+ROW |101169 |1459 |33305 |
+ROW |101170 |1459 |33306 |
+ROW |101171 |1461 |33317 |
+ROW |101172 |1463 |33318 |
+ROW |101173 |1463 |33319 |
+ROW |101174 |1471 |33320 |
+ROW |101175 |1471 |33321 |
+ROW |101176 |1471 |33322 |
+ROW |101177 |1466 |33323 |
+ROW |101178 |1466 |33324 |
+ROW |101179 |1466 |33325 |
+ROW |101180 |1467 |33326 |
+ROW |101181 |1467 |33327 |
+ROW |101182 |1466 |33328 |
+ROW |101183 |1466 |33329 |
+ROW |101184 |1466 |33330 |
+ROW |101185 |1467 |33331 |
+ROW |101186 |1471 |33332 |
+ROW |101187 |1471 |33333 |
+ROW |101188 |1464 |33342 |
+ROW |101189 |1467 |33343 |
+ROW |101190 |1465 |33344 |
+ROW |101191 |1468 |33345 |
+ROW |101192 |1468 |33346 |
+ROW |101193 |1468 |33347 |
+ROW |101194 |1470 |33358 |
+ROW |101195 |1472 |33359 |
+ROW |101196 |1472 |33360 |
+ROW |101197 |1480 |33361 |
+ROW |101198 |1480 |33362 |
+ROW |101199 |1480 |33363 |
+ROW |101200 |1475 |33364 |
+ROW |101201 |1475 |33365 |
+ROW |101202 |1475 |33366 |
+ROW |101203 |1476 |33367 |
+ROW |101204 |1476 |33368 |
+ROW |101205 |1475 |33369 |
+ROW |101206 |1475 |33370 |
+ROW |101207 |1475 |33371 |
+ROW |101208 |1476 |33372 |
+ROW |101209 |1480 |33373 |
+ROW |101210 |1480 |33374 |
+ROW |101211 |1473 |33383 |
+ROW |101212 |1476 |33384 |
+ROW |101213 |1474 |33385 |
+ROW |101214 |1477 |33386 |
+ROW |101215 |1477 |33387 |
+ROW |101216 |1477 |33388 |
+ROW |101217 |1479 |33399 |
+ROW |101218 |1481 |33400 |
+ROW |101219 |1481 |33401 |
+ROW |101220 |851 |27376 |
+ROW |101221 |852 |27378 |
+ROW |101222 |852 |27379 |
+ROW |101223 |852 |30097 |
+ROW |101224 |869 |27380 |
+ROW |101225 |870 |27382 |
+ROW |101226 |870 |27383 |
+ROW |101227 |858 |27385 |
+ROW |101228 |858 |27386 |
+ROW |101229 |1048 |28209 |
+ROW |101230 |1048 |28210 |
+ROW |101231 |858 |30098 |
+ROW |101232 |870 |30099 |
+ROW |101233 |1048 |30100 |
+ROW |101234 |848 |27415 |
+ROW |101235 |848 |27416 |
+ROW |101236 |849 |27417 |
+ROW |101237 |852 |27419 |
+ROW |101238 |853 |27420 |
+ROW |101239 |853 |27421 |
+ROW |101240 |854 |27422 |
+ROW |101241 |855 |27423 |
+ROW |101242 |1056 |28246 |
+ROW |101243 |848 |30101 |
+ROW |101244 |856 |27425 |
+ROW |101245 |856 |27426 |
+ROW |101246 |857 |27427 |
+ROW |101247 |858 |27428 |
+ROW |101248 |859 |27429 |
+ROW |101249 |859 |27430 |
+ROW |101250 |860 |27431 |
+ROW |101251 |861 |27432 |
+ROW |101252 |868 |27443 |
+ROW |101253 |868 |27444 |
+ROW |101254 |870 |27445 |
+ROW |101255 |871 |27446 |
+ROW |101256 |871 |27447 |
+ROW |101257 |872 |27448 |
+ROW |101258 |873 |27449 |
+ROW |101259 |1048 |28208 |
+ROW |101260 |1049 |28215 |
+ROW |101261 |1050 |28216 |
+ROW |101262 |1051 |28217 |
+ROW |101263 |1051 |28218 |
+ROW |101264 |1052 |28220 |
+ROW |101265 |1052 |28222 |
+ROW |101266 |1057 |28247 |
+ROW |101267 |856 |30102 |
+ROW |101268 |868 |30103 |
+ROW |101269 |1052 |30104 |
+ROW |101270 |877 |27478 |
+ROW |101271 |880 |27479 |
+ROW |101272 |881 |27480 |
+ROW |101273 |882 |27481 |
+ROW |101274 |882 |27482 |
+ROW |101275 |882 |27483 |
+ROW |101276 |882 |27484 |
+ROW |101277 |879 |27485 |
+ROW |101278 |878 |30105 |
+ROW |101279 |891 |27508 |
+ROW |101280 |891 |27509 |
+ROW |101281 |891 |27510 |
+ROW |101282 |886 |27511 |
+ROW |101283 |891 |30106 |
+ROW |101284 |888 |27517 |
+ROW |101285 |890 |27518 |
+ROW |101286 |889 |27519 |
+ROW |101287 |887 |30107 |
+ROW |101288 |900 |27543 |
+ROW |101289 |900 |27544 |
+ROW |101290 |900 |27545 |
+ROW |101291 |900 |27546 |
+ROW |101292 |895 |27547 |
+ROW |101293 |897 |27553 |
+ROW |101294 |899 |27554 |
+ROW |101295 |898 |27555 |
+ROW |101296 |896 |30108 |
+ROW |101297 |909 |27579 |
+ROW |101298 |909 |27580 |
+ROW |101299 |909 |27582 |
+ROW |101300 |909 |27583 |
+ROW |101301 |906 |27584 |
+ROW |101302 |906 |27585 |
+ROW |101303 |904 |27586 |
+ROW |101304 |909 |30109 |
+ROW |101305 |905 |27591 |
+ROW |101306 |907 |27593 |
+ROW |101307 |908 |27594 |
+ROW |101308 |908 |27595 |
+ROW |101309 |905 |30110 |
+ROW |101310 |905 |30111 |
+ROW |101311 |919 |27671 |
+ROW |101312 |921 |27672 |
+ROW |101313 |922 |27673 |
+ROW |101314 |923 |27674 |
+ROW |101315 |924 |27675 |
+ROW |101316 |924 |27676 |
+ROW |101317 |924 |27677 |
+ROW |101318 |924 |27678 |
+ROW |101319 |924 |27679 |
+ROW |101320 |920 |30112 |
+ROW |101321 |1036 |28141 |
+ROW |101322 |1036 |28142 |
+ROW |101323 |1031 |28143 |
+ROW |101324 |1033 |28150 |
+ROW |101325 |1032 |28153 |
+ROW |101326 |1034 |28154 |
+ROW |101327 |1035 |28155 |
+ROW |101328 |1033 |28156 |
+ROW |101329 |1036 |28157 |
+ROW |101330 |1036 |28158 |
+ROW |101331 |1032 |30113 |
+ROW |101332 |1032 |30114 |
+ROW |101333 |1032 |30115 |
+ROW |101334 |941 |27748 |
+ROW |101335 |941 |27749 |
+ROW |101336 |941 |27750 |
+ROW |101337 |939 |27751 |
+ROW |101338 |937 |27753 |
+ROW |101339 |941 |27754 |
+ROW |101340 |940 |27755 |
+ROW |101341 |938 |30116 |
+ROW |101342 |948 |27777 |
+ROW |101343 |948 |27778 |
+ROW |101344 |945 |27783 |
+ROW |101345 |945 |27784 |
+ROW |101346 |948 |27785 |
+ROW |101347 |946 |27786 |
+ROW |101348 |947 |27787 |
+ROW |101349 |957 |27812 |
+ROW |101350 |957 |27813 |
+ROW |101351 |951 |27814 |
+ROW |101352 |957 |30117 |
+ROW |101353 |954 |27821 |
+ROW |101354 |956 |27822 |
+ROW |101355 |955 |27823 |
+ROW |101356 |952 |28894 |
+ROW |101357 |953 |30118 |
+ROW |101358 |1486 |33402 |
+ROW |101359 |1486 |33403 |
+ROW |101360 |1486 |33404 |
+ROW |101361 |1483 |33405 |
+ROW |101362 |1483 |33406 |
+ROW |101363 |1482 |33407 |
+ROW |101364 |1483 |33408 |
+ROW |101365 |1483 |33409 |
+ROW |101366 |1483 |33410 |
+ROW |101367 |1483 |33411 |
+ROW |101368 |1486 |33412 |
+ROW |101369 |1486 |33413 |
+ROW |101370 |1484 |33429 |
+ROW |101371 |1484 |33430 |
+ROW |101372 |1484 |33431 |
+ROW |101373 |1044 |28200 |
+ROW |101374 |1044 |28201 |
+ROW |101375 |1045 |28202 |
+ROW |101376 |1045 |28203 |
+ROW |101377 |1047 |28204 |
+ROW |101378 |1047 |28205 |
+ROW |101379 |1046 |28206 |
+ROW |101380 |976 |27893 |
+ROW |101381 |976 |27894 |
+ROW |101382 |976 |27895 |
+ROW |101383 |973 |27898 |
+ROW |101384 |973 |27900 |
+ROW |101385 |976 |30119 |
+ROW |101386 |973 |30120 |
+ROW |101387 |972 |27904 |
+ROW |101388 |974 |27905 |
+ROW |101389 |975 |27906 |
+ROW |101390 |975 |27907 |
+ROW |101391 |975 |27908 |
+ROW |101392 |974 |31790 |
+ROW |101393 |1365 |32308 |
+ROW |101394 |1368 |32309 |
+ROW |101395 |1370 |32310 |
+ROW |101396 |1370 |32311 |
+ROW |101397 |1366 |32312 |
+ROW |101398 |1369 |32313 |
+ROW |101399 |1369 |32314 |
+ROW |101400 |1369 |32315 |
+ROW |101401 |1369 |32316 |
+ROW |101402 |1368 |32317 |
+ROW |101403 |1368 |32318 |
+ROW |101404 |1365 |32319 |
+ROW |101405 |1367 |32320 |
+ROW |101406 |1367 |32321 |
+ROW |101407 |1367 |32322 |
+ROW |101408 |1366 |32323 |
+ROW |101409 |1366 |32324 |
+ROW |101410 |1371 |32325 |
+ROW |101411 |1365 |32326 |
+ROW |101412 |1365 |32327 |
+ROW |101413 |1370 |32328 |
+ROW |101414 |1366 |32330 |
+ROW |101415 |1372 |32331 |
+ROW |101416 |1376 |32332 |
+ROW |101417 |1377 |32333 |
+ROW |101418 |1377 |32334 |
+ROW |101419 |1373 |32335 |
+ROW |101420 |1376 |32336 |
+ROW |101421 |1376 |32337 |
+ROW |101422 |1376 |32338 |
+ROW |101423 |1375 |32339 |
+ROW |101424 |1378 |32340 |
+ROW |101425 |1375 |32341 |
+ROW |101426 |1375 |32342 |
+ROW |101427 |1374 |32343 |
+ROW |101428 |1374 |32344 |
+ROW |101429 |1374 |32345 |
+ROW |101430 |1373 |32346 |
+ROW |101431 |1373 |32347 |
+ROW |101432 |1377 |32348 |
+ROW |101433 |1373 |32350 |
+ROW |101434 |1379 |32351 |
+ROW |101435 |1382 |32352 |
+ROW |101436 |1384 |32353 |
+ROW |101437 |1384 |32354 |
+ROW |101438 |1380 |32355 |
+ROW |101439 |1383 |32356 |
+ROW |101440 |1383 |32357 |
+ROW |101441 |1383 |32358 |
+ROW |101442 |1383 |32359 |
+ROW |101443 |1382 |32360 |
+ROW |101444 |1382 |32361 |
+ROW |101445 |1379 |32362 |
+ROW |101446 |1381 |32363 |
+ROW |101447 |1381 |32364 |
+ROW |101448 |1381 |32365 |
+ROW |101449 |1380 |32366 |
+ROW |101450 |1380 |32367 |
+ROW |101451 |1385 |32368 |
+ROW |101452 |1379 |32369 |
+ROW |101453 |1379 |32370 |
+ROW |101454 |1384 |32371 |
+ROW |101455 |1380 |32373 |
+ROW |101456 |1390 |32374 |
+ROW |101457 |1387 |32375 |
+ROW |101458 |1387 |32376 |
+ROW |101459 |1388 |32377 |
+ROW |101460 |1388 |32378 |
+ROW |101461 |1388 |32379 |
+ROW |101462 |1389 |32380 |
+ROW |101463 |1386 |32382 |
+ROW |101464 |1391 |32383 |
+ROW |101465 |1393 |32384 |
+ROW |101466 |1395 |32385 |
+ROW |101467 |1392 |32386 |
+ROW |101468 |1394 |32387 |
+ROW |101469 |1394 |32388 |
+ROW |101470 |1394 |32389 |
+ROW |101471 |1393 |32390 |
+ROW |101472 |1392 |32391 |
+ROW |101473 |1391 |32392 |
+ROW |101474 |1392 |32393 |
+ROW |101475 |1392 |32394 |
+ROW |101476 |1396 |32395 |
+ROW |101477 |1391 |32396 |
+ROW |101478 |1391 |32397 |
+ROW |101479 |1391 |32398 |
+ROW |101480 |1395 |32399 |
+ROW |101481 |1392 |32401 |
+ROW |101482 |1397 |32402 |
+ROW |101483 |1399 |32403 |
+ROW |101484 |1401 |32404 |
+ROW |101485 |1398 |32405 |
+ROW |101486 |1400 |32406 |
+ROW |101487 |1400 |32407 |
+ROW |101488 |1400 |32408 |
+ROW |101489 |1399 |32409 |
+ROW |101490 |1398 |32410 |
+ROW |101491 |1397 |32411 |
+ROW |101492 |1398 |32412 |
+ROW |101493 |1398 |32413 |
+ROW |101494 |1402 |32414 |
+ROW |101495 |1397 |32415 |
+ROW |101496 |1397 |32416 |
+ROW |101497 |1397 |32417 |
+ROW |101498 |1401 |32418 |
+ROW |101499 |1398 |32420 |
+ROW |101500 |1409 |32421 |
+ROW |101501 |1407 |32422 |
+ROW |101502 |1405 |32423 |
+ROW |101503 |1405 |32424 |
+ROW |101504 |1407 |32425 |
+ROW |101505 |1407 |32426 |
+ROW |101506 |1407 |32427 |
+ROW |101507 |1408 |32428 |
+ROW |101508 |1408 |32429 |
+ROW |101509 |1404 |32436 |
+ROW |101510 |1404 |32437 |
+ROW |101511 |1404 |32438 |
+ROW |101512 |1403 |32439 |
+ROW |101513 |1404 |32440 |
+ROW |101514 |1406 |32441 |
+ROW |101515 |1406 |32442 |
+ROW |101516 |1406 |32443 |
+ROW |101517 |1406 |32444 |
+ROW |101518 |985 |27930 |
+ROW |101519 |985 |27931 |
+ROW |101520 |981 |27935 |
+ROW |101521 |980 |27936 |
+ROW |101522 |985 |30121 |
+ROW |101523 |981 |30122 |
+ROW |101524 |981 |30123 |
+ROW |101525 |982 |27940 |
+ROW |101526 |982 |27941 |
+ROW |101527 |984 |27942 |
+ROW |101528 |983 |27943 |
+ROW |101529 |991 |27967 |
+ROW |101530 |991 |27968 |
+ROW |101531 |991 |27970 |
+ROW |101532 |991 |27971 |
+ROW |101533 |990 |27972 |
+ROW |101534 |990 |27973 |
+ROW |101535 |989 |27975 |
+ROW |101536 |1282 |30124 |
+ROW |101537 |991 |30125 |
+ROW |101538 |990 |30126 |
+ROW |101539 |1280 |30129 |
+ROW |101540 |1281 |30130 |
+ROW |101541 |997 |27997 |
+ROW |101542 |997 |27998 |
+ROW |101543 |997 |27999 |
+ROW |101544 |997 |28000 |
+ROW |101545 |995 |28003 |
+ROW |101546 |996 |30131 |
+ROW |101547 |1003 |28026 |
+ROW |101548 |1003 |28027 |
+ROW |101549 |1001 |28031 |
+ROW |101550 |1002 |30132 |
+ROW |101551 |1002 |30133 |
+ROW |101552 |1002 |30134 |
+ROW |101553 |1002 |30135 |
+ROW |101554 |1002 |30136 |
+ROW |101555 |1142 |29087 |
+ROW |101556 |1142 |29088 |
+ROW |101557 |1142 |29089 |
+ROW |101558 |1142 |29090 |
+ROW |101559 |1142 |29091 |
+ROW |101560 |1142 |29092 |
+ROW |101561 |1142 |29093 |
+ROW |101562 |1142 |29094 |
+ROW |101563 |1142 |29095 |
+ROW |101564 |1142 |29096 |
+ROW |101565 |1142 |29097 |
+ROW |101566 |1142 |29098 |
+ROW |101567 |1142 |29099 |
+ROW |101568 |1142 |29100 |
+ROW |101569 |1142 |29101 |
+ROW |101570 |1142 |29102 |
+ROW |101571 |1144 |29103 |
+ROW |101572 |1144 |29104 |
+ROW |101573 |1144 |29105 |
+ROW |101574 |1144 |29106 |
+ROW |101575 |1144 |29107 |
+ROW |101576 |1144 |29108 |
+ROW |101577 |1151 |29110 |
+ROW |101578 |1148 |29111 |
+ROW |101579 |1148 |29112 |
+ROW |101580 |1148 |29113 |
+ROW |101581 |1148 |29114 |
+ROW |101582 |1148 |29115 |
+ROW |101583 |1148 |29116 |
+ROW |101584 |1148 |29117 |
+ROW |101585 |1148 |29118 |
+ROW |101586 |1148 |29119 |
+ROW |101587 |1150 |29120 |
+ROW |101588 |1149 |29121 |
+ROW |101589 |1149 |29122 |
+ROW |101590 |1149 |29123 |
+ROW |101591 |1152 |29124 |
+ROW |101592 |1152 |29125 |
+ROW |101593 |1152 |29126 |
+ROW |101594 |1152 |29127 |
+ROW |101595 |1152 |29128 |
+ROW |101596 |1152 |29129 |
+ROW |101597 |1152 |29130 |
+ROW |101598 |1152 |29131 |
+ROW |101599 |1152 |29132 |
+ROW |101600 |1152 |29133 |
+ROW |101601 |1152 |29134 |
+ROW |101602 |1152 |29135 |
+ROW |101603 |1152 |29136 |
+ROW |101604 |1152 |29137 |
+ROW |101605 |1152 |29138 |
+ROW |101606 |1152 |29139 |
+ROW |101607 |1154 |29140 |
+ROW |101608 |1154 |29141 |
+ROW |101609 |1154 |29142 |
+ROW |101610 |1154 |29143 |
+ROW |101611 |1154 |29144 |
+ROW |101612 |1154 |29145 |
+ROW |101613 |1161 |29147 |
+ROW |101614 |1158 |29148 |
+ROW |101615 |1158 |29149 |
+ROW |101616 |1158 |29150 |
+ROW |101617 |1158 |29151 |
+ROW |101618 |1158 |29152 |
+ROW |101619 |1158 |29153 |
+ROW |101620 |1158 |29154 |
+ROW |101621 |1158 |29155 |
+ROW |101622 |1158 |29156 |
+ROW |101623 |1160 |29157 |
+ROW |101624 |1159 |29158 |
+ROW |101625 |1159 |29159 |
+ROW |101626 |1159 |29160 |
+ROW |101627 |1162 |29161 |
+ROW |101628 |1162 |29162 |
+ROW |101629 |1162 |29163 |
+ROW |101630 |1162 |29164 |
+ROW |101631 |1162 |29165 |
+ROW |101632 |1162 |29166 |
+ROW |101633 |1162 |29167 |
+ROW |101634 |1162 |29168 |
+ROW |101635 |1162 |29169 |
+ROW |101636 |1162 |29170 |
+ROW |101637 |1162 |29171 |
+ROW |101638 |1162 |29172 |
+ROW |101639 |1162 |29173 |
+ROW |101640 |1162 |29174 |
+ROW |101641 |1162 |29175 |
+ROW |101642 |1162 |29176 |
+ROW |101643 |1164 |29177 |
+ROW |101644 |1164 |29178 |
+ROW |101645 |1164 |29179 |
+ROW |101646 |1164 |29180 |
+ROW |101647 |1164 |29181 |
+ROW |101648 |1164 |29182 |
+ROW |101649 |1171 |29184 |
+ROW |101650 |1168 |29185 |
+ROW |101651 |1168 |29186 |
+ROW |101652 |1168 |29187 |
+ROW |101653 |1168 |29188 |
+ROW |101654 |1168 |29189 |
+ROW |101655 |1168 |29190 |
+ROW |101656 |1168 |29191 |
+ROW |101657 |1168 |29192 |
+ROW |101658 |1168 |29193 |
+ROW |101659 |1170 |29194 |
+ROW |101660 |1169 |29195 |
+ROW |101661 |1169 |29196 |
+ROW |101662 |1169 |29197 |
+ROW |101663 |1142 |29198 |
+ROW |101664 |1144 |31270 |
+ROW |101665 |1152 |29199 |
+ROW |101666 |1154 |31271 |
+ROW |101667 |1162 |29200 |
+ROW |101668 |1164 |31272 |
+ROW |101669 |1146 |31278 |
+ROW |101670 |1156 |31281 |
+ROW |101671 |1166 |31284 |
+ROW |101672 |1146 |31287 |
+ROW |101673 |1146 |31290 |
+ROW |101674 |1156 |31293 |
+ROW |101675 |1156 |31296 |
+ROW |101676 |1166 |31299 |
+ROW |101677 |1166 |31302 |
+ROW |101678 |1173 |29273 |
+ROW |101679 |1173 |29274 |
+ROW |101680 |1173 |29275 |
+ROW |101681 |1173 |29276 |
+ROW |101682 |1173 |29277 |
+ROW |101683 |1173 |29278 |
+ROW |101684 |1173 |29279 |
+ROW |101685 |1173 |29280 |
+ROW |101686 |1173 |29281 |
+ROW |101687 |1173 |29282 |
+ROW |101688 |1173 |29283 |
+ROW |101689 |1173 |29284 |
+ROW |101690 |1173 |29285 |
+ROW |101691 |1173 |29286 |
+ROW |101692 |1173 |29287 |
+ROW |101693 |1173 |29288 |
+ROW |101694 |1175 |29289 |
+ROW |101695 |1175 |29290 |
+ROW |101696 |1175 |29291 |
+ROW |101697 |1175 |29292 |
+ROW |101698 |1175 |29293 |
+ROW |101699 |1175 |29294 |
+ROW |101700 |1182 |29296 |
+ROW |101701 |1179 |29297 |
+ROW |101702 |1179 |29298 |
+ROW |101703 |1179 |29299 |
+ROW |101704 |1179 |29300 |
+ROW |101705 |1179 |29301 |
+ROW |101706 |1179 |29302 |
+ROW |101707 |1179 |29303 |
+ROW |101708 |1179 |29304 |
+ROW |101709 |1179 |29305 |
+ROW |101710 |1181 |29306 |
+ROW |101711 |1180 |29307 |
+ROW |101712 |1180 |29308 |
+ROW |101713 |1180 |29309 |
+ROW |101714 |1183 |29310 |
+ROW |101715 |1183 |29311 |
+ROW |101716 |1183 |29312 |
+ROW |101717 |1183 |29313 |
+ROW |101718 |1183 |29314 |
+ROW |101719 |1183 |29315 |
+ROW |101720 |1183 |29316 |
+ROW |101721 |1183 |29317 |
+ROW |101722 |1183 |29318 |
+ROW |101723 |1183 |29319 |
+ROW |101724 |1183 |29320 |
+ROW |101725 |1183 |29321 |
+ROW |101726 |1183 |29322 |
+ROW |101727 |1183 |29323 |
+ROW |101728 |1183 |29324 |
+ROW |101729 |1183 |29325 |
+ROW |101730 |1185 |29326 |
+ROW |101731 |1185 |29327 |
+ROW |101732 |1185 |29328 |
+ROW |101733 |1185 |29329 |
+ROW |101734 |1185 |29330 |
+ROW |101735 |1185 |29331 |
+ROW |101736 |1192 |29333 |
+ROW |101737 |1189 |29334 |
+ROW |101738 |1189 |29335 |
+ROW |101739 |1189 |29336 |
+ROW |101740 |1189 |29337 |
+ROW |101741 |1189 |29338 |
+ROW |101742 |1189 |29339 |
+ROW |101743 |1189 |29340 |
+ROW |101744 |1189 |29341 |
+ROW |101745 |1189 |29342 |
+ROW |101746 |1191 |29343 |
+ROW |101747 |1190 |29344 |
+ROW |101748 |1190 |29345 |
+ROW |101749 |1190 |29346 |
+ROW |101750 |1173 |29347 |
+ROW |101751 |1175 |31303 |
+ROW |101752 |1183 |29348 |
+ROW |101753 |1185 |31304 |
+ROW |101754 |1177 |31309 |
+ROW |101755 |1187 |31312 |
+ROW |101756 |1177 |31315 |
+ROW |101757 |1177 |31318 |
+ROW |101758 |1187 |31321 |
+ROW |101759 |1187 |31324 |
+ROW |101760 |1201 |29395 |
+ROW |101761 |1196 |29396 |
+ROW |101762 |1196 |29397 |
+ROW |101763 |1194 |29398 |
+ROW |101764 |1193 |29399 |
+ROW |101765 |1196 |29400 |
+ROW |101766 |1196 |29401 |
+ROW |101767 |1196 |29402 |
+ROW |101768 |1196 |29403 |
+ROW |101769 |1194 |29404 |
+ROW |101770 |1193 |29405 |
+ROW |101771 |1193 |29406 |
+ROW |101772 |1193 |29407 |
+ROW |101773 |1193 |29408 |
+ROW |101774 |1193 |29409 |
+ROW |101775 |1193 |29410 |
+ROW |101776 |1193 |29411 |
+ROW |101777 |1193 |29412 |
+ROW |101778 |1193 |29413 |
+ROW |101779 |1194 |29414 |
+ROW |101780 |1197 |29415 |
+ROW |101781 |1193 |29416 |
+ROW |101782 |1193 |29417 |
+ROW |101783 |1193 |29418 |
+ROW |101784 |1193 |29419 |
+ROW |101785 |1193 |29420 |
+ROW |101786 |1199 |29421 |
+ROW |101787 |1195 |29422 |
+ROW |101788 |1194 |29423 |
+ROW |101789 |1194 |29424 |
+ROW |101790 |1194 |29425 |
+ROW |101791 |1193 |29426 |
+ROW |101792 |1193 |29427 |
+ROW |101793 |1195 |29428 |
+ROW |101794 |1201 |29450 |
+ROW |101795 |1201 |29451 |
+ROW |101796 |1128 |28978 |
+ROW |101797 |1128 |28979 |
+ROW |101798 |1128 |28980 |
+ROW |101799 |1128 |28981 |
+ROW |101800 |1128 |28982 |
+ROW |101801 |1128 |28983 |
+ROW |101802 |1128 |28984 |
+ROW |101803 |1128 |28985 |
+ROW |101804 |1128 |28986 |
+ROW |101805 |1130 |28987 |
+ROW |101806 |1130 |28988 |
+ROW |101807 |1130 |28989 |
+ROW |101808 |1130 |28990 |
+ROW |101809 |1130 |28991 |
+ROW |101810 |1130 |28992 |
+ROW |101811 |1132 |28993 |
+ROW |101812 |1132 |28994 |
+ROW |101813 |1132 |28995 |
+ROW |101814 |1132 |28996 |
+ROW |101815 |1132 |28997 |
+ROW |101816 |1132 |28998 |
+ROW |101817 |1132 |28999 |
+ROW |101818 |1132 |29000 |
+ROW |101819 |1132 |29001 |
+ROW |101820 |1134 |29002 |
+ROW |101821 |1134 |29003 |
+ROW |101822 |1134 |29004 |
+ROW |101823 |1134 |29005 |
+ROW |101824 |1134 |29006 |
+ROW |101825 |1134 |29007 |
+ROW |101826 |1130 |29017 |
+ROW |101827 |1130 |29018 |
+ROW |101828 |1130 |29019 |
+ROW |101829 |1130 |29020 |
+ROW |101830 |1130 |29021 |
+ROW |101831 |1130 |29022 |
+ROW |101832 |1130 |29023 |
+ROW |101833 |1130 |29024 |
+ROW |101834 |1130 |29025 |
+ROW |101835 |1130 |29026 |
+ROW |101836 |1134 |29034 |
+ROW |101837 |1134 |29035 |
+ROW |101838 |1134 |29036 |
+ROW |101839 |1134 |29037 |
+ROW |101840 |1134 |29038 |
+ROW |101841 |1134 |29039 |
+ROW |101842 |1134 |29040 |
+ROW |101843 |1134 |29041 |
+ROW |101844 |1134 |29042 |
+ROW |101845 |1134 |29043 |
+ROW |101846 |1130 |29048 |
+ROW |101847 |1134 |29049 |
+ROW |101848 |1202 |29454 |
+ROW |101849 |1202 |29455 |
+ROW |101850 |1202 |29456 |
+ROW |101851 |1202 |29457 |
+ROW |101852 |1202 |29458 |
+ROW |101853 |1202 |29459 |
+ROW |101854 |1203 |29460 |
+ROW |101855 |1203 |29461 |
+ROW |101856 |1203 |29462 |
+ROW |101857 |1203 |29463 |
+ROW |101858 |1203 |29466 |
+ROW |101859 |1203 |29467 |
+ROW |101860 |1203 |29468 |
+ROW |101861 |1203 |29469 |
+ROW |101862 |1203 |29470 |
+ROW |101863 |1209 |29472 |
+ROW |101864 |1207 |29473 |
+ROW |101865 |1207 |29474 |
+ROW |101866 |1207 |29475 |
+ROW |101867 |1207 |29476 |
+ROW |101868 |1207 |29477 |
+ROW |101869 |1208 |29478 |
+ROW |101870 |1202 |30137 |
+ROW |101871 |1202 |31325 |
+ROW |101872 |1203 |31326 |
+ROW |101873 |1203 |31327 |
+ROW |101874 |1211 |31455 |
+ROW |101875 |1212 |29480 |
+ROW |101876 |1212 |29481 |
+ROW |101877 |1212 |29482 |
+ROW |101878 |1212 |29483 |
+ROW |101879 |1212 |29484 |
+ROW |101880 |1212 |29485 |
+ROW |101881 |1213 |29486 |
+ROW |101882 |1213 |29487 |
+ROW |101883 |1213 |29488 |
+ROW |101884 |1213 |29489 |
+ROW |101885 |1213 |29492 |
+ROW |101886 |1213 |29493 |
+ROW |101887 |1213 |29494 |
+ROW |101888 |1213 |29495 |
+ROW |101889 |1213 |29496 |
+ROW |101890 |1219 |29498 |
+ROW |101891 |1217 |29499 |
+ROW |101892 |1217 |29500 |
+ROW |101893 |1217 |29501 |
+ROW |101894 |1217 |29502 |
+ROW |101895 |1217 |29503 |
+ROW |101896 |1218 |29504 |
+ROW |101897 |1212 |30138 |
+ROW |101898 |1212 |31328 |
+ROW |101899 |1213 |31329 |
+ROW |101900 |1213 |31330 |
+ROW |101901 |1216 |31456 |
+ROW |101902 |1203 |31331 |
+ROW |101903 |1213 |31332 |
+ROW |101904 |1310 |30425 |
+ROW |101905 |1311 |30426 |
+ROW |101906 |1243 |29561 |
+ROW |101907 |1243 |29562 |
+ROW |101908 |1243 |29563 |
+ROW |101909 |1243 |29564 |
+ROW |101910 |1243 |29565 |
+ROW |101911 |1243 |29566 |
+ROW |101912 |1244 |29567 |
+ROW |101913 |1244 |29568 |
+ROW |101914 |1244 |29569 |
+ROW |101915 |1244 |29570 |
+ROW |101916 |1244 |29573 |
+ROW |101917 |1244 |29574 |
+ROW |101918 |1244 |29575 |
+ROW |101919 |1244 |29576 |
+ROW |101920 |1244 |29577 |
+ROW |101921 |1250 |29579 |
+ROW |101922 |1248 |29580 |
+ROW |101923 |1248 |29581 |
+ROW |101924 |1248 |29582 |
+ROW |101925 |1248 |29583 |
+ROW |101926 |1248 |29584 |
+ROW |101927 |1249 |29585 |
+ROW |101928 |1243 |30139 |
+ROW |101929 |1243 |31343 |
+ROW |101930 |1244 |31344 |
+ROW |101931 |1244 |31345 |
+ROW |101932 |1252 |31477 |
+ROW |101933 |1253 |29587 |
+ROW |101934 |1253 |29588 |
+ROW |101935 |1253 |29589 |
+ROW |101936 |1253 |29590 |
+ROW |101937 |1253 |29591 |
+ROW |101938 |1253 |29592 |
+ROW |101939 |1254 |29593 |
+ROW |101940 |1254 |29594 |
+ROW |101941 |1254 |29595 |
+ROW |101942 |1254 |29596 |
+ROW |101943 |1254 |29599 |
+ROW |101944 |1254 |29600 |
+ROW |101945 |1254 |29601 |
+ROW |101946 |1254 |29602 |
+ROW |101947 |1254 |29603 |
+ROW |101948 |1242 |29605 |
+ROW |101949 |1258 |29606 |
+ROW |101950 |1258 |29607 |
+ROW |101951 |1258 |29608 |
+ROW |101952 |1258 |29609 |
+ROW |101953 |1258 |29610 |
+ROW |101954 |1259 |29611 |
+ROW |101955 |1253 |30140 |
+ROW |101956 |1253 |31346 |
+ROW |101957 |1254 |31347 |
+ROW |101958 |1254 |31348 |
+ROW |101959 |1257 |31478 |
+ROW |101960 |1244 |31349 |
+ROW |101961 |1254 |31350 |
+ROW |101962 |1312 |30429 |
+ROW |101963 |1313 |30430 |
+ROW |101964 |1488 |33432 |
+ROW |101965 |1488 |33433 |
+ROW |101966 |1489 |33434 |
+ROW |101967 |1488 |33435 |
+ROW |101968 |1488 |33436 |
+ROW |101969 |1488 |33437 |
+ROW |101970 |1488 |33438 |
+ROW |101971 |1488 |33439 |
+ROW |101972 |1488 |33440 |
+ROW |101973 |1488 |33441 |
+ROW |101974 |1488 |33442 |
+ROW |101975 |1488 |33443 |
+ROW |101976 |1488 |33444 |
+ROW |101977 |1488 |33445 |
+ROW |101978 |1488 |33446 |
+ROW |101979 |1488 |33447 |
+ROW |101980 |1488 |33448 |
+ROW |101981 |1488 |33449 |
+ROW |101982 |1489 |33450 |
+ROW |101983 |1489 |33451 |
+ROW |101984 |1489 |33452 |
+ROW |101985 |1488 |33453 |
+ROW |101986 |1488 |33454 |
+ROW |101987 |1488 |33455 |
+ROW |101988 |1488 |33456 |
+ROW |101989 |1488 |33457 |
+ROW |101990 |1488 |33458 |
+ROW |101991 |1489 |33459 |
+ROW |101992 |1488 |33465 |
+ROW |101993 |1488 |33466 |
+ROW |101994 |1488 |33467 |
+ROW |101995 |1488 |33468 |
+ROW |101996 |1488 |33469 |
+ROW |101997 |1488 |33470 |
+ROW |101998 |1488 |33471 |
+ROW |101999 |1488 |33472 |
+ROW |102000 |1488 |33473 |
+ROW |102001 |1488 |33474 |
+ROW |102002 |1488 |33475 |
+ROW |102003 |1488 |33476 |
+ROW |102004 |1488 |33477 |
+ROW |102005 |1488 |33478 |
+ROW |102006 |1424 |32776 |
+ROW |102007 |1424 |32777 |
+ROW |102008 |1424 |32778 |
+ROW |102009 |1424 |32779 |
+ROW |102010 |1491 |33479 |
+ROW |102011 |1490 |33480 |
+ROW |102012 |1491 |33481 |
+ROW |102013 |1491 |33482 |
+ROW |102014 |1491 |33483 |
+ROW |102015 |1491 |33484 |
+ROW |102016 |1491 |33485 |
+ROW |102017 |1491 |33486 |
+ROW |102018 |1491 |33487 |
+ROW |102019 |1490 |33488 |
+ROW |102020 |1490 |33489 |
+ROW |102021 |1491 |33490 |
+ROW |102022 |1490 |33491 |
+ROW |102023 |1491 |33492 |
+ROW |102024 |1490 |33493 |
+ROW |102025 |1490 |33494 |
+ROW |102026 |1490 |33495 |
+ROW |102027 |1491 |33496 |
+ROW |102028 |1491 |33497 |
+ROW |102029 |1491 |33498 |
+ROW |102030 |1491 |33499 |
+ROW |102031 |1490 |33500 |
+ROW |102032 |1490 |33501 |
+ROW |102033 |1491 |33502 |
+ROW |102034 |1491 |33503 |
+ROW |102035 |1490 |33504 |
+ROW |102036 |1490 |33505 |
+ROW |102037 |1490 |33506 |
+ROW |102038 |1490 |33507 |
+ROW |102039 |1490 |33508 |
+ROW |102040 |1490 |33509 |
+ROW |102041 |1491 |33510 |
+ROW |102042 |1491 |33511 |
+ROW |102043 |1490 |33512 |
+ROW |102044 |1491 |33545 |
+ROW |102045 |1491 |33551 |
+ROW |102046 |1491 |33552 |
+ROW |102047 |1491 |33553 |
+ROW |102048 |1491 |33559 |
+ROW |102049 |1491 |33560 |
+ROW |102050 |1491 |33561 |
+ROW |102051 |1491 |33562 |
+ROW |102052 |1416 |32612 |
+ROW |102053 |1416 |32613 |
+ROW |102054 |1416 |32614 |
+ROW |102055 |1416 |32615 |
+ROW |102056 |1325 |30685 |
+ROW |102057 |1277 |30066 |
+ROW |102058 |1277 |30067 |
+ROW |102059 |1277 |30068 |
+ROW |102060 |1277 |30069 |
+ROW |102061 |1277 |30070 |
+ROW |102062 |1276 |30071 |
+ROW |102063 |1271 |30072 |
+ROW |102064 |1274 |30073 |
+ROW |102065 |1274 |30074 |
+ROW |102066 |1273 |30075 |
+ROW |102067 |1275 |30076 |
+ROW |102068 |1275 |30077 |
+ROW |102069 |1275 |30078 |
+ROW |102070 |1275 |30079 |
+ROW |102071 |1278 |30080 |
+ROW |102072 |1278 |30081 |
+ROW |102073 |1278 |30082 |
+ROW |102074 |1272 |30083 |
+ROW |102075 |1272 |30084 |
+ROW |102076 |1272 |30085 |
+ROW |102077 |1070 |28341 |
+ROW |102078 |1073 |28342 |
+ROW |102079 |1073 |28344 |
+ROW |102080 |1073 |28345 |
+ROW |102081 |1073 |30141 |
+ROW |102082 |1076 |28354 |
+ROW |102083 |1076 |28355 |
+ROW |102084 |1076 |28356 |
+ROW |102085 |1076 |28357 |
+ROW |102086 |1075 |28358 |
+ROW |102087 |1072 |28359 |
+ROW |102088 |1072 |28360 |
+ROW |102089 |1074 |28361 |
+ROW |102090 |1074 |28362 |
+ROW |102091 |1074 |28363 |
+ROW |102092 |1074 |28364 |
+ROW |102093 |1074 |28365 |
+ROW |102094 |1074 |28366 |
+ROW |102095 |1074 |28367 |
+ROW |102096 |1077 |28368 |
+ROW |102097 |1077 |28369 |
+ROW |102098 |1077 |28370 |
+ROW |102099 |1077 |28371 |
+ROW |102100 |1077 |28372 |
+ROW |102101 |1077 |28373 |
+ROW |102102 |1071 |28374 |
+ROW |102103 |1071 |28375 |
+ROW |102104 |1071 |28376 |
+ROW |102105 |1085 |28388 |
+ROW |102106 |1082 |28390 |
+ROW |102107 |1082 |28391 |
+ROW |102108 |1079 |29994 |
+ROW |102109 |1085 |28404 |
+ROW |102110 |1085 |28405 |
+ROW |102111 |1085 |28406 |
+ROW |102112 |1085 |28407 |
+ROW |102113 |1085 |28408 |
+ROW |102114 |1085 |28409 |
+ROW |102115 |1084 |28411 |
+ROW |102116 |1081 |28412 |
+ROW |102117 |1080 |28413 |
+ROW |102118 |1080 |28414 |
+ROW |102119 |1080 |28415 |
+ROW |102120 |1080 |28416 |
+ROW |102121 |1083 |28417 |
+ROW |102122 |1083 |28418 |
+ROW |102123 |1083 |28419 |
+ROW |102124 |1083 |28420 |
+ROW |102125 |1083 |28421 |
+ROW |102126 |1083 |28422 |
+ROW |102127 |1086 |28423 |
+ROW |102128 |1086 |28424 |
+ROW |102129 |1086 |28425 |
+ROW |102130 |1085 |32732 |
+ROW |102131 |1085 |32733 |
+ROW |102132 |1085 |32734 |
+ROW |102133 |1085 |32735 |
+ROW |102134 |1085 |32736 |
+ROW |102135 |1085 |32737 |
+ROW |102136 |1085 |32738 |
+ROW |102137 |1085 |32739 |
+ROW |102138 |1085 |32740 |
+ROW |102139 |1095 |28465 |
+ROW |102140 |1097 |28466 |
+ROW |102141 |1097 |28467 |
+ROW |102142 |1100 |28474 |
+ROW |102143 |1100 |28475 |
+ROW |102144 |1100 |28476 |
+ROW |102145 |1099 |28477 |
+ROW |102146 |1096 |28478 |
+ROW |102147 |1096 |28479 |
+ROW |102148 |1098 |28480 |
+ROW |102149 |1098 |28481 |
+ROW |102150 |1104 |28495 |
+ROW |102151 |1103 |28496 |
+ROW |102152 |1355 |31969 |
+ROW |102153 |1355 |31970 |
+ROW |102154 |1356 |31971 |
+ROW |102155 |1355 |31972 |
+ROW |102156 |1355 |31973 |
+ROW |102157 |1355 |31974 |
+ROW |102158 |1355 |31975 |
+ROW |102159 |1355 |31976 |
+ROW |102160 |1355 |31977 |
+ROW |102161 |1355 |31978 |
+ROW |102162 |1355 |31979 |
+ROW |102163 |1355 |31980 |
+ROW |102164 |1355 |31981 |
+ROW |102165 |1355 |31982 |
+ROW |102166 |1355 |31983 |
+ROW |102167 |1355 |31984 |
+ROW |102168 |1355 |31985 |
+ROW |102169 |1355 |31986 |
+ROW |102170 |1355 |31987 |
+ROW |102171 |1355 |31988 |
+ROW |102172 |1355 |31989 |
+ROW |102173 |1355 |32461 |
+ROW |102174 |1355 |32462 |
TABLE |mappings
FIELDS|mappingid|valuemapid|value|newvalue |
@@ -21298,6 +23742,65 @@ ROW |1521 |152 |106 |Deleting
ROW |1522 |152 |107 |Modifying |
ROW |1523 |152 |108 |Running(clearing data) |
ROW |1524 |152 |109 |Running(synchronizing data) |
+ROW |1525 |82 |2 |Error |
+ROW |1526 |153 |0 |False |
+ROW |1527 |153 |1 |True |
+ROW |1528 |154 |0 |STARTUP |
+ROW |1529 |154 |1 |PRIMARY |
+ROW |1530 |154 |2 |SECONDARY |
+ROW |1531 |154 |3 |RECOVERING |
+ROW |1532 |154 |5 |STARTUP2 |
+ROW |1533 |154 |6 |UNKNOWN |
+ROW |1534 |154 |7 |ARBITER |
+ROW |1535 |154 |8 |DOWN |
+ROW |1536 |154 |9 |ROLLBACK |
+ROW |1537 |154 |10 |REMOVED |
+ROW |1539 |155 |1 |Normal |
+ROW |1540 |155 |2 |Warning |
+ROW |1541 |155 |3 |Critical |
+ROW |1542 |155 |4 |Not applicable |
+ROW |1543 |156 |1 |no Battery Needs Replacing |
+ROW |1544 |156 |2 |battery Needs Replacing |
+ROW |1545 |157 |1 |no Transfer |
+ROW |1546 |157 |2 |High Line Voltage |
+ROW |1547 |157 |3 |Brownout |
+ROW |1548 |157 |4 |Blackout |
+ROW |1549 |157 |5 |Small Momentary Sag |
+ROW |1550 |157 |6 |Deep Momentary Sag |
+ROW |1551 |157 |7 |Small Momentary Spike |
+ROW |1552 |157 |8 |Large Momentary Spike |
+ROW |1553 |157 |9 |Self Test |
+ROW |1554 |157 |10 |Rate of Voltage Change |
+ROW |1555 |158 |1 |Unknown |
+ROW |1556 |158 |2 |Normal |
+ROW |1557 |158 |3 |Low |
+ROW |1558 |158 |4 |In Fault Condition |
+ROW |1559 |159 |1 |Unknown |
+ROW |1560 |159 |2 |Online |
+ROW |1561 |159 |3 |On Battery |
+ROW |1562 |159 |4 |On Smart Boost |
+ROW |1563 |159 |5 |Timed Sleeping |
+ROW |1564 |159 |6 |Software Bypass |
+ROW |1565 |159 |7 |Off |
+ROW |1566 |159 |8 |Rebooting |
+ROW |1567 |159 |9 |Switched Bypass |
+ROW |1568 |159 |10 |Hardware Failure Bypass |
+ROW |1569 |159 |11 |Sleeping Until Power Return |
+ROW |1570 |159 |12 |On Smart Trim |
+ROW |1571 |159 |13 |Eco Mode |
+ROW |1572 |159 |14 |Hot Standby |
+ROW |1573 |159 |15 |On Battery Test |
+ROW |1574 |159 |16 |Emergency Static Bypass |
+ROW |1575 |159 |17 |Static Bypass Standby |
+ROW |1576 |159 |18 |Power Saving Mode |
+ROW |1577 |159 |19 |Spot Mode |
+ROW |1578 |159 |20 |E-Conversion |
+ROW |1579 |159 |21 |Charger Spotmode |
+ROW |1580 |159 |22 |Inverter Spotmode |
+ROW |1581 |159 |23 |Active Load |
+ROW |1582 |159 |24 |Battery Discharge Spotmode |
+ROW |1583 |159 |25 |Inverter Standby |
+ROW |1584 |159 |26 |Charger Only |
TABLE |sysmaps
FIELDS|sysmapid|name |width|height|backgroundid|label_type|label_location|highlight|expandproblem|markelements|show_unack|grid_size|grid_show|grid_align|label_format|label_type_host|label_type_hostgroup|label_type_trigger|label_type_map|label_type_image|label_string_host|label_string_hostgroup|label_string_trigger|label_string_map|label_string_image|iconmapid|expand_macros|severity_min|userid|private|show_suppressed|
@@ -21667,15 +24170,6 @@ ROW |1300 |28155 |28147 |
ROW |1301 |28156 |28148 |
ROW |1302 |28157 |28149 |
ROW |1303 |28158 |28149 |
-ROW |1317 |28176 |28175 |
-ROW |1318 |28177 |28175 |
-ROW |1319 |28178 |28175 |
-ROW |1320 |28179 |28175 |
-ROW |1321 |28180 |28175 |
-ROW |1322 |28181 |28175 |
-ROW |1323 |28182 |28175 |
-ROW |1324 |28183 |28175 |
-ROW |1325 |28184 |28175 |
ROW |1326 |28200 |28196 |
ROW |1327 |28201 |28196 |
ROW |1328 |28202 |28197 |
@@ -22083,12 +24577,6 @@ ROW |1893 |30165 |30149 |
ROW |1894 |30166 |30150 |
ROW |1895 |30167 |30150 |
ROW |1896 |30168 |30150 |
-ROW |1897 |30169 |30151 |
-ROW |1898 |30170 |30151 |
-ROW |1899 |30171 |30151 |
-ROW |1900 |30172 |30152 |
-ROW |1901 |30173 |30152 |
-ROW |1902 |30174 |30152 |
ROW |1903 |30175 |30153 |
ROW |1904 |30176 |30153 |
ROW |1905 |30177 |30153 |
@@ -22429,7 +24917,6 @@ ROW |2251 |31051 |31047 |
ROW |2252 |31128 |31122 |
ROW |2253 |31129 |31124 |
ROW |2254 |31130 |31125 |
-ROW |2255 |31131 |31126 |
ROW |2256 |31132 |31127 |
ROW |2257 |31133 |31122 |
ROW |2258 |31134 |31122 |
@@ -22457,8 +24944,6 @@ ROW |2279 |31155 |31125 |
ROW |2280 |31156 |31125 |
ROW |2281 |31157 |31125 |
ROW |2282 |31158 |31125 |
-ROW |2283 |31159 |31126 |
-ROW |2284 |31160 |31126 |
ROW |2285 |31161 |31127 |
ROW |2286 |31162 |31127 |
ROW |2287 |31163 |31127 |
@@ -23047,11 +25532,358 @@ 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 |
+ROW |2928 |32979 |32974 |
+ROW |2929 |32980 |32974 |
+ROW |2930 |32981 |32974 |
+ROW |2931 |32982 |32974 |
+ROW |2932 |32983 |32971 |
+ROW |2933 |32984 |32971 |
+ROW |2934 |32985 |32971 |
+ROW |2935 |32986 |32971 |
+ROW |2936 |32987 |32971 |
+ROW |2937 |32988 |32971 |
+ROW |2938 |32989 |32971 |
+ROW |2939 |32990 |32971 |
+ROW |2940 |32991 |32971 |
+ROW |2941 |32992 |32971 |
+ROW |2942 |32993 |32971 |
+ROW |2943 |32994 |32971 |
+ROW |2944 |32995 |32971 |
+ROW |2945 |32996 |32971 |
+ROW |2946 |32997 |32971 |
+ROW |2947 |32998 |32971 |
+ROW |2948 |32999 |32975 |
+ROW |2949 |33000 |32975 |
+ROW |2950 |33001 |32975 |
+ROW |2951 |33002 |32975 |
+ROW |2952 |33003 |32975 |
+ROW |2953 |33004 |32975 |
+ROW |2954 |33005 |32975 |
+ROW |2955 |33006 |32975 |
+ROW |2956 |33007 |32975 |
+ROW |2957 |33008 |32975 |
+ROW |2958 |33009 |32975 |
+ROW |2959 |33010 |32975 |
+ROW |2960 |33011 |32975 |
+ROW |2961 |33012 |32975 |
+ROW |2962 |33013 |32975 |
+ROW |2963 |33014 |32975 |
+ROW |2964 |33015 |32975 |
+ROW |2965 |33016 |32975 |
+ROW |2966 |33065 |33061 |
+ROW |2967 |33066 |33062 |
+ROW |2968 |33067 |33061 |
+ROW |2969 |33068 |33061 |
+ROW |2970 |33069 |33061 |
+ROW |2971 |33070 |33061 |
+ROW |2972 |33071 |33061 |
+ROW |2973 |33072 |33061 |
+ROW |2974 |33073 |33061 |
+ROW |2975 |33074 |33061 |
+ROW |2976 |33075 |33061 |
+ROW |2977 |33076 |33061 |
+ROW |2978 |33077 |33061 |
+ROW |2979 |33078 |33061 |
+ROW |2980 |33079 |33061 |
+ROW |2981 |33080 |33061 |
+ROW |2982 |33081 |33061 |
+ROW |2983 |33082 |33061 |
+ROW |2984 |33083 |33061 |
+ROW |2985 |33084 |33061 |
+ROW |2986 |33085 |33061 |
+ROW |2987 |33086 |33061 |
+ROW |2988 |33087 |33061 |
+ROW |2989 |33088 |33061 |
+ROW |2990 |33089 |33061 |
+ROW |2991 |33090 |33061 |
+ROW |2992 |33091 |33061 |
+ROW |2993 |33092 |33061 |
+ROW |2994 |33093 |33062 |
+ROW |2995 |33094 |33062 |
+ROW |2996 |33095 |33062 |
+ROW |2997 |33096 |33062 |
+ROW |2998 |33097 |33062 |
+ROW |2999 |33098 |33062 |
+ROW |3000 |33099 |33062 |
+ROW |3001 |33100 |33062 |
+ROW |3002 |33101 |33063 |
+ROW |3003 |33102 |33063 |
+ROW |3004 |33103 |33063 |
+ROW |3005 |33104 |33063 |
+ROW |3006 |33105 |33063 |
+ROW |3007 |33106 |33063 |
+ROW |3008 |33107 |33063 |
+ROW |3009 |33108 |33063 |
+ROW |3010 |33109 |33063 |
+ROW |3011 |33110 |33063 |
+ROW |3012 |33111 |33063 |
+ROW |3013 |33112 |33063 |
+ROW |3014 |33113 |33063 |
+ROW |3015 |33114 |33063 |
+ROW |3016 |33115 |33063 |
+ROW |3017 |33116 |33063 |
+ROW |3018 |33117 |33063 |
+ROW |3019 |33118 |33063 |
+ROW |3020 |33119 |33063 |
+ROW |3021 |33120 |33063 |
+ROW |3022 |33121 |33063 |
+ROW |3023 |33122 |33064 |
+ROW |3024 |33123 |33064 |
+ROW |3025 |33124 |33064 |
+ROW |3026 |33125 |33064 |
+ROW |3027 |33126 |33064 |
+ROW |3028 |33127 |33064 |
+ROW |3029 |33128 |33064 |
+ROW |3030 |33129 |33064 |
+ROW |3031 |33130 |33064 |
+ROW |3032 |33131 |33064 |
+ROW |3033 |33132 |33064 |
+ROW |3034 |33133 |33064 |
+ROW |3035 |33134 |33064 |
+ROW |3036 |33135 |33064 |
+ROW |3037 |33136 |33064 |
+ROW |3038 |33137 |33064 |
+ROW |3039 |33138 |33064 |
+ROW |3040 |33177 |33174 |
+ROW |3041 |33178 |33175 |
+ROW |3042 |33179 |33174 |
+ROW |3043 |33180 |33174 |
+ROW |3044 |33181 |33174 |
+ROW |3045 |33182 |33174 |
+ROW |3046 |33183 |33174 |
+ROW |3047 |33184 |33174 |
+ROW |3048 |33185 |33174 |
+ROW |3049 |33186 |33174 |
+ROW |3050 |33187 |33175 |
+ROW |3051 |33188 |33175 |
+ROW |3052 |33189 |33175 |
+ROW |3053 |33190 |33175 |
+ROW |3054 |33191 |33175 |
+ROW |3055 |33192 |33175 |
+ROW |3056 |33193 |33175 |
+ROW |3057 |33194 |31126 |
+ROW |3058 |33195 |31126 |
+ROW |3059 |33196 |31126 |
+ROW |3060 |33219 |33211 |
+ROW |3061 |33220 |33212 |
+ROW |3062 |33221 |33213 |
+ROW |3063 |33222 |33214 |
+ROW |3064 |33223 |33214 |
+ROW |3065 |33224 |33214 |
+ROW |3066 |33225 |33215 |
+ROW |3067 |33226 |33215 |
+ROW |3068 |33227 |33215 |
+ROW |3069 |33228 |33215 |
+ROW |3070 |33229 |33215 |
+ROW |3071 |33230 |33215 |
+ROW |3072 |33231 |33215 |
+ROW |3073 |33232 |33215 |
+ROW |3074 |33233 |33215 |
+ROW |3075 |33234 |33216 |
+ROW |3076 |33235 |33217 |
+ROW |3077 |33236 |33218 |
+ROW |3078 |33237 |33218 |
+ROW |3079 |33260 |33252 |
+ROW |3080 |33261 |33253 |
+ROW |3081 |33262 |33254 |
+ROW |3082 |33263 |33255 |
+ROW |3083 |33264 |33255 |
+ROW |3084 |33265 |33255 |
+ROW |3085 |33266 |33256 |
+ROW |3086 |33267 |33256 |
+ROW |3087 |33268 |33256 |
+ROW |3088 |33269 |33256 |
+ROW |3089 |33270 |33256 |
+ROW |3090 |33271 |33256 |
+ROW |3091 |33272 |33256 |
+ROW |3092 |33273 |33256 |
+ROW |3093 |33274 |33256 |
+ROW |3094 |33275 |33257 |
+ROW |3095 |33276 |33258 |
+ROW |3096 |33277 |33259 |
+ROW |3097 |33278 |33259 |
+ROW |3098 |33301 |33293 |
+ROW |3099 |33302 |33294 |
+ROW |3100 |33303 |33295 |
+ROW |3101 |33304 |33296 |
+ROW |3102 |33305 |33296 |
+ROW |3103 |33306 |33296 |
+ROW |3104 |33307 |33297 |
+ROW |3105 |33308 |33297 |
+ROW |3106 |33309 |33297 |
+ROW |3107 |33310 |33297 |
+ROW |3108 |33311 |33297 |
+ROW |3109 |33312 |33297 |
+ROW |3110 |33313 |33297 |
+ROW |3111 |33314 |33297 |
+ROW |3112 |33315 |33297 |
+ROW |3113 |33316 |33298 |
+ROW |3114 |33317 |33299 |
+ROW |3115 |33318 |33300 |
+ROW |3116 |33319 |33300 |
+ROW |3117 |33342 |33334 |
+ROW |3118 |33343 |33335 |
+ROW |3119 |33344 |33336 |
+ROW |3120 |33345 |33337 |
+ROW |3121 |33346 |33337 |
+ROW |3122 |33347 |33337 |
+ROW |3123 |33348 |33338 |
+ROW |3124 |33349 |33338 |
+ROW |3125 |33350 |33338 |
+ROW |3126 |33351 |33338 |
+ROW |3127 |33352 |33338 |
+ROW |3128 |33353 |33338 |
+ROW |3129 |33354 |33338 |
+ROW |3130 |33355 |33338 |
+ROW |3131 |33356 |33338 |
+ROW |3132 |33357 |33339 |
+ROW |3133 |33358 |33340 |
+ROW |3134 |33359 |33341 |
+ROW |3135 |33360 |33341 |
+ROW |3136 |33383 |33375 |
+ROW |3137 |33384 |33376 |
+ROW |3138 |33385 |33377 |
+ROW |3139 |33386 |33378 |
+ROW |3140 |33387 |33378 |
+ROW |3141 |33388 |33378 |
+ROW |3142 |33389 |33379 |
+ROW |3143 |33390 |33379 |
+ROW |3144 |33391 |33379 |
+ROW |3145 |33392 |33379 |
+ROW |3146 |33393 |33379 |
+ROW |3147 |33394 |33379 |
+ROW |3148 |33395 |33379 |
+ROW |3149 |33396 |33379 |
+ROW |3150 |33397 |33379 |
+ROW |3151 |33398 |33380 |
+ROW |3152 |33399 |33381 |
+ROW |3153 |33400 |33382 |
+ROW |3154 |33401 |33382 |
+ROW |3155 |33417 |33414 |
+ROW |3156 |33418 |33414 |
+ROW |3157 |33419 |33414 |
+ROW |3158 |33420 |33414 |
+ROW |3159 |33421 |33414 |
+ROW |3160 |33422 |33414 |
+ROW |3161 |33423 |33414 |
+ROW |3162 |33424 |33414 |
+ROW |3163 |33425 |33414 |
+ROW |3164 |33426 |33415 |
+ROW |3165 |33427 |33415 |
+ROW |3166 |33428 |33415 |
+ROW |3167 |33429 |33416 |
+ROW |3168 |33430 |33416 |
+ROW |3169 |33431 |33416 |
+ROW |3170 |33465 |33460 |
+ROW |3171 |33466 |33461 |
+ROW |3172 |33467 |33461 |
+ROW |3173 |33468 |33461 |
+ROW |3174 |33469 |33461 |
+ROW |3175 |33470 |33461 |
+ROW |3176 |33471 |33462 |
+ROW |3177 |33472 |33462 |
+ROW |3178 |33473 |33462 |
+ROW |3179 |33474 |33463 |
+ROW |3180 |33475 |33463 |
+ROW |3181 |33476 |33463 |
+ROW |3182 |33477 |33464 |
+ROW |3183 |33478 |33464 |
+ROW |3184 |33522 |33521 |
+ROW |3185 |33523 |33521 |
+ROW |3186 |33524 |33521 |
+ROW |3187 |33525 |33521 |
+ROW |3188 |33526 |33513 |
+ROW |3189 |33527 |33514 |
+ROW |3190 |33528 |33515 |
+ROW |3191 |33529 |33516 |
+ROW |3192 |33530 |33516 |
+ROW |3193 |33531 |33516 |
+ROW |3194 |33532 |33516 |
+ROW |3195 |33533 |33517 |
+ROW |3196 |33534 |33517 |
+ROW |3197 |33535 |33517 |
+ROW |3198 |33536 |33517 |
+ROW |3199 |33537 |33517 |
+ROW |3200 |33538 |33517 |
+ROW |3201 |33539 |33518 |
+ROW |3202 |33540 |33519 |
+ROW |3203 |33541 |33519 |
+ROW |3204 |33542 |33520 |
+ROW |3205 |33543 |33520 |
+ROW |3206 |33544 |33521 |
+ROW |3207 |33545 |33521 |
+ROW |3208 |33546 |33521 |
+ROW |3209 |33547 |33521 |
+ROW |3210 |33548 |33521 |
+ROW |3211 |33549 |33521 |
+ROW |3212 |33550 |33521 |
+ROW |3213 |33551 |33521 |
+ROW |3214 |33552 |33521 |
+ROW |3215 |33553 |33521 |
+ROW |3216 |33554 |33521 |
+ROW |3217 |33555 |33521 |
+ROW |3218 |33556 |33521 |
+ROW |3219 |33557 |33521 |
+ROW |3220 |33558 |33521 |
+ROW |3221 |33559 |33521 |
+ROW |3222 |33560 |33521 |
+ROW |3223 |33561 |33521 |
+ROW |3224 |33562 |33521 |
+ROW |3225 |33563 |33521 |
+ROW |3226 |33564 |33521 |
+ROW |3227 |33565 |33521 |
+ROW |3228 |33566 |33521 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
ROW |10331 |NULL |31599 |
ROW |10332 |NULL |31600 |
+ROW |10364 |NULL |33173 |
+ROW |10365 |NULL |33176 |
TABLE |application_template
FIELDS|application_templateid|applicationid|templateid|
@@ -23143,9 +25975,6 @@ ROW |294 |1028 |784 |
ROW |295 |1028 |771 |
ROW |296 |1029 |800 |
ROW |297 |1030 |799 |
-ROW |302 |1041 |784 |
-ROW |303 |1042 |800 |
-ROW |304 |1043 |799 |
ROW |305 |1048 |852 |
ROW |306 |1049 |855 |
ROW |307 |1050 |854 |
@@ -23252,9 +26081,6 @@ ROW |418 |1271 |799 |
ROW |423 |1286 |1283 |
ROW |424 |1287 |1284 |
ROW |425 |1288 |1285 |
-ROW |426 |1289 |1286 |
-ROW |427 |1290 |1287 |
-ROW |428 |1291 |1288 |
ROW |429 |1292 |1286 |
ROW |430 |1293 |1287 |
ROW |431 |1294 |1288 |
@@ -23393,8 +26219,6 @@ ROW |387 |28147 |8 |{#ENT_STATUS} |(1&pipe;2&pipe;3&
ROW |388 |28148 |8 |{#ENT_CLASS} |.+8.3.3$ |
ROW |389 |28148 |8 |{#ENT_STATUS} |(1&pipe;2&pipe;3&pipe;4) |
ROW |390 |28149 |8 |{#ENT_CLASS} |3 |
-ROW |395 |28175 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
-ROW |396 |28175 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
ROW |397 |28196 |8 |{#SENSOR_TYPE} |8 |
ROW |398 |28196 |8 |{#SENSOR_PRECISION} |1 |
ROW |399 |28197 |8 |{#SNMPVALUE} |10 |
@@ -23422,7 +26246,6 @@ ROW |421 |27872 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERST
ROW |422 |27909 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
ROW |423 |27944 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
ROW |425 |28118 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
-ROW |426 |28175 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
ROW |427 |28223 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
ROW |430 |28005 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
ROW |431 |27078 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
@@ -23716,15 +26539,6 @@ ROW |803 |28118 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.
ROW |804 |28118 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
ROW |805 |28118 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
ROW |806 |28118 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
-ROW |807 |28175 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
-ROW |808 |28175 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
-ROW |809 |28175 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
-ROW |810 |28175 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
-ROW |811 |28175 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
-ROW |812 |28175 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
-ROW |813 |28175 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
-ROW |814 |28175 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
-ROW |815 |28175 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
ROW |816 |28223 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
ROW |817 |28223 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
ROW |818 |28223 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
@@ -23816,14 +26630,6 @@ ROW |917 |30150 |8 |{#FSTYPE} |{$VFS.FS.FSTYPE.M
ROW |918 |30150 |9 |{#FSTYPE} |{$VFS.FS.FSTYPE.NOT_MATCHES} |
ROW |919 |30150 |8 |{#FSNAME} |{$VFS.FS.FSNAME.MATCHES} |
ROW |920 |30150 |9 |{#FSNAME} |{$VFS.FS.FSNAME.NOT_MATCHES} |
-ROW |921 |30151 |8 |{#MEMTYPE} |{$MEMORY.TYPE.MATCHES} |
-ROW |922 |30151 |9 |{#MEMTYPE} |{$MEMORY.TYPE.NOT_MATCHES} |
-ROW |923 |30151 |8 |{#MEMNAME} |{$MEMORY.NAME.MATCHES} |
-ROW |924 |30151 |9 |{#MEMNAME} |{$MEMORY.NAME.NOT_MATCHES} |
-ROW |925 |30152 |8 |{#FSTYPE} |{$VFS.FS.FSTYPE.MATCHES} |
-ROW |926 |30152 |9 |{#FSTYPE} |{$VFS.FS.FSTYPE.NOT_MATCHES} |
-ROW |927 |30152 |8 |{#FSNAME} |{$VFS.FS.FSNAME.MATCHES} |
-ROW |928 |30152 |9 |{#FSNAME} |{$VFS.FS.FSNAME.NOT_MATCHES} |
ROW |929 |30153 |8 |{#MEMTYPE} |{$MEMORY.TYPE.MATCHES} |
ROW |930 |30153 |9 |{#MEMTYPE} |{$MEMORY.TYPE.NOT_MATCHES} |
ROW |931 |30153 |8 |{#MEMNAME} |{$MEMORY.NAME.MATCHES} |
@@ -24015,6 +26821,129 @@ ROW |1132 |32655 |9 |{#JMXNAME} |{$IGNITE.LLD.FILT
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} |
+ROW |1144 |32975 |9 |{#QUEUE} |{$RABBITMQ.LLD.FILTER.QUEUE.NOT_MATCHES} |
+ROW |1145 |32975 |8 |{#NODE} |{$RABBITMQ.CLUSTER.NAME}@{HOST.NAME} |
+ROW |1146 |33061 |8 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.MATCHES} |
+ROW |1147 |33061 |9 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |
+ROW |1148 |33061 |8 |{#COLLECTION} |{$MONGODB.LLD.FILTER.COLLECTION.MATCHES} |
+ROW |1149 |33061 |9 |{#COLLECTION} |{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES} |
+ROW |1150 |33062 |8 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.MATCHES} |
+ROW |1151 |33062 |9 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |
+ROW |1152 |33174 |8 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.MATCHES} |
+ROW |1153 |33174 |9 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |
+ROW |1154 |33174 |8 |{#COLLECTION} |{$MONGODB.LLD.FILTER.COLLECTION.MATCHES} |
+ROW |1155 |33174 |9 |{#COLLECTION} |{$MONGODB.LLD.FILTER.COLLECTION.NOT_MATCHES} |
+ROW |1156 |33175 |8 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.MATCHES} |
+ROW |1157 |33175 |9 |{#DBNAME} |{$MONGODB.LLD.FILTER.DB.NOT_MATCHES} |
+ROW |1158 |33212 |8 |{#ENT_SN} |.+ |
+ROW |1159 |33212 |8 |{#ENT_CLASS} |[^3] |
+ROW |1160 |33215 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1161 |33215 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1162 |33215 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1163 |33215 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1164 |33215 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1165 |33215 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1166 |33215 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1167 |33215 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1168 |33215 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1169 |33215 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1170 |33215 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1171 |33215 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1172 |33216 |8 |{#IFOPERSTATUS} |1 |
+ROW |1173 |33216 |8 |{#SNMPVALUE} |(2&pipe;3) |
+ROW |1174 |33253 |8 |{#ENT_SN} |.+ |
+ROW |1175 |33253 |8 |{#ENT_CLASS} |[^3] |
+ROW |1176 |33256 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1177 |33256 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1178 |33256 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1179 |33256 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1180 |33256 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1181 |33256 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1182 |33256 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1183 |33256 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1184 |33256 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1185 |33256 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1186 |33256 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1187 |33256 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1188 |33257 |8 |{#IFOPERSTATUS} |1 |
+ROW |1189 |33257 |8 |{#SNMPVALUE} |(2&pipe;3) |
+ROW |1190 |33294 |8 |{#ENT_SN} |.+ |
+ROW |1191 |33294 |8 |{#ENT_CLASS} |[^3] |
+ROW |1192 |33297 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1193 |33297 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1194 |33297 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1195 |33297 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1196 |33297 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1197 |33297 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1198 |33297 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1199 |33297 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1200 |33297 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1201 |33297 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1202 |33297 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1203 |33297 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1204 |33298 |8 |{#IFOPERSTATUS} |1 |
+ROW |1205 |33298 |8 |{#SNMPVALUE} |(2&pipe;3) |
+ROW |1206 |33335 |8 |{#ENT_SN} |.+ |
+ROW |1207 |33335 |8 |{#ENT_CLASS} |[^3] |
+ROW |1208 |33338 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1209 |33338 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1210 |33338 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1211 |33338 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1212 |33338 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1213 |33338 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1214 |33338 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1215 |33338 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1216 |33338 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1217 |33338 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1218 |33338 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1219 |33338 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1220 |33339 |8 |{#IFOPERSTATUS} |1 |
+ROW |1221 |33339 |8 |{#SNMPVALUE} |(2&pipe;3) |
+ROW |1222 |33376 |8 |{#ENT_SN} |.+ |
+ROW |1223 |33376 |8 |{#ENT_CLASS} |[^3] |
+ROW |1224 |33379 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1225 |33379 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1226 |33379 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1227 |33379 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1228 |33379 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1229 |33379 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1230 |33379 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1231 |33379 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1232 |33379 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1233 |33379 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1234 |33379 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1235 |33379 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1236 |33380 |8 |{#IFOPERSTATUS} |1 |
+ROW |1237 |33380 |8 |{#SNMPVALUE} |(2&pipe;3) |
+ROW |1238 |33414 |8 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.MATCHES} |
+ROW |1239 |33414 |9 |{#IFADMINSTATUS} |{$NET.IF.IFADMINSTATUS.NOT_MATCHES} |
+ROW |1240 |33414 |8 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.MATCHES} |
+ROW |1241 |33414 |9 |{#IFOPERSTATUS} |{$NET.IF.IFOPERSTATUS.NOT_MATCHES} |
+ROW |1242 |33414 |8 |{#IFNAME} |{$NET.IF.IFNAME.MATCHES} |
+ROW |1243 |33414 |9 |{#IFNAME} |{$NET.IF.IFNAME.NOT_MATCHES} |
+ROW |1244 |33414 |8 |{#IFDESCR} |{$NET.IF.IFDESCR.MATCHES} |
+ROW |1245 |33414 |9 |{#IFDESCR} |{$NET.IF.IFDESCR.NOT_MATCHES} |
+ROW |1246 |33414 |8 |{#IFALIAS} |{$NET.IF.IFALIAS.MATCHES} |
+ROW |1247 |33414 |9 |{#IFALIAS} |{$NET.IF.IFALIAS.NOT_MATCHES} |
+ROW |1248 |33414 |8 |{#IFTYPE} |{$NET.IF.IFTYPE.MATCHES} |
+ROW |1249 |33414 |9 |{#IFTYPE} |{$NET.IF.IFTYPE.NOT_MATCHES} |
+ROW |1250 |33415 |8 |{#FSTYPE} |{$VFS.FS.FSTYPE.MATCHES} |
+ROW |1251 |33415 |9 |{#FSTYPE} |{$VFS.FS.FSTYPE.NOT_MATCHES} |
+ROW |1252 |33415 |8 |{#FSNAME} |{$VFS.FS.FSNAME.MATCHES} |
+ROW |1253 |33415 |9 |{#FSNAME} |{$VFS.FS.FSNAME.NOT_MATCHES} |
+ROW |1254 |33416 |8 |{#MEMTYPE} |{$MEMORY.TYPE.MATCHES} |
+ROW |1255 |33416 |9 |{#MEMTYPE} |{$MEMORY.TYPE.NOT_MATCHES} |
+ROW |1256 |33416 |8 |{#MEMNAME} |{$MEMORY.NAME.MATCHES} |
+ROW |1257 |33416 |9 |{#MEMNAME} |{$MEMORY.NAME.NOT_MATCHES} |
+ROW |1258 |33461 |9 |{#CARTRIDGE_STATUS} |^$ |
TABLE |item_rtdata
FIELDS|itemid|
@@ -24163,7 +27092,6 @@ ROW |122 |31122 |NULL |MSSQL Availability Group '{#GRO
ROW |123 |31123 |NULL |MSSQL Database '{#DBNAME}' |
ROW |124 |31124 |NULL |MSSQL Available Group '{#GROUP_NAME}' Local DB '{#DBNAME}' |
ROW |125 |31125 |NULL |MSSQL Mirroring '{#DBNAME}' |
-ROW |126 |31126 |NULL |MSSQL Available Group '{#GROUP_NAME}' Non-Local DB '{#DBNAME}' |
ROW |127 |31127 |NULL |MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
ROW |128 |31240 |NULL |PostgreSQL: DB {#DBNAME} |
ROW |129 |31273 |NULL |Disk {#DEVNAME} |
@@ -24237,6 +27165,37 @@ 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} |
+ROW |215 |33062 |NULL |MongoDB: {#DBNAME} |
+ROW |216 |33063 |NULL |MongoDB Replica Set: {#RS_NAME} |
+ROW |217 |33174 |NULL |MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |218 |33175 |NULL |MongoDB sharded cluster: {#DBNAME} |
+ROW |219 |31126 |NULL |MSSQL Available Group '{#GROUP_NAME}' Non-Local DB '{#DBNAME}' |
+ROW |220 |33215 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |221 |33216 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |222 |33256 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |223 |33257 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |224 |33297 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |225 |33298 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |226 |33338 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |227 |33339 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |228 |33379 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |229 |33380 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |230 |33414 |NULL |Interface {#IFNAME}({#IFALIAS}) |
+ROW |231 |33415 |NULL |Filesystem {#FSNAME} |
+ROW |232 |33521 |NULL |Volume "{#VOLUMENAME}" |
+ROW |233 |33513 |NULL |Chassis "{#ID}" |
+ROW |234 |33514 |NULL |Node "{#NODENAME}" disks |
+ROW |235 |33515 |NULL |Chassis "{#CHASSISID}" |
+ROW |236 |33516 |NULL |SVM "{#SVMNAME}" |
+ROW |237 |33517 |NULL |Node "{#NODENAME}" |
+ROW |238 |33518 |NULL |Node "{#NODENAME}" Ethernet ports |
+ROW |239 |33519 |NULL |Node "{#NODENAME}" FC ports |
+ROW |240 |33520 |NULL |SVM "{#SVMNAME}" |
TABLE |application_prototype
FIELDS|application_prototypeid|itemid|templateid|name |
@@ -24278,7 +27237,6 @@ ROW |72 |27872 |58 |Interface {#IFNAME}({#IFALIAS})
ROW |73 |27909 |58 |Interface {#IFNAME}({#IFALIAS})|
ROW |74 |27944 |58 |Interface {#IFNAME}({#IFALIAS})|
ROW |75 |28118 |58 |Interface {#IFNAME}({#IFALIAS})|
-ROW |76 |28175 |58 |Interface {#IFNAME}({#IFALIAS})|
ROW |77 |28223 |58 |Interface {#IFNAME}({#IFALIAS})|
ROW |78 |28293 |58 |Interface {#IFNAME}({#IFALIAS})|
ROW |79 |28968 |58 |Interface {#IFNAME}({#IFALIAS})|
@@ -24298,7 +27256,6 @@ TABLE |application_prototype
FIELDS|application_prototypeid|itemid|templateid|name |
ROW |13 |29207 |10 |Filesystem {#FSNAME}|
ROW |15 |29209 |12 |Interface {#IFNAME} |
-ROW |91 |30152 |90 |Filesystem {#FSNAME}|
ROW |92 |30154 |90 |Filesystem {#FSNAME}|
ROW |93 |30156 |90 |Filesystem {#FSNAME}|
ROW |131 |31275 |130 |Disk {#DEVNAME} |
@@ -24667,15 +27624,6 @@ ROW |469 |75 |28124 |
ROW |470 |75 |28125 |
ROW |471 |75 |28126 |
ROW |472 |75 |28127 |
-ROW |473 |76 |28176 |
-ROW |474 |76 |28177 |
-ROW |475 |76 |28178 |
-ROW |476 |76 |28179 |
-ROW |477 |76 |28180 |
-ROW |478 |76 |28181 |
-ROW |479 |76 |28182 |
-ROW |480 |76 |28183 |
-ROW |481 |76 |28184 |
ROW |482 |77 |28224 |
ROW |483 |77 |28225 |
ROW |484 |77 |28226 |
@@ -24779,9 +27727,6 @@ ROW |599 |89 |30162 |
ROW |600 |90 |30166 |
ROW |601 |90 |30167 |
ROW |602 |90 |30168 |
-ROW |603 |91 |30172 |
-ROW |604 |91 |30173 |
-ROW |605 |91 |30174 |
ROW |606 |92 |30178 |
ROW |607 |92 |30179 |
ROW |608 |92 |30180 |
@@ -25048,8 +27993,6 @@ ROW |874 |125 |31155 |
ROW |875 |125 |31156 |
ROW |876 |125 |31157 |
ROW |877 |125 |31158 |
-ROW |878 |126 |31159 |
-ROW |879 |126 |31160 |
ROW |880 |127 |31161 |
ROW |881 |127 |31162 |
ROW |882 |127 |31163 |
@@ -25544,6 +28487,245 @@ 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 |
+ROW |1429 |212 |32986 |
+ROW |1430 |212 |32987 |
+ROW |1431 |212 |32988 |
+ROW |1432 |212 |32989 |
+ROW |1433 |212 |32990 |
+ROW |1434 |212 |32991 |
+ROW |1435 |212 |32992 |
+ROW |1436 |212 |32993 |
+ROW |1437 |212 |32994 |
+ROW |1438 |212 |32995 |
+ROW |1439 |212 |32996 |
+ROW |1440 |212 |32997 |
+ROW |1441 |212 |32998 |
+ROW |1442 |213 |32999 |
+ROW |1443 |213 |33000 |
+ROW |1444 |213 |33001 |
+ROW |1445 |213 |33002 |
+ROW |1446 |213 |33003 |
+ROW |1447 |213 |33004 |
+ROW |1448 |213 |33005 |
+ROW |1449 |213 |33006 |
+ROW |1450 |213 |33007 |
+ROW |1451 |213 |33008 |
+ROW |1452 |213 |33009 |
+ROW |1453 |213 |33010 |
+ROW |1454 |213 |33011 |
+ROW |1455 |213 |33012 |
+ROW |1456 |213 |33013 |
+ROW |1457 |213 |33014 |
+ROW |1458 |213 |33015 |
+ROW |1459 |213 |33016 |
+ROW |1460 |214 |33067 |
+ROW |1461 |214 |33068 |
+ROW |1462 |214 |33069 |
+ROW |1463 |214 |33070 |
+ROW |1464 |214 |33071 |
+ROW |1465 |214 |33072 |
+ROW |1466 |214 |33073 |
+ROW |1467 |214 |33074 |
+ROW |1468 |214 |33075 |
+ROW |1469 |214 |33076 |
+ROW |1470 |214 |33077 |
+ROW |1471 |214 |33078 |
+ROW |1472 |214 |33079 |
+ROW |1473 |214 |33080 |
+ROW |1474 |214 |33081 |
+ROW |1475 |214 |33082 |
+ROW |1476 |214 |33083 |
+ROW |1477 |214 |33084 |
+ROW |1478 |214 |33085 |
+ROW |1479 |214 |33086 |
+ROW |1480 |214 |33087 |
+ROW |1481 |214 |33088 |
+ROW |1482 |214 |33089 |
+ROW |1483 |214 |33090 |
+ROW |1484 |214 |33091 |
+ROW |1485 |214 |33092 |
+ROW |1486 |215 |33093 |
+ROW |1487 |215 |33094 |
+ROW |1488 |215 |33095 |
+ROW |1489 |215 |33096 |
+ROW |1490 |215 |33097 |
+ROW |1491 |215 |33098 |
+ROW |1492 |215 |33099 |
+ROW |1493 |215 |33100 |
+ROW |1494 |216 |33101 |
+ROW |1495 |216 |33102 |
+ROW |1496 |216 |33103 |
+ROW |1497 |216 |33104 |
+ROW |1498 |216 |33105 |
+ROW |1499 |216 |33106 |
+ROW |1500 |216 |33107 |
+ROW |1501 |216 |33108 |
+ROW |1502 |216 |33109 |
+ROW |1503 |216 |33110 |
+ROW |1504 |216 |33111 |
+ROW |1505 |216 |33112 |
+ROW |1506 |216 |33113 |
+ROW |1507 |216 |33114 |
+ROW |1508 |216 |33115 |
+ROW |1509 |216 |33116 |
+ROW |1510 |216 |33117 |
+ROW |1511 |216 |33118 |
+ROW |1512 |216 |33119 |
+ROW |1513 |216 |33120 |
+ROW |1514 |216 |33121 |
+ROW |1515 |217 |33179 |
+ROW |1516 |217 |33180 |
+ROW |1517 |217 |33181 |
+ROW |1518 |217 |33182 |
+ROW |1519 |217 |33183 |
+ROW |1520 |217 |33184 |
+ROW |1521 |217 |33185 |
+ROW |1522 |217 |33186 |
+ROW |1523 |218 |33187 |
+ROW |1524 |218 |33188 |
+ROW |1525 |218 |33189 |
+ROW |1526 |218 |33190 |
+ROW |1527 |218 |33191 |
+ROW |1528 |218 |33192 |
+ROW |1529 |218 |33193 |
+ROW |1530 |219 |33195 |
+ROW |1531 |219 |33196 |
+ROW |1532 |220 |33225 |
+ROW |1533 |220 |33226 |
+ROW |1534 |220 |33227 |
+ROW |1535 |220 |33228 |
+ROW |1536 |220 |33229 |
+ROW |1537 |220 |33230 |
+ROW |1538 |220 |33231 |
+ROW |1539 |220 |33232 |
+ROW |1540 |220 |33233 |
+ROW |1541 |221 |33234 |
+ROW |1542 |222 |33266 |
+ROW |1543 |222 |33267 |
+ROW |1544 |222 |33268 |
+ROW |1545 |222 |33269 |
+ROW |1546 |222 |33270 |
+ROW |1547 |222 |33271 |
+ROW |1548 |222 |33272 |
+ROW |1549 |222 |33273 |
+ROW |1550 |222 |33274 |
+ROW |1551 |223 |33275 |
+ROW |1552 |224 |33307 |
+ROW |1553 |224 |33308 |
+ROW |1554 |224 |33309 |
+ROW |1555 |224 |33310 |
+ROW |1556 |224 |33311 |
+ROW |1557 |224 |33312 |
+ROW |1558 |224 |33313 |
+ROW |1559 |224 |33314 |
+ROW |1560 |224 |33315 |
+ROW |1561 |225 |33316 |
+ROW |1562 |226 |33348 |
+ROW |1563 |226 |33349 |
+ROW |1564 |226 |33350 |
+ROW |1565 |226 |33351 |
+ROW |1566 |226 |33352 |
+ROW |1567 |226 |33353 |
+ROW |1568 |226 |33354 |
+ROW |1569 |226 |33355 |
+ROW |1570 |226 |33356 |
+ROW |1571 |227 |33357 |
+ROW |1572 |228 |33389 |
+ROW |1573 |228 |33390 |
+ROW |1574 |228 |33391 |
+ROW |1575 |228 |33392 |
+ROW |1576 |228 |33393 |
+ROW |1577 |228 |33394 |
+ROW |1578 |228 |33395 |
+ROW |1579 |228 |33396 |
+ROW |1580 |228 |33397 |
+ROW |1581 |229 |33398 |
+ROW |1582 |230 |33417 |
+ROW |1583 |230 |33418 |
+ROW |1584 |230 |33419 |
+ROW |1585 |230 |33420 |
+ROW |1586 |230 |33421 |
+ROW |1587 |230 |33422 |
+ROW |1588 |230 |33423 |
+ROW |1589 |230 |33424 |
+ROW |1590 |230 |33425 |
+ROW |1591 |231 |33426 |
+ROW |1592 |231 |33427 |
+ROW |1593 |231 |33428 |
+ROW |1594 |232 |33522 |
+ROW |1595 |232 |33523 |
+ROW |1596 |232 |33524 |
+ROW |1597 |232 |33525 |
+ROW |1598 |233 |33526 |
+ROW |1599 |234 |33527 |
+ROW |1600 |235 |33528 |
+ROW |1601 |236 |33529 |
+ROW |1602 |236 |33530 |
+ROW |1603 |236 |33531 |
+ROW |1604 |236 |33532 |
+ROW |1605 |237 |33533 |
+ROW |1606 |237 |33534 |
+ROW |1607 |237 |33535 |
+ROW |1608 |237 |33536 |
+ROW |1609 |237 |33537 |
+ROW |1610 |237 |33538 |
+ROW |1611 |238 |33539 |
+ROW |1612 |239 |33540 |
+ROW |1613 |239 |33541 |
+ROW |1614 |240 |33542 |
+ROW |1615 |240 |33543 |
+ROW |1616 |232 |33544 |
+ROW |1617 |232 |33546 |
+ROW |1618 |232 |33547 |
+ROW |1619 |232 |33548 |
+ROW |1620 |232 |33549 |
+ROW |1621 |232 |33550 |
+ROW |1622 |232 |33554 |
+ROW |1623 |232 |33555 |
+ROW |1624 |232 |33556 |
+ROW |1625 |232 |33557 |
+ROW |1626 |232 |33558 |
+ROW |1627 |232 |33563 |
+ROW |1628 |232 |33564 |
+ROW |1629 |232 |33565 |
+ROW |1630 |232 |33566 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -27416,12 +30598,6 @@ ROW |63008 |31157 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_sta
ROW |63009 |31157 |2 |20 |1h |0 | |
ROW |63010 |31158 |1 |12 |$[?(@.dbname=='{#DBNAME}')].mirroring_witness_state.first() |0 | |
ROW |63011 |31158 |2 |20 |1h |0 | |
-ROW |63012 |31159 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].log_send_queue_size.first() |0 | |
-ROW |63013 |31159 |2 |1 |1024 |0 | |
-ROW |63014 |31159 |3 |20 |1h |0 | |
-ROW |63015 |31160 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].redo_queue_size.first() |0 | |
-ROW |63016 |31160 |2 |1 |1024 |0 | |
-ROW |63017 |31160 |3 |20 |1h |0 | |
ROW |63018 |31161 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].connected_state.first() |0 | |
ROW |63019 |31161 |2 |20 |1h |0 | |
ROW |63020 |31162 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}')].is_local.first() |0 | |
@@ -28240,7 +31416,6 @@ ROW |63836 |27963 |1 |20 |1h
ROW |63837 |27993 |1 |20 |1h |0 | |
ROW |63838 |28022 |1 |20 |1h |0 | |
ROW |63839 |28137 |1 |20 |1h |0 | |
-ROW |63840 |28192 |1 |20 |1h |0 | |
ROW |63841 |28240 |1 |20 |1h |0 | |
ROW |63842 |28289 |1 |20 |1h |0 | |
ROW |63843 |28337 |1 |20 |1h |0 | |
@@ -28354,11 +31529,6 @@ ROW |63950 |29945 |1 |20 |1h
ROW |63951 |29946 |1 |20 |1d |0 | |
ROW |63952 |29947 |1 |20 |1h |0 | |
ROW |63953 |29948 |1 |20 |1d |0 | |
-ROW |63954 |29949 |1 |1 |0.01 |0 | |
-ROW |63955 |29950 |1 |20 |1h |0 | |
-ROW |63956 |29951 |1 |20 |1d |0 | |
-ROW |63957 |29952 |1 |20 |1h |0 | |
-ROW |63958 |29953 |1 |20 |1d |0 | |
ROW |63959 |29954 |1 |1 |0.01 |0 | |
ROW |63960 |29955 |1 |20 |1h |0 | |
ROW |63961 |29956 |1 |20 |1d |0 | |
@@ -28407,7 +31577,6 @@ ROW |64003 |30054 |1 |20 |1h
ROW |64004 |30055 |1 |1 |0.01 |0 | |
ROW |64005 |30142 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |64006 |30143 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
-ROW |64007 |30144 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |64008 |30145 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |64009 |30146 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
ROW |64010 |30157 |1 |1 |{#ALLOC_UNITS} |0 | |
@@ -28418,10 +31587,6 @@ ROW |64014 |30163 |1 |1 |{#ALLOC_UNITS}
ROW |64015 |30164 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |64016 |30167 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |64017 |30168 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |64018 |30169 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |64019 |30170 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |64020 |30173 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |64021 |30174 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |64022 |30175 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |64023 |30176 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |64024 |30179 |1 |1 |{#ALLOC_UNITS} |0 | |
@@ -28664,17 +31829,6 @@ ROW |64260 |28124 |2 |1 |8
ROW |64261 |28125 |1 |1 |1000000 |0 | |
ROW |64262 |28125 |2 |20 |1h |0 | |
ROW |64263 |28127 |1 |20 |1d |0 | |
-ROW |64264 |28176 |1 |10 | |0 | |
-ROW |64265 |28177 |1 |10 | |0 | |
-ROW |64266 |28178 |1 |10 | |0 | |
-ROW |64267 |28178 |2 |1 |8 |0 | |
-ROW |64268 |28179 |1 |10 | |0 | |
-ROW |64269 |28180 |1 |10 | |0 | |
-ROW |64270 |28181 |1 |10 | |0 | |
-ROW |64271 |28181 |2 |1 |8 |0 | |
-ROW |64272 |28182 |1 |1 |1000000 |0 | |
-ROW |64273 |28182 |2 |20 |1h |0 | |
-ROW |64274 |28184 |1 |20 |1d |0 | |
ROW |64275 |28224 |1 |10 | |0 | |
ROW |64276 |28225 |1 |10 | |0 | |
ROW |64277 |28226 |1 |10 | |0 | |
@@ -29878,6 +33032,784 @@ 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 | |
+ROW |65596 |32935 |1 |12 |$.object_totals.exchanges |0 | |
+ROW |65597 |32936 |1 |12 |$.object_totals.consumers |0 | |
+ROW |65598 |32937 |1 |12 |$.object_totals.connections |0 | |
+ROW |65599 |32938 |1 |12 |$.object_totals.channels |0 | |
+ROW |65600 |32939 |1 |12 |$.message_stats.return_unroutable_details.rate |2 |0 |
+ROW |65601 |32940 |1 |12 |$.message_stats.return_unroutable |2 |0 |
+ROW |65602 |32941 |1 |12 |$.message_stats.redeliver_details.rate |2 |0 |
+ROW |65603 |32942 |1 |12 |$.message_stats.redeliver |2 |0 |
+ROW |65604 |32943 |1 |12 |$.message_stats.publish_out_details.rate |2 |0 |
+ROW |65605 |32944 |1 |12 |$.message_stats.publish_out |2 |0 |
+ROW |65606 |32945 |1 |12 |$.message_stats.publish_in_details.rate |2 |0 |
+ROW |65607 |32946 |1 |12 |$.message_stats.publish_in |2 |0 |
+ROW |65608 |32947 |1 |12 |$.message_stats.publish_details.rate |2 |0 |
+ROW |65609 |32948 |1 |12 |$.message_stats.publish |2 |0 |
+ROW |65610 |32949 |1 |12 |$.message_stats.deliver_get_details.rate |2 |0 |
+ROW |65611 |32950 |1 |12 |$.message_stats.deliver_get |2 |0 |
+ROW |65612 |32951 |1 |12 |$.message_stats.confirm_details.rate |2 |0 |
+ROW |65613 |32952 |1 |12 |$.message_stats.confirm |2 |0 |
+ROW |65614 |32953 |1 |12 |$.message_stats.ack_details.rate |2 |0 |
+ROW |65615 |32954 |1 |12 |$.message_stats.ack |2 |0 |
+ROW |65616 |32955 |1 |12 |$.queue_totals.messages_unacknowledged |0 | |
+ROW |65617 |32956 |1 |12 |$.rabbitmq_version |0 | |
+ROW |65618 |32956 |2 |20 |1d |0 | |
+ROW |65619 |32957 |1 |12 |$.sockets_used |0 | |
+ROW |65620 |32958 |1 |12 |$.sockets_total |0 | |
+ROW |65621 |32959 |1 |12 |$.run_queue |0 | |
+ROW |65622 |32960 |1 |12 |$.running |0 | |
+ROW |65623 |32960 |2 |6 | |0 | |
+ROW |65624 |32961 |1 |12 |$.partitions |0 | |
+ROW |65625 |32961 |2 |21 |return JSON.parse(value).length; |0 | |
+ROW |65626 |32962 |1 |12 |$.mem_limit |0 | |
+ROW |65627 |32963 |1 |12 |$.management_version |0 | |
+ROW |65628 |32963 |2 |20 |1d |0 | |
+ROW |65629 |32964 |1 |12 |$.mem_used |0 | |
+ROW |65630 |32965 |1 |12 |$.mem_alarm |0 | |
+ROW |65631 |32965 |2 |6 | |0 | |
+ROW |65632 |32966 |1 |12 |$.fd_used |0 | |
+ROW |65633 |32967 |1 |12 |$.disk_free_limit |0 | |
+ROW |65634 |32968 |1 |12 |$.disk_free_alarm |0 | |
+ROW |65635 |32968 |2 |6 | |0 | |
+ROW |65636 |32969 |1 |12 |$.disk_free |0 | |
+ROW |65637 |32970 |1 |12 |$.uptime |0 | |
+ROW |65638 |32970 |2 |1 |0.001 |0 | |
+ROW |65639 |32972 |1 |12 |$.management_version |0 | |
+ROW |65640 |32972 |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 |65641 |32973 |1 |12 |$.management_version |0 | |
+ROW |65642 |32973 |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 |65643 |32974 |1 |12 |$.management_version |0 | |
+ROW |65644 |32974 |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 |65645 |32976 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65646 |32976 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65647 |32976 |3 |20 |3h |0 | |
+ROW |65648 |32977 |1 |12 |$.status |0 | |
+ROW |65649 |32977 |2 |6 | |2 |0 |
+ROW |65650 |32978 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65651 |32978 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65652 |32978 |3 |20 |3h |0 | |
+ROW |65653 |32979 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65654 |32979 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65655 |32979 |3 |20 |3h |0 | |
+ROW |65656 |32980 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65657 |32980 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65658 |32980 |3 |20 |3h |0 | |
+ROW |65659 |32981 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65660 |32981 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65661 |32981 |3 |20 |3h |0 | |
+ROW |65662 |32982 |1 |5 |HTTP\/1\.1\b\s(\d+)&bsn;\1 |0 | |
+ROW |65663 |32982 |2 |21 |switch(value){ &bsn;case '200': return 1 &bsn;case '503': return 0 &bsn;default: 2} |0 | |
+ROW |65664 |32982 |3 |20 |3h |0 | |
+ROW |65665 |32983 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |65666 |32984 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.ack.first() |2 |0 |
+ROW |65667 |32985 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm_details.rate.first() |2 |0 |
+ROW |65668 |32986 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.confirm.first() |2 |0 |
+ROW |65669 |32987 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |65670 |32988 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.deliver_get.first() |2 |0 |
+ROW |65671 |32989 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |65672 |32990 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish.first() |2 |0 |
+ROW |65673 |32991 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in_details.rate.first() |2 |0 |
+ROW |65674 |32992 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_in.first() |2 |0 |
+ROW |65675 |32993 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out_details.rate.first() |2 |0 |
+ROW |65676 |32994 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.publish_out.first() |2 |0 |
+ROW |65677 |32995 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |65678 |32996 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.redeliver.first() |2 |0 |
+ROW |65679 |32997 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable_details.rate.first() |2 |0 |
+ROW |65680 |32998 |1 |12 |$[?(@.name == "{#EXCHANGE}" && @.vhost == "{#VHOST}" && @.type =="{#TYPE}")].message_stats.return_unroutable.first() |2 |0 |
+ROW |65681 |32999 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].consumers.first() |0 | |
+ROW |65682 |33000 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_details.rate.first() |0 | |
+ROW |65683 |33001 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged_details.rate.first() |0 | |
+ROW |65684 |33002 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready.first() |0 | |
+ROW |65685 |33003 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_ready_details.rate.first() |0 | |
+ROW |65686 |33004 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages.first() |0 | |
+ROW |65687 |33005 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver.first() |2 |0 |
+ROW |65688 |33006 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.redeliver_details.rate.first() |2 |0 |
+ROW |65689 |33007 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish.first() |2 |0 |
+ROW |65690 |33008 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].memory.first() |0 | |
+ROW |65691 |33009 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.publish_details.rate.first() |2 |0 |
+ROW |65692 |33010 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get.first() |2 |0 |
+ROW |65693 |33011 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_get_details.rate.first() |2 |0 |
+ROW |65694 |33012 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver.first() |2 |0 |
+ROW |65695 |33013 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.deliver_details.rate.first() |2 |0 |
+ROW |65696 |33014 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack.first() |2 |0 |
+ROW |65697 |33015 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].message_stats.ack_details.rate.first() |2 |0 |
+ROW |65698 |33016 |1 |12 |$[?(@.name == "{#QUEUE}" && @.vhost == "{#VHOST}")].messages_unacknowledged.first() |0 | |
+ROW |65699 |33019 |1 |20 |30m |0 | |
+ROW |65700 |33022 |1 |12 |$.metrics.document.deleted |0 | |
+ROW |65701 |33022 |2 |10 | |0 | |
+ROW |65702 |33023 |1 |12 |$.network.numRequests |0 | |
+ROW |65703 |33023 |2 |10 | |0 | |
+ROW |65704 |33024 |1 |12 |$.mem.mappedWithJournal |1 | |
+ROW |65705 |33024 |2 |1 |1048576 |0 | |
+ROW |65706 |33025 |1 |12 |$.mem.resident |0 | |
+ROW |65707 |33025 |2 |1 |1048576 |0 | |
+ROW |65708 |33026 |1 |12 |$.mem.virtual |0 | |
+ROW |65709 |33026 |2 |1 |1048576 |0 | |
+ROW |65710 |33027 |1 |12 |$.metrics.cursor.open.noTimeout |0 | |
+ROW |65711 |33028 |1 |12 |$.network.bytesIn |0 | |
+ROW |65712 |33028 |2 |10 | |0 | |
+ROW |65713 |33029 |1 |12 |$.network.bytesOut |0 | |
+ROW |65714 |33029 |2 |10 | |0 | |
+ROW |65715 |33030 |1 |12 |$.opcounters.delete |0 | |
+ROW |65716 |33030 |2 |10 | |0 | |
+ROW |65717 |33031 |1 |12 |$.opcounters.command |0 | |
+ROW |65718 |33031 |2 |10 | |0 | |
+ROW |65719 |33032 |1 |12 |$.mem.bits |0 | |
+ROW |65720 |33032 |2 |20 |3h |0 | |
+ROW |65721 |33033 |1 |12 |$.opcounters.getmore |0 | |
+ROW |65722 |33033 |2 |10 | |0 | |
+ROW |65723 |33034 |1 |12 |$.opcounters.insert |0 | |
+ROW |65724 |33034 |2 |10 | |0 | |
+ROW |65725 |33035 |1 |12 |$.opcounters.query |0 | |
+ROW |65726 |33035 |2 |10 | |0 | |
+ROW |65727 |33036 |1 |12 |$.opcounters.update |0 | |
+ROW |65728 |33036 |2 |10 | |0 | |
+ROW |65729 |33037 |1 |12 |$.uptime |0 | |
+ROW |65730 |33038 |1 |12 |$.mem.mapped |1 | |
+ROW |65731 |33038 |2 |1 |1048576 |0 | |
+ROW |65732 |33039 |1 |12 |$.metrics.cursor.timedOut |0 | |
+ROW |65733 |33039 |2 |10 | |0 | |
+ROW |65734 |33040 |1 |12 |$.metrics.document.inserted |0 | |
+ROW |65735 |33040 |2 |10 | |0 | |
+ROW |65736 |33041 |1 |12 |$.asserts.user |0 | |
+ROW |65737 |33041 |2 |10 | |0 | |
+ROW |65738 |33042 |1 |12 |$.metrics.document.returned |0 | |
+ROW |65739 |33042 |2 |10 | |0 | |
+ROW |65740 |33043 |1 |12 |$.metrics.document.updated |0 | |
+ROW |65741 |33043 |2 |10 | |0 | |
+ROW |65742 |33044 |1 |12 |$.globalLock.activeClients.readers |0 | |
+ROW |65743 |33045 |1 |12 |$.globalLock.activeClients.total |0 | |
+ROW |65744 |33046 |1 |12 |$.globalLock.activeClients.writers |0 | |
+ROW |65745 |33047 |1 |12 |$.asserts.msg |0 | |
+ROW |65746 |33047 |2 |10 | |0 | |
+ROW |65747 |33048 |1 |12 |$.asserts.regular |0 | |
+ROW |65748 |33048 |2 |10 | |0 | |
+ROW |65749 |33049 |1 |12 |$.asserts.rollovers |0 | |
+ROW |65750 |33049 |2 |10 | |0 | |
+ROW |65751 |33050 |1 |12 |$.asserts.warning |0 | |
+ROW |65752 |33050 |2 |10 | |0 | |
+ROW |65753 |33051 |1 |12 |$.metrics.cursor.open.total |0 | |
+ROW |65754 |33052 |1 |12 |$.connections.active |1 | |
+ROW |65755 |33053 |1 |12 |$.connections.available |0 | |
+ROW |65756 |33054 |1 |12 |$.connections.current |0 | |
+ROW |65757 |33055 |1 |12 |$.connections.totalCreated |0 | |
+ROW |65758 |33055 |2 |10 | |0 | |
+ROW |65759 |33056 |1 |12 |$.globalLock.currentQueue.readers |0 | |
+ROW |65760 |33057 |1 |12 |$.globalLock.currentQueue.total |0 | |
+ROW |65761 |33058 |1 |12 |$.globalLock.currentQueue.writers |0 | |
+ROW |65762 |33059 |1 |12 |$.metrics.cursor.open.pinned |0 | |
+ROW |65763 |33060 |1 |12 |$.version |0 | |
+ROW |65764 |33060 |2 |20 |3h |0 | |
+ROW |65765 |33063 |1 |21 |var status = JSON.parse(value)&bsn;return JSON.stringify(status.set&bsn;? [{'{#RS_NAME}': status.set, '{#NODE_STATE}': status.myState}]&bsn;: []); |0 | |
+ROW |65766 |33063 |2 |20 |1h |0 | |
+ROW |65767 |33064 |1 |21 |return JSON.stringify(JSON.parse(value).wiredTiger&bsn; ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |65768 |33064 |2 |20 |6h |0 | |
+ROW |65769 |33067 |1 |12 |$.avgObjSize |1 | |
+ROW |65770 |33068 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].remove.time |0 | |
+ROW |65771 |33068 |2 |10 | |0 | |
+ROW |65772 |33069 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.time |0 | |
+ROW |65773 |33069 |2 |10 | |0 | |
+ROW |65774 |33070 |1 |12 |$.storageSize |0 | |
+ROW |65775 |33071 |1 |12 |$.size |0 | |
+ROW |65776 |33072 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].readLock.count |0 | |
+ROW |65777 |33072 |2 |10 | |0 | |
+ROW |65778 |33073 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].readLock.time |0 | |
+ROW |65779 |33073 |2 |10 | |0 | |
+ROW |65780 |33074 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].update.count |0 | |
+ROW |65781 |33074 |2 |10 | |0 | |
+ROW |65782 |33075 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].update.time |0 | |
+ROW |65783 |33075 |2 |10 | |0 | |
+ROW |65784 |33076 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].total.count |0 | |
+ROW |65785 |33076 |2 |10 | |0 | |
+ROW |65786 |33077 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].total.time |0 | |
+ROW |65787 |33077 |2 |10 | |0 | |
+ROW |65788 |33078 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].remove.count |0 | |
+ROW |65789 |33078 |2 |10 | |0 | |
+ROW |65790 |33079 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].queries.count |0 | |
+ROW |65791 |33079 |2 |10 | |0 | |
+ROW |65792 |33080 |1 |12 |$.capped |0 | |
+ROW |65793 |33080 |2 |6 | |0 | |
+ROW |65794 |33080 |3 |20 |3h |0 | |
+ROW |65795 |33081 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].queries.time |0 | |
+ROW |65796 |33081 |2 |10 | |0 | |
+ROW |65797 |33082 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].insert.count |0 | |
+ROW |65798 |33082 |2 |10 | |0 | |
+ROW |65799 |33083 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].insert.time |0 | |
+ROW |65800 |33083 |2 |10 | |0 | |
+ROW |65801 |33084 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].getmore.count |0 | |
+ROW |65802 |33084 |2 |10 | |0 | |
+ROW |65803 |33085 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].getmore.time |0 | |
+ROW |65804 |33085 |2 |10 | |0 | |
+ROW |65805 |33086 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].commands.count |0 | |
+ROW |65806 |33086 |2 |10 | |0 | |
+ROW |65807 |33087 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].commands.time |0 | |
+ROW |65808 |33087 |2 |10 | |0 | |
+ROW |65809 |33088 |1 |12 |$.nindexes |0 | |
+ROW |65810 |33089 |1 |12 |$.maxSize |1 | |
+ROW |65811 |33090 |1 |12 |$.max |1 | |
+ROW |65812 |33091 |1 |12 |$.count |0 | |
+ROW |65813 |33092 |1 |12 |$.totals["{#DBNAME}.{#COLLECTION}"].writeLock.count |0 | |
+ROW |65814 |33092 |2 |10 | |0 | |
+ROW |65815 |33093 |1 |12 |$.collections |0 | |
+ROW |65816 |33094 |1 |12 |$.dataSize |0 | |
+ROW |65817 |33095 |1 |12 |$.numExtents |1 | |
+ROW |65818 |33096 |1 |12 |$.fileSize |1 | |
+ROW |65819 |33097 |1 |12 |$.indexSize |0 | |
+ROW |65820 |33098 |1 |12 |$.objects |0 | |
+ROW |65821 |33099 |1 |12 |$.avgObjSize |0 | |
+ROW |65822 |33100 |1 |12 |$.storageSize |0 | |
+ROW |65823 |33101 |1 |12 |$.metrics.repl.apply.batches.totalMillis |0 | |
+ROW |65824 |33101 |2 |10 | |0 | |
+ROW |65825 |33102 |1 |12 |$.metrics.repl.network.readersCreated |0 | |
+ROW |65826 |33102 |2 |10 | |0 | |
+ROW |65827 |33103 |1 |12 |$.members[?(@.self == "true")].unhealthyCount.first() |0 | |
+ROW |65828 |33103 |2 |20 |1h |0 | |
+ROW |65829 |33104 |1 |12 |$.members[?(@.self == "true")].totalNodes.first() |0 | |
+ROW |65830 |33104 |2 |20 |1h |0 | |
+ROW |65831 |33105 |1 |12 |$.myState |0 | |
+ROW |65832 |33105 |2 |20 |1h |0 | |
+ROW |65833 |33106 |1 |12 |$.metrics.repl.preload.indexes.num |0 | |
+ROW |65834 |33106 |2 |10 | |0 | |
+ROW |65835 |33107 |1 |12 |$.metrics.repl.preload.indexes.totalMillis |0 | |
+ROW |65836 |33107 |2 |10 | |0 | |
+ROW |65837 |33108 |1 |12 |$.metrics.repl.preload.docs.num |0 | |
+ROW |65838 |33108 |2 |10 | |0 | |
+ROW |65839 |33109 |1 |12 |$.metrics.repl.preload.docs.totalMillis |0 | |
+ROW |65840 |33109 |2 |10 | |0 | |
+ROW |65841 |33110 |1 |12 |$.timediff |0 | |
+ROW |65842 |33111 |1 |12 |$.metrics.repl.network.ops |0 | |
+ROW |65843 |33111 |2 |10 | |0 | |
+ROW |65844 |33112 |1 |12 |$.metrics.repl.apply.batches.num |0 | |
+ROW |65845 |33112 |2 |10 | |0 | |
+ROW |65846 |33113 |1 |12 |$.metrics.repl.network.getmores.num |0 | |
+ROW |65847 |33113 |2 |10 | |0 | |
+ROW |65848 |33114 |1 |12 |$.metrics.repl.network.getmores.totalMillis |0 | |
+ROW |65849 |33114 |2 |10 | |0 | |
+ROW |65850 |33115 |1 |12 |$.metrics.repl.network.bytes |0 | |
+ROW |65851 |33115 |2 |10 | |0 | |
+ROW |65852 |33116 |1 |12 |$.members[?(@.self == "true")].lag.first() |0 | |
+ROW |65853 |33117 |1 |12 |$.metrics.repl.buffer.sizeBytes |0 | |
+ROW |65854 |33118 |1 |12 |$.metrics.repl.buffer.maxSizeBytes |0 | |
+ROW |65855 |33119 |1 |12 |$.metrics.repl.buffer.count |0 | |
+ROW |65856 |33120 |1 |12 |$.metrics.repl.apply.ops |0 | |
+ROW |65857 |33120 |2 |10 | |0 | |
+ROW |65858 |33121 |1 |12 |$.members[?(@.self == "true")].unhealthyNodes.first() |0 | |
+ROW |65859 |33121 |2 |21 |var value = JSON.parse(value);&bsn;return value.length ? JSON.stringify(value) : '';&bsn; |0 | |
+ROW |65860 |33121 |3 |20 |1h |0 | |
+ROW |65861 |33122 |1 |12 |$.wiredTiger.cache['bytes currently in the cache'] |0 | |
+ROW |65862 |33123 |1 |12 |$.wiredTiger.cache.['tracked dirty bytes in the cache'] |0 | |
+ROW |65863 |33124 |1 |12 |$.wiredTiger.concurrentTransactions.write.out |0 | |
+ROW |65864 |33125 |1 |12 |$.wiredTiger.concurrentTransactions.write.available |0 | |
+ROW |65865 |33126 |1 |12 |$.wiredTiger.concurrentTransactions.read.totalTickets |0 | |
+ROW |65866 |33127 |1 |12 |$.wiredTiger.concurrentTransactions.read.out |0 | |
+ROW |65867 |33128 |1 |12 |$.wiredTiger.concurrentTransactions.read.available |0 | |
+ROW |65868 |33129 |1 |12 |$.wiredTiger.cache.['unmodified pages evicted'] |0 | |
+ROW |65869 |33130 |1 |12 |$.wiredTiger.cache['in-memory page splits'] |0 | |
+ROW |65870 |33131 |1 |12 |$.wiredTiger.cache['maximum page size at eviction'] |0 | |
+ROW |65871 |33132 |1 |12 |$.wiredTiger.cache['pages written from cache'] |0 | |
+ROW |65872 |33133 |1 |12 |$.wiredTiger.cache['pages read into cache'] |0 | |
+ROW |65873 |33134 |1 |12 |$.wiredTiger.cache['pages currently held in the cache'] |0 | |
+ROW |65874 |33135 |1 |12 |$.wiredTiger.cache.['pages evicted by application threads'] |0 | |
+ROW |65875 |33136 |1 |12 |$.wiredTiger.cache['modified pages evicted'] |0 | |
+ROW |65876 |33137 |1 |12 |$.wiredTiger.cache['maximum bytes configured'] |0 | |
+ROW |65877 |33138 |1 |12 |$.wiredTiger.concurrentTransactions.write.totalTickets |0 | |
+ROW |65878 |33141 |1 |20 |30m |0 | |
+ROW |65879 |33143 |1 |21 |data = JSON.parse(value)&bsn;return (data["$clusterTime"].clusterTime-data.sharding.lastSeenConfigServerOpTime.ts)/Math.pow(2,32);&bsn; |0 | |
+ROW |65880 |33144 |1 |12 |$.opcounters.command |0 | |
+ROW |65881 |33144 |2 |10 | |0 | |
+ROW |65882 |33145 |1 |12 |$.network.bytesIn |0 | |
+ROW |65883 |33145 |2 |10 | |0 | |
+ROW |65884 |33146 |1 |12 |$.network.bytesOut |0 | |
+ROW |65885 |33146 |2 |10 | |0 | |
+ROW |65886 |33147 |1 |12 |$.network.numRequests |0 | |
+ROW |65887 |33147 |2 |10 | |0 | |
+ROW |65888 |33148 |1 |12 |$.opcounters.getmore |0 | |
+ROW |65889 |33148 |2 |10 | |0 | |
+ROW |65890 |33149 |1 |12 |$.opcounters.delete |0 | |
+ROW |65891 |33149 |2 |10 | |0 | |
+ROW |65892 |33150 |1 |12 |$.mem.virtual |0 | |
+ROW |65893 |33150 |2 |1 |1048576 |0 | |
+ROW |65894 |33151 |1 |12 |$.opcounters.insert |0 | |
+ROW |65895 |33151 |2 |10 | |0 | |
+ROW |65896 |33152 |1 |12 |$.opcounters.query |0 | |
+ROW |65897 |33152 |2 |10 | |0 | |
+ROW |65898 |33153 |1 |12 |$.opcounters.update |0 | |
+ROW |65899 |33153 |2 |10 | |0 | |
+ROW |65900 |33154 |1 |12 |$.uptime |0 | |
+ROW |65901 |33155 |1 |12 |$.metrics.cursor.open.noTimeout |0 | |
+ROW |65902 |33156 |1 |12 |$.mem.bits |0 | |
+ROW |65903 |33156 |2 |20 |3h |0 | |
+ROW |65904 |33157 |1 |12 |$.mem.resident |0 | |
+ROW |65905 |33157 |2 |1 |1048576 |0 | |
+ROW |65906 |33158 |1 |12 |$.totalAvailable |0 | |
+ROW |65907 |33159 |1 |21 |data = JSON.parse(value)&bsn;return data.sharding.lastSeenConfigServerOpTime.ts/Math.pow(2,32)&bsn; |0 | |
+ROW |65908 |33160 |1 |12 |$.metrics.cursor.timedOut |0 | |
+ROW |65909 |33160 |2 |10 | |0 | |
+ROW |65910 |33161 |1 |12 |$.metrics.cursor.open.total |0 | |
+ROW |65911 |33162 |1 |12 |$.metrics.cursor.open.pinned |0 | |
+ROW |65912 |33163 |1 |12 |$.connections.totalCreated |0 | |
+ROW |65913 |33163 |2 |10 | |0 | |
+ROW |65914 |33164 |1 |12 |$.connections.current |0 | |
+ROW |65915 |33165 |1 |12 |$.connections.available |0 | |
+ROW |65916 |33166 |1 |12 |$.connections.active |2 |0 |
+ROW |65917 |33167 |1 |12 |$.numAScopedConnections |0 | |
+ROW |65918 |33168 |1 |12 |$.totalRefreshing |0 | |
+ROW |65919 |33169 |1 |12 |$.totalInUse |0 | |
+ROW |65920 |33170 |1 |12 |$.totalCreated |0 | |
+ROW |65921 |33170 |2 |10 | |0 | |
+ROW |65922 |33171 |1 |12 |$.numClientConnections |0 | |
+ROW |65923 |33172 |1 |12 |$.version |0 | |
+ROW |65924 |33172 |2 |20 |3h |0 | |
+ROW |65925 |33179 |1 |12 |$.avgObjSize |1 | |
+ROW |65926 |33180 |1 |12 |$.capped |0 | |
+ROW |65927 |33180 |2 |6 | |0 | |
+ROW |65928 |33180 |3 |20 |3h |0 | |
+ROW |65929 |33181 |1 |12 |$.count |0 | |
+ROW |65930 |33182 |1 |12 |$.maxSize |1 | |
+ROW |65931 |33183 |1 |12 |$.max |1 | |
+ROW |65932 |33184 |1 |12 |$.nindexes |0 | |
+ROW |65933 |33185 |1 |12 |$.size |0 | |
+ROW |65934 |33186 |1 |12 |$.storageSize |0 | |
+ROW |65935 |33187 |1 |12 |$.dataSize |0 | |
+ROW |65936 |33188 |1 |12 |$.numExtents |1 | |
+ROW |65937 |33189 |1 |12 |$.fileSize |1 | |
+ROW |65938 |33190 |1 |12 |$.indexSize |0 | |
+ROW |65939 |33191 |1 |12 |$.objects |0 | |
+ROW |65940 |33192 |1 |12 |$.avgObjSize |0 | |
+ROW |65941 |33193 |1 |12 |$.storageSize |0 | |
+ROW |65942 |33195 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].log_send_queue_size.first() |0 | |
+ROW |65943 |33195 |2 |1 |1024 |0 | |
+ROW |65944 |33195 |3 |20 |1h |0 | |
+ROW |65945 |33196 |1 |12 |$[?(@.group_name=='{#GROUP_NAME}' && @.replica_name=='{#REPLICA_NAME}' && @.dbname=='{#DBNAME}')].redo_queue_size.first() |0 | |
+ROW |65946 |33196 |2 |1 |1024 |0 | |
+ROW |65947 |33196 |3 |20 |1h |0 | |
+ROW |65948 |33201 |1 |20 |1d |0 | |
+ROW |65949 |33202 |1 |20 |1d |0 | |
+ROW |65950 |33203 |1 |20 |1d |0 | |
+ROW |65951 |33204 |1 |20 |1d |0 | |
+ROW |65952 |33205 |1 |20 |1h |0 | |
+ROW |65953 |33206 |1 |20 |1h |0 | |
+ROW |65954 |33207 |1 |20 |1h |0 | |
+ROW |65955 |33208 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |65956 |33208 |2 |20 |1d |0 | |
+ROW |65957 |33209 |1 |1 |0.01 |0 | |
+ROW |65958 |33220 |1 |20 |1d |0 | |
+ROW |65959 |33225 |1 |10 | |0 | |
+ROW |65960 |33226 |1 |10 | |0 | |
+ROW |65961 |33227 |1 |10 | |0 | |
+ROW |65962 |33227 |2 |1 |8 |0 | |
+ROW |65963 |33228 |1 |10 | |0 | |
+ROW |65964 |33229 |1 |10 | |0 | |
+ROW |65965 |33230 |1 |10 | |0 | |
+ROW |65966 |33230 |2 |1 |8 |0 | |
+ROW |65967 |33231 |1 |1 |1000000 |0 | |
+ROW |65968 |33231 |2 |20 |1h |0 | |
+ROW |65969 |33232 |1 |20 |6h |0 | |
+ROW |65970 |33233 |1 |20 |6h |0 | |
+ROW |65971 |33242 |1 |20 |1d |0 | |
+ROW |65972 |33243 |1 |20 |1d |0 | |
+ROW |65973 |33244 |1 |20 |1d |0 | |
+ROW |65974 |33245 |1 |20 |1d |0 | |
+ROW |65975 |33246 |1 |20 |1h |0 | |
+ROW |65976 |33247 |1 |20 |1h |0 | |
+ROW |65977 |33248 |1 |20 |1h |0 | |
+ROW |65978 |33249 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |65979 |33249 |2 |20 |1d |0 | |
+ROW |65980 |33250 |1 |1 |0.01 |0 | |
+ROW |65981 |33261 |1 |20 |1d |0 | |
+ROW |65982 |33266 |1 |10 | |0 | |
+ROW |65983 |33267 |1 |10 | |0 | |
+ROW |65984 |33268 |1 |10 | |0 | |
+ROW |65985 |33268 |2 |1 |8 |0 | |
+ROW |65986 |33269 |1 |10 | |0 | |
+ROW |65987 |33270 |1 |10 | |0 | |
+ROW |65988 |33271 |1 |10 | |0 | |
+ROW |65989 |33271 |2 |1 |8 |0 | |
+ROW |65990 |33272 |1 |1 |1000000 |0 | |
+ROW |65991 |33272 |2 |20 |1h |0 | |
+ROW |65992 |33273 |1 |20 |6h |0 | |
+ROW |65993 |33274 |1 |20 |6h |0 | |
+ROW |65994 |33283 |1 |20 |1d |0 | |
+ROW |65995 |33284 |1 |20 |1d |0 | |
+ROW |65996 |33285 |1 |20 |1d |0 | |
+ROW |65997 |33286 |1 |20 |1d |0 | |
+ROW |65998 |33287 |1 |20 |1h |0 | |
+ROW |65999 |33288 |1 |20 |1h |0 | |
+ROW |66000 |33289 |1 |20 |1h |0 | |
+ROW |66001 |33290 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |66002 |33290 |2 |20 |1d |0 | |
+ROW |66003 |33291 |1 |1 |0.01 |0 | |
+ROW |66004 |33302 |1 |20 |1d |0 | |
+ROW |66005 |33307 |1 |10 | |0 | |
+ROW |66006 |33308 |1 |10 | |0 | |
+ROW |66007 |33309 |1 |10 | |0 | |
+ROW |66008 |33309 |2 |1 |8 |0 | |
+ROW |66009 |33310 |1 |10 | |0 | |
+ROW |66010 |33311 |1 |10 | |0 | |
+ROW |66011 |33312 |1 |10 | |0 | |
+ROW |66012 |33312 |2 |1 |8 |0 | |
+ROW |66013 |33313 |1 |1 |1000000 |0 | |
+ROW |66014 |33313 |2 |20 |1h |0 | |
+ROW |66015 |33314 |1 |20 |6h |0 | |
+ROW |66016 |33315 |1 |20 |6h |0 | |
+ROW |66017 |33324 |1 |20 |1d |0 | |
+ROW |66018 |33325 |1 |20 |1d |0 | |
+ROW |66019 |33326 |1 |20 |1d |0 | |
+ROW |66020 |33327 |1 |20 |1d |0 | |
+ROW |66021 |33328 |1 |20 |1h |0 | |
+ROW |66022 |33329 |1 |20 |1h |0 | |
+ROW |66023 |33330 |1 |20 |1h |0 | |
+ROW |66024 |33331 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |66025 |33331 |2 |20 |1d |0 | |
+ROW |66026 |33332 |1 |1 |0.01 |0 | |
+ROW |66027 |33343 |1 |20 |1d |0 | |
+ROW |66028 |33348 |1 |10 | |0 | |
+ROW |66029 |33349 |1 |10 | |0 | |
+ROW |66030 |33350 |1 |10 | |0 | |
+ROW |66031 |33350 |2 |1 |8 |0 | |
+ROW |66032 |33351 |1 |10 | |0 | |
+ROW |66033 |33352 |1 |10 | |0 | |
+ROW |66034 |33353 |1 |10 | |0 | |
+ROW |66035 |33353 |2 |1 |8 |0 | |
+ROW |66036 |33354 |1 |1 |1000000 |0 | |
+ROW |66037 |33354 |2 |20 |1h |0 | |
+ROW |66038 |33355 |1 |20 |6h |0 | |
+ROW |66039 |33356 |1 |20 |6h |0 | |
+ROW |66040 |33365 |1 |20 |1d |0 | |
+ROW |66041 |33366 |1 |20 |1d |0 | |
+ROW |66042 |33367 |1 |20 |1d |0 | |
+ROW |66043 |33368 |1 |20 |1d |0 | |
+ROW |66044 |33369 |1 |20 |1h |0 | |
+ROW |66045 |33370 |1 |20 |1h |0 | |
+ROW |66046 |33371 |1 |20 |1h |0 | |
+ROW |66047 |33372 |1 |5 |Version (.+), RELEASE&bsn;\1 |0 | |
+ROW |66048 |33372 |2 |20 |1d |0 | |
+ROW |66049 |33373 |1 |1 |0.01 |0 | |
+ROW |66050 |33384 |1 |20 |1d |0 | |
+ROW |66051 |33389 |1 |10 | |0 | |
+ROW |66052 |33390 |1 |10 | |0 | |
+ROW |66053 |33391 |1 |10 | |0 | |
+ROW |66054 |33391 |2 |1 |8 |0 | |
+ROW |66055 |33392 |1 |10 | |0 | |
+ROW |66056 |33393 |1 |10 | |0 | |
+ROW |66057 |33394 |1 |10 | |0 | |
+ROW |66058 |33394 |2 |1 |8 |0 | |
+ROW |66059 |33395 |1 |1 |1000000 |0 | |
+ROW |66060 |33395 |2 |20 |1h |0 | |
+ROW |66061 |33396 |1 |20 |6h |0 | |
+ROW |66062 |33397 |1 |20 |6h |0 | |
+ROW |66063 |33406 |1 |20 |1d |0 | |
+ROW |66064 |33407 |1 |12 |$..['{#CPU.UTIL}'].avg() |0 | |
+ROW |66065 |33408 |1 |20 |1d |0 | |
+ROW |66066 |33409 |1 |20 |1h |0 | |
+ROW |66067 |33410 |1 |20 |1h |0 | |
+ROW |66068 |33411 |1 |20 |1h |0 | |
+ROW |66069 |33412 |1 |1 |0.01 |0 | |
+ROW |66070 |33414 |1 |20 |6h |0 | |
+ROW |66071 |33415 |1 |20 |6h |0 | |
+ROW |66072 |33416 |1 |20 |6h |0 | |
+ROW |66073 |28196 |1 |21 |var data = JSON.parse(value).filter(function (item) {&bsn; return (typeof item['{#SENSOR_PRECISION}'] !== 'undefined');&bsn;});&bsn;&bsn;return JSON.stringify(data); |0 | |
+ROW |66074 |28196 |2 |20 |6h |0 | |
+ROW |66075 |28197 |1 |21 |var data = JSON.parse(value).filter(function (item) {&bsn; return (typeof item['{#SNMPVALUE}'] !== 'undefined');&bsn;});&bsn;&bsn;return JSON.stringify(data); |0 | |
+ROW |66076 |28197 |2 |20 |6h |0 | |
+ROW |66077 |28198 |1 |20 |6h |0 | |
+ROW |66078 |28199 |1 |20 |6h |0 | |
+ROW |66079 |33417 |1 |10 | |0 | |
+ROW |66080 |33418 |1 |10 | |0 | |
+ROW |66081 |33419 |1 |10 | |0 | |
+ROW |66082 |33419 |2 |1 |8 |0 | |
+ROW |66083 |33420 |1 |10 | |0 | |
+ROW |66084 |33421 |1 |10 | |0 | |
+ROW |66085 |33422 |1 |10 | |0 | |
+ROW |66086 |33422 |2 |1 |8 |0 | |
+ROW |66087 |33423 |1 |1 |1000000 |0 | |
+ROW |66088 |33423 |2 |20 |1h |0 | |
+ROW |66089 |33425 |1 |20 |1d |0 | |
+ROW |66090 |33427 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |66091 |33428 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |66092 |33429 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |66093 |33430 |1 |1 |{#ALLOC_UNITS} |0 | |
+ROW |66094 |33432 |1 |20 |6h |0 | |
+ROW |66095 |33433 |1 |1 |0.1 |0 | |
+ROW |66096 |33433 |2 |20 |6h |0 | |
+ROW |66097 |33434 |1 |1 |0.01 |0 | |
+ROW |66098 |33435 |1 |20 |6h |0 | |
+ROW |66099 |33436 |1 |20 |1h |0 | |
+ROW |66100 |33437 |1 |20 |1h |0 | |
+ROW |66101 |33438 |1 |20 |6h |0 | |
+ROW |66102 |33439 |1 |20 |1h |0 | |
+ROW |66103 |33440 |1 |20 |1d |0 | |
+ROW |66104 |33441 |1 |20 |1d |0 | |
+ROW |66105 |33443 |1 |1 |0.1 |0 | |
+ROW |66106 |33443 |2 |20 |6h |0 | |
+ROW |66107 |33444 |1 |20 |6h |0 | |
+ROW |66108 |33445 |1 |1 |0.1 |0 | |
+ROW |66109 |33445 |2 |20 |6h |0 | |
+ROW |66110 |33446 |1 |20 |6h |0 | |
+ROW |66111 |33447 |1 |1 |0.1 |0 | |
+ROW |66112 |33447 |2 |20 |6h |0 | |
+ROW |66113 |33448 |1 |1 |0.1 |0 | |
+ROW |66114 |33448 |2 |20 |6h |0 | |
+ROW |66115 |33449 |1 |20 |6h |0 | |
+ROW |66116 |33453 |1 |1 |0.1 |0 | |
+ROW |66117 |33453 |2 |20 |6h |0 | |
+ROW |66118 |33454 |1 |1 |0.1 |0 | |
+ROW |66119 |33454 |2 |20 |6h |0 | |
+ROW |66120 |33455 |1 |20 |6h |0 | |
+ROW |66121 |33456 |1 |1 |0.01 |0 | |
+ROW |66122 |33456 |2 |20 |6h |0 | |
+ROW |66123 |33457 |1 |20 |6h |0 | |
+ROW |66124 |33458 |1 |20 |6h |0 | |
+ROW |66125 |33465 |1 |20 |6h |0 | |
+ROW |66126 |33466 |1 |20 |6h |0 | |
+ROW |66127 |33467 |1 |20 |6h |0 | |
+ROW |66128 |33468 |1 |20 |6h |0 | |
+ROW |66129 |33469 |1 |1 |0.1 |0 | |
+ROW |66130 |33469 |2 |20 |6h |0 | |
+ROW |66131 |33470 |1 |20 |6h |0 | |
+ROW |66132 |33471 |1 |20 |6h |0 | |
+ROW |66133 |33472 |1 |20 |6h |0 | |
+ROW |66134 |33473 |1 |20 |6h |0 | |
+ROW |66135 |33474 |1 |20 |6h |0 | |
+ROW |66136 |33475 |1 |20 |6h |0 | |
+ROW |66137 |33476 |1 |20 |6h |0 | |
+ROW |66138 |33477 |1 |1 |0.1 |0 | |
+ROW |66139 |33477 |2 |20 |6h |0 | |
+ROW |66140 |33478 |1 |20 |6h |0 | |
+ROW |66141 |33486 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function(chassis) {&bsn; chassis.frus.forEach(function(frus) {&bsn; frus.chassisId = chassis.id;&bsn; result.push(frus);&bsn; })&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66142 |33493 |1 |12 |$.statistics.status |0 | |
+ROW |66143 |33493 |2 |20 |6h |0 | |
+ROW |66144 |33494 |1 |12 |$.location |0 | |
+ROW |66145 |33494 |2 |20 |6h |0 | |
+ROW |66146 |33495 |1 |12 |$.name |0 | |
+ROW |66147 |33495 |2 |20 |6h |0 | |
+ROW |66148 |33496 |1 |12 |$.statistics.iops_raw.other |0 | |
+ROW |66149 |33497 |1 |12 |$.statistics.iops_raw.read |0 | |
+ROW |66150 |33498 |1 |12 |$.statistics.iops_raw.total |0 | |
+ROW |66151 |33499 |1 |12 |$.statistics.iops_raw.write |0 | |
+ROW |66152 |33500 |1 |12 |$.statistics.iops_raw.other |0 | |
+ROW |66153 |33500 |2 |10 | |0 | |
+ROW |66154 |33501 |1 |12 |$.version.full |0 | |
+ROW |66155 |33501 |2 |20 |6h |0 | |
+ROW |66156 |33502 |1 |12 |$.statistics.latency_raw.read |0 | |
+ROW |66157 |33503 |1 |12 |$.statistics.latency_raw.total |0 | |
+ROW |66158 |33504 |1 |12 |$.statistics.throughput_raw.total |0 | |
+ROW |66159 |33504 |2 |10 | |0 | |
+ROW |66160 |33505 |1 |12 |$.statistics.throughput_raw.read |0 | |
+ROW |66161 |33505 |2 |10 | |0 | |
+ROW |66162 |33506 |1 |12 |$.statistics.throughput_raw.other |0 | |
+ROW |66163 |33506 |2 |10 | |0 | |
+ROW |66164 |33507 |1 |12 |$.statistics.iops_raw.read |0 | |
+ROW |66165 |33507 |2 |10 | |0 | |
+ROW |66166 |33508 |1 |12 |$.statistics.iops_raw.total |0 | |
+ROW |66167 |33508 |2 |10 | |0 | |
+ROW |66168 |33509 |1 |12 |$.statistics.iops_raw.write |0 | |
+ROW |66169 |33509 |2 |10 | |0 | |
+ROW |66170 |33510 |1 |12 |$.statistics.latency_raw.other |0 | |
+ROW |66171 |33511 |1 |12 |$.statistics.latency_raw.write |0 | |
+ROW |66172 |33512 |1 |12 |$.statistics.throughput_raw.write |0 | |
+ROW |66173 |33512 |2 |10 | |0 | |
+ROW |66174 |33513 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (chassis) {&bsn; result.push({"{#ID}": chassis.id});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66175 |33514 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (disk) {&bsn; result.push({"{#DISKNAME}": disk.name, "{#NODENAME}": disk.node.name});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66176 |33515 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).forEach(function (fru) {&bsn; result.push({"{#CHASSISID}": fru.chassisId, "{#FRUID}": fru.id});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66177 |33515 |2 |20 |6h |0 | |
+ROW |66178 |33516 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (lun) {&bsn; result.push({"{#LUNNAME}": lun.name, "{#SVMNAME}": lun.svm.name});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66179 |33517 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (node) {&bsn; result.push({"{#NODENAME}": node.name});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66180 |33518 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (port) {&bsn; result.push({"{#NODENAME}": port.node.name, "{#ETHPORTNAME}": port.name, "{#ETHPORTSTATE}": port.state});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66181 |33519 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (port) {&bsn; result.push({"{#NODENAME}": port.node.name, "{#FCPORTNAME}": port.name, "{#FCPORTSTATE}": port.state});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66182 |33520 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (svm) {&bsn; result.push({"{#SVMNAME}": svm.name});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66183 |33521 |1 |21 |var result = [];&bsn;&bsn;JSON.parse(value).records.forEach(function (volume) {&bsn; result.push({"{#VOLUMENAME}": volume.name});&bsn;});&bsn;&bsn;return JSON.stringify(result);&bsn; |0 | |
+ROW |66184 |33526 |1 |12 |$.records[?(@.id=='{#ID}')].state.first() |0 | |
+ROW |66185 |33526 |2 |20 |6h |0 | |
+ROW |66186 |33527 |1 |12 |$.records[?(@.name=='{#DISKNAME}'&&@.node.name=='{#NODENAME}')].state.first() |0 | |
+ROW |66187 |33527 |2 |20 |6h |0 | |
+ROW |66188 |33528 |1 |12 |$[?(@.id=='{#FRUID}'&&@.chassisId=='{#CHASSISID}')].state.first() |0 | |
+ROW |66189 |33528 |2 |20 |6h |0 | |
+ROW |66190 |33529 |1 |12 |$.records[?(@.svm.name=='{#SVMNAME}'&&@.name=='{#LUNNAME}')].space.size.first() |0 | |
+ROW |66191 |33529 |2 |20 |6h |0 | |
+ROW |66192 |33530 |1 |12 |$.records[?(@.svm.name=='{#SVMNAME}'&&@.name=='{#LUNNAME}')].space.used.first() |0 | |
+ROW |66193 |33530 |2 |20 |6h |0 | |
+ROW |66194 |33531 |1 |12 |$.records[?(@.svm.name=='{#SVMNAME}'&&@.name=='{#LUNNAME}')].status.container_state.first() |0 | |
+ROW |66195 |33531 |2 |20 |6h |0 | |
+ROW |66196 |33532 |1 |12 |$.records[?(@.svm.name=='{#SVMNAME}'&&@.name=='{#LUNNAME}')].status.state.first() |0 | |
+ROW |66197 |33532 |2 |20 |6h |0 | |
+ROW |66198 |33533 |1 |12 |$.records[?(@.name=='{#NODENAME}')].version.full.first() |0 | |
+ROW |66199 |33533 |2 |20 |6h |0 | |
+ROW |66200 |33534 |1 |12 |$.records[?(@.name=='{#NODENAME}')].controller.over_temperature.first() |0 | |
+ROW |66201 |33534 |2 |20 |6h |0 | |
+ROW |66202 |33535 |1 |12 |$.records[?(@.name=='{#NODENAME}')].location.first() |0 | |
+ROW |66203 |33535 |2 |20 |6h |0 | |
+ROW |66204 |33536 |1 |12 |$.records[?(@.name=='{#NODENAME}')].membership.first() |0 | |
+ROW |66205 |33536 |2 |20 |6h |0 | |
+ROW |66206 |33537 |1 |12 |$.records[?(@.name=='{#NODENAME}')].state.first() |0 | |
+ROW |66207 |33537 |2 |20 |6h |0 | |
+ROW |66208 |33538 |1 |12 |$.records[?(@.name=='{#NODENAME}')].uptime.first() |0 | |
+ROW |66209 |33539 |1 |12 |$.records[?(@.name=='{#ETHPORTNAME}')].state.first() |0 | |
+ROW |66210 |33539 |2 |20 |6h |0 | |
+ROW |66211 |33540 |1 |12 |$.records[?(@.name=='{#FCPORTNAME}')].description.first() |0 | |
+ROW |66212 |33540 |2 |20 |6h |0 | |
+ROW |66213 |33541 |1 |12 |$.records[?(@.name=='{#FCPORTNAME}')].state.first() |0 | |
+ROW |66214 |33541 |2 |20 |6h |0 | |
+ROW |66215 |33542 |1 |12 |$.records[?(@.name=='{#SVMNAME}')].comment.first() |0 | |
+ROW |66216 |33542 |2 |20 |6h |0 | |
+ROW |66217 |33543 |1 |12 |$.records[?(@.name=='{#SVMNAME}')].state.first() |0 | |
+ROW |66218 |33543 |2 |20 |6h |0 | |
+ROW |66219 |33544 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].comment.first() |0 | |
+ROW |66220 |33544 |2 |20 |6h |0 | |
+ROW |66221 |33545 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.latency_raw.read.first() |0 | |
+ROW |66222 |33546 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].svm.name.first() |0 | |
+ROW |66223 |33546 |2 |20 |6h |0 | |
+ROW |66224 |33547 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.throughput_raw.write.first() |0 | |
+ROW |66225 |33547 |2 |10 | |0 | |
+ROW |66226 |33548 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.throughput_raw.total.first() |0 | |
+ROW |66227 |33548 |2 |10 | |0 | |
+ROW |66228 |33549 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.throughput_raw.read.first() |0 | |
+ROW |66229 |33549 |2 |10 | |0 | |
+ROW |66230 |33550 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.throughput_raw.other.first() |0 | |
+ROW |66231 |33550 |2 |10 | |0 | |
+ROW |66232 |33551 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.latency_raw.write.first() |0 | |
+ROW |66233 |33552 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.latency_raw.total.first() |0 | |
+ROW |66234 |33553 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.latency_raw.other.first() |0 | |
+ROW |66235 |33554 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].space.available.first() |0 | |
+ROW |66236 |33554 |2 |20 |6h |0 | |
+ROW |66237 |33555 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.write.first() |0 | |
+ROW |66238 |33555 |2 |10 | |0 | |
+ROW |66239 |33556 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.total.first() |0 | |
+ROW |66240 |33556 |2 |10 | |0 | |
+ROW |66241 |33557 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.read.first() |0 | |
+ROW |66242 |33557 |2 |10 | |0 | |
+ROW |66243 |33558 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.other.first() |0 | |
+ROW |66244 |33558 |2 |10 | |0 | |
+ROW |66245 |33559 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.write.first() |0 | |
+ROW |66246 |33560 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.total.first() |0 | |
+ROW |66247 |33561 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.read.first() |0 | |
+ROW |66248 |33562 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].statistics.iops_raw.other.first() |0 | |
+ROW |66249 |33563 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].state.first() |0 | |
+ROW |66250 |33563 |2 |20 |6h |0 | |
+ROW |66251 |33564 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].space.used.first() |0 | |
+ROW |66252 |33564 |2 |20 |6h |0 | |
+ROW |66253 |33565 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].space.size.first() |0 | |
+ROW |66254 |33565 |2 |20 |6h |0 | |
+ROW |66255 |33566 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].type.first() |0 | |
+ROW |66256 |33566 |2 |20 |6h |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|
@@ -29972,145 +33904,181 @@ ROW |111 |31990 |{#OBJECTNAME} |$.ObjectName
ROW |112 |31991 |{#OBJECTNAME} |$.ObjectName |
ROW |113 |31992 |{#QUEUE} |$.Queue |
ROW |114 |31993 |{#OBJECTNAME} |$.ObjectName |
+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 |
+ROW |124 |32975 |{#QUEUE} |$.name |
+ROW |125 |32975 |{#VHOST} |$.vhost |
+ROW |126 |32975 |{#NODE} |$.node |
TABLE |lld_override
FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
-ROW |113 |30961 |trigger |1 |0 | |0 |
-ROW |114 |32742 |ID filter |1 |0 | |0 |
-ROW |115 |32743 |Self-test |1 |0 | |0 |
-ROW |116 |32743 |Not NVMe |2 |0 | |0 |
-ROW |117 |32754 |ID filter |1 |0 | |0 |
-ROW |118 |32755 |Self-test |1 |0 | |0 |
-ROW |119 |32755 |Not NVMe |2 |0 | |0 |
-ROW |120 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |121 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |122 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |123 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |124 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |125 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |126 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |127 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |128 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |129 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |130 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |131 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |132 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
-ROW |133 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
-ROW |134 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |135 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |136 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |137 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |138 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |139 |30961 |trigger |1 |0 | |0 |
+ROW |140 |33063 |Primary metrics |1 |0 | |0 |
+ROW |141 |32742 |ID filter |1 |0 | |0 |
+ROW |142 |32743 |Self-test |1 |0 | |0 |
+ROW |143 |32743 |Not NVMe |2 |0 | |0 |
+ROW |144 |32754 |ID filter |1 |0 | |0 |
+ROW |145 |32755 |Self-test |1 |0 | |0 |
+ROW |146 |32755 |Not NVMe |2 |0 | |0 |
+ROW |147 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |148 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |149 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |150 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |151 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |152 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |153 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |154 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |155 |32306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |156 |32306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |157 |32306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |158 |32306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |159 |33462 |Temp |1 |0 | |0 |
+ROW |160 |33463 |Temp |1 |0 | |0 |
+ROW |161 |32618 |Do not discover aggregate metrics|1 |0 | |0 |
+ROW |162 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+ROW |163 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |164 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |165 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |166 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |167 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
TABLE |lld_override_condition
-FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
-ROW |69 |113 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
-ROW |70 |114 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |71 |114 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |72 |115 |8 |{#DISKTYPE} |nvme |
-ROW |73 |116 |9 |{#DISKTYPE} |nvme |
-ROW |74 |117 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |75 |117 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |76 |118 |8 |{#DISKTYPE} |nvme |
-ROW |77 |119 |9 |{#DISKTYPE} |nvme |
-ROW |78 |120 |8 |{#THRESHOLD_LO_WARN}|^$ |
-ROW |79 |121 |8 |{#THRESHOLD_LO_CRIT}|^$ |
-ROW |80 |122 |8 |{#THRESHOLD_HI_WARN}|^$ |
-ROW |81 |123 |8 |{#THRESHOLD_HI_CRIT}|^$ |
-ROW |82 |124 |8 |{#THRESHOLD_LO_WARN}|^$ |
-ROW |83 |125 |8 |{#THRESHOLD_LO_CRIT}|^$ |
-ROW |84 |126 |8 |{#THRESHOLD_HI_WARN}|^$ |
-ROW |85 |127 |8 |{#THRESHOLD_HI_CRIT}|^$ |
-ROW |86 |128 |8 |{#THRESHOLD_LO_WARN}|^$ |
-ROW |87 |129 |8 |{#THRESHOLD_LO_CRIT}|^$ |
-ROW |88 |130 |8 |{#THRESHOLD_HI_WARN}|^$ |
-ROW |89 |131 |8 |{#THRESHOLD_HI_CRIT}|^$ |
-ROW |90 |132 |8 |{#FSTYPE} |3&pipe;4 |
+FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
+ROW |91 |139 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
+ROW |92 |140 |8 |{#NODE_STATE} |1 |
+ROW |93 |141 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |94 |141 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |95 |142 |8 |{#DISKTYPE} |nvme |
+ROW |96 |143 |9 |{#DISKTYPE} |nvme |
+ROW |97 |144 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |98 |144 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |99 |145 |8 |{#DISKTYPE} |nvme |
+ROW |100 |146 |9 |{#DISKTYPE} |nvme |
+ROW |101 |147 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |102 |148 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |103 |149 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |104 |150 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |105 |151 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |106 |152 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |107 |153 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |108 |154 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |109 |155 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |110 |156 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |111 |157 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |112 |158 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |113 |159 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |114 |160 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |115 |161 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
-ROW |113 |113 |1 |2 |Too many failed gRPC requests |
-ROW |114 |114 |0 |8 | |
-ROW |115 |115 |0 |2 |Self-test |
-ROW |116 |116 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |117 |117 |0 |8 | |
-ROW |118 |118 |0 |2 |Self-test |
-ROW |119 |119 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |120 |120 |1 |8 |Temperature is below the warning threshold |
-ROW |121 |121 |1 |8 |Temperature is below the critical threshold|
-ROW |122 |122 |1 |8 |Temperature is above the warning threshold |
-ROW |123 |123 |1 |8 |Temperature is above the critical threshold|
-ROW |124 |124 |1 |8 |Fan speed is below the warning threshold |
-ROW |125 |125 |1 |8 |Fan speed is below the critical threshold |
-ROW |126 |126 |1 |8 |Fan speed is above the warning threshold |
-ROW |127 |127 |1 |8 |Fan speed is above the critical threshold |
-ROW |128 |128 |1 |8 |Voltage is below the warning threshold |
-ROW |129 |129 |1 |8 |Voltage is below the critical threshold |
-ROW |130 |130 |1 |8 |Voltage is above the warning threshold |
-ROW |131 |131 |1 |8 |Voltage is above the critical threshold |
-ROW |132 |132 |0 |2 |Saved |
-ROW |133 |133 |1 |2 |{#SENSOR_LO_WARN} |
-ROW |134 |134 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |135 |135 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |136 |136 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |137 |137 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |138 |138 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |139 |139 |1 |2 |Too many failed gRPC requests |
+ROW |140 |140 |0 |2 |Number of replicas |
+ROW |141 |140 |0 |2 |Unhealthy replicas |
+ROW |142 |140 |0 |2 |Number of unhealthy replicas |
+ROW |143 |140 |0 |2 |Replication lag |
+ROW |144 |141 |0 |8 | |
+ROW |145 |142 |0 |2 |Self-test |
+ROW |146 |143 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |147 |144 |0 |8 | |
+ROW |148 |145 |0 |2 |Self-test |
+ROW |149 |146 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |150 |147 |1 |8 |Temperature is below the warning threshold |
+ROW |151 |148 |1 |8 |Temperature is below the critical threshold|
+ROW |152 |149 |1 |8 |Temperature is above the warning threshold |
+ROW |153 |150 |1 |8 |Temperature is above the critical threshold|
+ROW |154 |151 |1 |8 |Fan speed is below the warning threshold |
+ROW |155 |152 |1 |8 |Fan speed is below the critical threshold |
+ROW |156 |153 |1 |8 |Fan speed is above the warning threshold |
+ROW |157 |154 |1 |8 |Fan speed is above the critical threshold |
+ROW |158 |155 |1 |8 |Voltage is below the warning threshold |
+ROW |159 |156 |1 |8 |Voltage is below the critical threshold |
+ROW |160 |157 |1 |8 |Voltage is above the warning threshold |
+ROW |161 |158 |1 |8 |Voltage is above the critical threshold |
+ROW |162 |159 |0 |2 |Humidity |
+ROW |163 |160 |0 |2 |Humidity |
+ROW |164 |161 |0 |2 |Saved |
+ROW |165 |162 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |166 |163 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |167 |164 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |168 |165 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |169 |166 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |170 |167 |1 |2 |{#SENSOR_HI_DISAST} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
-ROW |113 |0 |
-ROW |114 |0 |
-ROW |115 |0 |
-ROW |116 |0 |
-ROW |117 |0 |
-ROW |118 |0 |
-ROW |119 |0 |
-ROW |120 |0 |
-ROW |121 |0 |
-ROW |122 |0 |
-ROW |123 |0 |
-ROW |124 |0 |
-ROW |125 |0 |
-ROW |126 |0 |
-ROW |127 |0 |
-ROW |128 |0 |
-ROW |129 |0 |
-ROW |130 |0 |
-ROW |131 |0 |
-ROW |132 |0 |
-ROW |133 |0 |
-ROW |134 |0 |
-ROW |135 |0 |
-ROW |136 |0 |
-ROW |137 |0 |
-ROW |138 |0 |
+ROW |139 |0 |
+ROW |140 |0 |
+ROW |141 |0 |
+ROW |142 |0 |
+ROW |143 |0 |
+ROW |144 |0 |
+ROW |145 |0 |
+ROW |146 |0 |
+ROW |147 |0 |
+ROW |148 |0 |
+ROW |149 |0 |
+ROW |150 |0 |
+ROW |151 |0 |
+ROW |152 |0 |
+ROW |153 |0 |
+ROW |154 |0 |
+ROW |155 |0 |
+ROW |156 |0 |
+ROW |157 |0 |
+ROW |158 |0 |
+ROW |159 |0 |
+ROW |160 |0 |
+ROW |161 |0 |
+ROW |162 |0 |
+ROW |163 |0 |
+ROW |164 |0 |
+ROW |165 |0 |
+ROW |166 |0 |
+ROW |167 |0 |
+ROW |168 |0 |
+ROW |169 |0 |
+ROW |170 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
-ROW |113 |0 |
-ROW |114 |1 |
-ROW |115 |1 |
-ROW |116 |1 |
-ROW |117 |1 |
-ROW |118 |1 |
-ROW |119 |1 |
-ROW |120 |1 |
-ROW |121 |1 |
-ROW |122 |1 |
-ROW |123 |1 |
-ROW |124 |1 |
-ROW |125 |1 |
-ROW |126 |1 |
-ROW |127 |1 |
-ROW |128 |1 |
-ROW |129 |1 |
-ROW |130 |1 |
-ROW |131 |1 |
-ROW |132 |1 |
-ROW |133 |1 |
-ROW |134 |1 |
-ROW |135 |1 |
-ROW |136 |1 |
-ROW |137 |1 |
-ROW |138 |1 |
+ROW |139 |0 |
+ROW |140 |0 |
+ROW |141 |0 |
+ROW |142 |0 |
+ROW |143 |1 |
+ROW |144 |1 |
+ROW |145 |1 |
+ROW |146 |1 |
+ROW |147 |1 |
+ROW |148 |1 |
+ROW |149 |1 |
+ROW |150 |1 |
+ROW |151 |1 |
+ROW |152 |1 |
+ROW |153 |1 |
+ROW |154 |1 |
+ROW |155 |1 |
+ROW |156 |1 |
+ROW |157 |1 |
+ROW |158 |1 |
+ROW |159 |1 |
+ROW |160 |1 |
+ROW |161 |1 |
+ROW |162 |1 |
+ROW |163 |1 |
+ROW |164 |1 |
+ROW |165 |1 |
+ROW |166 |1 |
+ROW |167 |1 |
+ROW |168 |1 |
+ROW |169 |1 |
+ROW |170 |1 |