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
path: root/create
diff options
context:
space:
mode:
authorAndris Zeila <andris.zeila@zabbix.com>2021-04-30 09:54:36 +0300
committerAndris Zeila <andris.zeila@zabbix.com>2021-04-30 09:54:36 +0300
commitaa3cc7255b8949a6de3559f2402496d16e4ee578 (patch)
tree56dbe09d9a136c5aeef17ea126ab12b2d58007f7 /create
parent5359e133a4cd3620e75bb5f992db9d888a3b5ff7 (diff)
parent83691c877e373dbeff1d441b31462fc3adbbbc3b (diff)
.......... [ZBXNEXT-6452] merged branch 'master' of ssh://git.zabbix.lan:7999/zbx/zabbix into feature/ZBXNEXT-6452-5.3
Diffstat (limited to 'create')
-rw-r--r--create/src/data.tmpl4
-rw-r--r--create/src/schema.tmpl44
-rw-r--r--create/src/templates.tmpl29614
3 files changed, 16671 insertions, 12991 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index 3c1d713e4a5..b73763eae6c 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -66,7 +66,7 @@ ROW |5 |4 |Mattermost | | |
ROW |6 |4 |Opsgenie | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Media = {&eol; params: {},&eol; name: '',&eol; labels: [],&eol; HTTPProxy: '',&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Media.params = params;&eol; Media.params.api += Media.params.api.endsWith('/') ? '' : '/';&eol; Media.params.web += Media.params.web.endsWith('/') ? '' : '/';&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; if (typeof HTTPProxy !== 'undefined' && HTTPProxy.trim() !== '') {&eol; Media.HTTPProxy = HTTPProxy;&eol; }&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol;&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag === 'string') {&eol; label = (tag.tag + (typeof tag.value !== 'undefined'&eol; && tag.value !== '' ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; Media.labels.push(label);&eol; }&eol; });&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse "event_tags_json" param');&eol; }&eol; }&eol; },&eol;&eol; request: function (method, query, data, allow_404) {&eol; if (typeof(allow_404) === 'undefined') {&eol; allow_404 = false;&eol; }&eol;&eol; ['api', 'token'].forEach(function (field) {&eol; if (typeof Media.params !== 'object' &pipe;&pipe; typeof Media.params[field] === 'undefined'&eol; &pipe;&pipe; Media.params[field] === '') {&eol; throw 'Required ' + Media.name + ' param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Media.params.api + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: ' + Media.params.token);&eol; request.setProxy(Media.HTTPProxy);&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Sending request: ' +&eol; url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ ' + Media.name + ' Webhook ] Failed to parse response.');&eol; response = null;&eol; }&eol; }&eol;&eol; if ((request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300)&eol; && (!allow_404 &pipe;&pipe; request.getStatus() !== 404)) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null) {&eol; if (typeof response.errors === 'object' && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (typeof response.errorMessages === 'object' && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol; else if (typeof response.message === 'string') {&eol; message += ': ' + response.message;&eol; }&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getAlertId: function (requestId) {&eol; do {&eol; resp = Media.request('get', 'requests/' + requestId, undefined, true);&eol; }&eol; while (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined'&eol; &pipe;&pipe; resp.response.data.success === false);&eol;&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.data === 'undefined') {&eol; throw 'Cannot get ' + Media.name + ' issue ID. Check debug log for more information.';&eol; }&eol;&eol; return resp;&eol; }&eol;};&eol;&eol;try {&eol; var result = {tags: {}},&eol; params = JSON.parse(value),&eol; media = {},&eol; fields = {},&eol; resp = {},&eol; responders = [],&eol; tags = [],&eol; required_params = [&eol; 'alert_subject',&eol; 'alert_message',&eol; 'event_id',&eol; 'event_source',&eol; 'event_value',&eol; 'event_update_status',&eol; 'opsgenie_api',&eol; 'opsgenie_web',&eol; 'opsgenie_token'&eol; ],&eol; severities = [&eol; 'not_classified',&eol; 'information',&eol; 'warning',&eol; 'average',&eol; 'high',&eol; 'disaster',&eol; 'resolved',&eol; 'default'&eol; ],&eol; priority;&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (required_params.indexOf(key) !== -1 && params[key].trim() === '') {&eol; throw 'Parameter "' + key + '" cannot be empty.';&eol; }&eol; if (key.startsWith('opsgenie_')) {&eol; media[key.substring(9)] = params[key];&eol; }&eol; });&eol;&eol; // Possible values of event_source:&eol; // 0 - Trigger, 1 - Discovery, 2 - Autoregistration, 3 - Internal.&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Check event_value for trigger-based and internal events.&eol; // Possible values: 1 for problem, 0 for recovering&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_update_status only for trigger-based events.&eol; // Possible values: 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if (params.event_source === '0' && params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check event_id for a numeric value.&eol; if (isNaN(parseInt(params.event_id)) &pipe;&pipe; params.event_id < 1) {&eol; throw 'Incorrect "event_id" parameter given: ' + params.event_id + '\nMust be a positive number.';&eol; }&eol;&eol; if ((params.event_source === '1' &pipe;&pipe; params.event_source === '2') && params.event_value === '0') {&eol; throw 'Recovery operations are supported only for Trigger and Internal actions.';&eol; }&eol;&eol; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['severity_' + severities[params.event_nseverity]];&eol; params.zbxurl = params.zbxurl + (params.zbxurl.endsWith('/') ? '' : '/');&eol;&eol; Media.name = 'Opsgenie';&eol; Media.setParams(media);&eol; Media.params.token = 'GenieKey ' + Media.params.token;&eol; Media.setProxy(params.HTTPProxy);&eol; Media.setTags(params.event_tags_json); // Set Media.labels&eol;&eol; // Create an issue.&eol; // Numeric value of the event that triggered an action (1 for problem, 0 for recovering).&eol; // Numeric value of of the problem update status. Possible values:&eol; // 0 - Webhook was called because of problem/recovery event, 1 - Update operation.&eol; if ((params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0)&eol; &pipe;&pipe; (params.event_source == 3 && params.event_value == 1)&eol; &pipe;&pipe; params.event_source == 1 &pipe;&pipe; params.event_source == 2) {&eol; fields.message = params.alert_subject;&eol; fields.alias = params.event_id;&eol; fields.description = params.alert_message;&eol; fields.priority = priority;&eol; fields.source = 'Zabbix';&eol;&eol; if (params.event_source === '0') {&eol; fields.details = {&eol; 'Zabbix server': params.zbxurl,&eol; Problem: params.zbxurl + 'tr_events.php?triggerid=' + params.trigger_id + '&eventid=' + params.event_id&eol; };&eol; }&eol; else {&eol; fields.details = {'Zabbix server': params.zbxurl};&eol; }&eol;&eol; if (typeof params.opsgenie_teams === 'string') {&eol; responders = params.opsgenie_teams.split(',');&eol; fields.responders = responders.map(function(team) {&eol; return {type: 'team', name: team.trim()};&eol; });&eol; }&eol;&eol; fields.tags = Media.labels;&eol; if (typeof params.opsgenie_tags === 'string') {&eol; tags = params.opsgenie_tags.split(',');&eol; tags.forEach(function(item) {&eol; fields.tags.push(item.trim());&eol; });&eol; }&eol;&eol; resp = Media.request('post', '', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot create ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; if (params.event_source == 0 && params.event_value == 1 && params.event_update_status == 0) {&eol; result.tags.__zbx_ops_issuekey = resp.response.data.alertId;&eol; result.tags.__zbx_ops_issuelink = Media.params.web + 'alert/detail/' + resp.response.data.alertId;&eol; }&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol; // Update a created issue.&eol; else {&eol; fields.user = (params.event_value != 0) ? params.zbxuser : '';&eol; fields.note = params.alert_message;&eol;&eol; resp = Media.request('post', params.event_id + '/notes?identifierType=alias', fields);&eol; if (typeof resp.response !== 'object' &pipe;&pipe; typeof resp.response.result === 'undefined') {&eol; throw 'Cannot update ' + Media.name + ' issue. Check debug log for more information.';&eol; }&eol;&eol; if (resp.status === 202) {&eol; resp = Media.getAlertId(resp.response.requestId);&eol; }&eol; else {&eol; throw Media.name + ' response code is unexpected. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ ' + Media.name + ' Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_ops_issuelink} |Opsgenie: {EVENT.TAGS.__zbx_ops_issuekey} |Please refer to https://docs.opsgenie.com/docs/alert-api and https://www.zabbix.com/documentation/5.4/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add dedicated user with media type "Opsgenie".&eol;Change the values of the variables opsgenie_api (https://api.opsgenie.com/v2/alerts or https://api.eu.opsgenie.com/v2/alerts),&eol;opsgenie_web (for example, https://myzabbix.app.opsgenie.com), opsgenie_token. |
ROW |7 |4 |PagerDuty | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |try {&eol;&eol; var params = JSON.parse(value),&eol; req = new HttpRequest(),&eol; fields = {},&eol; resp = '';&eol;&eol; // Correspondence between the PagerDuty and Zabbix severity level&eol; var severityMapping = [&eol; 'info', // Not classified&eol; 'info', // Information&eol; 'warning', // Warning&eol; 'warning', // Average&eol; 'error', // High&eol; 'critical' // Disaster&eol; ];&eol;&eol; if (!severityMapping[params.severity]) {&eol; params.severity = '0';&eol; }&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if (isNaN(parseInt(params.eventid)) &pipe;&pipe; params.eventid < 1) {&eol; throw 'incorrect value for variable "eventid". The value must be a positive number.';&eol; }&eol; if (params.eventname.length < 1) {&eol; throw 'incorrect value for variable "eventname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.severity)) &pipe;&pipe; (params.severity < 0 && params.severity > 5)) {&eol; throw 'incorrect value for variable "severity". The value must be a number 0..5.';&eol; }&eol;&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; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.eventvalue !== '0' && params.eventvalue !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "eventvalue" parameter given: "' + params.eventvalue + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source === '0') {&eol; if (params.hostname.length < 1) {&eol; throw 'incorrect value for variable "hostname". The value must be a non-empty string.';&eol; }&eol; if (isNaN(parseInt(params.triggerid)) &pipe;&pipe; params.triggerid < 1) {&eol; throw 'incorrect value for variable "triggerid". The value must be a positive number.';&eol; }&eol; if (params.eventack != 'Yes' && params.eventack != 'No') {&eol; throw 'incorrect value for variable "eventack". The value must be Yes or No.';&eol; }&eol; if (isNaN(parseInt(params.eventupdate)) &pipe;&pipe; (params.eventupdate < 0 &pipe;&pipe; params.eventupdate > 1)) {&eol; throw 'incorrect value for variable "eventupdate". The value must be 0 or 1.';&eol; }&eol; }&eol;&eol;&eol;&eol; req.addHeader('Content-Type: application/json');&eol;&eol; fields.routing_key = params.token;&eol; fields.dedup_key = params.eventid;&eol;&eol; if (((params.eventvalue == 1) && (params.eventupdate == 0)) &pipe;&pipe; params.event_source !== '0') {&eol; fields.event_action = 'trigger';&eol; fields.payload = {&eol; summary: params.eventname,&eol; source: (params.event_source === '1') ? 'Discovery' : params.hostname + ' : ' + params.hostip,&eol; severity: severityMapping[params.severity],&eol; };&eol; &eol; if (params.event_source === '0') {&eol; fields.payload.custom_details = {&eol; 'Event date': params.eventdate,&eol; 'Event time': params.eventtime,&eol; 'Trigger description': params.triggerdesc,&eol; 'Trigger opdata': params.triggeropdata,&eol; 'Event tags': params.eventtags,&eol; 'Event host': params.hostname,&eol; 'Event host ip': params.hostip&eol; };&eol; fields.links = [{&eol; href: params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid,&eol; text: 'Event link'&eol; }];&eol; }&eol; else {&eol; fields.payload.custom_details = {&eol; 'Alert message': params.alert_message&eol; };&eol; }&eol;&eol; fields.client = 'Zabbix';&eol; fields.client_url = params.url;&eol; }&eol; else if ((params.eventvalue == 1) && (params.eventupdate == 1) && (params.eventack == 'Yes'))&eol; fields.event_action = 'acknowledge';&eol; else if (params.eventvalue == 0)&eol; fields.event_action = 'resolve';&eol; else&eol; throw 'incorrect values. Update message without ack will not be sent.';&eol;&eol; Zabbix.log(4, '[PagerDuty Webhook] Sending request:' + JSON.stringify(fields));&eol; resp = req.post('https://events.pagerduty.com/v2/enqueue',&eol; JSON.stringify(fields)&eol; );&eol; Zabbix.log(4, '[PagerDuty Webhook] Receiving response:' + resp);&eol;&eol; try {&eol; resp = JSON.parse(resp);&eol; }&eol; catch (error) {&eol; throw 'incorrect response. PagerDuty returned a non-JSON object.';&eol; }&eol;&eol; if (req.getStatus() != 202) {&eol; if (typeof resp === 'object' && typeof resp.errors === 'object' && typeof resp.errors[0] === 'string') {&eol; throw resp.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error.';&eol; }&eol; }&eol;&eol; if (resp.status != 'success') {&eol; throw 'Unknown error.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[PagerDuty Webhook] Notification failed : ' + error);&eol; throw 'PagerDuty notification failed : ' + error;&eol;}|30s |0 |0 | | |Please refer to https://v2.developer.pagerduty.com/docs/send-an-event-events-api-v2 and https://www.zabbix.com/documentation/5.4/manual/config/notifications/media/webhook#example_scripts.&eol; &eol;Set global macro {$ZABBIX.URL} with your Zabbix server URL.&eol;Add a dedicated user with the media type "PagerDuty" and place the integration key in the "token" parameter to integrate into the service. |
ROW |8 |4 |Pushover | | | | | | | |0 |25 |0 |0 |0 |0 | |0 |3 |10s |1 |try {&eol; var params = JSON.parse(value),&eol; request = new HttpRequest(),&eol; data,&eol; response,&eol; severities = [&eol; {name: 'not_classified', color: '#97AAB3'},&eol; {name: 'information', color: '#7499FF'},&eol; {name: 'warning', color: '#FFC859'},&eol; {name: 'average', color: '#FFA059'},&eol; {name: 'high', color: '#E97659'},&eol; {name: 'disaster', color: '#E45959'},&eol; {name: 'resolved', color: '#009900'},&eol; {name: 'default', color: '#000000'}&eol; ],&eol; priority;&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (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; if ([0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity)) === -1) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; if (params.event_value === '0') {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; priority = params['priority_' + severities[params.event_nseverity].name] &pipe;&pipe; params.priority_default;&eol;&eol; if (isNaN(priority) &pipe;&pipe; priority < -2 &pipe;&pipe; priority > 2) {&eol; throw '"priority" should be -2..2';&eol; }&eol;&eol; if (params.event_source === '0' && isNaN(params.triggerid)) {&eol; throw 'field "triggerid" is not a number';&eol; }&eol;&eol; if (isNaN(params.eventid)) {&eol; throw 'field "eventid" is not a number';&eol; }&eol;&eol; if (typeof params.message !== 'string' &pipe;&pipe; params.message.trim() === '') {&eol; throw 'field "message" cannot be empty';&eol; }&eol;&eol; data = {&eol; token: params.token,&eol; user: params.user,&eol; title: params.title,&eol; message: params.message,&eol; url: (params.event_source === '0') &eol; ? params.url + '/tr_events.php?triggerid=' + params.triggerid + '&eventid=' + params.eventid&eol; : params.url,&eol; url_title: params.url_title,&eol; priority: priority&eol; };&eol;&eol; if (priority == 2) {&eol; if (isNaN(params.retry) &pipe;&pipe; params.retry < 30) {&eol; throw 'field "retry" should be a number with value of at least 30 if "priority" is set to 2';&eol; }&eol;&eol; if (isNaN(params.expire) &pipe;&pipe; params.expire > 10800) {&eol; throw 'field "expire" should be a number with value of at most 10800 if "priority" is set to 2';&eol; }&eol;&eol; data.retry = params.retry;&eol; data.expire = params.expire;&eol; }&eol;&eol; data = JSON.stringify(data);&eol; Zabbix.log(4, '[ Pushover Webhook ] Sending request: ' + params.endpoint + '\n' + data);&eol;&eol; request.addHeader('Content-Type: application/json');&eol; response = request.post(params.endpoint, data);&eol;&eol; Zabbix.log(4, '[ Pushover Webhook ] Received response with status code ' + request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Pushover Webhook ] Failed to parse response received from Pushover');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() != 200 &pipe;&pipe; response === null &pipe;&pipe; typeof response !== 'object' &pipe;&pipe; response.status !== 1) {&eol; if (response !== null && typeof response === 'object' && typeof response.errors === 'object'&eol; && typeof response.errors[0] === 'string') {&eol; throw response.errors[0];&eol; }&eol; else {&eol; throw 'Unknown error. Check debug log for more information.';&eol; }&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Pushover Webhook ] Pushover notification failed: ' + error);&eol; throw 'Pushover notification failed: ' + error;&eol;}|30s |0 |0 | | |Please refer to setup guide here: https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/templates/media/pushover&eol;&eol;Set token parameter with to your Pushover application key.&eol;When assigning Pushover media to the Zabbix user - add user key into send to field. |
-ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new HttpRequest();&eol;&eol; req.addHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol;&eol; var resp = JSON.parse(req.get(&eol; '{0}?token={1}&channel={2}&message_ts={3}'.format(&eol; Slack.getPermalink,&eol; params.bot_token,&eol; channelId,&eol; messageTimestamp&eol; )&eol; ));&eol;&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function getTagValue(event_tags, key) {&eol; var pattern = new RegExp('(' + key + ':.+)');&eol; var tag_value = event_tags&eol; .split(',')&eol; .filter(function (v) {&eol; return v.match(pattern);&eol; })&eol; .map(function (v) {&eol; return v.split(':')[1];&eol; })[0]&eol; &pipe;&pipe; 0;&eol;&eol; return tag_value;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = getTagValue(params.event_tags, 'channel_id');&eol; fields.text = '';&eol; fields.ts = getTagValue(params.event_tags, 'message_ts');&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.status != 200 && !resp.ok) {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new HttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
+ROW |9 |4 |Slack | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', '#7499FF', '#FFC859',&eol; '#FFA059', '#E97659', '#E45959'&eol;];&eol;&eol;var RESOLVE_COLOR = '#009900';&eol;&eol;var SLACK_MODE_HANDLERS = {&eol; alarm: handlerAlarm,&eol; event: handlerEvent&eol;};&eol;&eol;&eol;if (!String.prototype.format) {&eol; String.prototype.format = function() {&eol; var args = arguments;&eol;&eol; return this.replace(/{(\d+)}/g, function(match, number) {&eol; return number in args&eol; ? args[number]&eol; : match&eol; ;&eol; });&eol; };&eol;}&eol;&eol;function isEventProblem(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 0&eol; ;&eol;}&eol;&eol;function isEventUpdate(params) {&eol; return params.event_value == 1&eol; && params.event_update_status == 1&eol; ;&eol;}&eol;&eol;function isEventResolve(params) {&eol; return params.event_value == 0;&eol;}&eol;&eol;function getPermalink(channelId, messageTimestamp) {&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/x-www-form-urlencoded; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var query = '{0}?channel={1}&message_ts={2}'.format(&eol; Slack.getPermalink,&eol; encodeURIComponent(channelId),&eol; encodeURIComponent(messageTimestamp)),&eol; resp = JSON.parse(req.get(query));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw 'message was created, but getting message link was failed with reason "' + resp.error + '"';&eol; }&eol;&eol; return resp.permalink;&eol;}&eol;&eol;function createProblemURL(zabbix_url, triggerid, eventid, event_source) {&eol; var problem_url = '';&eol; if (event_source === '0') {&eol; problem_url = '{0}/tr_events.php?triggerid={1}&eventid={2}'&eol; .format(&eol; zabbix_url,&eol; triggerid,&eol; eventid&eol; );&eol; }&eol; else {&eol; problem_url = zabbix_url;&eol; }&eol;&eol; return problem_url;&eol;}&eol;&eol;function handlerAlarm(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user,&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__message_ts = resp.ts;&eol; result.tags.__channel_id = resp.channel;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.thread_ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; true&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.channel = params.channel_id;&eol; fields.text = '';&eol; fields.ts = params.message_ts;&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.chatUpdate, JSON.stringify(fields)));&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function handlerEvent(params) {&eol; var fields = {&eol; channel: params.channel,&eol; as_user: params.slack_as_user&eol; };&eol;&eol; if (isEventProblem(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_date,&eol; params.event_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; var resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; result.tags.__channel_name = params.channel;&eol; result.tags.__message_link = getPermalink(resp.channel, resp.ts);&eol;&eol; }&eol; else if (isEventUpdate(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; SEVERITY_COLORS[params.event_nseverity] &pipe;&pipe; 0,&eol; params.event_update_date,&eol; params.event_update_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source),&eol; false&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol;&eol; }&eol; else if (isEventResolve(params)) {&eol; fields.attachments = [&eol; createMessage(&eol; RESOLVE_COLOR,&eol; params.event_recovery_date,&eol; params.event_recovery_time,&eol; createProblemURL(params.zabbix_url, params.trigger_id, params.event_id, params.event_source)&eol; )&eol; ];&eol;&eol; resp = JSON.parse(req.post(Slack.postMessage, JSON.stringify(fields)));&eol;&eol; if (req.getStatus() != 200 &pipe;&pipe; !resp.ok &pipe;&pipe; resp.ok === 'false') {&eol; throw resp.error;&eol; }&eol; }&eol;}&eol;&eol;function createMessage(&eol; event_severity_color,&eol; event_date,&eol; event_time,&eol; problem_url,&eol; isShort,&eol; messageText&eol;) {&eol; var message = {&eol; fallback: params.alert_subject,&eol; title: params.alert_subject,&eol; color: event_severity_color,&eol; title_link: problem_url,&eol; pretext: messageText &pipe;&pipe; '',&eol;&eol; fields: [&eol; {&eol; title: 'Host',&eol; value: '{0} [{1}]'.format(params.host_name, params.host_conn),&eol; short: true&eol; },&eol; {&eol; title: 'Event time',&eol; value: '{0} {1}'.format(event_date, event_time),&eol; short: true&eol; }&eol; ],&eol; };&eol;&eol; if (params.event_source === '0') {&eol; message.fields.push(&eol; {&eol; title: 'Severity',&eol; value: params.event_severity,&eol; short: true&eol; },&eol; {&eol; title: 'Opdata',&eol; value: params.event_opdata,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (!isShort && params.event_source === '0') {&eol; message['actions'] = [&eol; {&eol; type: 'button',&eol; text: 'Open in Zabbix',&eol; url: problem_url&eol; }&eol; ];&eol;&eol; message.fields.push(&eol; {&eol; title: 'Event tags',&eol; value: params.event_tags.replace(/__.+?:(.+?,&pipe;.+)/g, '') &pipe;&pipe; 'None',&eol; short: true&eol; },&eol; {&eol; title: 'Trigger description',&eol; value: params.trigger_description,&eol; short: true&eol; }&eol; );&eol; }&eol;&eol; if (params.event_source !== '0' &pipe;&pipe; params.event_update_status === '1') {&eol; message.fields.push(&eol; {&eol; title: 'Details',&eol; value: params.alert_message,&eol; short: false&eol; }&eol; );&eol; }&eol;&eol; return message;&eol;}&eol;&eol;function validateParams(params) {&eol; if (typeof params.bot_token !== 'string' &pipe;&pipe; params.bot_token.trim() === '') {&eol; throw 'Field "bot_token" cannot be empty';&eol; }&eol;&eol; if (typeof params.channel !== 'string' &pipe;&pipe; params.channel.trim() === '') {&eol; throw 'Field "channel" cannot be empty';&eol; }&eol;&eol; if (isNaN(params.event_id)) {&eol; throw 'Field "event_id" is not a number';&eol; }&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; if (params.event_source !== '0') {&eol; params.event_nseverity = '0';&eol; params.event_severity = 'Not classified';&eol; params.event_update_status = '0';&eol; params.slack_mode = 'event';&eol; }&eol;&eol; if (params.event_source === '1' &pipe;&pipe; params.event_source === '2') {&eol; params.event_value = '1';&eol; }&eol;&eol; if (params.event_source === '1') {&eol; params.host_name = params.discovery_host_dns;&eol; params.host_ip = params.discovery_host_ip;&eol; }&eol;&eol; if (!~[0, 1, 2, 3, 4, 5].indexOf(parseInt(params.event_nseverity))) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; if (typeof params.event_severity !== 'string' &pipe;&pipe; params.event_severity.trim() === '') {&eol; throw 'Field "event_severity" cannot be empty';&eol; }&eol;&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value !== '0' && params.event_value !== '1') {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (typeof params.host_conn !== 'string' &pipe;&pipe; params.host_conn.trim() === '') {&eol; throw 'Field "host_conn" cannot be empty';&eol; }&eol;&eol; if (typeof params.host_name !== 'string' &pipe;&pipe; params.host_name.trim() === '') {&eol; throw 'Field "host_name" cannot be empty';&eol; }&eol;&eol; if (!~['true', 'false'].indexOf(params.slack_as_user.toLowerCase())) {&eol; throw 'Incorrect "slack_as_user" parameter given: ' + params.slack_as_user + '\nMust be "true" or "false".';&eol; }&eol;&eol; if (!~['alarm', 'event'].indexOf(params.slack_mode)) {&eol; throw 'Incorrect "slack_mode" parameter given: ' + params.slack_mode + '\nMust be "alarm" or "event".';&eol; }&eol;&eol; if (isNaN(params.trigger_id) && params.event_source === '0') {&eol; throw 'field "trigger_id" is not a number';&eol; }&eol;&eol; if (typeof params.zabbix_url !== 'string' &pipe;&pipe; params.zabbix_url.trim() === '') {&eol; throw 'Field "zabbix_url" cannot be empty';&eol; }&eol;&eol; if (!/^(http&pipe;https):\/\/.+/.test(params.zabbix_url)) {&eol; throw 'Field "zabbix_url" must contain a schema';&eol; }&eol;}&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; validateParams(params);&eol;&eol; var req = new HttpRequest(),&eol; result = {tags: {}};&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json; charset=utf-8');&eol; req.addHeader('Authorization: Bearer ' + params.bot_token);&eol;&eol; var slack_endpoint = 'https://slack.com/api/';&eol;&eol; var Slack = {&eol; postMessage: slack_endpoint + 'chat.postMessage',&eol; getPermalink: slack_endpoint + 'chat.getPermalink',&eol; chatUpdate: slack_endpoint + 'chat.update'&eol; };&eol;&eol; params.slack_mode = params.slack_mode.toLowerCase();&eol; params.slack_mode = params.slack_mode in SLACK_MODE_HANDLERS&eol; ? params.slack_mode&eol; : 'alarm';&eol;&eol; SLACK_MODE_HANDLERS[params.slack_mode](params);&eol;&eol; if (params.event_source === '0') {&eol; return JSON.stringify(result);&eol; }&eol; else {&eol; return 'OK';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ Slack Webhook ] Slack notification failed : ' + error);&eol; throw 'Slack notification failed : ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__message_link} |Open in Slack: {EVENT.TAGS.__channel_name} | |
ROW |10 |4 |Discord | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900' // Resolved.&eol;];&eol;&eol;function stringTruncate(str, len) {&eol; return str.length > len ? str.substring(0, len - 3) + '...' : str;&eol;}&eol;&eol;try {&eol; Zabbix.log(4, '[ Discord Webhook ] Executed with params: ' + value);&eol;&eol; var params = JSON.parse(value);&eol;&eol; if (!params.discord_endpoint) {&eol; throw 'Cannot get discord_endpoint';&eol; }&eol; else {&eol; params.discord_endpoint = params.discord_endpoint.replace('/api/', '/api/v7/') + '?wait=True';&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set params to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; params.event_nseverity = '0';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; throw 'Incorrect "event_nseverity" parameter given: ' + params.event_nseverity + '\nMust be 0-5.';&eol; }&eol;&eol; var color = parseInt(SEVERITY_COLORS[params.event_nseverity].replace('#', ''), 16),&eol; fields = [],&eol; body = {&eol; embeds: [&eol; {&eol; color: color &pipe;&pipe; 0,&eol; url: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' + params.trigger_id +&eol; '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; };&eol;&eol; // Default message from {ALERT.MESSAGE}.&eol; if (params.use_default_message.toLowerCase() == 'true') {&eol; body.embeds[0].title = stringTruncate(params.alert_subject, 256);&eol; body.embeds[0].description = stringTruncate(params.alert_message, 2048);&eol; }&eol; else {&eol; fields.push(&eol; {&eol; name: 'Host',&eol; value: params.host_name + ' [' + params.host_ip + ']'&eol; }&eol; );&eol;&eol; // Resolved message.&eol; if (params.event_value == 0 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('OK: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Problem message.&eol; else if (params.event_value == 1 && params.event_update_status == 0) {&eol; body.embeds[0].title = stringTruncate('PROBLEM: ' + params.event_name, 256);&eol; fields.push(&eol; {&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; // Update message.&eol; else if (params.event_update_status == 1) {&eol; body.embeds[0].title = stringTruncate('UPDATE: ' + params.event_name, 256);&eol; body.embeds[0].description = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.embeds[0].description += ' Comment:\n>>> ' + params.event_update_message;&eol; }&eol;&eol; body.embeds[0].description = stringTruncate(body.embeds[0].description, 2048);&eol;&eol; fields.push(&eol; {&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date,&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; fields.push(&eol; {&eol; name: 'Severity',&eol; value: params.event_severity,&eol; inline: 'True'&eol; }&eol; );&eol;&eol; if (params.event_opdata) {&eol; fields.push(&eol; {&eol; name: 'Operational data',&eol; value: stringTruncate(params.event_opdata, 1024),&eol; inline: 'True'&eol; }&eol; );&eol; }&eol;&eol; if (params.event_value == 1 && params.event_update_status == 0 && params.trigger_description) {&eol; fields.push(&eol; {&eol; name: 'Trigger description',&eol; value: stringTruncate(params.trigger_description, 1024)&eol; }&eol; );&eol; }&eol;&eol; body.embeds[0].footer = {&eol; text: 'Event ID: ' + params.event_id&eol; };&eol;&eol; if (params.event_tags) {&eol; body.embeds[0].footer.text += '\nEvent tags: ' + params.event_tags;&eol; }&eol; body.embeds[0].footer.text = stringTruncate(body.embeds[0].footer.text, 2048);&eol; }&eol;&eol; if (fields.length > 0) {&eol; body.embeds[0].fields = fields;&eol; }&eol;&eol; var req = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; req.setProxy(params.HTTPProxy);&eol; }&eol;&eol; req.addHeader('Content-Type: application/json');&eol;&eol; var resp = req.post(params.discord_endpoint, JSON.stringify(body)),&eol; data = JSON.parse(resp);&eol;&eol; Zabbix.log(4, '[ Discord Webhook ] JSON: ' + JSON.stringify(body));&eol; Zabbix.log(4, '[ Discord Webhook ] Response: ' + resp);&eol;&eol; if (data.id) {&eol; return resp;&eol; }&eol; else {&eol; var message = ((typeof data.message === 'string') ? data.message : 'Unknown error');&eol;&eol; Zabbix.log(3, '[ Discord Webhook ] FAILED with response: ' + resp);&eol; throw message + '. For more details check zabbix server log.';&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Discord Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
ROW |11 |4 |SIGNL4 | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |// SIGNL4 Webhook&eol;try {&eol; var response,&eol; payload,&eol; params = JSON.parse(value),&eol; endpoint = 'https://connect.signl4.com/webhook/',&eol; request = new HttpRequest();&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy.trim() !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; if (typeof params.teamsecret === 'string' && params.teamsecret.trim() !== '') {&eol; endpoint += params.teamsecret;&eol; delete params.teamsecret;&eol; }&eol; else {&eol; throw 'The team secret of your SIGNL4 team cannot be empty.';&eol; }&eol;&eol; if (typeof params.Severity === 'string' && params.Severity === '{EVENT.SEVERITY}') {&eol; params.Severity = 'Not classified';&eol; }&eol;&eol;if (typeof params.User === 'string' && params.User === '{USER.FULLNAME}') {&eol; params.User = '';&eol; }&eol;&eol;if (typeof params.Event_Update_Action === 'string' && params.Event_Update_Action === '{EVENT.UPDATE.ACTION}') {&eol; params.Event_Update_Action = '';&eol; }&eol;&eol;// Assemble X-S4-ExternalID for two-way integration&eol;// Format: "ZabbixEventID: 222 ZabbixURL: https://your-zabbix-server/zabbix/"&eol;params['X-S4-ExternalID'] = 'ZabbixEventID: ' + params.Event_ID;&eol;if (typeof params.Zabbix_URL === 'string' && params.Zabbix_URL.indexOf('http') == 0) {&eol;// Make sure the URL ends with '/'&eol;if (params.Zabbix_URL.charAt(params.Zabbix_URL.length - 1) != '/') {&eol;params.Zabbix_URL = params.Zabbix_URL + '/';&eol;}&eol;&eol;params['X-S4-ExternalID'] = params['X-S4-ExternalID'] + ' ZabbixURL: ' + params.Zabbix_URL;&eol;&eol;// Add Link parameter&eol;params['Link'] = params.Zabbix_URL + "tr_events.php?triggerid="+params.Trigger_ID + "&eventid=" + params.Event_ID;&eol;}&eol;&eol;// Check if this is a new problem or a recovery&eol;if (params.Trigger_Status == 'OK') {&eol;params['X-S4-Status'] = 'resolved';&eol;}&eol;else {&eol;params['X-S4-Status'] = 'new';&eol;}&eol;&eol; payload = JSON.stringify(params);&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Sending request: ' + payload);&eol;&eol; request.addHeader('Content-Type: application/json');&eol; response = request.post(endpoint, 'payload=' + payload);&eol;&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] Received response with status code ' +&eol; request.getStatus() + '\n' + response&eol; );&eol;&eol; if (request.getStatus() !== 201) {&eol; throw 'Request failed with status code ' + request.getStatus() +&eol; '. Check debug log for more information.';&eol; }&eol;&eol; return 'OK';&eol;}&eol;catch (error) {&eol; Zabbix.log(4, '[ SIGNL4 Webhook ] ERROR: ' + error);&eol;&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | |SIGNL4 is a mobile alert notification app for powerful alerting, alert management and mobile assignment of work items. It offers alerting via app push, SMS and voice calls including escalations, tracking, and duty scheduling.&eol;&eol;Get the app at https://www.signl4.com.&eol;&eol;Find out more including an integration video here: https://www.signl4.com/blog/portfolio_item/zabbix-mobile-alert-notification-duty-schedule-escalation/ |
ROW |12 |4 |Jira | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined'&eol; && !tag.tag.startsWith('__zbx')) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object') {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; break;&eol;&eol; case 'option':&eol; data.fields[field] = {value: fields[field]};&eol; break;&eol;&eol; case 'array':&eol; if (schema[field].schema.items === 'option') {&eol; data.fields[field] = [{value: fields[field]}];&eol; }&eol; else {&eol; data.fields[field] = [fields[field]];&eol; }&eol; break;&eol;&eol; default:&eol; data.fields[field] = fields[field];&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new HttpRequest();&eol;&eol; request.addHeader('Content-Type: application/json');&eol; request.addHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.setProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.log(4, '[ Jira Webhook ] Received response with status code ' + request.getStatus() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.getStatus() < 200 &pipe;&pipe; request.getStatus() >= 300) {&eol; var message = 'Request failed with status code ' + request.getStatus();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.getStatus(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; encodeURIComponent(Jira.params.project_key) + '&issuetypeNames=' +&eol; encodeURIComponent(Jira.params.issue_type));&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + encodeURIComponent(Jira.params.issue_key), Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + encodeURIComponent(Jira.params.issue_key) + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
@@ -598,6 +598,8 @@ ROW |529 |29 |send_to
ROW |530 |29 |telauto |true |
ROW |531 |29 |text |{ALERT.MESSAGE} |
ROW |532 |29 |username |<PLACE USERNAME> |
+ROW |533 |9 |channel_id |{EVENT.TAGS.__channel_id} |
+ROW |534 |9 |message_ts |{EVENT.TAGS.__message_ts} |
TABLE |media_type_message
FIELDS|mediatype_messageid|mediatypeid|eventsource|recovery|subject |message |
diff --git a/create/src/schema.tmpl b/create/src/schema.tmpl
index 010609fd051..3451220076e 100644
--- a/create/src/schema.tmpl
+++ b/create/src/schema.tmpl
@@ -575,6 +575,8 @@ FIELD |media_type_test_timeout |t_varchar(32) |'65s' |NOT NULL |ZBX_NODATA
FIELD |script_timeout |t_varchar(32) |'60s' |NOT NULL |ZBX_NODATA
FIELD |item_test_timeout |t_varchar(32) |'60s' |NOT NULL |ZBX_NODATA
FIELD |session_key |t_varchar(32)|'' |NOT NULL |ZBX_NODATA
+FIELD |url |t_varchar(255) |'' |NOT NULL |ZBX_NODATA
+FIELD |report_test_timeout|t_varchar(32)|'60s'|NOT NULL |ZBX_NODATA
INDEX |1 |alert_usrgrpid
INDEX |2 |discovery_groupid
@@ -1801,7 +1803,47 @@ FIELD |value |t_varchar(255) |'' |NOT NULL |0
FIELD |operator |t_integer |'0'|NOT NULL |0
INDEX |1 |selementid
+TABLE|report|reportid|ZBX_DATA
+FIELD |reportid |t_id | |NOT NULL |0
+FIELD |userid |t_id | |NOT NULL |0 |1|users|userid
+FIELD |name |t_varchar(255) |'' |NOT NULL |0
+FIELD |description |t_varchar(2048)|'' |NOT NULL |0
+FIELD |status |t_integer |'0' |NOT NULL |0
+FIELD |dashboardid |t_id | |NOT NULL |0 |2|dashboard|dashboardid
+FIELD |period |t_integer |'0' |NOT NULL |0
+FIELD |cycle |t_integer |'0' |NOT NULL |0
+FIELD |weekdays |t_integer |'0' |NOT NULL |0
+FIELD |start_time |t_integer |'0' |NOT NULL |0
+FIELD |active_since |t_integer |'0' |NOT NULL |0
+FIELD |active_till |t_integer |'0' |NOT NULL |0
+FIELD |state |t_integer |'0' |NOT NULL |ZBX_NODATA
+FIELD |lastsent |t_time |'0' |NOT NULL |ZBX_NODATA
+FIELD |info |t_varchar(2048)|'' |NOT NULL |ZBX_NODATA
+UNIQUE |1 |name
+
+TABLE|report_param|reportparamid|ZBX_DATA
+FIELD |reportparamid |t_id | |NOT NULL |0
+FIELD |reportid |t_id | |NOT NULL |0 |1|report|reportid
+FIELD |name |t_varchar(255) |'' |NOT NULL |0
+FIELD |value |t_shorttext |'' |NOT NULL |0
+INDEX |1 |reportid
+
+TABLE|report_user|reportuserid|ZBX_DATA
+FIELD |reportuserid |t_id | |NOT NULL |0
+FIELD |reportid |t_id | |NOT NULL |0 |1|report|reportid
+FIELD |userid |t_id | |NOT NULL |0 |2|users|userid
+FIELD |exclude |t_integer |'0' |NOT NULL |0
+FIELD |access_userid |t_id | |NULL |0 |3|users|userid |RESTRICT
+INDEX |1 |reportid
+
+TABLE|report_usrgrp|reportusrgrpid|ZBX_DATA
+FIELD |reportusrgrpid|t_id | |NOT NULL |0
+FIELD |reportid |t_id | |NOT NULL |0 |1|report|reportid
+FIELD |usrgrpid |t_id | |NOT NULL |0 |2|usrgrp|usrgrpid
+FIELD |access_userid |t_id | |NULL |0 |3|users|userid |RESTRICT
+INDEX |1 |reportid
+
TABLE|dbversion||
FIELD |mandatory |t_integer |'0' |NOT NULL |
FIELD |optional |t_integer |'0' |NOT NULL |
-ROW |5030148 |5030148
+ROW |5030163 |5030169
diff --git a/create/src/templates.tmpl b/create/src/templates.tmpl
index 6460b49ecb9..972daee3e4b 100644
--- a/create/src/templates.tmpl
+++ b/create/src/templates.tmpl
@@ -129,18 +129,18 @@ ROW |10308 |NULL |HAProxy by Zabbix agent
ROW |10309 |NULL |HAProxy by HTTP |3 |-1 |2 | | |HAProxy by HTTP |0 |NULL |Get metrics from status page using HTTP agent&eol;https://www.haproxy.com/blog/exploring-the-haproxy-stats-page/.&eol;Example configuration of HAProxy: &eol; frontend stats&eol; bind *:8404&eol; stats enable&eol; stats uri /stats&eol; stats refresh 10s&eol; #stats auth Username:Password # Authentication credentials&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/393527-discussion-thread-for-official-zabbix-template-haproxy&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10310 |NULL |Redis |3 |-1 |2 | | |Redis |0 |NULL |Get Redis metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/389050-discussion-thread-for-official-zabbix-template-redis&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10314 |NULL |Windows services by Zabbix agent |3 |-1 |2 | | |Windows services by Zabbix agent |0 |NULL |Template Services OS Windows&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
-ROW |10316 |NULL |MySQL by Zabbix agent |3 |-1 |2 | | |MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
+ROW |10316 |NULL |MySQL by Zabbix agent |3 |-1 |2 | | |MySQL by Zabbix agent |0 |NULL |Requirements for template operation:&eol;1.Install Zabbix agent and MySQL client.&eol;2.Copy template_db_mysql.conf into folder with Zabbix agent configuration (/etc/zabbix/zabbix_agentd.d/ by default). Don't forget to restart zabbix-agent. &eol;3.Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;4.Create .my.cnf in home directory of Zabbix agent for Linux (/var/lib/zabbix by default ) or my.cnf in c:\ for Windows. For example:&eol;[client]&eol;user='zbx_monitor'&eol;password='<password>'&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10317 |NULL |MySQL by ODBC |3 |-1 |2 | | |MySQL by ODBC |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html , please. &eol;2. Set the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10318 |NULL |Docker |3 |-1 |2 | | |Docker |0 |NULL |Get Docker engine metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum &eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10319 |NULL |Memcached |3 |-1 |2 | | |Memcached |0 |NULL |Get Memcached metrics from plugin for the New Zabbix Agent (zabbix-agent2).&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398623-discussion-thread-for-official-zabbix-template-memcached&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
-ROW |10320 |NULL |MySQL by Zabbix agent 2 |3 |-1 |2 | | |MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information please read the MYSQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.&eol;2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.&eol;Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock&eol;For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.&eol;3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.&eol;For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |0 |
+ROW |10320 |NULL |MySQL by Zabbix agent 2 |3 |-1 |2 | | |MySQL by Zabbix agent 2 |0 |NULL |Requirements for template operation:&eol;1. Create MySQL user for monitoring. For example:&eol;CREATE USER 'zbx_monitor'@'%' IDENTIFIED BY '<password>';&eol;GRANT REPLICATION CLIENT,PROCESS,SHOW DATABASES,SHOW VIEW ON *.* TO 'zbx_monitor'@'%';&eol;For more information please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/grant.html.&eol;2. Set in the {$MYSQL.DSN} macro the data source name of the MySQL instance either session name from Zabbix agent 2 configuration file or URI.&eol;Examples: MySQL1, tcp://localhost:3306, tcp://172.16.0.10, unix:/var/run/mysql.sock&eol;For more information about MySQL Unix socket file please read the MySQL documentation https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html.&eol;3. If you had set URI in the {$MYSQL.DSN}, please define the user name and password in host macros ({$MYSQL.USER} and {$MYSQL.PASSWORD}).&eol;Leave macros {$MYSQL.USER} and {$MYSQL.PASSWORD} empty if you use a session name. Set the user name and password in the Plugins.Mysql.<...> section of your Zabbix agent 2 configuration file.&eol;For more information about configuring the Zabbix MySQL plugin please read the documentation https://git.zabbix.com/projects/ZBX/repos/zabbix/browse/src/go/plugins/mysql/README.md.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/384189-discussion-thread-for-official-zabbix-template-db-mysql&eol;&eol;Template tooling version used: 0.38|1 |1 | | | | | |1 |0 |0 |
ROW |10321 |NULL |Chassis by IPMI |3 |-1 |2 | | |Chassis by IPMI |0 |NULL |Template for monitoring servers with BMC over IPMI that work without any external scripts. &eol;All metrics are collected at once, thanks to Zabbix's bulk data collection. The template is available starting from Zabbix version 5.0. &eol;It collects metrics by polling BMC remotely using an IPMI agent.&eol;&eol;&eol;Known Issues:&eol;&eol; Description: If the BMC has a sensor with an empty threshold value, we get the LLD error "Cannot create trigger...".&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/398023-discussion-thread-for-official-zabbix-template-ipmi&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10322 |NULL |Elasticsearch Cluster by HTTP |3 |-1 |2 | | |Elasticsearch Cluster by HTTP |0 |NULL |The template to monitor Elasticsearch by Zabbix that work without any external scripts.&eol;It works with both standalone and cluster instances.&eol;The metrics are collected in one pass remotely using an HTTP agent. &eol;They are getting values from REST API _cluster/health, _cluster/stats, _nodes/stats requests.&eol;You can set {$ELASTICSEARCH.USERNAME} and {$ELASTICSEARCH.PASSWORD} macros in the template for using on the host level.&eol;If you use an atypical location ES API, don't forget to change the macros {$ELASTICSEARCH.SCHEME},{$ELASTICSEARCH.PORT}.&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/399473-discussion-thread-for-official-zabbix-template-for-elasticsearch&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10323 |NULL |ClickHouse by HTTP |3 |-1 |2 | | |ClickHouse by HTTP |0 |NULL |Get node metrics from ClickHouse HTTP interface using HTTP agent.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10324 |NULL |Etcd by HTTP |3 |-1 |2 | | |Etcd by HTTP |0 |NULL |Get Etcd metrics by HTTP agent.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10325 |NULL |IIS by Zabbix agent |3 |-1 |2 | | |IIS by Zabbix agent |0 |NULL |Get metrics from IIS using Zabbix agent running on Windows&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10326 |NULL |IIS by Zabbix agent active |3 |-1 |2 | | |IIS by Zabbix agent active |0 |NULL |Get metrics from IIS using Zabbix agent running on Windows&eol;&eol;&eol;You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/401862-discussion-thread-for-official-zabbix-template-internet-information-services&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
-ROW |10327 |NULL |MSSQL by ODBC |3 |-1 |2 | | |MSSQL by ODBC |0 |NULL |1. Create an MSSQL user for monitoring.&eol; View Server State and View Any Definition permissions should be granted to the user.&eol; For more information please see the MSSQL documentation.&eol;2. Set the user name and password in host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}).&eol; Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy.&eol; See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15.&eol; Note! Credentials in the odbc.ini do not work for MSSQL.&eol;3. For named instance set the value of {$MSSQL.INSTANCE} macro as MSSQL$instance name, please.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance.&eol;&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 |0 |
+ROW |10327 |NULL |MSSQL by ODBC |3 |-1 |2 | | |MSSQL by ODBC |0 |NULL |1. Create an MSSQL user for monitoring.&eol; View Server State and View Any Definition permissions should be granted to the user.&eol; Grant this user read permissions to the sysjobschedules, sysjobhistory, sysjobs tables. &eol; For more information, see MSSQL documentation.&eol;2. Set the user name and password in host macros ({$MSSQL.USER} and {$MSSQL.PASSWORD}).&eol; Do not forget to install Microsoft ODBC driver on Zabbix server or Zabbix proxy.&eol; See Microsoft documentation for instructions: https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/installing-the-microsoft-odbc-driver-for-sql-server?view=sql-server-ver15.&eol; Note! Credentials in the odbc.ini do not work for MSSQL.&eol;3. For named instance set the value of {$MSSQL.INSTANCE} macro as MSSQL$instance name.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$MSSQL.PORT} macros to check the availability of the MSSQL instance.&eol;&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 |0 |
ROW |10328 |NULL |Oracle by ODBC |3 |-1 |2 | | |Oracle by ODBC |0 |NULL |1. Create an Oracle user for monitoring.&eol;&eol;2. Set the user name and password in host macros ({$ORACLE.USER} and {$ORACLE.PASSWORD}).&eol; Do not forget to install the Microsoft ODBC driver on the Zabbix server or the Zabbix proxy.&eol; See Oracle documentation for instructions: https://www.oracle.com/database/technologies/releasenote-odbc-ic.html.&eol;&eol; Note! Credentials in the odbc.ini do not work for Oracle.&eol; Note! Be sure that ODBC connects to Oracle with session parameter NLS_NUMERIC_CHARACTERS= '.,' It is important for correct display float numbers in Zabbix.&eol;The "Service's TCP port state" item uses {HOST.CONN} and {$ORACLE.PORT} macros to check the availability of the listener.&eol;&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10329 |NULL |PostgreSQL Agent 2 |3 |-1 |2 | | |PostgreSQL Agent 2 |0 |NULL |Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10330 |NULL |PHP-FPM by Zabbix agent |3 |-1 |2 | | |PHP-FPM by Zabbix agent |0 |NULL |Get PHP-FPM metrics using Zabbix agent running on Linux.&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
@@ -207,6 +207,19 @@ ROW |10393 |NULL |Cisco Catalyst 3750V2-48PS SNMP
ROW |10394 |NULL |Cisco Catalyst 3750V2-48TS SNMP |3 |-1 |2 | | |Cisco Catalyst 3750V2-48TS SNMP |0 |NULL |Template Cisco Catalyst 3750V2-48TS&eol;&eol;MIBs used:&eol;CISCO-MEMORY-POOL-MIB&eol;IF-MIB&eol;EtherLike-MIB&eol;SNMPv2-MIB&eol;CISCO-PROCESS-MIB&eol;CISCO-ENVMON-MIB&eol;ENTITY-MIB&eol;&eol;Template tooling version used: 0.38 |1 |1 | | | | | |1 |0 |0 |
ROW |10395 |NULL |APC UPS SNMP |3 |-1 |2 | | |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 |0 |
ROW |10396 |NULL |NetApp AFF A700 by HTTP |3 |-1 |2 | | |NetApp AFF A700 by HTTP |0 |NULL |The template to monitor SAN NetApp AFF A700 cluster by Zabbix HTTP agent.&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 |0 |
+ROW |10397 |NULL |TiDB PD by HTTP |3 |-1 |2 | | |TiDB PD by HTTP |0 |NULL |The template to monitor PD server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$PD.URL}, {$PD.PORT}.&eol;&eol;Template `TiDB PD by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.&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 |0 |
+ROW |10398 |NULL |TiDB by HTTP |3 |-1 |2 | | |TiDB by HTTP |0 |NULL |The template to monitor TiDB server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$TIDB.URL}, {$TIDB.PORT}. &eol;&eol;Template `TiDB by HTTP` — collects metrics by HTTP agent from PD /metrics endpoint and from monitoring API.&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 |0 |
+ROW |10399 |NULL |TiDB TiKV by HTTP |3 |-1 |2 | | |TiDB TiKV by HTTP |0 |NULL |The template to monitor TiKV server of TiDB cluster by Zabbix that works without any external scripts.&eol;Most of the metrics are collected in one go, thanks to Zabbix bulk data collection.&eol;Don't forget to change the macros {$TIKV.URL}, {$TIKV.PORT}. &eol;&eol;Template `TiDB TiKV by HTTP` — collects metrics by HTTP agent from TiKV /metrics endpoint.&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 |0 |
+ROW |10400 |NULL |APC UPS Galaxy 3500 SNMP |3 |-1 |2 | | |APC UPS Galaxy 3500 SNMP |0 |NULL |Template Power APC UPS Galaxy 3500&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 |0 |
+ROW |10401 |NULL |APC Smart-UPS 2200 RM SNMP |3 |-1 |2 | | |APC Smart-UPS 2200 RM SNMP |0 |NULL |Template Power APC Smart-UPS 2200 RM&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 |0 |
+ROW |10402 |NULL |APC Smart-UPS 3000 XLM SNMP |3 |-1 |2 | | |APC Smart-UPS 3000 XLM SNMP |0 |NULL |Template Power APC Smart-UPS 3000 XLM&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 |0 |
+ROW |10403 |NULL |APC Smart-UPS RT 1000 RM XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 RM XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 RM XL&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 |0 |
+ROW |10404 |NULL |APC Smart-UPS RT 1000 XL SNMP |3 |-1 |2 | | |APC Smart-UPS RT 1000 XL SNMP |0 |NULL |Template Power APC Smart-UPS RT 1000 XL&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 |0 |
+ROW |10405 |NULL |APC Smart-UPS SRT 5000 SNMP bkp |3 |-1 |2 | | |APC Smart-UPS SRT 5000 SNMP bkp |0 |NULL |Template Power APC Smart-UPS SRT 5000&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 |0 |
+ROW |10406 |NULL |APC Smart-UPS SRT 8000 SNMP |3 |-1 |2 | | |APC Smart-UPS SRT 8000 SNMP |0 |NULL |Template Power APC Smart-UPS SRT 8000&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 |0 |
+ROW |10407 |NULL |APC UPS Symmetra LX SNMP |3 |-1 |2 | | |APC UPS Symmetra LX SNMP |0 |NULL |Template Power APC UPS Symmetra LX&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 |0 |
+ROW |10408 |NULL |APC UPS Symmetra RM SNMP |3 |-1 |2 | | |APC UPS Symmetra RM SNMP |0 |NULL |Template Power APC UPS Symmetra RM&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 |0 |
+ROW |10409 |NULL |APC UPS Symmetra RX SNMP |3 |-1 |2 | | |APC UPS Symmetra RX SNMP |0 |NULL |Template Power APC UPS Symmetra RX&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 |0 |
TABLE |group_prototype
FIELDS|group_prototypeid|hostid|name |groupid|templateid|
@@ -220,14 +233,14 @@ ROW |17 |10367 |{#DATACENTER.NAME} |NULL |NU
ROW |19 |10368 |{#CLUSTER.NAME} (vm) |NULL |NULL |
ROW |20 |10368 |{#DATACENTER.NAME} (vm) |NULL |NULL |
ROW |21 |10368 |{#HV.NAME} |NULL |NULL |
-ROW |31 |10333 | |12 |NULL |
-ROW |32 |10334 | |12 |NULL |
-ROW |33 |10367 | |12 |NULL |
-ROW |34 |10368 | |12 |NULL |
ROW |35 |10388 |MongoDB sharded cluster/{#REPLICASET}|NULL |NULL |
-ROW |36 |10388 | |13 |NULL |
ROW |37 |10389 |MongoDB sharded cluster/{#ID} |NULL |NULL |
-ROW |38 |10389 | |13 |NULL |
+ROW |39 |10333 | |12 |NULL |
+ROW |40 |10334 | |12 |NULL |
+ROW |41 |10367 | |12 |NULL |
+ROW |42 |10368 | |12 |NULL |
+ROW |43 |10388 | |13 |NULL |
+ROW |44 |10389 | |13 |NULL |
TABLE |interface
FIELDS|interfaceid|hostid|main|type|useip|ip |dns |port |
@@ -508,6 +521,70 @@ ROW |266 |10395 |PowerNet-MIB::upsAdvInputLineFailCause
ROW |267 |10395 |PowerNet-MIB::upsBasicBatteryStatus |
ROW |268 |10395 |Service state |
ROW |269 |10395 |zabbix.host.available |
+ROW |270 |10327 |MSSQL Job Run Status |
+ROW |271 |10397 |Service state |
+ROW |272 |10398 |Service state |
+ROW |273 |10400 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |274 |10400 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |275 |10400 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |276 |10400 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |277 |10400 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |278 |10400 |zabbix.host.available |
+ROW |279 |10401 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |280 |10401 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |281 |10401 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |282 |10401 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |283 |10401 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |284 |10401 |zabbix.host.available |
+ROW |285 |10402 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |286 |10402 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |287 |10402 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |288 |10402 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |289 |10402 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |290 |10402 |zabbix.host.available |
+ROW |291 |10403 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |292 |10403 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |293 |10403 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |294 |10403 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |295 |10403 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |296 |10403 |zabbix.host.available |
+ROW |297 |10404 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |298 |10404 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |299 |10404 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |300 |10404 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |301 |10404 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |302 |10404 |zabbix.host.available |
+ROW |303 |10405 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |304 |10405 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |305 |10405 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |306 |10405 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |307 |10405 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |308 |10405 |zabbix.host.available |
+ROW |309 |10406 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |310 |10406 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |311 |10406 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |312 |10406 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |313 |10406 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |314 |10406 |zabbix.host.available |
+ROW |315 |10395 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |316 |10407 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |317 |10407 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |318 |10407 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |319 |10407 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |320 |10407 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |321 |10407 |zabbix.host.available |
+ROW |322 |10408 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |323 |10408 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |324 |10408 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |325 |10408 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |326 |10408 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |327 |10408 |zabbix.host.available |
+ROW |328 |10409 |PowerNet-MIB::uioSensorStatusAlarmStatus |
+ROW |329 |10409 |PowerNet-MIB::upsAdvBatteryReplaceIndicator |
+ROW |330 |10409 |PowerNet-MIB::upsAdvInputLineFailCause |
+ROW |331 |10409 |PowerNet-MIB::upsBasicBatteryStatus |
+ROW |332 |10409 |PowerNet-MIB::upsBasicOutputStatus |
+ROW |333 |10409 |zabbix.host.available |
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|
@@ -885,7 +962,7 @@ ROW |27311 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.1991.1.1.1.4.1.1.1]
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 |74 | | |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 |76 | | |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 |27315 |20 |1.3.6.1.4.1.1991.1.1.1.1.18.{#SNMPINDEX} |10210 |Chassis #{#SNMPINDEX}: Temperature |sensor.temp.value[snChasActualTemperature.{#SNMPINDEX}] |3m |90d |365d |0 |0 | |°C | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: FOUNDRY-SN-AGENT-MIB&eol;Temperature of the chassis. Each unit is 0.5 degrees Celsius.&eol;Only management module built with temperature sensor hardware is applicable.&eol;For those non-applicable management module, it returns no-such-name. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |27316 |20 |1.3.6.1.4.1.1991.1.1.1.2.2.1.4.{#SNMPINDEX} |10211 |Unit {#PSU_UNIT} PSU {#PSU_INDEX}: Power supply status |sensor.psu.status[snChasPwrSupply2OperStatus.{#SNMPINDEX}] |3m |2w |0d |0 |3 | | | | |NULL |75 | | |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 |77 | | |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 |
@@ -1012,7 +1089,7 @@ ROW |27902 |20 |discovery[{#SNMPVALUE},1.3.6.1.4.1.14988.1.1.3.11]
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 |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 |
@@ -1115,7 +1192,7 @@ ROW |28369 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}
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 |115 | | |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 |116 | | |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 |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 |116 | | |0 | | | | |2 |NULL |MIB: IDRAC-MIB-SMIv2&eol;The current state of this virtual disk (which includes any member physical disks.)&eol;Possible states:&eol;1: The current state could not be determined.&eol;2: The virtual disk is operating normally or optimally.&eol;3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&eol;4: The virtual disk encountered a failure with one or all of the constituent redundant physical disks.&eol;The data on the virtual disk might no longer be fault tolerant. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28374 |20 |1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX} |10255 |{#CNTLR_NAME}: Disk array controller status |system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}] |1m |1w |0d |0 |3 | | | | |NULL |107 | | |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 |112 | | |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 |
@@ -1209,15 +1286,15 @@ ROW |28821 |19 |
ROW |28822 |3 | |10267 |Nginx: Service status |net.tcp.service[http,"{HOST.CONN}","{$NGINX.STUB_STATUS.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |16 | | |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 |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 |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 |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 |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 |
@@ -1241,7 +1318,7 @@ ROW |29025 |20 |1.3.6.1.4.1.2021.11.65.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 |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 |
@@ -1294,12 +1371,12 @@ ROW |29221 |0 |
ROW |29222 |0 | |10276 |Interface {#IFNAME}: Operational status |vfs.file.contents["/sys/class/net/{#IFNAME}/operstate"] |1m |7d |0 |0 |3 | | | | |NULL |63 | | |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 |127 | | |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 |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 |
@@ -1308,7 +1385,7 @@ ROW |29458 |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 |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 |
@@ -1386,37 +1463,37 @@ ROW |30084 |20 |1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}
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 |138 | | |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 |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 |71 | | |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 |71 | | |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 |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 |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 |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 |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 |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 |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 |100 | | |0 | | | | |2 |NULL |MIB: QTECH-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -1426,7 +1503,7 @@ ROW |30132 |20 |1.3.6.1.4.1.10002.1.1.1.1.3.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 |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 |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 |
@@ -1434,18 +1511,18 @@ ROW |30147 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.
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 |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 |19 | | |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 |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 |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 |21 | | |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 |
@@ -1460,21 +1537,21 @@ ROW |30425 |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 |22 | | |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) - &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 |30435 |15 | |10316 |MySQL: 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 |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 |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) - &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 |30435 |15 | |10316 |MySQL: 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 |30472 |0 | |10316 |Database discovery |mysql.db.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30473 |0 | |10316 |Replication discovery |mysql.replication.discovery["{$MYSQL.HOST}","{$MYSQL.PORT}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30474 |0 | |10316 |MySQL: Size of database {#DBNAME} |mysql.dbsize["{$MYSQL.HOST}","{$MYSQL.PORT}","{#DBNAME}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30475 |0 | |10316 |MySQL: Replication Slave status {#MASTERHOST} |mysql.slave_status["{$MYSQL.HOST}","{$MYSQL.PORT}","{#MASTERHOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30479 |11 | |10317 |MySQL: Get status variables |db.odbc.get[get_status_variables,"{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show global status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL |The item gets server global status information. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30480 |11 | |10317 |MySQL: Version |db.odbc.select[version,"{$MYSQL.DSN}"] |15m |7d |0 |0 |1 | | | | |NULL |NULL |select version() | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30481 |11 | |10317 |MySQL: Status |db.odbc.select[ping,"{$MYSQL.DSN}"] |1m |7d |365d |0 |3 | | | | |NULL |23 |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) / &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 |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) - &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 |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 |30482 |15 | |10317 |MySQL: 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 |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) - &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 |30520 |11 | |10317 |Database discovery |db.odbc.discovery[databases,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show databases | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30521 |11 | |10317 |Replication discovery |db.odbc.discovery[replication,"{$MYSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30522 |11 | |10317 |MySQL: Size of database {#DATABASE} |db.odbc.select[{#DATABASE}_size,"{$MYSQL.DSN}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL |SELECT COALESCE(SUM(DATA_LENGTH + INDEX_LENGTH),0) FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA="{#DATABASE}" | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30523 |11 | |10317 |MySQL: Replication Slave status {#MASTER_HOST} |db.odbc.get["{#MASTER_HOST}","{$MYSQL.DSN}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL |show slave status | |0 |{$MYSQL.USER} |{$MYSQL.PASSWORD} | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30527 |0 | |10318 |Docker: Get data_usage |docker.data_usage |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30528 |0 | |10318 |Docker: Get containers |docker.containers |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30529 |0 | |10318 |Docker: Get info |docker.info |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -1489,12 +1566,12 @@ ROW |30612 |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 |26 | | |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) - &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 |30641 |15 | |10320 |MySQL: 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 |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 |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) - &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 |30641 |15 | |10320 |MySQL: 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 |30678 |0 | |10320 |Database discovery |mysql.db.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Scanning databases in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30679 |0 | |10320 |Replication discovery |mysql.replication.discovery["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |If "show slave status" returns Master_Host, "Replication: *" items are created. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30680 |0 | |10320 |MySQL: Size of database {#DATABASE} |mysql.db.size["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#DATABASE}"] |5m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30681 |0 | |10320 |MySQL: Replication Slave status {#MASTER_HOST} |mysql.replication.get_slave_status["{$MYSQL.DSN}","{$MYSQL.USER}","{$MYSQL.PASSWORD}","{#MASTER_HOST}"] |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The item gets status information on the essential parameters of the slave threads. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30685 |12 | |10321 |Get IPMI sensors |ipmi.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The master item that receives all sensors with values for LLD and dependent elements from BMC. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30690 |3 | |10322 |ES: Service status |net.tcp.service["{$ELASTICSEARCH.SCHEME}","{HOST.CONN}","{$ELASTICSEARCH.PORT}"] |1m |7d |365d |0 |3 | | | | |NULL |27 | | |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 |
@@ -1502,14 +1579,14 @@ ROW |30692 |3 |
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}]) / &eol;( 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 |30714 |15 | |10322 |ES {#ES.NODE}: Query latency |es.node.indices.search.query_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.query_time_in_millis[{#ES.NODE}]) / &eol;( change(es.node.indices.search.query_total[{#ES.NODE}]) + (change(es.node.indices.search.query_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average query latency calculated by sampling the total number of queries and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30715 |15 | |10322 |ES {#ES.NODE}: Flush latency |es.node.indices.flush.latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.flush.total_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.flush.total[{#ES.NODE}]) + (change(es.node.indices.flush.total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average flush latency calculated from the available flush.total and flush.total_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30716 |15 | |10322 |ES {#ES.NODE}: Indexing latency |es.node.indices.indexing.index_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.indexing.index_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.indexing.index_total[{#ES.NODE}]) + (change(es.node.indices.indexing.index_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average indexing latency calculated from the available index_total and index_time_in_millis metrics. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30717 |15 | |10322 |ES {#ES.NODE}: Fetch latency |es.node.indices.search.fetch_latency[{#ES.NODE}] |1m |7d |365d |0 |0 | |ms | | |NULL |NULL |change(es.node.indices.search.fetch_time_in_millis[{#ES.NODE}]) / ( change(es.node.indices.search.fetch_total[{#ES.NODE}]) + (change(es.node.indices.search.fetch_total[{#ES.NODE}]) = 0) ) | |0 | | | | |2 |NULL |The average fetch latency calculated by sampling the total number of fetches and the total elapsed time at regular intervals. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |20 | | |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 |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 |28 | | |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 |
@@ -1611,10 +1688,10 @@ ROW |31050 |7 |
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 |28 | | |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&eol;FROM sys.dm_os_performance_counters&eol;UNION&eol;SELECT '{$MSSQL.INSTANCE}' as object_name,'Version' as counter_name,@@version as instance_name,0 as cntr_value&eol;UNION&eol;SELECT '{$MSSQL.INSTANCE}' as object_name,'Uptime' as counter_name,'' as instance_name,DATEDIFF(second,sqlserver_start_time,GETDATE()) as cntr_value&eol;FROM sys.dm_os_sys_info&eol;UNION&eol;SELECT '{$MSSQL.INSTANCE}:Databases' as object_name,'State' as counter_name,name as instance_name,state as cntr_value&eol;FROM sys.databases&eol;UNION&eol;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&eol;FROM sys.dm_os_performance_counters a&eol;JOIN (SELECT cntr_value,OBJECT_NAME&eol;FROM sys.dm_os_performance_counters&eol;WHERE counter_name='Buffer cache hit ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager') b&eol;ON a.OBJECT_NAME=b.OBJECT_NAME&eol;WHERE a.counter_name='Buffer cache hit ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Buffer Manager'&eol;UNION&eol;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&eol;FROM sys.dm_os_performance_counters a&eol;JOIN (SELECT cntr_value,OBJECT_NAME&eol;FROM sys.dm_os_performance_counters&eol;WHERE counter_name='Worktables From Cache Base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods') b&eol;ON a.OBJECT_NAME=b.OBJECT_NAME&eol;WHERE a.counter_name='Worktables From Cache Ratio' AND a.OBJECT_NAME='{$MSSQL.INSTANCE}:Access Methods'&eol;UNION&eol;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&eol;FROM sys.dm_os_performance_counters a&eol;JOIN (SELECT cntr_value,OBJECT_NAME&eol;FROM sys.dm_os_performance_counters&eol;WHERE counter_name='Cache Hit Ratio base' AND OBJECT_NAME='{$MSSQL.INSTANCE}:Plan Cache' AND instance_name='_Total') b&eol;ON a.OBJECT_NAME=b.OBJECT_NAME&eol;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) - last(//mssql.average_wait_time_raw,#2)) /&eol;(last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2) + &eol;(last(//mssql.average_wait_time_base) - last(//mssql.average_wait_time_base,#2)=0)) | |0 | | | | |0 |NULL |The average wait time, in milliseconds, for each lock request that had to wait. |0 |30d |0 | |NULL |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 |32 | | |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) - last(//mssql.average_latch_wait_time_raw,#2)) /&eol;(last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2) + &eol;(last(//mssql.average_latch_wait_time_base) - last(//mssql.average_latch_wait_time_base,#2)=0)) | |0 | | | | |0 |NULL |Average latch wait time (in milliseconds) for latch requests that had to wait. |0 |30d |0 | |NULL |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 &eol;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 |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)) /&eol;(last(mssql.average_wait_time_base) - prev(mssql.average_wait_time_base) + &eol;(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 |32 | | |0 | | | | |0 |NULL |Test the availability of MS SQL Server on a TCP port. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31058 |15 | |10327 |MSSQL: Average latch wait time |mssql.average_latch_wait_time |0;m0-59s3 |7d |365d |0 |0 | |ms | | |NULL |NULL |(last(mssql.average_latch_wait_time_raw) - prev(mssql.average_latch_wait_time_raw)) /&eol;(last(mssql.average_latch_wait_time_base) - prev(mssql.average_latch_wait_time_base) + &eol;(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 &eol;FROM sys.availability_groups | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Discovery of the existing availability groups. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31123 |11 | |10327 |Database discovery |db.odbc.discovery[dbname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name as dbname &eol;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,&eol;db_name(drs.database_id) AS dbname, drs.is_local&eol;FROM sys.dm_hadr_database_replica_states drs JOIN sys.dm_hadr_availability_replica_cluster_states arcs&eol;ON arcs.replica_id = drs.replica_id&eol;JOIN sys.availability_groups ag ON ag.group_id = arcs.group_id&eol;JOIN sys.dm_hadr_availability_replica_states ars ON ars.replica_id = arcs.replica_id&eol;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&eol;FROM sys.database_mirroring&eol;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 |
@@ -1656,14 +1733,14 @@ ROW |31290 |0 |
ROW |31334 |0 | |10329 |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 |31335 |0 | |10329 |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 |31336 |0 | |10329 |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 |31337 |0 | |10329 |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 |31337 |0 | |10329 |DB {#DBNAME}: Get bloating tables |pgsql.db.bloating_tables["{$PG.URI}","{$PG.USER}","{$PG.PASSWORD}","{#DBNAME}"] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of bloating tables |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31367 |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 |31370 |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 |31371 |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 |31370 |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 |31371 |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 |31372 |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 |31419 |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 |31420 |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 |31421 |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 |31421 |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 |31422 |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 |31430 |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 |31433 |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 |
@@ -1731,9 +1808,9 @@ ROW |31550 |16 |
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 |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 /&eol;(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 |31555 |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 |31556 |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 /&eol;(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 |31554 |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 /&eol;(last(mssql.batch_requests_sec.rate) + (last(mssql.batch_requests_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL compilations per second to Batch requests per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31555 |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 |31556 |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 /&eol;(last(mssql.sql_compilations_sec.rate) + (last(mssql.sql_compilations_sec.rate)=0)) | |0 | | | | |0 |NULL |The ratio of SQL re-compilations per second to SQL compilations per second in percentage. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31557 |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 |31558 |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 |31559 |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 |
@@ -1750,11 +1827,11 @@ ROW |31569 |20 |1.3.6.1.4.1.14988.1.1.1.7.1.4.{#SNMPINDEX}
ROW |31570 |0 | |10330 |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 |31571 |0 | |10330 |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 |31572 |0 | |10330 |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 |31573 |15 | |10330 |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 |31573 |15 | |10330 |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 |31574 |0 | |10330 |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 |31575 |0 | |10330 |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 |31576 |0 | |10330 |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 |31593 |15 | |10331 |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 |31593 |15 | |10331 |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 |31594 |19 | |10331 |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 |31595 |19 | |10331 |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 |31612 |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.4/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 |
@@ -1833,8 +1910,8 @@ ROW |31855 |7 |
ROW |31896 |7 | |10337 |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 |31897 |7 | |10339 |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 |31898 |7 | |10342 |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 |31902 |15 | |10337 |{#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 |31903 |15 | |10337 |{#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 |31902 |15 | |10337 |{#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 |31903 |15 | |10337 |{#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 |31904 |7 | |10337 |{#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 |31905 |7 | |10339 |{#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 |31906 |7 | |10339 |{#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 |
@@ -1869,11 +1946,11 @@ ROW |31965 |7 |
ROW |31966 |7 | |10347 |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 |31967 |7 | |10347 |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 |31968 |7 | |10347 |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 |31969 |15 | |10347 |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 |31969 |15 | |10347 |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 |31970 |7 | |10347 |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 |31971 |7 | |10347 |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 |31972 |7 | |10347 |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 |31973 |15 | |10347 |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 |31973 |15 | |10347 |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 |31974 |7 | |10348 |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 |32004 |7 | |10345 |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 |32006 |7 | |10349 |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 |
@@ -1955,7 +2032,7 @@ ROW |32291 |20 |1.3.6.1.4.1.3495.1.3.2.1.5.0
ROW |32292 |20 |1.3.6.1.4.1.3495.1.2.3.0 |10355 |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 |32364 |0 | |10357 |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 |32365 |0 | |10357 |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 |32366 |0 | |10357 |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 |32366 |0 | |10357 |Status: Ping time |pgsql.ping.time["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32367 |0 | |10357 |Status: Ping |pgsql.ping["{$PG.HOST}","{$PG.PORT}","{$PG.USER}","{$PG.DB}"] |1m |7d |365d |0 |3 | | | | |NULL |40 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32368 |0 | |10357 |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 |32369 |0 | |10357 |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 |
@@ -2351,9 +2428,9 @@ ROW |33122 |16 |
ROW |33123 |16 | |10370 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta 95 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","95thPercentile"] |1m |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 |33124 |16 | |10370 |{#JMXKEYSPACE}.{#JMXSCOPE}: Col update time delta75 percentile |jmx["org.apache.cassandra.metrics:type=Table,keyspace={#JMXKEYSPACE},scope={#JMXSCOPE},name=ColUpdateTimeDeltaHistogram","75thPercentile"] |1m |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 |33125 |16 | |10370 |{#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 |33126 |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)) / {$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 |33140 |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)) / {$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 |33154 |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)) / {$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 |33126 |15 | |10316 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33140 |15 | |10320 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33154 |15 | |10317 |MySQL: Calculated value of innodb_log_file_size |mysql.innodb_log_file_size |1m |7d |365d |0 |0 | | | | |NULL |NULL |(last(mysql.innodb_os_log_written) - last(mysql.innodb_os_log_written,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of the innodb_log_file_size. Innodb_log_file_size is the size in bytes of the each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33172 |0 | |10329 |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 |33173 |0 | |10329 |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 |33174 |0 | |10329 |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 |
@@ -2433,13 +2510,13 @@ ROW |33255 |20 |1.3.6.1.2.1.1.3.0
ROW |33256 |20 |1.3.6.1.4.1.33333.9.32.0 |10374 |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 |33258 |20 |1.3.6.1.4.1.33333.9.30.0 |10374 |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 |33259 |20 |1.3.6.1.4.1.33333.7.31.0 |10375 |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 |33260 |20 |1.3.6.1.4.1.33333.7.50.0 |10375 |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 |33260 |20 |1.3.6.1.4.1.33333.7.50.0 |10375 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:1.0&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33261 |20 |1.3.6.1.4.1.33333.7.48.0 |10375 |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 |33262 |20 |1.3.6.1.4.1.33333.7.45.0 |10375 |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 |33263 |20 |1.3.6.1.2.1.1.3.0 |10375 |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 |33264 |20 |1.3.6.1.4.1.33333.7.55.0 |10375 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&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 |33265 |20 |1.3.6.1.4.1.33333.7.57.0 |10375 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&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 |33266 |20 |1.3.6.1.4.1.33333.7.52.0 |10375 |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 |33266 |20 |1.3.6.1.4.1.33333.7.52.0 |10375 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |0 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:1.0&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33267 |20 |1.3.6.1.4.1.33333.7.46.0 |10375 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |199 | | |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 |33268 |20 |1.3.6.1.4.1.33333.7.33.0 |10375 |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 |33269 |20 |1.3.6.1.4.1.33333.7.44.0 |10375 |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 |
@@ -2451,13 +2528,13 @@ ROW |33274 |20 |1.3.6.1.4.1.33333.7.34.0
ROW |33275 |20 |1.3.6.1.4.1.33333.7.49.0 |10375 |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 |33277 |20 |1.3.6.1.4.1.33333.7.36.0 |10375 |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 |33278 |20 |1.3.6.1.4.1.33333.2.31.0 |10376 |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 |33279 |20 |1.3.6.1.4.1.33333.2.50.0 |10376 |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 |33279 |20 |1.3.6.1.4.1.33333.2.50.0 |10376 |Counter: Charge Amp-hours |counter.charge_amp_hours[ahChargeResetable.0] |1m |7d |365d |0 |0 | |Ah | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Ah Charge Resettable&eol;Scaling Factor:0.1&eol;Units:Ah&eol;Range:[0.0, 5000]&eol;Modbus addresses:H=0x0034 L=0x0035 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33280 |20 |1.3.6.1.4.1.33333.2.48.0 |10376 |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 |33281 |20 |1.3.6.1.4.1.33333.2.45.0 |10376 |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 |33282 |20 |1.3.6.1.2.1.1.3.0 |10376 |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 |33283 |20 |1.3.6.1.4.1.33333.2.55.0 |10376 |Status: Faults |status.faults[faults.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33284 |20 |1.3.6.1.4.1.33333.2.57.0 |10376 |Status: Alarms |status.alarms[alarms.0] |1m |1h |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:Faults&eol;Modbus address:0x002c |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33285 |20 |1.3.6.1.4.1.33333.2.52.0 |10376 |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 |33285 |20 |1.3.6.1.4.1.33333.2.52.0 |10376 |Counter: Charge KW-hours |counter.charge_kw_hours[kwhChargeResetable.0] |1m |7d |365d |0 |3 | |!kWh | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: TRISTAR-MPPT&eol;Description:kWh Charge Resettable&eol;Scaling Factor:0.1&eol;Units:kWh&eol;Range:[0.0, 65535.0]&eol;Modbus address:0x0038 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33286 |20 |1.3.6.1.4.1.33333.2.46.0 |10376 |Battery: Charge State |charge.state[chargeState.0] |1m |7d |365d |0 |0 | | | | |NULL |200 | | |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 |33287 |20 |1.3.6.1.4.1.33333.2.33.0 |10376 |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 |33288 |20 |1.3.6.1.4.1.33333.2.44.0 |10376 |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 |
@@ -2672,7 +2749,7 @@ ROW |33697 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.1.1.1,{#MODEL},1.3
ROW |33698 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.5.6.1.2] |10385 |Enclosure discovery |huawei.5300.enclosure.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of enclosures |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33699 |20 |discovery[{#ID},1.3.6.1.4.1.34774.4.1.23.5.4.1.1,{#LOCATION},1.3.6.1.4.1.34774.4.1.23.5.4.1.2] |10385 |FANs discovery |huawei.5300.fan.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of FANs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33700 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.19.9.4.1.2] |10385 |LUNs discovery |huawei.5300.lun.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of LUNs |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33701 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10385 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes perfomance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33701 |20 |discovery[{#NODE},1.3.6.1.4.1.34774.4.1.21.3.1.1] |10385 |Nodes performance discovery |huawei.5300.nodes.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of nodes performance counters |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33702 |20 |discovery[{#NAME},1.3.6.1.4.1.34774.4.1.23.4.2.1.2,{#THRESHOLD},1.3.6.1.4.1.34774.4.1.23.4.2.1.14] |10385 |Storage pools discovery |huawei.5300.pool.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of storage pools |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33703 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.3.{#SNMPINDEX} |10385 |BBU {#ID} on {#LOCATION}: Health status |huawei.5300.v5[hwInfoBBUHealthStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |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 |33704 |20 |1.3.6.1.4.1.34774.4.1.23.5.5.1.4.{#SNMPINDEX} |10385 |BBU {#ID} on {#LOCATION}: Running status |huawei.5300.v5[hwInfoBBURunningStatus, "{#ID}:{#LOCATION}"] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |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 |
@@ -2710,7 +2787,7 @@ ROW |33735 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.8.{#SNMPINDEX}
ROW |33736 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10385 |Node {#NODE}: Write operations per second |huawei.5300.v5[hwPerfNodeWriteIOPS, "{#NODE}"] |1m |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 |33737 |20 |1.3.6.1.4.1.34774.4.1.21.3.1.7.{#SNMPINDEX} |10385 |Node {#NODE}: Write traffic per second |huawei.5300.v5[hwPerfNodeWriteTraffic, "{#NODE}"] |1m |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 |33738 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.9.{#SNMPINDEX} |10385 |Pool {#NAME}: Capacity free |huawei.5300.v5[hwInfoStoragePoolFreeCapacity, "{#NAME}"] |1m |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 |33739 |15 | |10385 |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 |33739 |15 | |10385 |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 |33740 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.5.{#SNMPINDEX} |10385 |Pool {#NAME}: Health status |huawei.5300.v5[hwInfoStoragePoolHealthStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |220 | | |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 |33741 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.6.{#SNMPINDEX} |10385 |Pool {#NAME}: Running status |huawei.5300.v5[hwInfoStoragePoolRunningStatus, "{#NAME}"] |1m |7d |365d |0 |3 | | | | |NULL |222 | | |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 |33742 |20 |1.3.6.1.4.1.34774.4.1.23.4.2.1.8.{#SNMPINDEX} |10385 |Pool {#NAME}: Capacity used |huawei.5300.v5[hwInfoStoragePoolSubscribedCapacity, "{#NAME}"] |1m |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 |
@@ -2776,7 +2853,7 @@ ROW |33967 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}
ROW |33968 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10390 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |230 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33969 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10390 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33970 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10390 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33971 |15 | |10390 |{#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 |33971 |15 | |10390 |{#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 |33972 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10390 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33973 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10390 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |33974 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10390 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2817,7 +2894,7 @@ ROW |34008 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}
ROW |34009 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10391 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |236 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34010 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10391 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34011 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10391 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34012 |15 | |10391 |{#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 |34012 |15 | |10391 |{#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 |34013 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10391 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34014 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10391 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |34015 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10391 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2858,7 +2935,7 @@ ROW |34049 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}
ROW |34050 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10392 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |242 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34051 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10392 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34052 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10392 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34053 |15 | |10392 |{#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 |34053 |15 | |10392 |{#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 |34054 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10392 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34055 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10392 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |34056 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10392 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2899,7 +2976,7 @@ ROW |34090 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}
ROW |34091 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10393 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |248 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34092 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10393 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34093 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10393 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34094 |15 | |10393 |{#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 |34094 |15 | |10393 |{#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 |34095 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10393 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34096 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10393 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |34097 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10393 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2940,7 +3017,7 @@ ROW |34131 |20 |1.3.6.1.2.1.47.1.1.1.1.11.{#SNMPINDEX}
ROW |34132 |20 |1.3.6.1.4.1.9.9.13.1.4.1.3.{#SNMPINDEX} |10394 |{#SNMPVALUE}: Fan status |sensor.fan.status[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |254 | | |0 | | | | |2 |NULL |MIB: CISCO-ENVMON-MIB&eol;Object name: ciscoEnvMonFanState |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34133 |20 |1.3.6.1.4.1.9.9.48.1.1.1.6.{#SNMPINDEX} |10394 |{#SNMPVALUE}: Free memory |vm.memory.free[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolFree&eol;Indicates the number of bytes from the memory pool that are currently unused on the managed device. Note that the sum of ciscoMemoryPoolUsed and ciscoMemoryPoolFree is the total amount of memory in the pool&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34134 |20 |1.3.6.1.4.1.9.9.48.1.1.1.5.{#SNMPINDEX} |10394 |{#SNMPVALUE}: Used memory |vm.memory.used[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: CISCO-MEMORY-POOL-MIB&eol;Object name: ciscoMemoryPoolUsed&eol;Indicates the number of bytes from the memory pool that are currently in use by applications on the managed device.&eol;Reference: http://www.cisco.com/c/en/us/support/docs/ip/simple-network-management-protocol-snmp/15216-contiguous-memory.html |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34135 |15 | |10394 |{#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 |34135 |15 | |10394 |{#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 |34136 |20 |1.3.6.1.2.1.2.2.1.13.{#SNMPINDEX} |10394 |Interface {#IFNAME}({#IFALIAS}): Inbound packets discarded |net.if.in.discards[{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The number of inbound packets which were chosen to be discarded&eol;even though no errors had been detected to prevent their being deliverable to a higher-layer protocol.&eol;One possible reason for discarding such a packet could be to free up buffer space.&eol;Discontinuities in the value of this counter can occur at re-initialization of the management system,&eol;and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34137 |20 |1.3.6.1.2.1.2.2.1.14.{#SNMPINDEX} |10394 |Interface {#IFNAME}({#IFALIAS}): Inbound packets with errors |net.if.in.errors[{#SNMPINDEX}] |1m |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 |34138 |20 |1.3.6.1.2.1.31.1.1.1.6.{#SNMPINDEX} |10394 |Interface {#IFNAME}({#IFALIAS}): Bits received |net.if.in[{#SNMPINDEX}] |1m |7d |365d |0 |3 | |bps | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The total number of octets received on the interface, including framing characters. This object is a 64-bit version of ifInOctets. Discontinuities in the value of this counter can occur at re-initialization of the management system, and at other times as indicated by the value of ifCounterDiscontinuityTime. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -2978,51 +3055,46 @@ ROW |34169 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |34170 |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 |34171 |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 |260 | | |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 |34172 |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 |261 | | |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 |34173 |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 |34173 |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 |34174 |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 |34175 |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 |34176 |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 |34177 |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 |34178 |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 |34179 |20 |1.3.6.1.4.1.318.1.1.1.2.2.1.0 |10395 |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 |34178 |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 |34180 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10395 |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 |34181 |20 |1.3.6.1.2.1.1.3.0 |10395 |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 |34182 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10395 |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 |34182 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10395 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34183 |20 |1.3.6.1.2.1.1.2.0 |10395 |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 |34184 |20 |1.3.6.1.2.1.1.5.0 |10395 |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 |34185 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10395 |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 |34185 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10395 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34186 |20 |1.3.6.1.2.1.1.6.0 |10395 |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 |34187 |20 |1.3.6.1.2.1.1.1.0 |10395 |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 |34188 |20 |1.3.6.1.2.1.1.4.0 |10395 |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 |34189 |17 | |10395 |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 |34190 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10395 |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 |34191 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10395 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |267 | | |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 |34191 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10395 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |315 | | |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 |34192 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10395 |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 |34193 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10395 |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 |34193 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10395 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34194 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10395 |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 |34195 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10395 |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 |34196 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10395 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |266 | | |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 |34197 |3 | |10395 |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 |34198 |3 | |10395 |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 |34199 |3 | |10395 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |NULL |268 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34200 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10395 |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 |34201 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10395 |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 |34202 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10395 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |267 | | |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 |34203 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10395 |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 |34204 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10395 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |265 | | |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 |34205 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10395 |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 |34205 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10395 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34206 |5 | |10395 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |269 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34207 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10395 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34208 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10395 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34209 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10395 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34210 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10395 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34211 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10395 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34212 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10395 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |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 |34213 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |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 |34212 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10395 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34213 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34214 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34215 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34216 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34217 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |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 |34217 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10395 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34218 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10395 |{#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 |34219 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10395 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |264 | | |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 |34220 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10395 |{#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 |
@@ -3032,7 +3104,7 @@ ROW |34223 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1
ROW |34224 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10395 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34225 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10395 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34226 |19 | |10396 |Get chassis |netapp.chassis.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34227 |15 | |10396 |Cluster latency, read |netapp.cluster.statistics.latency.read |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(//netapp.cluster.statistics.latency_raw.read) - last(//netapp.cluster.statistics.latency_raw.read,#2)) /&eol;( last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) +&eol;(last(//netapp.cluster.statistics.iops_raw.read) - last(//netapp.cluster.statistics.iops_raw.read,#2) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34227 |15 | |10396 |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)) /&eol;( last(netapp.cluster.statistics.iops_raw.read) - prev(netapp.cluster.statistics.iops_raw.read) +&eol;(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 |34228 |19 | |10396 |Get SVMs |netapp.svms.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/svm/svms?fields=name,state,comment | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34229 |19 | |10396 |Get FC ports |netapp.ports.fc.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/network/fc/ports?fields=name,node.name,description,enabled,fabric.switch_port,state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34230 |19 | |10396 |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 |
@@ -3041,10 +3113,10 @@ ROW |34232 |19 |
ROW |34233 |19 | |10396 |Get FRUs |netapp.frus.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster/chassis?fields=id,frus.id,frus.state | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34234 |19 | |10396 |Get disks |netapp.disks.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/disks?fields=state,node.name | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34235 |19 | |10396 |Get cluster |netapp.cluster.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/cluster | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34236 |15 | |10396 |Cluster latency, write |netapp.cluster.statistics.latency.write |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(//netapp.cluster.statistics.latency_raw.write) - last(//netapp.cluster.statistics.latency_raw.write,#2)) /&eol;( last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) +&eol;(last(//netapp.cluster.statistics.iops_raw.write) - last(//netapp.cluster.statistics.iops_raw.write,#2) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Peformance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34237 |15 | |10396 |Cluster latency, total |netapp.cluster.statistics.latency.total |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(//netapp.cluster.statistics.latency_raw.total) - last(//netapp.cluster.statistics.latency_raw.total,#2)) /&eol;( last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) +&eol;(last(//netapp.cluster.statistics.iops_raw.total) - last(//netapp.cluster.statistics.iops_raw.total,#2) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34236 |15 | |10396 |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)) /&eol;( last(netapp.cluster.statistics.iops_raw.write) - prev(netapp.cluster.statistics.iops_raw.write) +&eol;(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 |34237 |15 | |10396 |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)) /&eol;( last(netapp.cluster.statistics.iops_raw.total) - prev(netapp.cluster.statistics.iops_raw.total) +&eol;(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 |34238 |19 | |10396 |Get volumes |netapp.volumes.get |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |1 |{$USERNAME} |{$PASSWORD} | | |0 |NULL | |0 |30d |0 | |NULL |{$HTTP.AGENT.TIMEOUT}|{$URL}/api/storage/volumes?fields=name,comment,state,type,svm.name,space.size,space.available,space.used,statistics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34239 |15 | |10396 |Cluster latency, other |netapp.cluster.statistics.latency.other |1m |7d |365d |0 |0 | |!ms | | |NULL |NULL |(last(//netapp.cluster.statistics.latency_raw.other) - last(//netapp.cluster.statistics.latency_raw.other,#2)) /&eol;(last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) +&eol;(last(//netapp.cluster.statistics.iops_raw.other) - last(//netapp.cluster.statistics.iops_raw.other,#2) = 0) ) * 0.001 | |0 | | | | |0 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34239 |15 | |10396 |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)) /&eol;(last(netapp.cluster.statistics.iops_raw.other) - prev(netapp.cluster.statistics.iops_raw.other) +&eol;(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 |34260 |19 | |10396 |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 |34261 |19 | |10396 |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 |34263 |19 | |10396 |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 |
@@ -3053,10 +3125,506 @@ ROW |34265 |19 |
ROW |34266 |19 | |10396 |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 |34267 |19 | |10396 |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 |34268 |19 | |10396 |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 |34269 |15 | |10396 |{#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}]) - last(//netapp.volume.statistics.latency_raw.other[{#VOLUMENAME}],#2)) /&eol;( last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) +&eol;(last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}],#2) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34270 |15 | |10396 |{#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}]) - last(//netapp.volume.statistics.latency_raw.read[{#VOLUMENAME}],#2)) /&eol;( last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) +&eol;(last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}],#2) = 0)) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for read I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34271 |15 | |10396 |{#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}]) - last(//netapp.volume.statistics.latency_raw.write[{#VOLUMENAME}],#2)) /&eol;( last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) +&eol;(last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}],#2) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for write I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |34272 |15 | |10396 |{#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}]) - last(//netapp.volume.statistics.latency_raw.total[{#VOLUMENAME}],#2)) /&eol;( last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) +&eol;(last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - last(//netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}],#2) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric aggregated over all types of I/O operations. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34269 |15 | |10396 |{#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}])) /&eol;( last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) +&eol;(last(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.other[{#VOLUMENAME}]) = 0) ) * 0.001 | |0 | | | | |2 |NULL |The average latency per I/O operation in milliseconds observed at the storage object. Performance metric for other I/O operations. Other I/O operations can be metadata operations, such as directory lookups and so on. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34270 |15 | |10396 |{#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}])) /&eol;( last(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.read[{#VOLUMENAME}]) +&eol;(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 |34271 |15 | |10396 |{#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}])) /&eol;( last(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.write[{#VOLUMENAME}]) +&eol;(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 |34272 |15 | |10396 |{#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}])) /&eol;( last(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) - prev(netapp.volume.statistics.iops_raw.total[{#VOLUMENAME}]) +&eol;(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 |34316 |5 | |10047 |Utilization of report writer internal processes, in % |zabbix[process,report writer,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 |34317 |5 | |10047 |Utilization of report manager internal processes, in % |zabbix[process,report 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 |34322 |11 | |10327 |MSSQL: Get job status |db.odbc.get[get_job_status,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT sj.name AS JobName&eol;, sj.enabled AS Enabled&eol;, sjs.last_run_outcome AS RunStatus&eol;, sjs.last_outcome_message AS LastRunStatusMessage&eol;, sjs.last_run_duration/10000*3600 + sjs.last_run_duration/100%100*60 + sjs.last_run_duration%100 AS RunDuration&eol;, CASE sjs.last_run_date&eol; WHEN 0 THEN NULL&eol; ELSE msdb.dbo.agent_datetime(sjs.last_run_date,sjs.last_run_time)&eol; END AS LastRunDateTime&eol;, sja.next_scheduled_run_date AS NextRunDateTime&eol;FROM msdb..sysjobs AS sj&eol;LEFT JOIN msdb..sysjobservers AS sjs ON sj.job_id = sjs.job_id&eol;LEFT JOIN ( SELECT job.job_id,&eol; max(act.session_id) AS s_id,&eol; max(act.next_scheduled_run_date) AS next_scheduled_run_date&eol; FROM msdb..sysjobs AS job&eol; LEFT JOIN msdb..sysjobactivity AS act ON act.job_id = job.job_id&eol; GROUP BY job.job_id ) AS sja ON sja.job_id = sj.job_id&eol;WHERE Enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets sql agent job status. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34323 |11 | |10327 |MSSQL: Get last backup |db.odbc.get[get_last_backup,"{$MSSQL.DSN}"] |10m |0 |0 |0 |4 | | | | |NULL |NULL |SELECT bs.database_name as dbname,[type], DATEDIFF(SECOND, bs.backup_finish_date, getdate()) as timesincelastbackup, (DATEDIFF(SECOND, bs.backup_start_date, bs.backup_finish_date)) as duration&eol;FROM msdb.dbo.backupset as bs WHERE bs.database_name not in (&eol;SELECT&eol;AGDatabases.database_name AS Databasename&eol;FROM sys.dm_hadr_availability_group_states States&eol;INNER JOIN master.sys.availability_groups Groups ON States.group_id = Groups.group_id&eol;INNER JOIN sys.availability_databases_cluster AGDatabases ON Groups.group_id = AGDatabases.group_id&eol;WHERE primary_replica != @@Servername OR primary_replica is NULL&eol;)&eol;GROUP BY bs.database_name, backup_finish_date, [type], backup_start_date&eol;HAVING backup_finish_date = (SELECT MAX(backup_finish_date) from msdb.dbo.backupset WHERE database_name = bs.database_name AND bs.type = [type])&eol;ORDER BY bs.database_name | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |0 |NULL |The item gets information about backup processes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34324 |11 | |10327 |Job discovery |db.odbc.discovery[jobname,"{$MSSQL.DSN}"] |1h |90d |0 |0 |4 | | | | |NULL |NULL |SELECT name AS jobname FROM msdb..sysjobs WHERE enabled = 1 | |0 |{$MSSQL.USER} |{$MSSQL.PASSWORD} | | |1 |NULL |Scanning jobs in DBMS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34336 |19 | |10397 |PD: Get instance metrics |pd.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get TiDB PD instance metrics. |0 |30d |0 | |NULL |3s |{$PD.URL}:{$PD.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34337 |19 | |10397 |PD: Get instance status |pd.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get TiDB PD instance status info. |0 |30d |0 | |NULL |3s |{$PD.URL}:{$PD.PORT}/pd/api/v1/status | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34367 |19 | |10398 |TiDB: Get instance status |tidb.get_status |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get TiDB instance status info. |0 |30d |0 | |NULL |3s |{$TIDB.URL}:{$TIDB.PORT}/status | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34368 |19 | |10398 |TiDB: Get instance metrics |tidb.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get TiDB instance metrics. |0 |30d |0 | |NULL |3s |{$TIDB.URL}:{$TIDB.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34412 |19 | |10399 |TiKV: Get instance metrics |tikv.get_metrics |1m |0 |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Get TiKV instance metrics. |0 |30d |0 | |NULL |3s |{$TIKV.URL}:{$TIKV.PORT}/metrics | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34451 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10400 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34452 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10400 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |277 | | |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 |34453 |20 |1.3.6.1.2.1.1.3.0 |10400 |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 |34454 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10400 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34455 |20 |1.3.6.1.2.1.1.2.0 |10400 |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 |34456 |20 |1.3.6.1.2.1.1.5.0 |10400 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34457 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10400 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34458 |20 |1.3.6.1.2.1.1.6.0 |10400 |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 |34459 |20 |1.3.6.1.2.1.1.1.0 |10400 |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 |34460 |20 |1.3.6.1.2.1.1.4.0 |10400 |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 |34461 |17 | |10400 |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 |34462 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10400 |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 |34463 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10400 |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 |34464 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10400 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34465 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10400 |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 |34466 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10400 |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 |34467 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10400 |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 |34468 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10400 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |275 | | |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 |34469 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10400 |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 |34470 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10400 |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 |34471 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10400 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |276 | | |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 |34472 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10400 |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 |34473 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10400 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |274 | | |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 |34474 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10400 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34475 |5 | |10400 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |278 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34476 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10400 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34477 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10400 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34478 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10400 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34479 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10400 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34480 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10400 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34481 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10400 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34482 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10400 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34483 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10400 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34484 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10400 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34485 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10400 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34486 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10400 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34487 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10400 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34488 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10400 |{#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 |34489 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10400 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |273 | | |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 |34490 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10400 |{#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 |34491 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10400 |{#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 |34492 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10400 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |273 | | |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 |34493 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10400 |{#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 |34494 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10400 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34495 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10400 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34496 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10400 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34497 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10400 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34498 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10400 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34499 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10401 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34500 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10401 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |283 | | |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 |34501 |20 |1.3.6.1.2.1.1.3.0 |10401 |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 |34502 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10401 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34503 |20 |1.3.6.1.2.1.1.2.0 |10401 |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 |34504 |20 |1.3.6.1.2.1.1.5.0 |10401 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34505 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10401 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34506 |20 |1.3.6.1.2.1.1.6.0 |10401 |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 |34507 |20 |1.3.6.1.2.1.1.1.0 |10401 |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 |34508 |20 |1.3.6.1.2.1.1.4.0 |10401 |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 |34509 |17 | |10401 |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 |34510 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10401 |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 |34511 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10401 |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 |34512 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10401 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34513 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10401 |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 |34514 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10401 |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 |34515 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10401 |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 |34516 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10401 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |281 | | |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 |34517 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10401 |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 |34518 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10401 |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 |34519 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10401 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |282 | | |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 |34520 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10401 |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 |34521 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10401 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |280 | | |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 |34522 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10401 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34523 |5 | |10401 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |284 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34524 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10401 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34525 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10401 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34526 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10401 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34527 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10401 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34528 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10401 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34529 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10401 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34530 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10401 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34531 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10401 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34532 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10401 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34533 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10401 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34534 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10401 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34535 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10401 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34536 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10401 |{#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 |34537 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10401 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |279 | | |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 |34538 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10401 |{#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 |34539 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10401 |{#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 |34540 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10401 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |279 | | |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 |34541 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10401 |{#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 |34542 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10401 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34543 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10401 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34544 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10401 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34545 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10401 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34546 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10401 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34547 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10402 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34548 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10402 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |289 | | |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 |34549 |20 |1.3.6.1.2.1.1.3.0 |10402 |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 |34550 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10402 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34551 |20 |1.3.6.1.2.1.1.2.0 |10402 |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 |34552 |20 |1.3.6.1.2.1.1.5.0 |10402 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34553 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10402 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34554 |20 |1.3.6.1.2.1.1.6.0 |10402 |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 |34555 |20 |1.3.6.1.2.1.1.1.0 |10402 |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 |34556 |20 |1.3.6.1.2.1.1.4.0 |10402 |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 |34557 |17 | |10402 |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 |34558 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10402 |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 |34559 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10402 |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 |34560 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10402 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34561 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10402 |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 |34562 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10402 |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 |34563 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10402 |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 |34564 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10402 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |287 | | |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 |34565 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10402 |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 |34566 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10402 |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 |34567 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10402 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |288 | | |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 |34568 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10402 |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 |34569 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10402 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |286 | | |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 |34570 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10402 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34571 |5 | |10402 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |290 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34572 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10402 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34573 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10402 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34574 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10402 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34575 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10402 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34576 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10402 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34577 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10402 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34578 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10402 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34579 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10402 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34580 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10402 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34581 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10402 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34582 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10402 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34583 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10402 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34584 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10402 |{#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 |34585 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10402 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |285 | | |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 |34586 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10402 |{#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 |34587 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10402 |{#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 |34588 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10402 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |285 | | |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 |34589 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10402 |{#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 |34590 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10402 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34591 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10402 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34592 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10402 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34593 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10402 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34594 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10402 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34595 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10403 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34596 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10403 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |295 | | |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 |34597 |20 |1.3.6.1.2.1.1.3.0 |10403 |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 |34598 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10403 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34599 |20 |1.3.6.1.2.1.1.2.0 |10403 |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 |34600 |20 |1.3.6.1.2.1.1.5.0 |10403 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34601 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10403 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34602 |20 |1.3.6.1.2.1.1.6.0 |10403 |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 |34603 |20 |1.3.6.1.2.1.1.1.0 |10403 |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 |34604 |20 |1.3.6.1.2.1.1.4.0 |10403 |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 |34605 |17 | |10403 |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 |34606 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10403 |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 |34607 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10403 |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 |34608 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10403 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34609 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10403 |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 |34610 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10403 |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 |34611 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10403 |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 |34612 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10403 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |293 | | |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 |34613 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10403 |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 |34614 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10403 |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 |34615 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10403 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |294 | | |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 |34616 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10403 |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 |34617 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10403 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |292 | | |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 |34618 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10403 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34619 |5 | |10403 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |296 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34620 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10403 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34621 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10403 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34622 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10403 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34623 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10403 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34624 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10403 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34625 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10403 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34626 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10403 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34627 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10403 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34628 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10403 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34629 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10403 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34630 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10403 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34631 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10403 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34632 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10403 |{#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 |34633 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10403 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |291 | | |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 |34634 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10403 |{#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 |34635 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10403 |{#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 |34636 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10403 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |291 | | |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 |34637 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10403 |{#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 |34638 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10403 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34639 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10403 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34640 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10403 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34641 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10403 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34642 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10403 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34643 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10404 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34644 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10404 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |301 | | |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 |34645 |20 |1.3.6.1.2.1.1.3.0 |10404 |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 |34646 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10404 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34647 |20 |1.3.6.1.2.1.1.2.0 |10404 |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 |34648 |20 |1.3.6.1.2.1.1.5.0 |10404 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34649 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10404 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34650 |20 |1.3.6.1.2.1.1.6.0 |10404 |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 |34651 |20 |1.3.6.1.2.1.1.1.0 |10404 |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 |34652 |20 |1.3.6.1.2.1.1.4.0 |10404 |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 |34653 |17 | |10404 |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 |34654 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10404 |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 |34655 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10404 |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 |34656 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10404 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34657 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10404 |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 |34658 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10404 |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 |34659 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10404 |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 |34660 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10404 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |299 | | |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 |34661 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10404 |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 |34662 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10404 |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 |34663 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10404 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |300 | | |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 |34664 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10404 |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 |34665 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10404 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |298 | | |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 |34666 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10404 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34667 |5 | |10404 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |302 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34668 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10404 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34669 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10404 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34670 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10404 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34671 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10404 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34672 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10404 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34673 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10404 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34674 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10404 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34675 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10404 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34676 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10404 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34677 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10404 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34678 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10404 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34679 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10404 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34680 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10404 |{#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 |34681 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10404 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |297 | | |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 |34682 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10404 |{#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 |34683 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10404 |{#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 |34684 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10404 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |297 | | |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 |34685 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10404 |{#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 |34686 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10404 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34687 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10404 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34688 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10404 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34689 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10404 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34690 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10404 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34691 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10405 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34692 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10405 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |307 | | |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 |34693 |20 |1.3.6.1.2.1.1.3.0 |10405 |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 |34694 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10405 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34695 |20 |1.3.6.1.2.1.1.2.0 |10405 |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 |34696 |20 |1.3.6.1.2.1.1.5.0 |10405 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34697 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10405 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34698 |20 |1.3.6.1.2.1.1.6.0 |10405 |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 |34699 |20 |1.3.6.1.2.1.1.1.0 |10405 |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 |34700 |20 |1.3.6.1.2.1.1.4.0 |10405 |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 |34701 |17 | |10405 |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 |34702 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10405 |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 |34703 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10405 |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 |34704 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10405 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS. If&eol; the UPS does not use smart cells then the agent reports&eol; ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34705 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10405 |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 |34706 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10405 |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 |34707 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10405 |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 |34708 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10405 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |305 | | |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 |34709 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10405 |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 |34710 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10405 |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 |34711 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10405 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |306 | | |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 |34712 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10405 |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 |34713 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10405 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |304 | | |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 |34714 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10405 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The date when the UPS system's batteries were last replaced&eol; in mm/dd/yy (or yyyy) format. For Smart-UPS models, this value&eol; is originally set at the factory. When the UPS batteries&eol; are replaced, this value should be reset by the administrator.&eol; For Symmetra PX 250/500 this OID is read-only and is configurable in the local display only. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34715 |5 | |10405 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |308 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34716 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10405 |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 |34717 |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] |10405 |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 |34718 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10405 |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 |34719 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10405 |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 |34720 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10405 |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 |34721 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10405 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34722 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10405 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The number of external battery packs connected to the UPS that&eol;are defective. If the UPS does not use smart cells then the&eol;agent reports ERROR_NO_SUCH_NAME. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34723 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10405 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery cartridge estimated battery replace date. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34724 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10405 |{#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 |34725 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10405 |{#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 |34726 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10405 |{#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 |34727 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10405 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The battery pack serial number. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34728 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10405 |{#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 |34729 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10405 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |303 | | |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 |34730 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10405 |{#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 |34731 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10405 |{#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 |34732 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10405 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |303 | | |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 |34733 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10405 |{#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 |34734 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10405 |{#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 |34735 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10405 |{#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 |34736 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10405 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34737 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10405 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34738 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10405 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34739 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10406 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34740 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10406 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |313 | | |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 |34741 |20 |1.3.6.1.2.1.1.3.0 |10406 |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 |34742 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10406 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34743 |20 |1.3.6.1.2.1.1.2.0 |10406 |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 |34744 |20 |1.3.6.1.2.1.1.5.0 |10406 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34745 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10406 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34746 |20 |1.3.6.1.2.1.1.6.0 |10406 |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 |34747 |20 |1.3.6.1.2.1.1.1.0 |10406 |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 |34748 |20 |1.3.6.1.2.1.1.4.0 |10406 |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 |34749 |17 | |10406 |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 |34750 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10406 |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 |34751 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10406 |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 |34752 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10406 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34753 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10406 |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 |34754 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10406 |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 |34755 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10406 |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 |34756 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10406 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |311 | | |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 |34757 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10406 |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 |34758 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10406 |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 |34759 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10406 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |312 | | |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 |34760 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10406 |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 |34761 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10406 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |310 | | |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 |34762 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10406 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34763 |5 | |10406 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |314 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34764 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10406 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34765 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10406 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34766 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10406 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34767 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10406 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34768 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10406 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34769 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10406 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34770 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10406 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34771 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10406 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34772 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10406 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34773 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10406 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34774 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10406 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34775 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10406 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34776 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10406 |{#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 |34777 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10406 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |309 | | |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 |34778 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10406 |{#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 |34779 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10406 |{#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 |34780 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10406 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |309 | | |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 |34781 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10406 |{#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 |34782 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10406 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34783 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10406 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34784 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10406 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34785 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10406 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34786 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10406 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34787 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10395 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34788 |20 |1.3.6.1.2.1.1.5.0 |10395 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34789 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10395 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34790 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10395 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34791 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10395 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34792 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10395 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34793 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10407 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34794 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10407 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |320 | | |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 |34795 |20 |1.3.6.1.2.1.1.3.0 |10407 |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 |34796 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10407 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34797 |20 |1.3.6.1.2.1.1.2.0 |10407 |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 |34798 |20 |1.3.6.1.2.1.1.5.0 |10407 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34799 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10407 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34800 |20 |1.3.6.1.2.1.1.6.0 |10407 |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 |34801 |20 |1.3.6.1.2.1.1.1.0 |10407 |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 |34802 |20 |1.3.6.1.2.1.1.4.0 |10407 |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 |34803 |17 | |10407 |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 |34804 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10407 |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 |34805 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10407 |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 |34806 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10407 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34807 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10407 |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 |34808 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10407 |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 |34809 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10407 |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 |34810 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10407 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |318 | | |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 |34811 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10407 |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 |34812 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10407 |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 |34813 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10407 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |319 | | |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 |34814 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10407 |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 |34815 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10407 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |317 | | |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 |34816 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10407 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34817 |5 | |10407 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |321 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34818 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10407 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34819 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10407 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34820 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10407 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34821 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10407 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34822 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10407 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34823 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10407 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34824 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10407 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34825 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10407 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34826 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10407 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34827 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10407 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34828 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10407 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34829 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10407 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34830 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10407 |{#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 |34831 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10407 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |316 | | |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 |34832 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10407 |{#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 |34833 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10407 |{#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 |34834 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10407 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |316 | | |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 |34835 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10407 |{#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 |34836 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10407 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34837 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10407 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34838 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10407 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34839 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10407 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34840 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10407 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34841 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10408 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34842 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10408 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |326 | | |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 |34843 |20 |1.3.6.1.2.1.1.3.0 |10408 |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 |34844 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10408 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34845 |20 |1.3.6.1.2.1.1.2.0 |10408 |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 |34846 |20 |1.3.6.1.2.1.1.5.0 |10408 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34847 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10408 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34848 |20 |1.3.6.1.2.1.1.6.0 |10408 |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 |34849 |20 |1.3.6.1.2.1.1.1.0 |10408 |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 |34850 |20 |1.3.6.1.2.1.1.4.0 |10408 |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 |34851 |17 | |10408 |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 |34852 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10408 |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 |34853 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10408 |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 |34854 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10408 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34855 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10408 |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 |34856 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10408 |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 |34857 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10408 |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 |34858 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10408 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |324 | | |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 |34859 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10408 |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 |34860 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10408 |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 |34861 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10408 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |325 | | |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 |34862 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10408 |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 |34863 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10408 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |323 | | |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 |34864 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10408 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34865 |5 | |10408 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |327 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34866 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10408 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34867 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10408 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34868 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10408 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34869 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10408 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34870 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10408 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34871 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10408 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34872 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10408 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34873 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10408 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34874 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10408 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34875 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10408 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34876 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10408 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34877 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10408 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34878 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10408 |{#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 |34879 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10408 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |322 | | |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 |34880 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10408 |{#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 |34881 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10408 |{#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 |34882 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10408 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |322 | | |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 |34883 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10408 |{#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 |34884 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10408 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34885 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10408 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34886 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10408 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34887 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10408 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34888 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10408 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34889 |20 |1.3.6.1.4.1.318.1.1.1.2.3.1.0 |10409 |Battery capacity |battery.capacity[upsHighPrecBatteryCapacity] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The remaining battery capacity expressed as&eol; percentage of full capacity. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34890 |20 |1.3.6.1.4.1.318.1.1.1.4.1.1.0 |10409 |Output status |output.status[upsBasicOutputStatus] |1m |7d |365d |0 |3 | | | | |NULL |332 | | |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 |34891 |20 |1.3.6.1.2.1.1.3.0 |10409 |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 |34892 |20 |1.3.6.1.4.1.318.1.1.1.1.2.3.0 |10409 |Serial number |system.sn[upsAdvIdentSerialNumber] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;An 8-character string identifying the serial number of&eol; the UPS internal microprocessor. This number is set at&eol; the factory. NOTE: This number does NOT correspond to&eol; the serial number on the rear of the UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34893 |20 |1.3.6.1.2.1.1.2.0 |10409 |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 |34894 |20 |1.3.6.1.2.1.1.5.0 |10409 |System name |system.name[sysName.0] |15m |2w |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By&eol;convention, this is the node's fully-qualified domain name. If the name is unknown,&eol;the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34895 |20 |1.3.6.1.4.1.318.1.1.1.1.1.1.0 |10409 |Model |system.model[upsBasicIdentModel] |15m |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |MIB: PowerNet-MIB&eol;The UPS model name (e.g. 'APC Smart-UPS 600'). |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34896 |20 |1.3.6.1.2.1.1.6.0 |10409 |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 |34897 |20 |1.3.6.1.2.1.1.1.0 |10409 |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 |34898 |20 |1.3.6.1.2.1.1.4.0 |10409 |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 |34899 |17 | |10409 |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 |34900 |20 |1.3.6.1.4.1.318.1.1.1.4.3.1.0 |10409 |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 |34901 |20 |1.3.6.1.4.1.318.1.1.1.4.3.3.0 |10409 |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 |34902 |20 |1.3.6.1.4.1.318.1.1.1.2.2.5.0 |10409 |External battery packs count |battery.external_packs_count[upsAdvBatteryNumOfBattPacks] |1h |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 |34903 |20 |1.3.6.1.4.1.318.1.1.1.4.3.4.0 |10409 |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 |34904 |20 |1.3.6.1.4.1.318.1.1.1.3.3.1.0 |10409 |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 |34905 |20 |1.3.6.1.4.1.318.1.1.1.3.3.4.0 |10409 |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 |34906 |20 |1.3.6.1.4.1.318.1.1.1.3.2.5.0 |10409 |Input fail cause |input.fail[upsAdvInputLineFailCause] |1m |7d |365d |0 |3 | | | | |NULL |330 | | |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 |34907 |20 |1.3.6.1.4.1.318.1.1.1.2.3.4.0 |10409 |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 |34908 |20 |1.3.6.1.4.1.318.1.1.1.2.3.2.0 |10409 |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 |34909 |20 |1.3.6.1.4.1.318.1.1.1.2.1.1.0 |10409 |Battery status |battery.status[upsBasicBatteryStatus] |1m |7d |365d |0 |3 | | | | |NULL |331 | | |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 |34910 |20 |1.3.6.1.4.1.318.1.1.1.2.2.3.0 |10409 |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 |34911 |20 |1.3.6.1.4.1.318.1.1.1.2.2.4.0 |10409 |Battery replace indicator |battery.replace_indicator[upsAdvBatteryReplaceIndicator] |1m |7d |365d |0 |3 | | | | |NULL |329 | | |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 |34912 |20 |1.3.6.1.4.1.318.1.1.1.2.1.3.0 |10409 |Battery last replace date |battery.last_replace_date[upsBasicBatteryLastReplaceDate] |1h |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 |34913 |5 | |10409 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |NULL |333 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34914 |20 |discovery[{#EXTERNAL_PACKS},1.3.6.1.4.1.318.1.1.1.2.2.6] |10409 |External bad battery packs discovery |battery.packs.bad.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the number of external defective battery packs. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34915 |20 |discovery[{#CARTRIDGE_STATUS},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7,{#BATTERY_PACK},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1,{#CARTRIDGE_INDEX},1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2] |10409 |External battery packs discovery |battery.packs.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34916 |20 |discovery[{#EXTERNAL_SENSOR1_NAME},1.3.6.1.4.1.318.1.1.25.1.2.1.3] |10409 |External sensor port 1 discovery |external.sensor1.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34917 |20 |discovery[{#EXTERNAL_SENSOR2_NAME},1.3.6.1.4.1.318.1.1.25.1.2.2.3] |10409 |External sensor port 2 discovery |external.sensor2.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |uioSensorStatusTable |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34918 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.2.3.1.2.1.1] |10409 |Input phases discovery |input.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The input phase identifier. OID upsPhaseInputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34919 |20 |discovery[{#PHASEINDEX},1.3.6.1.4.1.318.1.1.1.9.3.3.1.2.1.1] |10409 |Output phases discovery |output.phases.discovery |1h |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |The output phase identifier. OID upsPhaseOutputPhaseIndex.1.1 |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34920 |20 |1.3.6.1.4.1.318.1.1.1.2.2.6.0 |10409 |{#SNMPINDEX}: External battery packs bad |battery.external_packs_bad[upsAdvBatteryNumOfBadBattPacks.{#SNMPINDEX}] |15m |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 |34921 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8.{#SNMPINDEX} |10409 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery estimated replace date |battery.estimated_replace_date[upsHighPrecBatteryPackCartridgeReplaceDate.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1h |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 |34922 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7.{#SNMPINDEX} |10409 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery pack cartridge health |battery.pack.cartridge_health[upsHighPrecBatteryPackCartridgeHealth.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34923 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10.{#SNMPINDEX} |10409 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery status |battery.pack.status[upsHighPrecBatteryPackCartridgeStatus.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34924 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5.{#SNMPINDEX} |10409 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Battery temperature |battery.temperature[upsHighPrecBatteryPackTemperature.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |1m |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 |34925 |20 |1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4.{#SNMPINDEX} |10409 |{#BATTERY_PACK}.{#CARTRIDGE_INDEX}: Serial number |system.sn[upsHighPrecBatteryPackSerialNumber.{#BATTERY_PACK}.{#CARTRIDGE_INDEX}] |15m |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 |34926 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.7.1.1 |10409 |{#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 |34927 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.9.1.1 |10409 |{#EXTERNAL_SENSOR1_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.1.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |328 | | |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 |34928 |20 |1.3.6.1.4.1.318.1.1.25.1.2.1.6.1.1 |10409 |{#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 |34929 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.7.1.1 |10409 |{#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 |34930 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.9.1.1 |10409 |{#EXTERNAL_SENSOR2_NAME}: Sensor alarm status |external.sensor.status[uioSensorStatusAlarmStatus.2.{#SNMPINDEX}] |1m |7d |365d |0 |3 | | | | |NULL |328 | | |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 |34931 |20 |1.3.6.1.4.1.318.1.1.25.1.2.2.6.1.1 |10409 |{#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 |34932 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.6.1.1.{#PHASEINDEX} |10409 |{#PHASEINDEX}: Phase input current |phase.input.current[upsPhaseInputCurrent.1.1.{#PHASEINDEX}] |1m |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 |34933 |20 |1.3.6.1.4.1.318.1.1.1.9.2.3.1.3.1.1.{#PHASEINDEX} |10409 |{#PHASEINDEX}: Phase input voltage |phase.input.voltage[upsPhaseInputVoltage.1.1.{#PHASEINDEX}] |1m |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 |34934 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.4.1.1.{#PHASEINDEX} |10409 |{#PHASEINDEX}: Phase output current |phase.output.current[upsPhaseOutputCurrent.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |A | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output current in 0.1 amperes drawn&eol; by the load on the UPS, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34935 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.10.1.1.{#PHASEINDEX} |10409 |{#PHASEINDEX}: Phase output load, % |phase.output.load.percent[upsPhaseOutputPercentLoad.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The percentage of the UPS load capacity in VA at&eol; redundancy @ (n + x) presently being used on this&eol; output phase, or -1 if it's unsupported by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34936 |20 |1.3.6.1.4.1.318.1.1.1.9.3.3.1.3.1.1.{#PHASEINDEX} |10409 |{#PHASEINDEX}: Phase output voltage |phase.output.voltage[upsPhaseOutputVoltage.1.1.{#PHASEINDEX}] |1m |7d |365d |0 |0 | |V | | |NULL |NULL | | |0 | | | | |2 |NULL |MIB: PowerNet-MIB&eol;The output voltage in VAC, or -1 if it's unsupported&eol; by this UPS. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
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|
@@ -3583,75 +4151,75 @@ ROW |30401 |18 | |10310 |Redis: Master sync in progress{#SINGLETON}
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 |30436 |18 | |10316 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30437 |18 | |10316 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30438 |18 | |10316 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30439 |18 | |10316 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30440 |18 | |10316 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30441 |18 | |10316 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30442 |18 | |10316 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30443 |18 | |10316 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30444 |18 | |10316 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30445 |18 | |10316 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30446 |18 | |10316 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30447 |18 | |10316 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30449 |18 | |10316 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30450 |18 | |10316 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30451 |18 | |10316 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30452 |18 | |10316 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30453 |18 | |10316 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30454 |18 | |10316 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30455 |18 | |10316 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30456 |18 | |10316 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30457 |18 | |10316 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30458 |18 | |10316 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30459 |18 | |10316 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30460 |18 | |10316 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30461 |18 | |10316 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30465 |18 | |10316 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30466 |18 | |10316 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30470 |18 | |10316 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30471 |18 | |10316 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30476 |18 | |10316 |MySQL: Replication Seconds Behind Master {#MASTERHOST} |mysql.seconds_behind_master["{#MASTERHOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30477 |18 | |10316 |MySQL: Replication Slave IO Running {#MASTERHOST} |mysql.slave_io_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30478 |18 | |10316 |MySQL: Replication Slave SQL Running {#MASTERHOST} |mysql.slave_sql_running["{#MASTERHOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30475 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30484 |18 | |10317 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30485 |18 | |10317 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30486 |18 | |10317 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30487 |18 | |10317 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30488 |18 | |10317 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30489 |18 | |10317 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30490 |18 | |10317 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30491 |18 | |10317 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30492 |18 | |10317 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30493 |18 | |10317 |MySQL: InnoDB buffer pool pages free |mysql.innodb_buffer_pool_pages_free |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30494 |18 | |10317 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30495 |18 | |10317 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30496 |18 | |10317 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30497 |18 | |10317 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30499 |18 | |10317 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30500 |18 | |10317 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30503 |18 | |10317 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30504 |18 | |10317 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30505 |18 | |10317 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30506 |18 | |10317 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30507 |18 | |10317 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30508 |18 | |10317 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30509 |18 | |10317 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30510 |18 | |10317 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30512 |18 | |10317 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30513 |18 | |10317 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30517 |18 | |10317 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30518 |18 | |10317 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30519 |18 | |10317 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30524 |18 | |10317 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of seconds the slave SQL thread has been behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30525 |18 | |10317 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started a replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30526 |18 | |10317 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30523 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30532 |18 | |10318 |Docker: Architecture |docker.architecture |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30533 |18 | |10318 |Docker: Live restore enabled |docker.live_restore.enabled |0 |7d |365d |0 |3 | | | | |NULL |147 | | |0 | | | | |0 |NULL | |0 |30d |0 | |30529 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3752,40 +4320,40 @@ ROW |30633 |18 | |10319 |Memcached: Open connections
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 |30642 |18 | |10320 |MySQL: InnoDB buffer pool reads |mysql.innodb_buffer_pool_reads |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30643 |18 | |10320 |MySQL: InnoDB buffer pool reads per second |mysql.innodb_buffer_pool_reads.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical reads per second that InnoDB could not satisfy from the buffer pool, and had to read directly from the disk. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30644 |18 | |10320 |MySQL: InnoDB row lock time |mysql.innodb_row_lock_time |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The total time spent in acquiring row locks for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30645 |18 | |10320 |MySQL: InnoDB row lock time max |mysql.innodb_row_lock_time_max |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum time to acquire a row lock for InnoDB tables, in milliseconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |30646 |18 | |10320 |MySQL: InnoDB row lock waits |mysql.innodb_row_lock_waits |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times operations on InnoDB tables had to wait for a row lock. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30647 |18 | |10320 |MySQL: Max used connections |mysql.max_used_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The maximum number of connections that have been in use simultaneously since the server start. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30648 |18 | |10320 |MySQL: Queries per second |mysql.queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This variable includes statements executed within stored programs, unlike the Questions variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30649 |18 | |10320 |MySQL: InnoDB buffer pool read requests |mysql.innodb_buffer_pool_read_requests |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30650 |18 | |10320 |MySQL: Questions per second |mysql.questions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statements executed by the server. This includes only statements sent to the server by clients and not statements executed within stored programs, unlike the Queries variable. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30651 |18 | |10320 |MySQL: Slow queries per second |mysql.slow_queries.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of queries that have taken more than long_query_time seconds. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30652 |18 | |10320 |MySQL: Threads cached |mysql.threads_cached |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads in the thread cache. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30653 |18 | |10320 |MySQL: Threads connected |mysql.threads_connected |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of currently open connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30655 |18 | |10320 |MySQL: Threads running |mysql.threads_running |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads which are not sleeping. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30656 |18 | |10320 |MySQL: Uptime |mysql.uptime |0 |7d |365d |0 |3 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of seconds that the server has been up. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30657 |18 | |10320 |MySQL: InnoDB buffer pool read requests per second |mysql.innodb_buffer_pool_read_requests.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of logical read requests per second. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30658 |18 | |10320 |MySQL: InnoDB buffer pool pages total |mysql.innodb_buffer_pool_pages_total |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of the InnoDB buffer pool, in pages. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30659 |18 | |10320 |MySQL: Bytes received |mysql.bytes_received.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes received from all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30660 |18 | |10320 |MySQL: Connection errors max connections per second |mysql.connection_errors_max_connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to the max_connections limit being reached. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30661 |18 | |10320 |MySQL: Bytes sent |mysql.bytes_sent.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of bytes sent to all clients. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30662 |18 | |10320 |MySQL: Command Delete per second |mysql.com_delete.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_delete counter variable indicates the number of times the delete statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30663 |18 | |10320 |MySQL: Command Insert per second |mysql.com_insert.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_insert counter variable indicates the number of times the insert statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30664 |18 | |10320 |MySQL: Command Select per second |mysql.com_select.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_select counter variable indicates the number of times the select statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30665 |18 | |10320 |MySQL: Command Update per second |mysql.com_update.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The Com_update counter variable indicates the number of times the update statement has been executed. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30666 |18 | |10320 |MySQL: Connection errors accept per second |mysql.connection_errors_accept.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors that occurred during calls to accept() on the listening port. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30667 |18 | |10320 |MySQL: Connection errors internal per second |mysql.connection_errors_internal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of refused connections due to internal server errors, for example out of memory errors, or failed thread starts. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |30671 |18 | |10320 |MySQL: Connection errors tcpwrap per second |mysql.connection_errors_tcpwrap.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections the libwrap library has refused. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30672 |18 | |10320 |MySQL: Connections per second |mysql.connections.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connection attempts (successful or not) to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30676 |18 | |10320 |MySQL: Aborted connections per second |mysql.aborted_connects.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed attempts to connect to the MySQL server. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30677 |18 | |10320 |MySQL: Aborted clients per second |mysql.aborted_clients.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of connections that were aborted because the client died without closing the connection properly. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30682 |18 | |10320 |MySQL: Replication Seconds Behind Master {#MASTER_HOST} |mysql.replication.seconds_behind_master["{#MASTER_HOST}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of seconds that the slave SQL thread is behind processing the master binary log.&eol;A high number (or an increasing one) can indicate that the slave is unable to handle events&eol;from the master in a timely fashion. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30683 |18 | |10320 |MySQL: Replication Slave IO Running {#MASTER_HOST} |mysql.replication.slave_io_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the I/O thread for reading the master's binary log is running. &eol;Normally, you want this to be Yes unless you have not yet started a replication or have &eol;explicitly stopped it with STOP SLAVE. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30684 |18 | |10320 |MySQL: Replication Slave SQL Running {#MASTER_HOST} |mysql.replication.slave_sql_running["{#MASTER_HOST}"] |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Whether the SQL thread for executing events in the relay log is running. &eol;As with the I/O thread, this should normally be Yes. |0 |30d |0 | |30681 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30686 |18 | |10321 |Discrete sensors discovery |ipmi.discrete.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the discrete IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30687 |18 | |10321 |Threshold sensors discovery |ipmi.sensors.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery of the threshold IPMI sensors. |0 |30d |1 | |30685 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -3917,12 +4485,11 @@ ROW |30836 |18 | |10323 |ClickHouse: ZooKeeper wait time
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 |30842 |18 | |10323 |ClickHouse: ZooKeeper user exceptions 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 |30845 |18 | |10323 |ClickHouse: ZooKeeper hardware exceptions 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 |
@@ -3943,8 +4510,8 @@ ROW |30862 |18 | |10323 |ClickHouse: Network errors per second
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 |30866 |18 | |10323 |ClickHouse: Memory used for background merges |clickhouse.memory.tracking.background |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background merges, mutations and fetches).&eol; Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30867 |18 | |10323 |ClickHouse: Memory used for background moves |clickhouse.memory.tracking.background.moves |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa.&eol; This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30868 |18 | |10323 |ClickHouse: Memory used for merges |clickhouse.memory.tracking.merges |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. &eol;This happens naturally due to caches for tables indexes and doesn't indicate memory leaks." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30869 |18 | |10323 |ClickHouse: Memory used for background schedule pool |clickhouse.memory.tracking.schedule.pool |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |"Total amount of memory (bytes) allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables)." |0 |30d |0 | |30826 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30870 |18 | |10323 |ClickHouse: Uncompressed bytes merged per second |clickhouse.merge_bytes.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |Uncompressed bytes that were read for background merges |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4054,10 +4621,10 @@ ROW |31067 |18 | |10327 |MSSQL: Page splits per second
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 |31071 |18 | |10327 |MSSQL: Safe auto-params per second |mssql.safe_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of safe auto-parameterization attempts per second. Safe refers to a determination that a cached execution plan can be shared between different similar-looking Transact-SQL statements. SQL Server makes many auto-parameterization attempts some of which turn out to be safe and others fail. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31072 |18 | |10327 |MSSQL: SQL compilations per second |mssql.sql_compilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of SQL compilations per second. Indicates the number of times the compile code path is entered. Includes compiles caused by statement-level recompilations in SQL Server. After SQL Server user activity is stable, this value reaches a steady state. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31073 |18 | |10327 |MSSQL: SQL re-compilations per second |mssql.sql_recompilations_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of statement recompiles per second. Counts the number of times statement recompiles are triggered. Generally, you want the recompiles to be low. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimum number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31074 |18 | |10327 |MSSQL: Target pages |mssql.target_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The optimal number of pages in the buffer pool. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31075 |18 | |10327 |MSSQL: Maximum workspace memory |mssql.maximum_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the maximum amount of memory available for executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31076 |18 | |10327 |MSSQL: Target server memory |mssql.target_server_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the ideal amount of memory the server can consume. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31077 |18 | |10327 |MSSQL: Total latch wait Time |mssql.total_latch_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Total latch wait time (in milliseconds) for latch requests in the last second. This value should stay stable compared to the number of latch waits per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4069,8 +4636,8 @@ ROW |31082 |18 | |10327 |MSSQL: Uptime
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 |31086 |18 | |10327 |MSSQL: Work files created per second |mssql.workfiles_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work files created per second. For example, work files can be used to store temporary results for hash joins and hash aggregates. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31087 |18 | |10327 |MSSQL: Work tables created per second |mssql.worktables_created_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of work tables created per second. For example, work tables can be used to store temporary results for query spool, lob variables, XML variables, and cursors. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31088 |18 | |10327 |MSSQL: Worktables from cache ratio |mssql.worktables_from_cache_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Percentage of work tables created where the initial two pages of the work table were not allocated but were immediately available from the work table cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31089 |18 | |10327 |MSSQL: Memory grants outstanding |mssql.memory_grants_outstanding |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total number of processes that have successfully acquired a workspace memory grant. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31090 |18 | |10327 |MSSQL: Logouts per second |mssql.logouts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logout operations started per second. Any value over 2 may indicate insufcient connection pooling. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4079,19 +4646,19 @@ ROW |31092 |18 | |10327 |MSSQL: Forwarded records per second
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 |31096 |18 | |10327 |MSSQL: Buffer cache hit ratio |mssql.buffer_cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the percentage of pages found in the buffer cache without having to read from disk. The ratio is the total number of cache hits divided by the total number of cache lookups over the last few thousand page accesses. After a long period of time, the ratio changes very little. Since reading from the cache is much less expensive than reading from the disk, a higher value is preferred for this item. To increase the buffer cache hit ratio, consider increasing the amount of memory available to SQL Server or using the buffer pool extension feature. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31097 |18 | |10327 |MSSQL: Cache hit ratio |mssql.cache_hit_ratio |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Ratio between cache hits and lookups. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31098 |18 | |10327 |MSSQL: Cache object counts |mssql.cache_object_counts |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in the cache. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31099 |18 | |10327 |MSSQL: Cache objects in use |mssql.cache_objects_in_use |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cache objects in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31100 |18 | |10327 |MSSQL: Cache pages |mssql.cache_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of 8-kilobyte (KB) pages used by cache objects. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation 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 |31101 |18 | |10327 |MSSQL: Checkpoint pages per second |mssql.checkpoint_pages_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages flushed to disk per second by a checkpoint or other operation which required all dirty pages to be flushed. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31102 |18 | |10327 |MSSQL: Total data file size |mssql.data_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all data files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31103 |18 | |10327 |MSSQL: Database pages |mssql.database_pages |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of pages in the buffer pool with database content. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31104 |18 | |10327 |MSSQL: Total errors per second |mssql.errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This 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 |31105 |18 | |10327 |MSSQL: Failed auto-params per second |mssql.failed_autoparams_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of failed auto-parameterization attempts per second. This number should be small. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31106 |18 | |10327 |MSSQL: Free list stalls per second |mssql.free_list_stalls_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Indicates the number of requests per second that had to wait for a free page. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31107 |18 | |10327 |MSSQL: Logins per second |mssql.logins_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of logins started per second. This does not include pooled connections. Any value over 2 may indicate 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 |31108 |18 | |10327 |MSSQL: Full scans per second |mssql.full_scans_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of unrestricted full scans per second. These can be either base-table or full-index scans. Values greater than 1 or 2 indicate that there are table / Index page scans. If that is combined with high CPU, this counter requires further investigation, otherwise, if the full scans are on small tables, it can be ignored. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31109 |18 | |10327 |MSSQL: Granted Workspace Memory |mssql.granted_workspace_memory |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31110 |18 | |10327 |MSSQL: Index searches per second |mssql.index_searches_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of index searches per second. These are used to start a range scan, reposition a range scan, revalidate a scan point, fetch a single index record, and search down the index to locate where to insert a new row. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31111 |18 | |10327 |MSSQL: Errors per second (Info errors) |mssql.info_errors_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of errors per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4099,27 +4666,27 @@ ROW |31112 |18 | |10327 |MSSQL: Errors per second (Kill connection err
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 |31116 |18 | |10327 |MSSQL: Total lock requests per second that timed out |mssql.lock_timeouts_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of timed out lock requests per second, including requests for NOWAIT locks. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31117 |18 | |10327 |MSSQL: Lock wait time |mssql.lock_wait_time |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |0 |NULL |Average of total wait time (in milliseconds) for locks in the last second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31118 |18 | |10327 |MSSQL: Total lock requests per second that required waiting |mssql.lock_waits_sec.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of lock requests per second that required the caller to wait. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31119 |18 | |10327 |MSSQL: Total log file size |mssql.log_files_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Total size of all the transaction log files. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. 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 |31120 |18 | |10327 |MSSQL: Auto-param attempts per second |mssql.autoparam_attempts_sec.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of auto-parameterization attempts per second. The total should be the sum of the failed, safe, and unsafe auto-parameterizations. Auto-parameterization occurs when an instance of SQL Server tries to parameterize a Transact-SQL request by replacing some literals with parameters to me reuse of the resulting cached execution plan across multiple similar-looking requests possible. Note that auto-parameterizations are also known as simple parameterizations in the newer versions of SQL Server. This counter does not include forced parameterizations. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31121 |18 | |10327 |MSSQL: Total log file used size |mssql.log_files_used_size |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31133 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Primary replica recovery health |mssql.primary_recovery_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |158 | | |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 |158 | | |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 |160 | | |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 |31136 |18 | |10327 |MSSQL AG '{#GROUP_NAME}': Synchronization health |mssql.synchronization_health["{#GROUP_NAME}"] |0 |7d |365d |0 |3 | | | | |NULL |160 | | |0 | | | | |2 |NULL |Reflects a rollup of the synchronization_health of all availability replicas in the availability group:&eol;0: Not healthy. None of the availability replicas have a healthy synchronization.&eol;1: Partially healthy. The synchronization of some, but not all, availability replicas is healthy.&eol;2: Healthy. The synchronization of every availability replica is healthy. |0 |30d |0 | |31128 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31137 |18 | |10327 |MSSQL DB '{#DBNAME}': Active transactions |mssql.db.active_transactions["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of active transactions for the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31138 |18 | |10327 |MSSQL DB '{#DBNAME}': Data file size |mssql.db.data_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the data files in the database including any automatic growth. Monitoring this counter is useful, for example, for determining the correct size of tempdb. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31139 |18 | |10327 |MSSQL DB '{#DBNAME}': Log bytes flushed per second |mssql.db.log_bytes_flushed_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of log bytes flushed per second. Useful for determining trends and utilization of the transaction log. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31140 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file size |mssql.db.log_files_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative size of all the transaction log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |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 |31141 |18 | |10327 |MSSQL DB '{#DBNAME}': Log file used size |mssql.db.log_files_used_size["{#DBNAME}"] |0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Cumulative used size of all the log files in the database. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31142 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush wait time |mssql.db.log_flush_wait_time["{#DBNAME}"] |0 |7d |365d |0 |0 | |ms | | |NULL |NULL | | |0 | | | | |2 |NULL |Total wait time (in milliseconds) to flush the log. On an AlwaysOn secondary database, this value indicates the wait time for log records to be hardened to disk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31143 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flush waits per second |mssql.db.log_flush_waits_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of commits per second waiting for the log flush. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31144 |18 | |10327 |MSSQL DB '{#DBNAME}': Log flushes per second |mssql.db.log_flushes_sec.rate["{#DBNAME}"] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of log flushes per second. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31145 |18 | |10327 |MSSQL DB '{#DBNAME}': Log growths |mssql.db.log_growths["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been expanded. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31146 |18 | |10327 |MSSQL DB '{#DBNAME}': Log shrinks |mssql.db.log_shrinks["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of times the transaction log for the database has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |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 |31147 |18 | |10327 |MSSQL DB '{#DBNAME}': Log truncations |mssql.db.log_truncations["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Number of times the transaction log has been shrunk. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31148 |18 | |10327 |MSSQL DB '{#DBNAME}': Percent log used |mssql.db.percent_log_used["{#DBNAME}"] |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |2 |NULL |Percentage of space in the log that is in use. |0 |30d |0 | |31055 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31149 |18 | |10327 |MSSQL DB '{#DBNAME}': State |mssql.db.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |154 | | |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 |
@@ -4129,7 +4696,7 @@ ROW |31153 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Local DB '{#DBNAME}'
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 |163 | | |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 |164 | | |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 |162 | | |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 |31157 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': State |mssql.mirroring.state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |162 | | |0 | | | | |2 |NULL |State of the mirror database and of the database mirroring session.&eol;0 = Suspended&eol;1 = Disconnected from the other partner&eol;2 = Synchronizing&eol;3 = Pending Failover&eol;4 = Synchronized&eol;5 = The partners are not synchronized. Failover is not possible now.&eol;6 = The partners are synchronized. Failover is potentially possible. For information about the requirements for the failover, see Database Mirroring Operating Modes. |0 |30d |0 | |31130 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31158 |18 | |10327 |MSSQL Mirroring '{#DBNAME}': Witness state |mssql.mirroring.witness_state["{#DBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |165 | | |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 |155 | | |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 |161 | | |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 |
@@ -4137,18 +4704,18 @@ ROW |31163 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Replica '{#REPLICA_N
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 |157 | | |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 |158 | | |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 |159 | | |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 |160 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state 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 |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 |160 | | |0 | | | | |2 |NULL |Reflects a rollup of the database synchronization state (synchronization_state)of all joined availability databases (also known as replicas) and the availability mode of the replica (synchronous-commit or asynchronous-commit mode). The rollup will reflect the least healthy accumulated state of the databases on the replica:&eol;0 : Not healthy. At least one joined database is in the NOT SYNCHRONIZING state.&eol;1 : Partially healthy. Some replicas are not in the target synchronization state: synchronous-commit replicas should be synchronized, and asynchronous-commit replicas should be synchronizing.&eol;2 : Healthy. All replicas are in the target synchronization state: synchronous-commit replicas are synchronized, and asynchronous-commit replicas are synchronizing. |0 |30d |0 | |31132 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31168 |18 | |10316 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31169 |18 | |10316 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31170 |18 | |10316 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31171 |18 | |10316 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31172 |18 | |10320 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31173 |18 | |10320 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31174 |18 | |10320 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |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 |31175 |18 | |10320 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31176 |18 | |10317 |MySQL: Threads created per second |mysql.threads_created.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of threads created to handle connections. If Threads_created is big, you may want to increase the thread_cache_size value. The cache miss rate can be calculated as Threads_created/Connections. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31177 |18 | |10317 |MySQL: Created tmp tables on disk per second |mysql.created_tmp_disk_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal on-disk temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31178 |18 | |10317 |MySQL: Created tmp tables on memory per second |mysql.created_tmp_tables.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of internal temporary tables created by the server while executing statements. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31179 |18 | |10317 |MySQL: Created tmp files on disk per second |mysql.created_tmp_files.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |How many temporary files mysqld has created. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31189 |18 | |10328 |Oracle: Version |oracle.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Oracle Server version. |0 |30d |0 | |31188 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31190 |18 | |10328 |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 | |31185 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4445,7 +5012,7 @@ ROW |31808 |18 | |10336 |IAX trunk "{#OBJECTNAME}": Status
ROW |31809 |18 | |10336 |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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31810 |18 | |10336 |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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31811 |18 | |10336 |"{#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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31812 |18 | |10336 |"{#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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |31812 |18 | |10336 |"{#QUEUE}": Callers |asterisk.queue.callers[{#QUEUE}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number incoming calls in queue. |0 |30d |0 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31813 |18 | |10336 |"{#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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31814 |18 | |10336 |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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31815 |18 | |10336 |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 | |31784 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4521,8 +5088,8 @@ ROW |32384 |18 | |10357 |Transactions: Max waiting transaction time
ROW |32385 |18 | |10357 |WAL: Segments count |pgsql.wal.count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of WAL segments |0 |30d |0 | |32379 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32386 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32387 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32388 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32389 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32388 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |32389 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32390 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32391 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |32392 |18 | |10357 |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 | |32375 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4763,43 +5330,43 @@ ROW |33014 |18 | |10261 |Trend function cache, % unique requests
ROW |33015 |18 | |10261 |Trend function cache, % misses |tcache.pmisses |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 |33016 |18 | |10261 |Utilization of availability manager internal processes, in % |process.availability_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 |33017 |18 | |10261 |Utilization of history poller data collector processes, in % |process.history_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 |33127 |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 |33127 |18 | |10316 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33128 |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 |33129 |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 |33130 |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 |33131 |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 |33132 |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 |33130 |18 | |10316 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33131 |18 | |10316 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33132 |18 | |10316 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33133 |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 |33134 |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 |33135 |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 |33136 |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 |33136 |18 | |10316 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30433 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33137 |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 |33138 |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 |33139 |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 |33141 |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 |33141 |18 | |10320 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33142 |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 |33143 |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 |33144 |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 |33145 |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 |33146 |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 |33144 |18 | |10320 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33145 |18 | |10320 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33146 |18 | |10320 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33147 |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 |33148 |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 |33149 |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 |33150 |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 |33150 |18 | |10320 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30639 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33151 |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 |33152 |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 |33153 |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 |33155 |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 |33155 |18 | |10317 |MySQL: Innodb buffer pool wait free |mysql.innodb_buffer_pool_wait_free |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of times InnoDB waited for a free page before reading or creating a page. Normally, writes to the InnoDB buffer pool happen in the background. When no clean pages are available, dirty pages are flushed first in order to free some up. This counts the numbers of wait for this operation to finish. If this value is not small, look at the increasing innodb_buffer_pool_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33156 |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 |33157 |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 |33158 |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 |33159 |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 |33160 |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 |33158 |18 | |10317 |MySQL: Open tables |mysql.open_tables |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of tables that are open. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33159 |18 | |10317 |MySQL: Open table definitions |mysql.open_table_definitions |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of cached table definitions. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33160 |18 | |10317 |MySQL: Binlog cache disk use |mysql.binlog_cache_disk_use |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of transactions that used a temporary disk cache because they could not fit in the regular binary log cache, being larger than binlog_cache_size. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33161 |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 |33162 |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 |33163 |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 |33164 |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 |33165 |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 |33165 |18 | |10317 |MySQL: Master GTID wait count |mysql.master_gtid_wait_count[{#SINGLETON}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of times MASTER_GTID_WAIT called. |0 |30d |0 | |30479 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33166 |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 |33167 |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 |33168 |18 | |10335 |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 | |31700 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -4886,8 +5453,8 @@ ROW |33453 |18 | |10379 |Jenkins: Job building duration, p95
ROW |33454 |18 | |10379 |Jenkins: Job building duration, median |jenkins.job.building.duration.p50 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend building. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33455 |18 | |10379 |Jenkins: Job buildable, m1 rate |jenkins.job.buildable.m1.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate at which jobs in the build queue enter the buildable state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33456 |18 | |10379 |Jenkins: HTTP response 500, rate |jenkins.http.server_error.rate |0 |7d |365d |0 |0 | |rps | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate at which the Jenkins master Web UI is responding to requests with a HTTP/500 status code. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33457 |18 | |10379 |Jenkins: Job buildable duration, p95 |jenkins.job.buildable.duration.p95 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend inthe buildable state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33458 |18 | |10379 |Jenkins: Job buildable duration, median |jenkins.job.buildable.duration.p50 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend inthe buildable state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33457 |18 | |10379 |Jenkins: Job buildable duration, p95 |jenkins.job.buildable.duration.p95 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend in the buildable state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33458 |18 | |10379 |Jenkins: Job buildable duration, median |jenkins.job.buildable.duration.p50 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend in the buildable state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33459 |18 | |10379 |Jenkins: Job blocked, m5 rate |jenkins.job.blocked.m5.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate at which jobs in the build queue enter the blocked state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33460 |18 | |10379 |Jenkins: Job blocked, m1 rate |jenkins.job.blocked.m1.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate at which jobs in the build queue enter the blocked state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33461 |18 | |10379 |Jenkins: Job blocked duration, p95 |jenkins.job.blocked.duration.p95 |0 |7d |365d |0 |0 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |The amount of time which jobs spend in the blocked state. |0 |30d |0 | |33394 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5105,7 +5672,6 @@ ROW |33882 |18 | |10386 |MongoDB: WiredTiger cache: pages evicted by a
ROW |33883 |18 | |10386 |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 | |33764 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33884 |18 | |10386 |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 | |33764 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33885 |18 | |10386 |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 | |33764 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33890 |18 | |10387 |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 | |33887 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33891 |18 | |10387 |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 | |33887 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33892 |18 | |10387 |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 | |33887 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33893 |18 | |10387 |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 | |33887 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5150,7 +5716,7 @@ ROW |33937 |18 | |10387 |MongoDB {#DBNAME}: Size, index
ROW |33938 |18 | |10387 |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 | |33925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33939 |18 | |10387 |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 | |33925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33940 |18 | |10387 |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 | |33925 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |33942 |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 | |33941 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |33942 |18 | |10327 |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size |mssql.non-local_db.log_send_queue_size["{#GROUP_NAME}*{#REPLICA_NAME}*{#DBNAME}"]|0 |7d |365d |0 |3 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |Amount of the log records of the primary database that has not been sent to the secondary databases. |0 |30d |0 | |33941 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33943 |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 | |33941 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34240 |18 | |10396 |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 | |34235 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34241 |18 | |10396 |Cluster location |netapp.cluster.location |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The location of the cluster. |0 |30d |0 | |34235 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5214,6 +5780,131 @@ ROW |34310 |18 | |10396 |{#VOLUMENAME}: State
ROW |34311 |18 | |10396 |{#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 | |34238 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34312 |18 | |10396 |{#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 | |34238 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |34313 |18 | |10396 |{#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 | |34238 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34314 |18 | |10261 |Utilization of report manager internal processes, in % |process.report_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 |34315 |18 | |10261 |Utilization of report writer internal processes, in % |process.report_writer.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 |34320 |18 | |10323 |ClickHouse: ZooKeeper exceptions per second |clickhouse.zookeper.exceptions.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Count of ZooKeeper exceptions that does not belong to user/hardware exceptions. |0 |30d |0 | |30825 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34321 |18 | |10387 |MongoDB cluster: Configserver heartbeat |mongodb.config_server_heartbeat |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |0 |NULL |Difference between the latest optime of the CSRS primary that the mongos has seen and cluster time. |0 |30d |0 | |33887 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34325 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup duration |mssql.backup.diff.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last differential backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34326 |18 | |10327 |MSSQL DB '{#DBNAME}': Last diff backup (time ago) |mssql.backup.diff["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last differential backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34327 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup |mssql.backup.log["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last log backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34328 |18 | |10327 |MSSQL DB '{#DBNAME}': Last log backup duration |mssql.backup.log.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last log backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34329 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup (time ago) |mssql.backup.full["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |The amount of time since the last full backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34330 |18 | |10327 |MSSQL DB '{#DBNAME}': Last full backup duration |mssql.backup.full.duration["{#DBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last full backup. |0 |30d |0 | |34323 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34331 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run date-time |mssql.job.lastrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The last date-time of the job run. |0 |30d |0 | |34322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34332 |18 | |10327 |MSSQL Job '{#JOBNAME}': Last run status message |mssql.job.lastrunstatusmessage["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The informational message about the last run of the job. |0 |30d |0 | |34322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34333 |18 | |10327 |MSSQL Job '{#JOBNAME}': Next run date-time |mssql.job.nextrundatetime["{#JOBNAME}"] |0 |7d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The next date-time of the job run. |0 |30d |0 | |34322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34334 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run status |mssql.job.runstatus["{#JOBNAME}"] |0 |7d |365d |0 |3 | | | | |NULL |270 | | |0 | | | | |2 |NULL |The job status possible values:&eol;0 ⇒ Failed&eol;1 ⇒ Succeeded&eol;2 ⇒ Retry&eol;3 ⇒ Canceled&eol;4 ⇒ Running |0 |30d |0 | |34322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34335 |18 | |10327 |MSSQL Job '{#JOBNAME}': Run duration |mssql.job.run_duration["{#JOBNAME}"] |0 |7d |365d |0 |3 | |s | | |NULL |NULL | | |0 | | | | |2 |NULL |Duration of the last run job. |0 |30d |0 | |34322 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34338 |18 | |10397 |PD: GRPC Commands total, rate |pd.grpc_command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The rate at which gRPC commands are completed. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34339 |18 | |10397 |PD: Status |pd.status |0 |7d |0 |0 |1 | | | | |NULL |271 | | |0 | | | | |0 |NULL |Status of PD instance. |0 |30d |0 | |34337 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34340 |18 | |10397 |PD: Uptime |pd.uptime |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The runtime of each PD instance. |0 |30d |0 | |34337 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34341 |18 | |10397 |PD: Version |pd.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the PD instance. |0 |30d |0 | |34337 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34342 |18 | |10397 |Cluster metrics discovery |pd.cluster.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery cluster specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34343 |18 | |10397 |gRPC commands discovery |pd.grpc_command.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery grpc commands specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34344 |18 | |10397 |Region discovery |pd.region.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery region specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34345 |18 | |10397 |Region labels discovery |pd.region_labels.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery region labels specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34346 |18 | |10397 |Region status discovery |pd.region_status.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery region status specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34347 |18 | |10397 |Running scheduler discovery |pd.scheduler.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery scheduler specific metrics. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34348 |18 | |10397 |TiDB cluster: Number of regions |pd.cluster_status.leader_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The total count of cluster Regions. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34349 |18 | |10397 |TiDB cluster: Current peer count |pd.cluster_status.region_count[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current count of all cluster peers. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34350 |18 | |10397 |TiDB cluster: Storage capacity |pd.cluster_status.storage_capacity[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The total storage capacity for this TiDB cluster. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34351 |18 | |10397 |TiDB cluster: Storage size |pd.cluster_status.storage_size[{#SINGLETON}] |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |2 |NULL |The storage size that is currently used by the TiDB cluster. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34352 |18 | |10397 |TiDB cluster: Disconnect stores |pd.cluster_status.store_disconnected[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of disconnected stores. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34353 |18 | |10397 |TiDB cluster: Down stores |pd.cluster_status.store_down[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of down stores. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34354 |18 | |10397 |TiDB cluster: Lowspace stores |pd.cluster_status.store_low_space[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of low space stores. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34355 |18 | |10397 |TiDB cluster: Offline stores |pd.cluster_status.store_offline[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34356 |18 | |10397 |TiDB cluster: Tombstone stores |pd.cluster_status.store_tombstone[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of tombstone stores. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34357 |18 | |10397 |TiDB cluster: Unhealth stores |pd.cluster_status.store_unhealth[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of unhealthy stores. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34358 |18 | |10397 |TiDB cluster: Normal stores |pd.cluster_status.store_up[{#SINGLETON}] |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of healthy storage instances. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34359 |18 | |10397 |PD: GRPC Commands: {#GRPC_METHOD}, rate |pd.grpc_command.rate[{#GRPC_METHOD}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The rate per command type at which gRPC commands are completed. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34360 |18 | |10397 |PD: Region heartbeat: error, rate |pd.region_heartbeat.error.rate[{#STORE_ADDRESS}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of heartbeats with the error status per second. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34361 |18 | |10397 |PD: Region heartbeat: active, rate |pd.region_heartbeat.ok.rate[{#STORE_ADDRESS}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of heartbeats with the ok status per second. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34362 |18 | |10397 |PD: Region schedule push: total, rate |pd.region_heartbeat.push.err.rate[{#STORE_ADDRESS}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34363 |18 | |10397 |PD: Region heartbeat: total, rate |pd.region_heartbeat.rate[{#STORE_ADDRESS}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The count of heartbeats reported to PD per instance per second. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34364 |18 | |10397 |TiDB cluster: Regions label: {#TYPE} |pd.region_labels[{#TYPE}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of Regions in different label levels. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34365 |18 | |10397 |TiDB cluster: Regions status: {#TYPE} |pd.region_status[{#TYPE}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The health status of Regions indicated via the count of unusual Regions including pending peers, down peers, extra peers, offline peers, missing peers, learner peers and incorrect namespaces. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34366 |18 | |10397 |TiDB cluster: Scheduler status: {#KIND} |pd.scheduler[{#KIND}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The current running schedulers. |0 |30d |0 | |34336 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34369 |18 | |10398 |TiDB: CPU |tidb.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |Total user and system CPU usage ratio. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34370 |18 | |10398 |TiDB: Total server query, rate |tidb.server_query.rate |0 |7d |365d |0 |0 | |Qps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries per second on TiDB instance. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34371 |18 | |10398 |TiDB: Uptime |tidb.uptime |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The runtime of each TiDB instance. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34372 |18 | |10398 |TiDB: KV commands, rate |tidb.tikvclient_txn.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of executed KV commands per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34373 |18 | |10398 |TiDB: TiClient region errors, rate |tidb.tikvclient_region_err.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of region related errors returned by TiKV per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34374 |18 | |10398 |TiDB: Lock resolves, rate |tidb.tikvclient_lock_resolver_action.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of DDL tasks that are waiting. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34375 |18 | |10398 |TiDB: KV backoff, rate |tidb.tikvclient_backoff.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of errors returned by TiKV. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34376 |18 | |10398 |TiDB: Server panic, rate |tidb.tidb_server_panic_total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of panics occurred in TiDB per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34377 |18 | |10398 |TiDB: Server critical error, rate |tidb.tidb_server_critical_error_total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of critical errors occurred in TiDB per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34378 |18 | |10398 |TiDB: Server connections |tidb.tidb_server_connections |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The connection number of current TiDB instance. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34379 |18 | |10398 |TiDB: Status |tidb.status |0 |7d |0 |0 |1 | | | | |NULL |272 | | |0 | | | | |0 |NULL |Status of PD instance. |0 |30d |0 | |34367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34380 |18 | |10398 |TiDB: SQL statements, rate |tidb.statement_total.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of SQL statements executed per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34381 |18 | |10398 |TiDB: Schema lease "outdate" errors , rate |tidb.session_schema_lease_error.outdate.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of schema lease errors per second. &eol;"outdate" errors means that the schema cannot be updated, which is a more serious error and triggers an alert. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34382 |18 | |10398 |TiDB: Schema lease "change" errors, rate |tidb.session_schema_lease_error.change.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of schema lease errors per second. &eol;"change" means that the schema has changed |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34383 |18 | |10398 |TiDB: Total "error" server query, rate |tidb.server_query.error.rate |0 |7d |365d |0 |0 | |Qps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries on TiDB instance per second with failure of command execution results. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34384 |18 | |10398 |TiDB: Total "ok" server query, rate |tidb.server_query.ok.rate |0 |7d |365d |0 |0 | |Qps | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of queries on TiDB instance per second with success of command execution results. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34385 |18 | |10398 |TiDB: DDL waiting jobs |tidb.ddl_waiting_jobs |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of TiDB operations that resolve locks per second. When TiDB's read or write request encounters a lock, it tries to resolve the lock. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34386 |18 | |10398 |TiDB: RSS memory usage |tidb.rss_bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34387 |18 | |10398 |TiDB: Open file descriptors |tidb.process_open_fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of open file descriptors. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34388 |18 | |10398 |TiDB: Open file descriptors, max |tidb.process_max_fds |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Maximum number of open file descriptors. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34389 |18 | |10398 |TiDB: PD TSO requests, rate |tidb.pd_tso_request.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of TSO requests that TiDB obtains from PD per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34390 |18 | |10398 |TiDB: PD TSO commands, rate |tidb.pd_tso_cmd.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of TSO commands that TiDB obtains from PD per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34391 |18 | |10398 |TiDB: Time jump back, rate |tidb.monitor_time_jump_back.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that the operating system rewinds every second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34392 |18 | |10398 |TiDB: Keep alive, rate |tidb.monitor_keep_alive.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of times that the metrics are refreshed on TiDB instance per minute. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34393 |18 | |10398 |TiDB: Heap memory usage |tidb.heap_bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Number of heap bytes that are in use. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34394 |18 | |10398 |TiDB: Goroutine count |tidb.goroutines |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of Goroutines on TiDB instance. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34395 |18 | |10398 |TiDB: Failed Query, rate |tidb.execute_error.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of error occurred when executing SQL statements per second (such as syntax errors and primary key conflicts). |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34396 |18 | |10398 |TiDB: Load schema total, rate |tidb.domain_load_schema.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The statistics of the schemas that TiDB obtains from TiKV per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34397 |18 | |10398 |TiDB: Load schema failed, rate |tidb.domain_load_schema.failed.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of failures to reload the latest schema information in TiDB per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34398 |18 | |10398 |TiDB: Version |tidb.version |0 |7d |0 |0 |1 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Version of the TiDB instance. |0 |30d |0 | |34367 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34399 |18 | |10398 |KV metrics discovery |tidb.kv_ops.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery KV specific metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34400 |18 | |10398 |QPS metrics discovery |tidb.qps.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery QPS specific metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34401 |18 | |10398 |Statement metrics discovery |tidb.statement.discover |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery statement specific metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34402 |18 | |10398 |KV backoff discovery |tidb.tikvclient_backoff.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery KV backoff specific metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34403 |18 | |10398 |GC action results discovery |tidb.tikvclient_gc_action.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery GC action results metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34404 |18 | |10398 |Lock resolves discovery |tidb.tikvclient_lock_resolver_action.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery lock resolves specific metrics. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34405 |18 | |10398 |TiDB: KV Commands: {#TYPE}, rate |tidb.tikvclient_txn.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of executed KV commands per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34406 |18 | |10398 |TiDB: Server query "Error": {#TYPE}, rate |tidb.server_query.error.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Qps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queries on TiDB instance per second with failure of command execution results. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34407 |18 | |10398 |TiDB: Server query "OK": {#TYPE}, rate |tidb.server_query.ok.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Qps | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of queries on TiDB instance per second with success of command execution results. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34408 |18 | |10398 |TiDB: SQL statements: {#TYPE}, rate |tidb.statement.rate[{#TYPE}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of SQL statements executed per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34409 |18 | |10398 |TiDB: KV backoff: {#TYPE}, rate |tidb.tikvclient_backoff.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of TiDB operations that resolve locks per second. When TiDB's read or write request encounters a lock, it tries to resolve the lock. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34410 |18 | |10398 |TiDB: GC action result: {#TYPE}, rate |tidb.tikvclient_gc_action.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of results of GC-related operations per second. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34411 |18 | |10398 |TiDB: Lock resolves: {#TYPE}, rate |tidb.tikvclient_lock_resolver_action.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |The number of TiDB operations that resolve locks per second. When TiDB's read or write request encounters a lock, it tries to resolve the lock. |0 |30d |0 | |34368 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34413 |18 | |10399 |TiKV: Scheduler: High priority commands total, rate |tikv.commands_pri.high.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total count of high priority commands per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34414 |18 | |10399 |TiKV: Regions, count |tikv.region_count |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of regions collected in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34415 |18 | |10399 |TiKV: Capacity size |tikv.store_size.capacity |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The capacity size of TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34416 |18 | |10399 |TiKV: Available size |tikv.store_size.available |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The available capacity of TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34417 |18 | |10399 |TiKV: Storage: commands total, rate |tikv.storage_command.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands received per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34418 |18 | |10399 |TiKV: Snapshot: Sending |tikv.snapshot.sending |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total amount of raftstore snapshot traffic. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34419 |18 | |10399 |TiKV: Snapshot: Receiving |tikv.snapshot.receiving |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total amount of raftstore snapshot traffic. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34420 |18 | |10399 |TiKV: Snapshot: Applying |tikv.snapshot.applying |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total amount of raftstore snapshot traffic. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34421 |18 | |10399 |TiKV: Scheduler: Busy, rate |tikv.scheduler_too_busy.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The total count of too busy schedulers per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34422 |18 | |10399 |TiKV: Snapshot: Pending tasks |tikv.scheduler_contex |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of tasks currently running by the worker or pending. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34423 |18 | |10399 |TiKV: Scheduler: Commands total, rate |tikv.scheduler_commands.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of commands per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34424 |18 | |10399 |TiKV: RSS memory usage |tikv.rss_bytes |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |Resident memory size in bytes. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34425 |18 | |10399 |TiKV: Regions, leader |tikv.region_leader |0 |7d |365d |0 |3 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |The number of leaders in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34426 |18 | |10399 |TiKV: Server: failure messages total, rate |tikv.messages.failure.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of reporting failure messages per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34427 |18 | |10399 |TiKV: Scheduler: Low priority commands total, rate |tikv.commands_pri.low.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total count of low priority commands per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34428 |18 | |10399 |TiKV: Total query errors, rate |tikv.grpc_msg_fail.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The total number of gRPC message handling failure per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34429 |18 | |10399 |TiKV: Total query, rate |tikv.grpc_msg.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |The total QPS in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34430 |18 | |10399 |TiKV: Store size |tikv.engine_size |0 |7d |365d |0 |0 | |B | | |NULL |NULL | | |0 | | | | |0 |NULL |The storage size of TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34431 |18 | |10399 |TiKV: Bytes write |tikv.engine_flow_bytes.write |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total bytes of write in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34432 |18 | |10399 |TiKV: Bytes read |tikv.engine_flow_bytes.read |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total bytes of read in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34433 |18 | |10399 |TiKV: CPU util |tikv.cpu.util |0 |7d |365d |0 |0 | |% | | |NULL |NULL | | |0 | | | | |0 |NULL |The CPU usage ratio on TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34434 |18 | |10399 |TiKV: Coprocessor: Response size, rate |tikv.coprocessor_scan_keys.rate |0 |7d |365d |0 |0 | |Bps | | |NULL |NULL | | |0 | | | | |0 |NULL |The total size of coprocessor response per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34435 |18 | |10399 |TiKV: Coprocessor: RocksDB ops, rate |tikv.coprocessor_rocksdb_perf.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of RocksDB internal operations from PerfContext per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34436 |18 | |10399 |TiKV: Coprocessor: Errors, rate |tikv.coprocessor_request_error.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of push down request error per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34437 |18 | |10399 |TiKV: Coprocessor: Requests, rate |tikv.coprocessor_request.rate |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |0 |NULL |Total number of coprocessor requests per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34438 |18 | |10399 |TiKV: Scheduler: Normal priority commands total, rate |tikv.commands_pri.normal.rate |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |0 |NULL |Total count of normal priority commands per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34439 |18 | |10399 |TiKV: Uptime |tikv.uptime |0 |7d |365d |0 |0 | |uptime | | |NULL |NULL | | |0 | | | | |0 |NULL |The runtime of each TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34440 |18 | |10399 |Coprocessor metrics discovery |tikv.coprocessor.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery coprocessor metrics. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34441 |18 | |10399 |QPS metrics discovery |tikv.qps.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery QPS metrics. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34442 |18 | |10399 |Scheduler metrics discovery |tikv.scheduler.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery scheduler metrics. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34443 |18 | |10399 |Server errors discovery |tikv.server_report_failure.discovery |0 |90d |0 |0 |4 | | | | |NULL |NULL | | |0 | | | | |1 |NULL |Discovery server errors metrics. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34444 |18 | |10399 |TiKV: Coprocessor: {#REQ_TYPE} requests, rate |tikv.coprocessor_request.rate[{#REQ_TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of coprocessor requests per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34445 |18 | |10399 |TiKV: Coprocessor: {#REQ_TYPE} errors, rate |tikv.coprocessor_request_error.rate[{#REQ_TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of push down request error per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34446 |18 | |10399 |TiKV: Coprocessor: {#REQ_TYPE} RocksDB ops, rate |tikv.coprocessor_rocksdb_perf.rate[{#REQ_TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of RocksDB internal operations from PerfContext per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34447 |18 | |10399 |TiKV: Coprocessor: {#REQ_TYPE} scan keys, rate |tikv.coprocessor_scan_keys.rate[{#REQ_TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of scan keys observed per request per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34448 |18 | |10399 |TiKV: Query: {#TYPE}, rate |tikv.grpc_msg.rate[{#TYPE}] |0 |7d |365d |0 |0 | |Ops | | |NULL |NULL | | |0 | | | | |2 |NULL |The QPS per command in TiKV instance. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34449 |18 | |10399 |TiKV: Scheduler: commands {#STAGE}, rate |tikv.scheduler_stage.rate[{#STAGE}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of commands on each stage per second. |0 |30d |0 | |34412 |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34450 |18 | |10399 |TiKV: Store_id {#STORE_ID}: failure messages "{#TYPE}", rate |tikv.messages.failure.rate[{#STORE_ID},{#TYPE}] |0 |7d |365d |0 |0 | | | | |NULL |NULL | | |0 | | | | |2 |NULL |Total number of reporting failure messages. The metric has two labels: type and store_id. type represents the failure type, and store_id represents the destination peer store id. |0 |30d |0 | |34412 |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|
@@ -5797,15 +6488,15 @@ ROW |28974 |20 |1.3.6.1.2.1.31.1.1.1.10.{#SNMPINDEX}
ROW |28975 |20 |1.3.6.1.2.1.31.1.1.1.15.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Speed |net.if.speed[ifHighSpeed.{#SNMPINDEX}] |5m |7d |0d |0 |3 | |bps | | |27101 |NULL | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;An estimate of the interface's current bandwidth in units of 1,000,000 bits per second. If this object reports a value of `n' then the speed of the interface is somewhere in the range of `n-500,000' to`n+499,999'. For interfaces which do not vary in bandwidth or for those where no accurate estimation can be made, this object should contain the nominal bandwidth. For a sub-layer which has no concept of bandwidth, this object should be zero. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28976 |20 |1.3.6.1.2.1.2.2.1.8.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Operational status |net.if.status[ifOperStatus.{#SNMPINDEX}] |1m |7d |0 |0 |3 | | | | |27107 |61 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The current operational state of the interface.&eol;- The testing(3) state indicates that no operational packet scan be passed&eol;- If ifAdminStatus is down(2) then ifOperStatus should be down(2)&eol;- If ifAdminStatus is changed to up(1) then ifOperStatus should change to up(1) if the interface is ready to transmit and receive network traffic&eol;- It should change todormant(5) if the interface is waiting for external actions (such as a serial line waiting for an incoming connection)&eol;- It should remain in the down(2) state if and only if there is a fault that prevents it from going to the up(1) state&eol;- It should remain in the notPresent(6) state if the interface has missing(typically, hardware) components. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28977 |20 |1.3.6.1.2.1.2.2.1.3.{#SNMPINDEX} |10248 |Interface {#IFNAME}({#IFALIAS}): Interface type |net.if.type[ifType.{#SNMPINDEX}] |1h |7d |0d |0 |3 | | | | |27100 |67 | | |0 | | | | |2 |NULL |MIB: IF-MIB&eol;The type of interface.&eol;Additional values for ifType are assigned by the Internet Assigned NumbersAuthority (IANA),&eol;through updating the syntax of the IANAifType textual convention. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last(//vm.memory.total[memTotalReal.0])-(last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0])))/last(//vm.memory.total[memTotalReal.0])*100| |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28993 |15 | |10248 |Memory utilization |vm.memory.util[snmp] |1m |7d |365d |0 |0 | |% | | |28978 |NULL |(last("vm.memory.total[memTotalReal.0]")-(last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]")))/last("vm.memory.total[memTotalReal.0]")*100| |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28994 |20 |1.3.6.1.4.1.2021.4.6.0 |10248 |Free memory |vm.memory.free[memAvailReal.0] |1m |7d |365d |0 |3 | |B | | |28979 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28995 |20 |1.3.6.1.4.1.2021.4.14.0 |10248 |Memory (buffers) |vm.memory.buffers[memBuffer.0] |1m |7d |365d |0 |3 | |B | | |28980 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by kernel buffers (Buffers in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28996 |20 |1.3.6.1.4.1.2021.4.15.0 |10248 |Memory (cached) |vm.memory.cached[memCached.0] |1m |7d |365d |0 |3 | |B | | |28981 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Memory used by the page cache and slabs (Cached and Slab in /proc/meminfo) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28997 |20 |1.3.6.1.4.1.2021.4.5.0 |10248 |Total memory |vm.memory.total[memTotalReal.0] |1m |7d |365d |0 |3 | |B | | |28982 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last(//vm.memory.free[memAvailReal.0])+last(//vm.memory.buffers[memBuffer.0])+last(//vm.memory.cached[memCached.0]) | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |28998 |15 | |10248 |Available memory |vm.memory.available[snmp] |1m |7d |365d |0 |3 | |B | | |28983 |NULL |last("vm.memory.free[memAvailReal.0]")+last("vm.memory.buffers[memBuffer.0]")+last("vm.memory.cached[memCached.0]") | |0 | | | | |0 |NULL |Please note that memory utilization is a rough estimate, since memory available is calculated as free+buffers+cached, which is not 100% accurate, but the best we can get using SNMP. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |28999 |20 |1.3.6.1.4.1.2021.4.3.0 |10248 |Total swap space |system.swap.total[memTotalSwap.0] |1m |7d |365d |0 |3 | |B | | |28984 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The total amount of swap space configured for this host. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29000 |20 |1.3.6.1.4.1.2021.4.4.0 |10248 |Free swap space |system.swap.free[memAvailSwap.0] |1m |7d |365d |0 |3 | |B | | |28985 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB&eol;The amount of swap space currently unused or available. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last(//system.swap.free[memAvailSwap.0])/last(//system.swap.total[memTotalSwap.0])*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29001 |15 | |10248 |Free swap space in % |system.swap.pfree[snmp] |1m |7d |365d |0 |0 | |% | | |28986 |NULL |last("system.swap.free[memAvailSwap.0]")/last("system.swap.total[memTotalSwap.0]")*100 | |0 | | | | |0 |NULL |The free space of swap volume/file in percent. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29002 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-1"] |10248 |Load average (1m avg) |system.cpu.load.avg1[laLoad.1] |1m |7d |365d |0 |0 | | | | |28987 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29003 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-5"] |10248 |Load average (5m avg) |system.cpu.load.avg5[laLoad.2] |1m |7d |365d |0 |0 | | | | |28988 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29004 |20 |1.3.6.1.4.1.2021.10.1.3["index","1.3.6.1.4.1.2021.10.1.2", "Load-15"] |10248 |Load average (15m avg) |system.cpu.load.avg15[laLoad.3] |1m |7d |365d |0 |0 | | | | |28989 |NULL | | |0 | | | | |0 |NULL |MIB: UCD-SNMP-MIB |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5829,7 +6520,7 @@ ROW |29042 |20 |1.3.6.1.4.1.2021.11.65.0
ROW |29043 |20 |1.3.6.1.4.1.2021.11.66.0 |10248 |CPU guest nice time |system.cpu.guest_nice[ssCpuRawGuestNice.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29026 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;Time spent running a niced guest (virtual CPU for guest operating systems under the control of the Linux kernel) |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29044 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10248 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29027 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29045 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10248 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |29028 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29046 |15 | |10248 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29029 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29047 |20 |1.3.6.1.4.1.2021.9.1.10["index","1.3.6.1.4.1.2021.9.1.2", "{#FSNAME}"] |10248 |{#FSNAME}: Free inodes in % |vfs.fs.inode.pfree[dskPercentNode.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |29030 |NULL | | |0 | | | | |2 |NULL |MIB: UCD-SNMP-MIB&eol;If having problems collecting this item make sure access to UCD-SNMP-MIB is allowed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29053 |17 | |10249 |SNMP traps (fallback) |snmptrap.fallback |1m |2w |0 |0 |2 | | | |hh:mm:sszyyyy/MM/dd|27157 |NULL | | |0 | | | | |0 |NULL |Item is used to collect all SNMP traps unmatched by other snmptrap items |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29057 |20 |1.3.6.1.2.1.1.5.0 |10249 |System name |system.name |1h |2w |0 |0 |1 | | | | |27152 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB&eol;An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string. |3 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -5902,7 +6593,7 @@ ROW |29484 |0 |
ROW |29485 |0 | |10081 |CPU queue length |perf_counter_en["\System\Processor Queue Length"] |1m |7d |365d |0 |0 | | | | |29459 |NULL | | |0 | | | | |0 |NULL |The Processor Queue Length shows the number of threads that are observed as delayed in the processor Ready Queue &eol;and are waiting to be executed. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29486 |0 | |10081 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |29460 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29487 |0 | |10081 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |29461 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last(//vm.memory.size[used]) / last(//vm.memory.size[total]) * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |29488 |15 | |10081 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |29462 |NULL |last("vm.memory.size[used]") / last("vm.memory.size[total]") * 100 | |0 | | | | |0 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29489 |0 | |10081 |Cache bytes |perf_counter_en["\Memory\Cache Bytes"] |1m |7d |365d |0 |3 | |B | | |29463 |NULL | | |0 | | | | |0 |NULL |Cache Bytes is the sum of the Memory\\System Cache Resident Bytes, Memory\\System Driver Resident Bytes, &eol;Memory\\System Code Resident Bytes, and Memory\\Pool Paged Resident Bytes counters. This counter displays &eol;the last observed value only; it is not an average. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29492 |0 | |10081 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |29466 |NULL | | |0 | | | | |0 |NULL |The total space of swap volume/file in bytes. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |29493 |0 | |10081 |Free system page table entries |perf_counter_en["\Memory\Free System Page Table Entries"] |1m |7d |365d |0 |3 | | | | |29467 |NULL | | |0 | | | | |0 |NULL |This indicates the number of page table entries not currently in use by the system. If the number is less &eol;than 5,000, there may well be a memory leak or you running out of memory. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6087,28 +6778,28 @@ ROW |30096 |20 |1.3.6.1.4.1.1991.1.1.2.1.53.0
ROW |30098 |20 |1.3.6.1.2.1.1.1.0 |10218 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30099 |20 |1.3.6.1.2.1.1.1.0 |10220 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30100 |20 |1.3.6.1.2.1.1.1.0 |10253 |Operating system |system.sw.os[sysDescr.0] |1h |2w |0 |0 |1 | | | | |30097 |NULL | | |0 | | | | |0 |NULL |MIB: SNMPv2-MIB |5 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}])/(last(//vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}])+last(//vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30102 |15 | |10218 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30103 |15 | |10220 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30104 |15 | |10253 |{#SNMPVALUE}: Memory utilization |vm.memory.util[vm.memory.util.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30101 |NULL |last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]")/(last("vm.memory.free[ciscoMemoryPoolFree.{#SNMPINDEX}]")+last("vm.memory.used[ciscoMemoryPoolUsed.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30138 |0 | |10081 |CPU DPC time |perf_counter_en["\Processor Information(_total)\% DPC Time"] |1m |7d |365d |0 |0 | |% | | |30137 |NULL | | |0 | | | | |0 |NULL |Processor DPC time is the time that a single processor spent receiving and servicing deferred procedure &eol;calls (DPCs). DPCs are interrupts that run at a lower priority than standard interrupts. % DPC Time is a &eol;component of % Privileged Time because DPCs are executed in privileged mode. If a high % DPC Time is &eol;sustained, there may be a processor bottleneck or an application or hardware related issue that can &eol;significantly diminish overall system performance. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30143 |20 |discovery[{#CPU.UTIL},1.3.6.1.2.1.25.3.3.1.2] |10185 |CPU utilization |system.cpu.util |1m |7d |365d |0 |0 | |% | | |30142 |NULL | | |0 | | | | |0 |NULL |MIB: HOST-RESOURCES-MIB&eol;The average, over the last minute, of the percentage of time that processors was not idle.&eol;Implementations may approximate this one minute smoothing period if necessary. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30149 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Memory discovery |vm.memory.discovery |1h |90d |0 |0 |4 | | | | |30147 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with memory filter |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30150 |20 |discovery[{#FSNAME},1.3.6.1.2.1.25.2.3.1.3,{#FSTYPE},1.3.6.1.2.1.25.2.3.1.2,{#ALLOC_UNITS},1.3.6.1.2.1.25.2.3.1.4] |10185 |Storage discovery |vfs.fs.discovery[snmp] |1h |90d |0 |0 |4 | | | | |30148 |NULL | | |0 | | | | |1 |NULL |HOST-RESOURCES-MIB::hrStorage discovery with storage filter. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30163 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30157 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30164 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30158 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last(//vm.memory.used[hrStorageUsed.{#SNMPINDEX}])/last(//vm.memory.total[hrStorageSize.{#SNMPINDEX}])*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30165 |15 | |10185 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30159 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30166 |15 | |10185 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30160 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30167 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10185 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30161 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30168 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10185 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30162 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30424 |0 | |10081 |Windows services discovery |service.discovery |1h |90d |0 |0 |4 | | | | |30423 |NULL | | |0 | | | | |1 |NULL |Discovery of Windows services of different types as defined in template's macros. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30426 |0 | |10081 |State of service "{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) |service.info["{#SERVICE.NAME}",state] |1m |7d |365d |0 |3 | | | | |30425 |45 | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31368 |0 | |10001 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31367 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31373 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31370 |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 |31374 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31371 |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 |31373 |15 | |10001 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31370 |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 |31374 |15 | |10001 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31371 |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 |31375 |0 | |10001 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31372 |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 |31423 |0 | |10081 |Number of cores |wmi.get[root/cimv2,"Select NumberOfLogicalProcessors from Win32_ComputerSystem"] |1m |7d |365d |0 |3 | | | | |31419 |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 |31424 |0 | |10081 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31420 |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 |31425 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31421 |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 |31425 |15 | |10081 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31421 |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 |31426 |0 | |10081 |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 | | | | |31422 |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 |31431 |0 | |10081 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |31430 |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 |31443 |0 | |10081 |{#DEVNAME}: Disk utilization |perf_counter_en["\PhysicalDisk({#DEVNAME})\% Disk Time",60] |1m |7d |365d |0 |0 | |% | | |31439 |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 |
@@ -6164,8 +6855,8 @@ ROW |31891 |7 |
ROW |31899 |7 | |10343 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31896 |NULL | | |0 | | | | |1 |NULL | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31900 |7 | |10343 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |31897 |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 |31901 |7 | |10343 |Network interface discovery |net.if.discovery |1h |90d |0 |0 |4 | | | | |31898 |NULL | | |0 | | | | |1 |NULL |Discovery of network interfaces. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31917 |15 | |10343 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31902 |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 |31918 |15 | |10343 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31903 |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 |31917 |15 | |10343 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31902 |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 |31918 |15 | |10343 |{#DEVNAME}: Disk write request avg waiting time (w_await) |vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31903 |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 |31919 |7 | |10343 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31904 |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 |31920 |7 | |10343 |{#FSNAME}: Free inodes in % |vfs.fs.inode[{#FSNAME},pfree] |1m |7d |365d |0 |0 | |% | | |31905 |NULL | | |0 | | | | |2 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31921 |7 | |10343 |{#FSNAME}: Space utilization |vfs.fs.size[{#FSNAME},pused] |1m |7d |365d |0 |0 | |% | | |31906 |NULL | | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6204,11 +6895,11 @@ ROW |31992 |7 |
ROW |31993 |7 | |10351 |Memory pages per second |perf_counter_en["\Memory\Pages/sec"] |1m |7d |365d |0 |0 | | | | |31966 |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 |31994 |7 | |10351 |Memory pool non-paged |perf_counter_en["\Memory\Pool Nonpaged Bytes"] |1m |7d |365d |0 |3 | |B | | |31967 |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 |31995 |7 | |10351 |Used swap space in % |perf_counter_en["\Paging file(_Total)\% Usage"] |1m |7d |365d |0 |0 | |% | | |31968 |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 |31996 |15 | |10351 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31969 |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 |31996 |15 | |10351 |Free swap space |system.swap.free |1m |7d |365d |0 |3 | |B | | |31969 |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 |31997 |7 | |10351 |Total swap space |system.swap.size[,total] |1m |7d |365d |0 |3 | |B | | |31970 |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 |31998 |7 | |10351 |Total memory |vm.memory.size[total] |1m |7d |365d |0 |3 | |B | | |31971 |NULL | | |0 | | | | |0 |NULL |Total memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31999 |7 | |10351 |Used memory |vm.memory.size[used] |1m |7d |365d |0 |3 | |B | | |31972 |NULL | | |0 | | | | |0 |NULL |Used memory in Bytes |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |32000 |15 | |10351 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |31973 |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 |32000 |15 | |10351 |Memory utilization |vm.memory.util |1m |7d |365d |0 |0 | |% | | |31973 |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 |32001 |7 | |10351 |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 | | | | |31974 |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 |32008 |7 | |10351 |Mounted filesystem discovery |vfs.fs.discovery |1h |90d |0 |0 |4 | | | | |32004 |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 |32010 |7 | |10351 |Physical disks discovery |perf_instance_en.discovery[PhysicalDisk] |1h |90d |0 |0 |4 | | | | |32006 |NULL | | |0 | | | | |1 |NULL |Discovery of installed physical disks. |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
@@ -6255,6 +6946,8 @@ ROW |33687 |20 |1.3.6.1.2.1.1.5.0
ROW |33688 |20 |1.3.6.1.2.1.1.2.0 |10385 |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 |33689 |20 |1.3.6.1.2.1.1.3.0 |10385 |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 |33690 |5 | |10385 |SNMP agent availability |zabbix[host,snmp,available] |1m |7d |365d |0 |3 | | | | |27154 |69 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34318 |5 | |10084 |Utilization of report writer internal processes, in % |zabbix[process,report writer,avg,busy] |1m |1w |365d |0 |0 | |% | | |34316 |NULL | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |34319 |5 | |10084 |Utilization of report manager internal processes, in % |zabbix[process,report manager,avg,busy] |1m |1w |365d |0 |0 | |% | | |34317 |NULL | | |0 | | | | |0 |NULL | |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|
@@ -6441,19 +7134,19 @@ ROW |30155 |20 |discovery[{#MEMNAME},1.3.6.1.2.1.25.2.3.1.3,{#MEMTYPE},1.3.6.
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 |30175 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30176 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last(//vm.memory.used[hrStorageUsed.{#SNMPINDEX}])/last(//vm.memory.total[hrStorageSize.{#SNMPINDEX}])*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30177 |15 | |10249 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30178 |15 | |10249 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30179 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10249 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30180 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10249 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30181 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#MEMNAME}: Total memory |vm.memory.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30163 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main memory allocated to a buffer pool might be modified or the amount of disk space allocated to virtual memory might be modified. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30182 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#MEMNAME}: Used memory |vm.memory.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30164 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last(//vm.memory.used[hrStorageUsed.{#SNMPINDEX}])/last(//vm.memory.total[hrStorageSize.{#SNMPINDEX}])*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last(//vfs.fs.used[hrStorageUsed.{#SNMPINDEX}])/last(//vfs.fs.total[hrStorageSize.{#SNMPINDEX}]))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30183 |15 | |10254 |{#MEMNAME}: Memory utilization |vm.memory.util[memoryUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30165 |NULL |last("vm.memory.used[hrStorageUsed.{#SNMPINDEX}]")/last("vm.memory.total[hrStorageSize.{#SNMPINDEX}]")*100 | |0 | | | | |2 |NULL |Memory utilization in % |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |30184 |15 | |10254 |{#FSNAME}: Space utilization |vfs.fs.pused[storageUsedPercentage.{#SNMPINDEX}] |1m |7d |365d |0 |0 | |% | | |30166 |NULL |(last("vfs.fs.used[hrStorageUsed.{#SNMPINDEX}]")/last("vfs.fs.total[hrStorageSize.{#SNMPINDEX}]"))*100 | |0 | | | | |2 |NULL |Space utilization in % for {#FSNAME} |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30185 |20 |1.3.6.1.2.1.25.2.3.1.5.{#SNMPINDEX} |10254 |{#FSNAME}: Total space |vfs.fs.total[hrStorageSize.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30167 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The size of the storage represented by this entry, in units of hrStorageAllocationUnits.&eol;This object is writable to allow remote configuration of the size of the storage area in those cases where such an operation makes sense and is possible on the underlying system.&eol;For example, the amount of main storage allocated to a buffer pool might be modified or the amount of disk space allocated to virtual storage might be modified.|0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |30186 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX} |10254 |{#FSNAME}: Used space |vfs.fs.used[hrStorageUsed.{#SNMPINDEX}] |1m |7d |365d |0 |3 | |B | | |30168 |NULL | | |0 | | | | |2 |NULL |MIB: HOST-RESOURCES-MIB&eol;The amount of the storage represented by this entry that is allocated, in units of hrStorageAllocationUnits. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |31369 |0 | |10084 |Block devices discovery |vfs.dev.discovery |1h |90d |0 |0 |4 | | | | |31368 |NULL | | |0 | | | | |1 |1 | |0 |30d |1 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |31376 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31373 |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 |31377 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await)|vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31374 |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 |31376 |15 | |10084 |{#DEVNAME}: Disk read request avg waiting time (r_await) |vfs.dev.read.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31373 |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 |31377 |15 | |10084 |{#DEVNAME}: Disk write request avg waiting time (w_await)|vfs.dev.write.await[{#DEVNAME}] |1m |7d |365d |0 |0 | |!ms | | |31374 |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 |31378 |0 | |10084 |{#DEVNAME}: Get stats |vfs.file.contents[/sys/block/{#DEVNAME}/stat] |1m |0 |0 |0 |4 | | | | |31375 |NULL | | |0 | | | | |2 |1 |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 |33337 |3 | |10378 |ICMP ping |icmpping |1m |1w |365d |0 |3 | | | | |27149 |12 | | |0 | | | | |0 |NULL | |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
ROW |33338 |3 | |10378 |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 |
@@ -6506,42 +7199,42 @@ ROW |13285 |{13159}=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}<>{22356})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13338 |({12725}<>{22357})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |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}<>{22358})>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |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}<>{22359})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13354 |({12741}<>{22360})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |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}<>{22361})>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |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}<>{22362})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13370 |({12757}<>{22363})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |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}<>{22364})>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |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}<>{22365})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13386 |({12773}<>{22366})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13388 |({12775}<>{22367})>0 |/etc/passwd has been changed 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}<>{22368})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13402 |({12789}<>{22369})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |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}<>{22370})>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |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}<>{22371})>0 |Hostname was changed on {HOST.NAME} | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |13418 |({12805}<>{22372})>0 |Host information was changed on {HOST.NAME} | |0 |1 | |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}<>{22373})>0 |/etc/passwd has been changed on {HOST.NAME} | |0 |2 | |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 | |
@@ -6587,74 +7280,74 @@ ROW |14253 |{14380}>{$ICMP_RESPONSE_TIME_WARN}
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}<>{22374})=1 and length({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}<>{22375})=1 and length({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}<>{22376})=1 and length({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 |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}<>{22377})=1 and length({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}<>{22378})=1 and length({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}<>{22379})=1 and length({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 |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}<>{22380})=1 and length({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}<>{22381})=1 and length({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}<>{22384})=1 and length({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 |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}<>{22387})=1 and length({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}<>{22388})=1 and length({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 |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}<>{22389})=1 and length({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}<>{22390})=1 and length({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 |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}<>{22391})=1 and length({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}<>{22392})=1 and length({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 |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}<>{22393})=1 and length({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}<>{22394})=1 and length({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 |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}<>{22395})=1 and length({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}<>{22396})=1 and length({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 |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}<>{22397})=1 and length({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}<>{22398})=1 and length({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 |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}<>{22399})=1 and length({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}<>{22400})=1 and length({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 |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}<>{22401})=1 and length({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 |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}<>{22402})=1 and length({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}<>{22403})=1 and length({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}<>{22404})=1 and length({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}<>{22405})=1 and length({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}<>{22406})=1 and length({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}<>{22407})=1 and length({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}<>{22408})=1 and length({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 |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}<>{22409})=1 and length({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 |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 | |
@@ -6697,14 +7390,14 @@ ROW |15394 |{16927}=1
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}<>{22412})=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 |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}<>{22413})=1 and length({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 |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 | |
@@ -6712,8 +7405,8 @@ ROW |15722 |{17873}=1
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}<>{22414})=1 and length({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}<>{22415})=1 and length({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 |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 | |
@@ -6722,7 +7415,7 @@ ROW |15741 |{17905}=1 or {17906}=1 or {17907}=1 or {17908}=1 or {17909}=1
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}<>{22416})=1 and length({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 |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 | |
@@ -6732,7 +7425,7 @@ ROW |15751 |{17922}=1
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}<>{22417})=1 and length({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 |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 | |
@@ -6744,13 +7437,13 @@ ROW |15790 |{17983}=1 or {17984}=1
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}<>{22418})=1 and length({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 |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}<>{22419})=1 and length({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 |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 | |
@@ -6833,16 +7526,16 @@ ROW |15948 |{18175}=1
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}<>{22420})=1 and length({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 |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}<>{22421})=1 and length({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 |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}<>{22422})=1 and length({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 |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 |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 | |
@@ -6854,8 +7547,8 @@ ROW |16036 |{18307}=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}<>{22423})>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16042 |({18315}<>{22424})=1 and length({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 |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 | |
@@ -6865,7 +7558,7 @@ ROW |16138 |{18501}=1
ROW |16139 |{18502}=0 |System time is out of sync (diff with Zabbix server > {$SYSTEM.FUZZYTIME.MAX}s) | |0 |2 |The host system time is different from the Zabbix server time. |NULL |0 |0 |0 | |0 | |1 | |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}<>{22429})=1 and length({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 |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 | |
@@ -6907,11 +7600,11 @@ ROW |16439 |{19090}=1
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 |16445 |({19096}<>{22430})=1 and length({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 |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 |16450 |({19102}<>{22431})=1 and length({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 |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 | |
@@ -6933,7 +7626,7 @@ ROW |16474 |{19143}=1
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}<>{22432})=1 and length({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 |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 | |
@@ -6945,7 +7638,7 @@ ROW |16486 |{19164}=1
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}<>{22433})=1 and length({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 |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 | |
@@ -6953,35 +7646,35 @@ ROW |16498 |{19179}>{$CPU.UTIL.CRIT}
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}<>{22434})=1 and length({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 |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}<>{22438})=1 and length({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 |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}<>{22439})=1 and length({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 |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}<>{22440})=1 and length({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}<>{22441})=1 and length({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 |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}<>{22442})=1 and length({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}<>{22443})=1 and length({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 |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}<>{22444})=1 and length({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 |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}<>{22445})=1 and length({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 |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}<>{22446})=1 and length({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 |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 | |
@@ -6989,16 +7682,16 @@ ROW |16561 |{19267}>{$CPU.UTIL.CRIT}
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 |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}<>{22447})=1 and length({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}<>{22448})=1 and length({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 |16584 |({19326}<>{22451})=1 and length({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}<>{22452})=1 and length({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 |16593 |({19344}<>{22455})=1 and length({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 |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 |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 |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}<>{22485})=1 and length({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 |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 | |
@@ -7015,7 +7708,7 @@ ROW |16658 |{19471}>{$HAPROXY.SERVER_QTIME.MAX.WARN}
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}<>{22486})=1 and length({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 |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 | |
@@ -7032,15 +7725,15 @@ ROW |16677 |{19491}=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 |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}<>{22487})=1 and length({19500})>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16682 |{19499}=1 and {19500}>0 |Redis: Configuration has changed | |0 |1 |Redis configuration has changed. Ack to close. |NULL |0 |0 |0 | |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}<>{22488})=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}<>{22489})=1 and length({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}<>{22490})=1 and length({19510})>0 |Redis: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Redis version has changed. Ack to close. |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 |0 | |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 | |
@@ -7049,20 +7742,18 @@ ROW |16696 |{19517}>{$REDIS.REPL.LAG.MAX.WARN}
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 |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}<>{22491})=1 and length({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 |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}<>{22492})=1 and length({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 |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 | |
@@ -7072,29 +7763,28 @@ ROW |16741 |{19582}=1
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}<>{22493})=1 and length({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 |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}<>{22494})=1 and length({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 |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 |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 high.&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}<>{22495})=1 and length({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 |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}<>{22496})=1 and length({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 |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}<>{22497})=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 |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 | |
@@ -7157,34 +7847,34 @@ ROW |16826 |{19676}>{$CLICKHOUSE.PARTS.PER.PARTITION.WARN} * 0.9
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}<>{22498})=1 and length({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 |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}<>{22499})=1 and length({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 |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}<>{22500})=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}<>{22521})=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}<>{22524})=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 |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}<>{22527})=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 |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}<>{22528})=1 and length({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 |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}<>{22529})=1 and length({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 |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}-{22530})>{$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 |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}<>{22531})=1 and length({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 |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 | |0 | |
@@ -7194,7 +7884,7 @@ ROW |16904 |{19814}<>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}<>{22532})=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |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 | |
@@ -7202,10 +7892,10 @@ ROW |16912 |{19822}<>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}<>{22533})=1 and {$IIS.APPPOOL.MONITORED:"{#APPPOOL}"}=1 |IIS: Application pool {#APPPOOL} has been recycled | |0 |1 | |NULL |0 |2 |0 | |0 | |0 | |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}<>{22534})=1 and length({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}<>{22535})=1 and length({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 |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 | |
@@ -7214,8 +7904,8 @@ ROW |16928 |{19846}<{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT}
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 |16932 |{19850}>{$MSSQL.LOCK_REQUESTS.MAX} |MSSQL: Total number of locks per second is high (over {$MSSQL.LOCK_REQUESTS.MAX} for 5m) | |0 |2 |Number of new locks and lock conversions per second requested from the lock manager is high. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+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 timed out lock requests per second, 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 | |
@@ -7223,13 +7913,11 @@ ROW |16937 |{19855}>{$MSSQL.PAGE_READS.MAX}
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}<>{22536})=1 and length({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 |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 |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 on 32-bit systems, may indicate 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 |16948 |{19867}=0 |MSSQL AG '{#GROUP_NAME}': All replicas unhealthy | |0 |5 |None of the availability replicas have a healthy synchronization. |NULL |0 |2 |0 | |0 | |0 | |0 | |
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 | |
@@ -7266,38 +7954,37 @@ ROW |16985 |{19910} * 100 / {19911} > {$ORACLE.PROCESSES.MAX.WARN}
ROW |16986 |{19912} * 100 / {19913} > {$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 |16987 |{19914} * 100 / {19915} > {$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 |16988 |{19916} * 100 / {19917} > {$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 |16989 |({19918}<>{22537})=1 and length({19919})>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 |16990 |({19920}<>{22538})=1 and length({19921})>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 |16989 |{19918}=1 and {19919}>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 |16990 |{19920}=1 and {19921}>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 |16991 |{19922} < {$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 |16992 |{19923} > {$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 |16993 |{19924} > {$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 |16994 |{19925} > {$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 |16995 |{19926}<{$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 |16996 |{19927}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |16997 |{19928}=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 |16998 |{19929} < {$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 |16999 |({19930}<>{22539})=1 and length({19931})>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 |16999 |{19930}=1 and {19931}>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 |17000 |{19932}=0 |Oracle: LISTENER process is not running | |0 |5 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17001 |{19933}<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 |17002 |{19934}>{$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 |17003 |{19935}>{$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 |17004 |{19936} = 0 and {19937} = 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 |17005 |{19938}=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 |17006 |({19939}<>{22540})=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 |17007 |({19940}<>{22541})=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 |17006 |{19939}=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 |17007 |{19940}=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 |17008 |{19941}=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 |17009 |({19942}<>{22542})=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 |17009 |{19942}=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 |17010 |{19943}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |17011 |({19944}<>{22543})=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 |17011 |{19944}=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 |17014 |{19947} > {$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 |17016 |{19949}=0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17017 |{19950} < 600 |PostgreSQL: Service has been restarted (uptime={ITEM.LASTVALUE}) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17018 |{19951} > {$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 |17019 |{19952} > {$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 |17023 |{19956} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19957} > {$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 |17024 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19958}=2 and ({19959}<>{22544})=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 |{19958}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17024 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19958}=2 and {19959}=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 |{19958}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17035 |{19978} - {19979} * 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 |17042 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19998}<>2 and ({19999}<>{22547})=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 |{19998}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17042 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19998}<>2 and {19999}=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 |{19998}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17043 |{20000}>{$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 |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 | |
@@ -7316,9 +8003,9 @@ ROW |17076 |{20080}=1
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} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20085} |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 |17080 |{20084} > {$MSSQL.PERCENT_READAHEAD.MAX} / 100 * {20085} |MSSQL: Too many physical reads occurring | |0 |2 |If this value makes up even a sizeable minority of the total Page Reads/sec (say, greater than 20% of the total page reads), you may have too many physical reads occurring. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17081 |{20086} > {$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 |17082 |{20087} > {$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 |17082 |{20087} > {$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”. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17083 |{20088} > 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 |17084 |{20089}=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 |17085 |{20090}>{$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 |{20091}<{$TEMP_WARN:"Device"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
@@ -7327,19 +8014,19 @@ ROW |17087 |{20094}<{$TEMP_CRIT_LOW:"Device"}
ROW |17088 |{20096}<>"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 |17089 |{20097} > {$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 |17090 |{20098}=0 or {20099}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17091 |({20100}<>{22549})=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 |17091 |{20100}=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 |17092 |{20101}>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 |17093 |{20102}=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 |17094 |{20103}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17095 |({20104}<>{22550})=1 and length({20105})>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 |17095 |{20104}=1 and {20105}>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 |17096 |{20106}=0 |PHP-FPM: Process is not running | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17097 |{20107} > {$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 |17098 |{20108}=0 or {20109}=1 |PHP-FPM: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17099 |({20110}<>{22551})=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 |17099 |{20110}=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 |17100 |{20111}>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 |17101 |{20112}=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 |17102 |{20113}<10m |PHP-FPM: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17103 |({20114}<>{22552})=1 and length({20115})>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 |17103 |{20114}=1 and {20115}>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 |17113 |{20128}<20M |Lack of available memory on server {HOST.NAME} | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17114 |{20129}<20 |Free disk space is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17115 |{20130}<20 |Free inodes is less than 20% on volume {#FSNAME} | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
@@ -7404,33 +8091,32 @@ ROW |17173 |{20188} * 100 / {20189} > {$ORACLE.PROCESSES.MAX.WARN}
ROW |17174 |{20190} * 100 / {20191} > {$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 |17175 |{20192} * 100 / {20193} > {$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 |17176 |{20194} * 100 / {20195} > {$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 |17177 |({20196}<>{22553})=1 and length({20197})>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 |17178 |({20198}<>{22554})=1 and length({20199})>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 |17177 |{20196}=1 and {20197}>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 |17178 |{20198}=1 and {20199}>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 |17179 |{20200}=0 |Oracle: Connection to database is unavailable | |0 |5 |Connection to Oracle Database is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17180 |{20201} < {$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 |17181 |{20202} > {$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 |17182 |{20203} > {$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 |17183 |{20204} > {$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 |17184 |{20205}<{$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 |17185 |{20206}=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 |17186 |{20207}<10m |Oracle: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17187 |{20208} < {$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 |17188 |({20209}<>{22555})=1 and length({20210})>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 |17188 |{20209}=1 and {20210}>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 |17189 |{20211}<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 |17190 |{20212} = 0 and {20213} = 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 |17191 |{20214}=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 |17192 |({20215}<>{22556})=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 |17193 |({20216}<>{22557})=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 |17192 |{20215}=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 |17193 |{20216}=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 |17194 |{20217}>{$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 |17195 |{20218}>{$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 |17196 |{20219}=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 |17197 |({20220}<>{22558})=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 |17197 |{20220}=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 |17198 |{20221}=2 |Oracle TBS '{#TABLESPACE}': Tablespase is OFFLINE | |0 |2 |The tablespase is in the offline state. |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |17199 |({20222}<>{22559})=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 |17199 |{20222}=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 |17222 |{20285}<10m |Asterisk: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17223 |{20286}=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 |17224 |{20287}<10m |Asterisk: has been reloaded (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17225 |({20288}<>{22560})=1 and length({20289})>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 |17225 |{20288}=1 and {20289}>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 |17226 |{20290}>{$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 |17227 |{20291}=0 |Asterisk: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17229 |{20293}="UNKNOWN" or {20293}="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 | |
@@ -7441,60 +8127,59 @@ ROW |17243 |{20318}/{20319}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {20320}>0&
ROW |17244 |{20322}>{$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 |17245 |{20323}<{$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 |17246 |{20324}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17247 |({20325}<>{22561})=1 and length({20326})>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 |17247 |{20325}=1 and {20326}>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 |17248 |{20327}=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 |17249 |({20328}<>{22562})=1 and length({20329})>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 |17249 |{20328}=1 and {20329}>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 |17250 |{20330}<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 |17251 |({20331}<>{22563})>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17251 |{20331}>0 |/etc/passwd has been changed | |0 |1 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17266 |{20354} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {20355} > {$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 |17267 |{20356}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({20357}-{20358})<5G or {20359}<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 |17268 |{20360}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({20361}-{20362})<10G or {20363}<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 |17269 |{20364}<{$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 |17270 |{20365}<{$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 |17271 |{20366}<0 and {20367}>0&eol;and&eol;({20367}=6&eol;or {20367}=1)&eol;and&eol;({20368}<>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 |({20366}>0 and {20369}>0) or&eol;({20368}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |
-ROW |17273 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20374}=2 and ({20375}<>{22567})=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 |{20374}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17273 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20374}=2 and {20375}=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 |{20374}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17283 |{20399} - {20400} * 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 |17285 |{20403}>{$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 |17286 |{20404}>{$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 |17287 |{20405}>{$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 |17288 |({20406}<>{22569})=1 and length({20407})>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 |17288 |{20406}=1 and {20407}>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 |17289 |{20408}=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 |17290 |{20409}<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 |17291 |{20410}<{$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 |17292 |{20411}>{$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 |17305 |{20427}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({20428}-{20429})<5G or {20430}<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 |17306 |{20431}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({20432}-{20433})<10G or {20434}<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 |17310 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20447}<>2 and ({20448}<>{22571})=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 |{20447}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17310 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20447}<>2 and {20448}=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 |{20447}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17311 |{20449}>{$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 |17312 |{20450}<>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 |17322 |{20478}>{$TEMP_WARN:""}&eol;or&eol;{20479}={$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 |{20480}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17332 |{20508}>{$TEMP_CRIT:""}&eol;or&eol;{20509}={$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 |{20510}<{$TEMP_CRIT:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17333 |{20511}>{$TEMP_WARN:""}&eol;or&eol;{20512}={$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 |{20513}<{$TEMP_WARN:""}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
-ROW |17353 |({20541}<>{22573})=1 and length({20542})>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 |17353 |{20541}=1 and {20542}>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 |17354 |{20543}=2 |Ceph: Cluster in ERROR state | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17355 |{20544}=1 |Ceph: Cluster in WARNING state | |0 |2 | |NULL |0 |0 |1 |{20544}=0 |0 | |1 | |0 | |
ROW |17356 |{20545}=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 |17357 |{20546} > {20547}*100 |Ceph: OSD osd.{#OSDNAME} is full | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17358 |{20548} > {20549}*100 |Ceph: Ceph OSD osd.{#OSDNAME} is near full | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17359 |{20550} = 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 |17367 |{20564}>{20565}/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 |17368 |{20566}>{20567}*{20568}/100 |Squid: Swap usage is more than high watermark (>{ITEM.VALUE2}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 | |
ROW |17369 |{20569}>{20570}*{20571}/100 |Squid: Swap usage is more than low watermark (>{ITEM.VALUE2}%) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Used: {ITEM.LASTVALUE1} |0 | |
ROW |17370 |{20572}=0 |Squid: Port {$SQUID.HTTP.PORT} is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17371 |{20573}<{$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 |17372 |{20574}<10m |Squid: Squid has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17373 |({20575}<>{22574})=1 and length({20576})>0 |Squid: Squid version has been changed | |0 |1 |Squid version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17373 |{20575}=1 and {20576}>0 |Squid: Squid version has been changed | |0 |1 |Squid version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17390 |{20595} > {$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 |17391 |{20596} = 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 |17392 |{20597} < {$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 |17393 |({20598}<>{22575})=1 and length({20599})>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17393 |{20598}=1 and {20599}>0 |PostgreSQL: Configuration has changed | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17394 |{20600} > {$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 |17395 |{20601} > {$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 |17396 |{20602} = 0 |PostgreSQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17397 |{20603} > {$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 |17398 |{20604}=0 |PostgreSQL: Replication is down | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17399 |{20605} < 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 |17400 |({20606}<>{22576})=1 and length({20607})>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17400 |{20606}=1 and {20607}>0 |PostgreSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17401 |{20608} > {$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 |17402 |{20609} > {$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 |17403 |{20610}<{$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 | |
@@ -7504,7 +8189,7 @@ ROW |17406 |{20613} < {$LTEMODEM.RSRP.MIN.WARN}
ROW |17407 |{20614} < {$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 |17408 |{20615} < {$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 |17409 |{20616} < {$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 |17410 |({20617}<>{22577})=1 and length({20618})>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 |17410 |{20617}=1 and {20618}>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 |17411 |{20619}>{$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 |17412 |{20620}>{$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 |17413 |{20621}>{$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 | |
@@ -7512,16 +8197,12 @@ ROW |17414 |{20622}>{$ACTIVEMQ.STORE.MAX.WARN:"{#JMXBROKERNAME}"}
ROW |17415 |{20623}>{$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 |17416 |{20624}>{$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 |17417 |{20625}<{$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 |17418 |{20626}>{20626} |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 |17419 |{20627}<{$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 |17420 |{20628}<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 |17421 |{20629}<{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20630}>{$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 |{20631}>={$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 | |
-ROW |17422 |{20632}>{20633} |{#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 |17423 |{20634}<{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} and {20635}>{$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 |{20636}>={$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.HIGH:"{#JMXDESTINATIONNAME}"} |0 | |1 | |0 | |
-ROW |17424 |{20637}>{$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 |17425 |{20638}>{$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 |17426 |{20639}>{$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 |17427 |{20640}>{$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 |17428 |{20641} < {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"} |{#METRIC}: Critically low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17429 |{20642} < {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"} |{#METRIC}: Low battery voltage on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (below {$ARANET.BATT.VOLTAGE.MIN.WARN:"{#SENSOR_NAME}"}{#UNIT} for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17430 |{20643} > {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"} |{#METRIC}: Critically high CO2 level on "[{#GATEWAY_NAME}] {#SENSOR_NAME}" (over {$ARANET.CO2.MAX.CRIT:"{#SENSOR_NAME}"}{#UNIT} for 5m) | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
@@ -7550,7 +8231,7 @@ ROW |17452 |{20667}>{$MS.EXCHANGE.RPC.COUNT.WARN}
ROW |17453 |{20668}>{$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 |17454 |{20669}>{$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 |17455 |{20670}/{20671}*100>{$GITLAB.OPEN.FDS.MAX.WARN} |GitLab: Current number of open files is too high (over {$GITLAB.OPEN.FDS.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17456 |({20672}<>{22578})=1 and length({20673})>0 |GitLab: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |GitLab version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17456 |{20672}=1 and {20673}>0 |GitLab: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |GitLab version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17457 |{20674}>{$GITLAB.HTTP.FAIL.MAX.WARN} |GitLab: Too many HTTP requests failures (over {$GITLAB.HTTP.FAIL.MAX.WARN} for 5m)' | |0 |2 |"Too many requests failed on GitLab instance with 5xx HTTP code" |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17458 |{20675}=0 |GitLab: Liveness check was failed | |0 |4 |The application server is not running or Rails Controllers are deadlocked. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17459 |{20676}=0 |GitLab: Gitlab instance is not able to accept traffic | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
@@ -7558,7 +8239,6 @@ ROW |17460 |{20677}>{$GITLAB.REDIS.FAIL.MAX.WARN}
ROW |17461 |{20678}>{$GITLAB.REDIS.FAIL.MAX.WARN} |GitLab: Too many Redis queues client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m) | |0 |2 |"Too many Redis client exceptions during to requests to Redis instance queues." |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17462 |{20679}>{$GITLAB.REDIS.FAIL.MAX.WARN} |GitLab: Too many Redis shared_state client exceptions (over {$GITLAB.REDIS.FAIL.MAX.WARN} for 5m) | |0 |2 |"Too many Redis client exceptions during to requests to Redis instance shared_state." |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17463 |{20680}=1 |GitLab: Failed to fetch info data (or no data for 30m) | |0 |2 |Zabbix has not received data for metrics for the last 30 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17464 |{20681}/{20682}*100>{$GITLAB.PUMA.UTILIZATION.MAX.WARN} |GitLab: Puma instance thread utilization is too hight (over {$GITLAB.PUMA.UTILIZATION.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17465 |{20683}>{$GITLAB.PUMA.QUEUE.MAX.WARN} |GitLab: Puma is queueing requests (over {$GITLAB.PUMA.QUEUE.MAX.WARN}% for 15m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17466 |{20684}/{20685}*100>{$GITLAB.UNICORN.UTILIZATION.MAX.WARN} |GitLab: Unicorn worker utilization is too high (over {$GITLAB.UNICORN.UTILIZATION.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17467 |{20686}>{$GITLAB.UNICORN.QUEUE.MAX.WARN} |GitLab: Unicorn is queueing requests (over {$GITLAB.UNICORN.QUEUE.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
@@ -7588,26 +8268,26 @@ ROW |17490 |{20709} > 0
ROW |17491 |{20710}=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 |17492 |{20711}<{$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 |17493 |{20712}<10m |Kafka: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17494 |({20713}<>{22579})=1 and length({20714})>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 |17494 |{20713}=1 and {20714}>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 |17495 |{20715}<{$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 |17496 |{20716}>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 |17497 |{20717}>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 |17498 |{20718}=0 |Kafka: Broker is not connected to ZooKeeper | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17499 |({20719}<>{22580})=1 and length({20720})>0 |Tomcat: Version has been changed | |0 |1 |Tomcat version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17499 |{20719}=1 and {20720}>0 |Tomcat: Version has been changed | |0 |1 |Tomcat version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17500 |{20721} = 1 |{#JMXVALUE}: Gzip compression is disabled | |0 |1 |gzip compression is disabled for connector {#JMXVALUE}. |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17501 |{20722}>{20723}*{$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 |17502 |{20724}/{20725}*100>{$VAULT.OPEN.FDS.MAX.WARN} |Vault: Current number of open files is too high (over {$VAULT.OPEN.FDS.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17503 |length({20726})>0 |Vault: Failed to get metrics (error: {ITEM.VALUE}) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17503 |{20726}>0 |Vault: Failed to get metrics (error: {ITEM.VALUE}) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17504 |{20727}=0 |Vault: Vault server is not responding | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17505 |{20728}=1 |Vault: Vault server is sealed | |0 |3 |https://www.vaultproject.io/docs/concepts/seal |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17506 |({20729}<>{22581})=1 and length({20730})>0 |Vault: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Vault version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17507 |({20731}-{22582})>{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} |Vault: High frequency of leadership setup failures (over {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} Vault leadership setup failures in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17508 |({20732}-{22583})>{$VAULT.LEADERSHIP.LOSSES.MAX.WARN} |Vault: High frequency of leadership losses (over {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} Vault leadership losses in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17509 |({20733}-{22584})>{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} |Vault: High frequency of leadership step downs (over {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} Vault leadership step downs in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17506 |{20729}=1 and {20730}>0 |Vault: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Vault version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17507 |{20731}>{$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} |Vault: High frequency of leadership setup failures (over {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.SETUP.FAILED.MAX.WARN} Vault leadership setup failures in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17508 |{20732}>{$VAULT.LEADERSHIP.LOSSES.MAX.WARN} |Vault: High frequency of leadership losses (over {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.LOSSES.MAX.WARN} Vault leadership losses in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17509 |{20733}>{$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} |Vault: High frequency of leadership step downs (over {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} for 1h) | |0 |3 |There have been more than {$VAULT.LEADERSHIP.STEPDOWNS.MAX.WARN} Vault leadership step downs in the past 1h |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17510 |{20734}<10m |Vault: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17511 |{20735}=1 and {20736}<{$VAULT.TOKEN.TTL.MIN.CRIT} |Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.CRIT}) | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17512 |{20737}=1 and {20738}<{$VAULT.TOKEN.TTL.MIN.WARN} |Vault: Token [{#TOKEN_NAME}] will expire soon (less than {$VAULT.TOKEN.TTL.MIN.WARN}) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |17513 |length({20739})>0 |Vault: Token [{#TOKEN_NAME}] lookup error occurred | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |17513 |{20739}>0 |Vault: Token [{#TOKEN_NAME}] lookup error occurred | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17515 |{20741}=0 |VMware: Hypervisor is down | |0 |3 |The service is unavailable or does not accept ICMP ping. |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17516 |{20742}=3 |VMware: The {$VMWARE.HV.UUID} health is Red | |0 |4 |One or more components in the appliance might be in an unusable status and the appliance might become unresponsive soon. Security patches might be available. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17517 |{20743}=2 |VMware: The {$VMWARE.HV.UUID} health is Yellow | |0 |3 |One or more components in the appliance might become overloaded soon. |NULL |0 |0 |0 | |0 | |0 | |0 | |
@@ -7616,10 +8296,10 @@ ROW |17519 |{20745}=2
ROW |17520 |{20746}<10m |VMware: Hypervisor has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17521 |{20747} * 100 / {20748} > {$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 |17522 |{20749}>{$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 |17523 |({20750}<>{22585})=1 and length({20751})>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 |17523 |{20750}=1 and {20751}>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 |17524 |{20752}=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 |17525 |{20753}<10m |Zookeeper: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17526 |({20754}<>{22586})=1 and length({20755})>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 |17526 |{20754}=1 and {20755}>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 |17527 |{20756} < {20757}-1 |Zookeeper: Too few active followers | |0 |3 |The number of followers should equal the total size of your ZooKeeper ensemble, minus 1 (the leader is not included in the follower count). If the ensemble fails to maintain quorum, all automatic failover features are suspended. |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17528 |{20758}>{$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 |17529 |{20759}>75 |Zabbix availability manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{20759}<65 |0 | |0 | |0 | |
@@ -7630,7 +8310,7 @@ ROW |17533 |{20763}>75
ROW |17534 |{20764}>75 |Zabbix history poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{20764}<65 |0 | |0 | |0 | |
ROW |17535 |{20765}>75 |Zabbix availability manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{20765}<65 |0 | |0 | |0 | |
ROW |17536 |{20766}>75 |Zabbix history poller processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{20766}<65 |0 | |0 | |0 | |
-ROW |17539 |({20769}<>{22587})=1 and length({20770})>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 |17539 |{20769}=1 and {20770}>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 |17540 |{20771}>{$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 |17541 |{20772}>{$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 |17542 |{20773}>0 |Too many storage exceptions | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
@@ -8002,7 +8682,7 @@ ROW |17913 |{21168} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}
ROW |17917 |{21174}<0 and&eol;{21175}>0 and&eol;{21176}=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 |17918 |{21177} > {$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 |17919 |{21178} > {$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 |17929 |{21191}>0 and ({21192}<>{22589})=1 |NetApp FAS3220: Number of failed disks has changed | |0 |2 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |1 |0 |1 |{21191}=0 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
+ROW |17929 |{21191}>0 and {21192}=1 |NetApp FAS3220: Number of failed disks has changed | |0 |2 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |1 |0 |1 |{21191}=0 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17930 |{21193}>0 and {21194}={21194} |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 |17931 |{21195}>0 and {21196}={21196} |Node {#NODE.NAME}: Failed FAN count is over than zero | |0 |4 |{{ITEM.VALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17932 |{21197}=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 | |
@@ -8016,7 +8696,7 @@ ROW |17939 |{21204}<>1
ROW |17940 |{21205}=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 |17941 |{21206}=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 |17943 |{21211}<>2 and {21212}=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 |17944 |{21213}<>0 and length({21214})>0 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy | |0 |1 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |17944 |{21213}<>0 and {21214}>0 |Node {#NODE}: port {#IFNAME} ({#TYPE}): Port is not healthy | |0 |1 |{{ITEM.LASTVALUE2}.regsub("(.*)", \1)} |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17945 |{21215}>{$TEMP_CRIT:"Ambient"}&eol;or&eol;{21216}={$TEMP_CRIT_STATUS}&eol;or&eol;{21216}={$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 |{21217}<{$TEMP_CRIT:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17946 |{21218}>{$TEMP_WARN:"Ambient"}&eol;or&eol;{21219}={$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 |{21220}<{$TEMP_WARN:"Ambient"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17947 |{21221}>{$TEMP_CRIT:"CPU"}&eol;or&eol;{21222}={$TEMP_CRIT_STATUS}&eol;or&eol;{21222}={$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 |{21223}<{$TEMP_CRIT:"CPU"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
@@ -8025,35 +8705,35 @@ ROW |17949 |{21227}>={$AMI.TRUNK_ACTIVE_CHANNELS.MAX.WARN:"{#OBJECTNAME}"}
ROW |17950 |{21228}>={$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 |17951 |{21229}>{$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 |17952 |{21230}>={$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 |17953 |{21231}=0 and length({21232})>0 |Jenkins: Disk space is too low | |0 |2 |Jenkins disk space monitors are reporting the disk space as less than the configured threshold. The message will reference the first node which fails this check.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17954 |{21233}=0 and length({21234})>0 |Jenkins: One or more Jenkins plugins failed to start | |0 |1 |A failure is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the failing plugin(s) or by resolving the corresponding plugin dependency issues. &eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17955 |{21235}=0 and length({21236})>0 |Jenkins: Temporary space is too low | |0 |2 |Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold. The message will reference the first node which fails this check.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17956 |{21237}=0 and length({21238})>0 |Jenkins: There are deadlocked threads in Jenkins master JVM | |0 |2 |There are any deadlocked threads in the Jenkins master JVM.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub('(.*)',\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17953 |{21231}=0 and {21232}>0 |Jenkins: Disk space is too low | |0 |2 |Jenkins disk space monitors are reporting the disk space as less than the configured threshold. The message will reference the first node which fails this check.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17954 |{21233}=0 and {21234}>0 |Jenkins: One or more Jenkins plugins failed to start | |0 |1 |A failure is typically indicative of a potential issue within the Jenkins installation that will either be solved by explicitly disabling the failing plugin(s) or by resolving the corresponding plugin dependency issues. &eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17955 |{21235}=0 and {21236}>0 |Jenkins: Temporary space is too low | |0 |2 |Jenkins temporary space monitors are reporting the temporary space as less than the configured threshold. The message will reference the first node which fails this check.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |17956 |{21237}=0 and {21238}>0 |Jenkins: There are deadlocked threads in Jenkins master JVM | |0 |2 |There are any deadlocked threads in the Jenkins master JVM.&eol;Health check message: {{ITEM.LASTVALUE2}.regsub('(.*)',\1)} |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17957 |{21239}>{$JENKINS.FILE_DESCRIPTORS.MAX.WARN} |Jenkins: Current number of used files is too high (over {$JENKINS.FILE_DESCRIPTORS.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17958 |{21240}=0 |Jenkins: Service has no online nodes | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |17959 |{21241}=0 |Jenkins: Service is down | |0 |3 | |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17960 |{21242}<10m |Jenkins: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17961 |({21243}<>{22590})=1 and length({21244})>0 |Jenkins: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Jenkins version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17962 |{21245}=1 and length({21246})>0 |Jenkins: Computer [{#DISPLAY_NAME}]: Node is down | |0 |3 |Node down with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |17963 |{21247}=1 and length({21248})>0 |Jenkins: Computer [{#DISPLAY_NAME}]: Node is temporarily offline | |0 |1 |Node is temporarily Offline with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |17961 |{21243}=1 and {21244}>0 |Jenkins: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Jenkins version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17962 |{21245}=1 and {21246}>0 |Jenkins: Computer [{#DISPLAY_NAME}]: Node is down | |0 |3 |Node down with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |17963 |{21247}=1 and {21248}>0 |Jenkins: Computer [{#DISPLAY_NAME}]: Node is temporarily offline | |0 |1 |Node is temporarily Offline with reason: {{ITEM.LASTVALUE2}.regsub("(.*)",\1)} |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17964 |{21249}<{$JENKINS.JOB.HEALTH.SCORE.MIN.WARN} |Jenkins job [{#NAME}]: Job is unhealthy | |0 |2 | |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17965 |{21250}=1 or&eol;{21251}=1 or&eol;{21252}=1 |Hikvision camera: Authorisation error | |0 |2 |Check the correctness of the authorization data |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17966 |{21253}=2 or&eol;{21254}=2 or&eol;{21255}=2 |Hikvision camera: Error receiving data | |0 |2 |Check the availability of the HTTP port |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17967 |{21256}>{$CPU.UTIL.CRIT} |Hikvision camera: 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 |17968 |({21257}<>{22591})=1 and length({21258})>0 |Hikvision camera: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Hikvision camera version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17970 |({21260}<>{22592})=1 and length({21261})>0 |Hikvision camera: Camera has been replaced (new serial number received) | |0 |1 |Camera serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17968 |{21257}=1 and {21258}>0 |Hikvision camera: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |Hikvision camera version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17970 |{21260}=1 and {21261}>0 |Hikvision camera: Camera has been replaced (new serial number received) | |0 |1 |Camera serial number has changed. Ack to close |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |17971 |{21262}<10m |Hikvision camera: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17972 |({21263}<>{22593})=1 or &eol;({21264}<>{22594})=1 or &eol;({21265}<>{22595})=1 |Channel "{#PTZ_CHANNEL_ID}": PTZ position changed | |0 |1 |The direction of the camera has changed |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |17972 |{21263}=1 or &eol;{21264}=1 or &eol;{21265}=1 |Channel "{#PTZ_CHANNEL_ID}": PTZ position changed | |0 |1 |The direction of the camera has changed |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17973 |{21266}=1 |Hikvision camera:Authorisation error on get PTZ channels | |0 |2 |Check the correctness of the authorization data |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17974 |{21267}=2 |Hikvision camera: Error receiving data on PTZ channels | |0 |2 |Check the availability of the HTTP port |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17975 |{21268}<>{$HIKVISION_STREAM_HEIGHT} or&eol;{21269}<>{$HIKVISION_STREAM_WIDTH} |Channel "{#CHANNEL_ID}": Invalid video stream resolution parameters | |0 |2 |expected: {$HIKVISION_STREAM_WIDTH} px x {$HIKVISION_STREAM_HEIGHT} px&eol;received: {ITEM.LASTVALUE2} x {ITEM.LASTVALUE1} |NULL |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17976 |({21270}<>{22596})=1 or&eol;({21271}<>{22597})=1 or&eol;({21272}<>{22598})=1 or&eol;({21273}<>{22599})=1 or&eol;({21274}<>{22600})=1 |Channel "{#CHANNEL_ID}": Parameters of video stream are changed | |0 |1 | |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |17976 |{21270}=1 or&eol;{21271}=1 or&eol;{21272}=1 or&eol;{21273}=1 or&eol;{21274}=1 |Channel "{#CHANNEL_ID}": Parameters of video stream are changed | |0 |1 | |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17977 |{21275}/{21276}*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 |17978 |{21277}/{21278}*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 |17979 |{21279}/{21280}*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 |17980 |{21281}/{21282}*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 |17981 |{21283}>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 |17982 |{21284}>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 |17982 |{21284}>0 |Data region {#JMXNAME}: Pages replace rate more than 0 | |0 |2 |There is more data than DataRegionMaxSize. Cluster started to replace pages in memory. Page replacement can slow down operations. |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17983 |{21285} > {$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 |17984 |{21286} > {$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 |17985 |{21287} > {$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 | |
@@ -8061,11 +8741,11 @@ ROW |17986 |{21288} > {$IGNITE.JOBS.QUEUE.MAX.WARN}
ROW |17987 |{21289}>{21290} |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 |17988 |{21291}>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 |17989 |{21292}<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 |17990 |({21293}<>{22601})=1 and length({21294})>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 |17990 |{21293}=1 and {21294}>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 |17991 |{21295}=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 |17992 |{21296}<10m |Ignite [{#JMXIGNITEINSTANCENAME}]: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17993 |({21297}<>{22602})=1 and length({21298})>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed | |0 |2 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17995 |({21301}<>{22603})=1 and length({21302})>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 |17993 |{21297}=1 and {21298}>0 |Ignite [{#JMXIGNITEINSTANCENAME}]: Coordinator has changed | |0 |2 |Ignite [{#JMXIGNITEINSTANCENAME}] version has changed. Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |17995 |{21301}=1 and {21302}>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 |17996 |{21303}>0 |Cache group [{#JMXNAME}]: Rebalance in progress | |0 |1 |Ack to close. |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |17997 |{21304}=0 |Cache group [{#JMXNAME}]: There is no copy for partitions | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |17998 |{21305} > {$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 | |
@@ -8100,21 +8780,21 @@ ROW |18026 |{21340} = 3
ROW |18027 |{21341}<>200 |Sharepoint: Error getting directory structure. | |0 |2 |Error getting directory structure. Check the Zabbix server log for more details. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18028 |{21342}>2000 |Sharepoint: Server responds slowly to API request | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18029 |{21343}>"{$SHAREPOINT.MAX_HEALT_SCORE}" |Sharepoint: Bad health score | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |18030 |({21344}<>{22604})=1 |Sharepoint: Sharepoint object is changed | |0 |1 |Updated date of modification of folder / file |NULL |0 |2 |0 | |0 | |1 |{#SHAREPOINT.LLD.FULL_PATH} |0 | |
+ROW |18030 |{21344}=1 |Sharepoint: Sharepoint object is changed | |0 |1 |Updated date of modification of folder / file |NULL |0 |2 |0 | |0 | |1 |{#SHAREPOINT.LLD.FULL_PATH} |0 | |
ROW |18031 |{21345}<10m |VMware: VM has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |18032 |({21346}<>{22605})=1 and {21347}<{#MULTIPATH.COUNT} |VMware: The multipath count has been changed | |0 |3 |The number of available datastore paths less than registered ({#MULTIPATH.COUNT}). |NULL |0 |2 |0 | |0 | |1 |Current: {ITEM.LASTVALUE}, Registered: {#MULTIPATH.COUNT} |0 | |
+ROW |18032 |{21346}=1 and {21347}<{#MULTIPATH.COUNT} |VMware: The multipath count has been changed | |0 |3 |The number of available datastore paths less than registered ({#MULTIPATH.COUNT}). |NULL |0 |2 |0 | |0 | |1 |Current: {ITEM.LASTVALUE}, Registered: {#MULTIPATH.COUNT} |0 | |
ROW |18033 |{21348}>{$MEMORY.UTIL.MAX} |Hikvision camera: 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 |18034 |{21349}>={21350} |Cache group [{#JMXNAME}]: One or more backups are unavailable | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18035 |{21351}>{$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 |18096 |{21552} <= {#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 |18097 |{21553}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |18098 |({21554}<>{22606})=1 and length({21555})>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 |18098 |{21554}=1 and {21555}>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 |18099 |{21556}>{$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 |18100 |{21557}>{$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 |18101 |{21558}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18102 |{21559} <= {#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 |18103 |{21560}>90 |SMART [{#NAME}]: NVMe disk percentage using is over 90% of estimated endurance | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
-ROW |18104 |({21561}<>{22607})=1 and length({21562})>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 |18104 |{21561}=1 and {21562}>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 |18105 |{21563}>{$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 |18106 |{21564}>{$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 |18107 |{21565}="false" |SMART [{#NAME}]: Disk self-test is not passed | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
@@ -8148,13 +8828,13 @@ ROW |18161 |{21655}<{$SWAP.PFREE.MIN.WARN} and {21656}>0
ROW |18162 |{21657}>{$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 |18169 |{21675}<{$SWAP.PFREE.MIN.WARN} and {21676}>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 |18170 |{21677}>{$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 |18183 |({21702}<>{22609})=1 and length({21703})>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 |18183 |{21702}=1 and {21703}>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 |18184 |{21704}<>1 |BBU {#ID} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18185 |{21705}<>2 |BBU {#ID} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18186 |{21706}>{$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 |18187 |{21707}<>1 |Controller {#ID}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18188 |{21708}>{$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 |18189 |({21709}<>{22610})=1 |Controller {#ID}: Role has been changed | |0 |2 | |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |18189 |{21709}=1 |Controller {#ID}: Role has been changed | |0 |2 | |NULL |0 |2 |0 | |0 | |1 | |0 | |
ROW |18190 |{21710}<>27 |Controller {#ID}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18191 |{21711}<>1 |Disk {#MODEL} on {#LOCATION}: Health status is not Normal | |0 |4 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18192 |{21712}<>27 |Disk {#MODEL} on {#LOCATION}: Running status is not Online | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
@@ -8192,8 +8872,8 @@ ROW |18223 |{21748}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}
ROW |18224 |{21749}=0 |MongoDB: Connection to MongoDB is unavailable | |0 |4 |Connection to MongoDB instance is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18225 |{21750}=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 |18226 |{21751}<10m |MongoDB: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |18227 |({21752}<>{22611})=1 and length({21753})>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 |18228 |{21754}>0 and length({21755})>0 |MongoDB: There are unhealthy replicas in ReplicaSet | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18227 |{21752}=1 and {21753}>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 |18228 |{21754}>0 and {21755}>0 |MongoDB: There are unhealthy replicas in ReplicaSet | |0 |3 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18229 |{21756}>{$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 |18230 |{21757}=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 |18231 |{21758}<{$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 | |
@@ -8204,8 +8884,8 @@ ROW |18235 |{21762}>{$MONGODB.CURSOR.TIMEOUT.MAX.WARN}
ROW |18236 |{21763}=0 |MongoDB cluster: Connection to mongos proxy is unavailable | |0 |4 |Connection to mongos proxy instance is currently unavailable. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18237 |{21764}=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 |18238 |{21765}<10m |MongoDB cluster: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |18239 |({21766}<>{22612})=1 and length({21767})>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 |18240 |{21768}>{21769} and {21769}>{21770} |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 |18239 |{21766}=1 and {21767}>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 |18240 |{21768}>{21769} and {21769}>{21770} |MSSQL AG '{#GROUP_NAME}' Non-Local DB '*{#REPLICA_NAME}*{#DBNAME}': Log queue size is growing | |0 |4 |The log records of the primary database are not sent to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |0 | |
ROW |18241 |{21771}>{21772} and {21772}>{21773} |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 |18242 |({21774}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21775} or&eol;{21776}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21775}) and&eol;{21775}>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 |{21774}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21775} and&eol;{21776}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21775}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |
ROW |18243 |{21777}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21778}>{$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 |{21779}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {21780}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |
@@ -8216,13 +8896,13 @@ ROW |18295 |{21959}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {21960}>{$IF.ERROR
ROW |18298 |{21970}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18299 |{21971}>{$ICMP_LOSS_WARN} and {21971}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18300 |{21972}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |18301 |({21973}<>{22613})=1 and length({21974})>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 |18302 |({21975}<>{22614})=1 and length({21976})>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 |18303 |({21977}<>{22615})=1 and length({21978})>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 |18301 |{21973}=1 and {21974}>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 |18302 |{21975}=1 and {21976}>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 |18303 |{21977}=1 and {21978}>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 |18304 |{21979}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18305 |{21980}=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 |18306 |{21981}>{$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 |18307 |({21982}<>{22616})=1 and length({21983})>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 |18307 |{21982}=1 and {21983}>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 |18308 |{21984}=3 or {21984}=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 |18309 |{21985}=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 |18310 |{21986}>{$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 | |
@@ -8243,13 +8923,13 @@ ROW |18324 |{22011}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}
ROW |18325 |{22013}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18326 |{22014}>{$ICMP_LOSS_WARN} and {22014}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18327 |{22015}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |18328 |({22016}<>{22617})=1 and length({22017})>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 |18329 |({22018}<>{22618})=1 and length({22019})>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 |18330 |({22020}<>{22619})=1 and length({22021})>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 |18328 |{22016}=1 and {22017}>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 |18329 |{22018}=1 and {22019}>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 |18330 |{22020}=1 and {22021}>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 |18331 |{22022}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18332 |{22023}=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 |18333 |{22024}>{$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 |18334 |({22025}<>{22620})=1 and length({22026})>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 |18334 |{22025}=1 and {22026}>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 |18335 |{22027}=3 or {22027}=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 |18336 |{22028}=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 |18337 |{22029}>{$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 | |
@@ -8270,13 +8950,13 @@ ROW |18351 |{22054}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}
ROW |18352 |{22056}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18353 |{22057}>{$ICMP_LOSS_WARN} and {22057}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18354 |{22058}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |18355 |({22059}<>{22621})=1 and length({22060})>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 |18356 |({22061}<>{22622})=1 and length({22062})>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 |18357 |({22063}<>{22623})=1 and length({22064})>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 |18355 |{22059}=1 and {22060}>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 |18356 |{22061}=1 and {22062}>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 |18357 |{22063}=1 and {22064}>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 |18358 |{22065}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18359 |{22066}=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 |18360 |{22067}>{$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 |18361 |({22068}<>{22624})=1 and length({22069})>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 |18361 |{22068}=1 and {22069}>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 |18362 |{22070}=3 or {22070}=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 |18363 |{22071}=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 |18364 |{22072}>{$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 | |
@@ -8297,13 +8977,13 @@ ROW |18378 |{22097}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}
ROW |18379 |{22099}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18380 |{22100}>{$ICMP_LOSS_WARN} and {22100}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18381 |{22101}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |18382 |({22102}<>{22625})=1 and length({22103})>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 |18383 |({22104}<>{22626})=1 and length({22105})>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 |18384 |({22106}<>{22627})=1 and length({22107})>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 |18382 |{22102}=1 and {22103}>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 |18383 |{22104}=1 and {22105}>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 |18384 |{22106}=1 and {22107}>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 |18385 |{22108}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18386 |{22109}=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 |18387 |{22110}>{$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 |18388 |({22111}<>{22628})=1 and length({22112})>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 |18388 |{22111}=1 and {22112}>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 |18389 |{22113}=3 or {22113}=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 |18390 |{22114}=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 |18391 |{22115}>{$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 | |
@@ -8324,13 +9004,13 @@ ROW |18405 |{22140}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}
ROW |18406 |{22142}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18407 |{22143}>{$ICMP_LOSS_WARN} and {22143}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18408 |{22144}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |18409 |({22145}<>{22629})=1 and length({22146})>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 |18410 |({22147}<>{22630})=1 and length({22148})>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 |18411 |({22149}<>{22631})=1 and length({22150})>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 |18409 |{22145}=1 and {22146}>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 |18410 |{22147}=1 and {22148}>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 |18411 |{22149}=1 and {22150}>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 |18412 |{22151}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18413 |{22152}=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 |18414 |{22153}>{$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 |18415 |({22154}<>{22632})=1 and length({22155})>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 |18415 |{22154}=1 and {22155}>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 |18416 |{22156}=3 or {22156}=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 |18417 |{22157}=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 |18418 |{22158}>{$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 | |
@@ -8352,14 +9032,14 @@ ROW |18433 |{22185}=0
ROW |18434 |{22186}>{$ICMP.LOSS.WARN} and {22186}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |18435 |{22187}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
ROW |18436 |{22188}>{$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 |18437 |({22189}<>{22633})=1 and length({22190})>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 |18437 |{22189}=1 and {22190}>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 |18438 |{22191}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18439 |{22192}=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 |18440 |{22193}=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 |18441 |{22194}<0 and {22195}>0&eol;and (&eol;{22196}=6 or&eol;{22196}=7 or&eol;{22196}=11 or&eol;{22196}=62 or&eol;{22196}=69 or&eol;{22196}=117&eol;)&eol;and&eol;({22197}<>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 |({22194}>0 and {22198}>0) or&eol;({22197}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |
ROW |18442 |({22199}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200} or&eol;{22201}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22200}) and&eol;{22200}>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 |{22199}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200} and&eol;{22201}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22200}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |
ROW |18443 |{22202}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22203}>{$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 |{22204}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22205}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |
-ROW |18444 |{$IFCONTROL:"{#IFNAME}"}=1 and ({22206}=2 and ({22207}<>{22634})=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 |{22206}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |18444 |{$IFCONTROL:"{#IFNAME}"}=1 and ({22206}=2 and {22207}=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 |{22206}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |18445 |{22208}=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 |18446 |{22209}>{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}&eol;or&eol;{22210}={$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 |{22211}<{$TEMP.MAX.WARN:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |18447 |{22212}>{$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 |{22213}<{$TEMP.MAX.CRIT:"{#SENSOR_INFO}"}-3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
@@ -8382,9 +9062,6 @@ ROW |18473 |{22292}=2
ROW |18474 |{22293}=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 |18475 |{22294}=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 |18476 |{22295} > {$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 |18477 |{22296}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |18478 |{22297}>{$ICMP.LOSS.WARN} and {22297}<100 |High ICMP ping loss | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
-ROW |18479 |{22298}>{$ICMP.RESPONSE_TIME.WARN} |High ICMP ping response time | |0 |2 | |NULL |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
ROW |18480 |{22299} > 0 and ({22299} > {$UPS.INPUT_FREQ.MAX.WARN} or {22300} < {$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 |18481 |{22301} > 0 and ({22301} > {$UPS.INPUT_VOLT.MAX.WARN} or {22302} < {$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 |18482 |{22303} > {$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 | |
@@ -8399,11 +9076,9 @@ ROW |18490 |{22311}=11
ROW |18491 |{22312}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18492 |{22313}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |18493 |{22314}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |18494 |({22315}<>{22635})=1 and length({22316})>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 |18495 |{22317}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |18496 |{22318}=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 |18497 |{22319}=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 |18498 |{22320}=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 |18499 |{22321} > {$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 |18500 |{22322}=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 |18501 |{22323}=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 | |
@@ -8413,20 +9088,406 @@ ROW |18504 |{22326}=4
ROW |18505 |{22327}=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 |18506 |{22328} > {$UPS.INPUT_VOLT.MAX.WARN} or {22329} < {$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 |18507 |({22330}<>"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 |18508 |({22331}<>{22636})=1 and length({22332})>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 |18509 |(({22333}<>{22637})=1 and {22334}="error") |{#ID}: Chassis has something errors | |0 |3 |Something is wrong with the chassis. |NULL |0 |2 |1 |(({22333}<>{22637})=1 and {22334}="ok") |0 | |1 | |0 | |
-ROW |18510 |(({22335}<>{22638})=1 and {22336}<>"present") |{#DISKNAME}: Disk of the Node "{#NODENAME}" has state different from "present" | |0 |3 |Something is wrong with the disk. |NULL |0 |2 |1 |(({22335}<>{22638})=1 and {22336}="present") |0 | |1 | |0 | |
-ROW |18511 |(({22337}<>{22639})=1 and {22338}="error") |{#FRUID}: FRU of the chassis "{#ID}" state is error | |0 |3 |Something is wrong with the FRU. |NULL |0 |2 |1 |(({22337}<>{22639})=1 and {22338}="ok") |0 | |1 | |0 | |
-ROW |18512 |(({22339}<>{22640})=1 and {22340}<>"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 |(({22339}<>{22640})=1 and {22340}="online") |0 | |1 | |0 | |
-ROW |18513 |(({22341}<>{22641})=1 and {22342}<>"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 |(({22341}<>{22641})=1 and {22342}="online") |0 | |1 | |0 | |
-ROW |18514 |({22343}<>{22642})=1 and length({22344})>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 |18508 |{22331}=1 and {22332}>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 |18509 |({22333}=1 and {22334}="error") |{#ID}: Chassis has something errors | |0 |3 |Something is wrong with the chassis. |NULL |0 |2 |1 |({22333}=1 and {22334}="ok") |0 | |1 | |0 | |
+ROW |18510 |({22335}=1 and {22336}<>"present") |{#DISKNAME}: Disk of the Node "{#NODENAME}" has state different from "present" | |0 |3 |Something is wrong with the disk. |NULL |0 |2 |1 |({22335}=1 and {22336}="present") |0 | |1 | |0 | |
+ROW |18511 |({22337}=1 and {22338}="error") |{#FRUID}: FRU of the chassis "{#ID}" state is error | |0 |3 |Something is wrong with the FRU. |NULL |0 |2 |1 |({22337}=1 and {22338}="ok") |0 | |1 | |0 | |
+ROW |18512 |({22339}=1 and {22340}<>"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 |({22339}=1 and {22340}="online") |0 | |1 | |0 | |
+ROW |18513 |({22341}=1 and {22342}<>"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 |({22341}=1 and {22342}="online") |0 | |1 | |0 | |
+ROW |18514 |{22343}=1 and {22344}>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 |18515 |({22345}<>"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 |18516 |({22346}<>"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 |18517 |{22347}<10m |{#NODENAME}: Node has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |2 |0 | |0 | |1 | |0 | |
-ROW |18518 |(({22348}<>{22643})=1 and {22349}="down") |{#ETHPORTNAME}: Ethernet port of the Node "{#NODENAME}" is down | |0 |3 |Something is wrong with the ethernet port. |NULL |0 |2 |1 |(({22348}<>{22643})=1 and {22349}="up") |0 | |1 | |0 | |
-ROW |18519 |(({22350}<>{22644})=1 and {22351}<>"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 |(({22350}<>{22644})=1 and {22351}="online") |0 | |1 | |0 | |
-ROW |18520 |(({22352}<>{22645})=1 and {22353}<>"running") |{#SVMNAME}: SVM state is abnormal | |0 |3 |Something is wrong with the SVM. |NULL |0 |2 |1 |(({22352}<>{22645})=1 and {22353}="running") |0 | |1 | |0 | |
-ROW |18521 |(({22354}<>{22646})=1 and {22355}<>"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 |(({22354}<>{22646})=1 and {22355}="online") |0 | |1 | |0 | |
+ROW |18518 |({22348}=1 and {22349}="down") |{#ETHPORTNAME}: Ethernet port of the Node "{#NODENAME}" is down | |0 |3 |Something is wrong with the ethernet port. |NULL |0 |2 |1 |({22348}=1 and {22349}="up") |0 | |1 | |0 | |
+ROW |18519 |({22350}=1 and {22351}<>"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 |({22350}=1 and {22351}="online") |0 | |1 | |0 | |
+ROW |18520 |({22352}=1 and {22353}<>"running") |{#SVMNAME}: SVM state is abnormal | |0 |3 |Something is wrong with the SVM. |NULL |0 |2 |1 |({22352}=1 and {22353}="running") |0 | |1 | |0 | |
+ROW |18521 |({22354}=1 and {22355}<>"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 |({22354}=1 and {22355}="online") |0 | |1 | |0 | |
+ROW |18522 |{22356}>{22356} |Broker {#JMXBROKERNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"} | |0 |3 |Enqueue rate is higher than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18523 |{22357}>{22358} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Message enqueue rate is higher than dequeue rate for {$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Enqueue rate is higher than dequeue rate. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18524 |{22359}>{$ACTIVEMQ.EXPIRIED.WARN:"{#JMXDESTINATIONNAME}"} |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Expired messages count higher 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 |18525 |{22360}>{$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} and {$ACTIVEMQ.QUEUE.ENABLED:"{#JMXDESTINATIONNAME}"}=1 |{#JMXBROKERNAME}: {#JMXDESTINATIONTYPE} {#JMXDESTINATIONNAME}: Queue size higher than {$ACTIVEMQ.QUEUE.WARN:"{#JMXDESTINATIONNAME}"} for {$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"} | |0 |3 |Queue size is higher than threshold. It may indicate performance problems. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18526 |{22361}/{22362}*100>{$GITLAB.PUMA.UTILIZATION.MAX.WARN} |GitLab: Puma instance thread utilization is too high (over {$GITLAB.PUMA.UTILIZATION.MAX.WARN}% for 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18527 |{22363}>{22364}/100*{$SQUID.PAGE.FAULT.WARN} |Squid: High sys page faults rate (>{$SQUID.PAGE.FAULT.WARN}% of received HTTP requests) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18528 |{22365}>75 |Zabbix report manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{22365}<65 |0 | |0 | |0 | |
+ROW |18529 |{22366}>75 |Zabbix report writer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{22366}<65 |0 | |0 | |0 | |
+ROW |18530 |{22367}>75 |Zabbix report manager processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{22367}<65 |0 | |0 | |0 | |
+ROW |18531 |{22368}>75 |Zabbix report writer processes more than 75% busy | |0 |3 | |NULL |0 |0 |1 |{22368}<65 |0 | |0 | |0 | |
+ROW |18534 |{22371}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number of 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 |18535 |{22372}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number of 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 |18536 |{22373}>{$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Diff backup older than {$MSSQL.BACKUP_DIFF.CRIT:"{#DBNAME}"} | |0 |4 |The differential backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18537 |{22374}>{$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Diff backup older than {$MSSQL.BACKUP_DIFF.WARN:"{#DBNAME}"} | |0 |2 |The differential backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18538 |{22375}>{$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Full backup older than {$MSSQL.BACKUP_FULL.CRIT:"{#DBNAME}"} | |0 |4 |The full backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18539 |{22376}>{$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Full backup older than {$MSSQL.BACKUP_FULL.WARN:"{#DBNAME}"} | |0 |2 |The full backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18540 |{22377}>{$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Log backup older than {$MSSQL.BACKUP_LOG.CRIT:"{#DBNAME}"} | |0 |4 |The log backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18541 |{22378}>{$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} |MSSQL DB '{#DBNAME}': Log backup older than {$MSSQL.BACKUP_LOG.WARN:"{#DBNAME}"} | |0 |2 |The log backup has not been executed for a long time. |NULL |0 |2 |0 | |0 | |1 |Time since last backup: {ITEM.LASTVALUE1} |0 | |
+ROW |18542 |{22379}=0 |MSSQL Job '{#JOBNAME}': Failed to run | |0 |2 |The last run of the job has failed. |NULL |0 |2 |0 | |0 | |1 | |0 | |
+ROW |18543 |{22380}>{$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"} |MSSQL Job '{#JOBNAME}': Job duration is greater than {$MSSQL.BACKUP_DURATION.WARN:"{#JOBNAME}"} | |0 |2 |The job is taking too long. |NULL |0 |2 |0 | |0 | |1 |Job duration: {ITEM.LASTVALUE1} |0 | |
+ROW |18544 |{22381}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$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 |18545 |{22382}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$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 |18546 |{22383}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less than {$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 |18547 |{22384} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too high 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 |18548 |{22385} > {$ORACLE.CONCURRENCY.MAX.WARN} |Oracle: Too high 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 |18549 |{22386}=0 |PD: Instance is not responding | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18550 |{22387}<10m |PD: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18551 |{22388}=1 and {22389}>0 |PD: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |PD version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18552 |{22390}/{22391}*100>{$PD.STORAGE_USAGE.MAX.WARN} |TiDB cluster: Current storage usage is too high (over {$PD.STORAGE_USAGE.MAX.WARN}% for 5m) | |0 |2 |Over {$PD.STORAGE_USAGE.MAX.WARN}% of the cluster space is occupied. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18553 |{22392}>0 |TiDB cluster: There are disconnected TiKV nodes | |0 |2 |PD does not receive a TiKV heartbeat within 20 seconds. Normally a TiKV heartbeat comes in every 10 seconds. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18554 |{22393}>0 |TiDB cluster: There are offline TiKV nodes | |0 |3 |PD has not received a TiKV heartbeat for a long time. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18555 |{22394}>0 |TiDB cluster: There are low space TiKV nodes | |0 |3 |Indicates that there is no sufficient space on the TiKV node. |NULL |0 |2 |0 | |0 | |0 | |0 | |
+ROW |18556 |{22395}>0 |TiDB cluster: There are unresponsive peers | |0 |2 |The number of Regions with an unresponsive peer reported by the Raft leader. |NULL |0 |2 |0 | |0 | |0 | |1 | |
+ROW |18557 |{22396}>{$PD.MISS_REGION.MAX.WARN} |TiDB cluster: Too many missed regions (over {$PD.MISS_REGION.MAX.WARN} in 5m) | |0 |2 |The number of Region replicas is smaller than the value of max-replicas. When a TiKV machine is down and its downtime exceeds max-down-time, it usually leads to missing replicas for some Regions during a period of time. When a TiKV node is made offline, it might result in a small number of Regions with missing replicas. |NULL |0 |2 |0 | |0 | |0 | |1 | |
+ROW |18558 |{22397}/{22398}*100>{$TIDB.OPEN.FDS.MAX.WARN} |TiDB: Current number of open files is too high (over {$TIDB.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." |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18559 |{22399}>{$TIDB.DDL.WAITING.MAX.WARN} |TiDB: Too many DDL waiting jobs (over {$TIDB.DDL.WAITING.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18560 |{22400}>{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} |TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} for 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18561 |{22401}>{$TIDB.HEAP.USAGE.MAX.WARN} |TiDB: Heap memory usage is too high (over {$TIDB.HEAP.USAGE.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18562 |{22402}<{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} |TiDB: Too few keep alive operations (less {$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} for 5m) | |0 |3 |Indicates whether the TiDB process still exists. If the number of times for tidb_monitor_keep_alive_total increases less than 10 per minute, the TiDB process might already exit and an alert is triggered. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18563 |{22403}>{$TIDB.TIME_JUMP_BACK.MAX.WARN} |TiDB: Too many time jump backs (over {$TIDB.TIME_JUMP_BACK.MAX.WARN} for 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18564 |{22404}>{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} |TiDB: Too many schema lease errors (over {$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} for 5m) | |0 |3 |The latest schema information is not reloaded in TiDB within one lease. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18565 |{22405}=0 |TiDB: Instance is not responding | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18566 |{22406}>0 |TiDB: There are panicked TiDB threads | |0 |3 |When a panic occurs, an alert is triggered. The thread is often recovered, otherwise, TiDB will frequently restart. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18567 |{22407}>{$TIDB.REGION_ERROR.MAX.WARN} |TiDB: Too many region related errors (over {$TIDB.REGION_ERROR.MAX.WARN} for 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18568 |{22408}<10m |TiDB: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18569 |{22409}=1 and {22410}>0 |TiDB: Version has changed (new version: {ITEM.VALUE}) | |0 |1 |TiDB version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18570 |{22411}>{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} |TiDB: Too many failed GC-related operations (over {$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |2 |0 | |0 | |0 | |1 | |
+ROW |18571 |{22412}>{$TIKV.COPOCESSOR.ERRORS.MAX.WARN} |TiKV: Too many coprocessor request error (over {$TIKV.COPOCESSOR.ERRORS.MAX.WARN} in 5m) | |0 |2 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18572 |{22413}>{$TIKV.PENDING_COMMANDS.MAX.WARN} |TiKV: Too many pending commands (over {$TIKV.PENDING_COMMANDS.MAX.WARN} for 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18573 |{22414}>{$TIKV.PENDING_TASKS.MAX.WARN} |TiKV: Too many pending commands (over {$TIKV.PENDING_TASKS.MAX.WARN} for 5m) | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18574 |{22415}<10m |TiKV: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18575 |{22416}>{$TIKV.STORE.ERRORS.MAX.WARN} |TiKV: Store_id {#STORE_ID}: Too many failure messages "{#TYPE}" (over {$TIKV.STORE.ERRORS.MAX.WARN} in 5m) | |0 |2 |Indicates that the remote TiKV cannot be connected. |NULL |0 |2 |0 | |0 | |0 | |1 | |
+ROW |18576 |{22417} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18577 |{22418}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18578 |{22419}=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 |18579 |{22420}=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 |18580 |{22421} > {$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 |18581 |{22422} > 0 and ({22422} > {$UPS.INPUT_FREQ.MAX.WARN} or {22423} < {$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 |18582 |{22424} > 0 and ({22424} > {$UPS.INPUT_VOLT.MAX.WARN} or {22425} < {$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 |18583 |{22426} > {$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 |18584 |{22427}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18585 |{22428}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18586 |{22429}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18587 |{22430}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18588 |{22431}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18589 |{22432}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18590 |{22433}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18591 |{22434}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18592 |{22435}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18593 |{22436}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18594 |{22437}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18595 |{22438}=1 and {22439}>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 |18596 |{22440}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18597 |{22441}=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 |18598 |{22442}=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 |18599 |{22443}=0 |{#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 |18600 |{22444} > {$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 |18601 |{22445}=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 |18602 |{22446}=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 |18603 |{22447}=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 |18604 |{22448}=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 |18605 |{22449}=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 |18606 |{22450}=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 |18607 |{22451} > {$UPS.INPUT_VOLT.MAX.WARN} or {22452} < {$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 |18608 |{22453} > {$UPS.INPUT_VOLT.MAX.WARN} or {22454} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18609 |{22455} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18610 |{22456}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18611 |{22457}=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 |18612 |{22458}=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 |18613 |{22459} > {$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 |18614 |{22460} > 0 and ({22460} > {$UPS.INPUT_FREQ.MAX.WARN} or {22461} < {$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 |18615 |{22462} > 0 and ({22462} > {$UPS.INPUT_VOLT.MAX.WARN} or {22463} < {$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 |18616 |{22464} > {$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 |18617 |{22465}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18618 |{22466}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18619 |{22467}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18620 |{22468}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18621 |{22469}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18622 |{22470}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18623 |{22471}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18624 |{22472}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18625 |{22473}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18626 |{22474}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18627 |{22475}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18628 |{22476}=1 and {22477}>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 |18629 |{22478}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18630 |{22479}=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 |18631 |{22480}=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 |18632 |{22481}=0 |{#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 |18633 |{22482} > {$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 |18634 |{22483}=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 |18635 |{22484}=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 |18636 |{22485}=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 |18637 |{22486}=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 |18638 |{22487}=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 |18639 |{22488}=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 |18640 |{22489} > {$UPS.INPUT_VOLT.MAX.WARN} or {22490} < {$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 |18641 |{22491} > {$UPS.INPUT_VOLT.MAX.WARN} or {22492} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18642 |{22493} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18643 |{22494}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18644 |{22495}=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 |18645 |{22496}=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 |18646 |{22497} > {$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 |18647 |{22498} > 0 and ({22498} > {$UPS.INPUT_FREQ.MAX.WARN} or {22499} < {$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 |18648 |{22500} > 0 and ({22500} > {$UPS.INPUT_VOLT.MAX.WARN} or {22501} < {$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 |18649 |{22502} > {$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 |18650 |{22503}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18651 |{22504}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18652 |{22505}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18653 |{22506}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18654 |{22507}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18655 |{22508}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18656 |{22509}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18657 |{22510}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18658 |{22511}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18659 |{22512}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18660 |{22513}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18661 |{22514}=1 and {22515}>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 |18662 |{22516}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18663 |{22517}=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 |18664 |{22518}=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 |18665 |{22519}=0 |{#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 |18666 |{22520} > {$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 |18667 |{22521}=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 |18668 |{22522}=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 |18669 |{22523}=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 |18670 |{22524}=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 |18671 |{22525}=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 |18672 |{22526}=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 |18673 |{22527} > {$UPS.INPUT_VOLT.MAX.WARN} or {22528} < {$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 |18674 |{22529} > {$UPS.INPUT_VOLT.MAX.WARN} or {22530} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18675 |{22531} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18676 |{22532}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18677 |{22533}=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 |18678 |{22534}=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 |18679 |{22535} > {$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 |18680 |{22536} > 0 and ({22536} > {$UPS.INPUT_FREQ.MAX.WARN} or {22537} < {$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 |18681 |{22538} > 0 and ({22538} > {$UPS.INPUT_VOLT.MAX.WARN} or {22539} < {$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 |18682 |{22540} > {$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 |18683 |{22541}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18684 |{22542}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18685 |{22543}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18686 |{22544}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18687 |{22545}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18688 |{22546}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18689 |{22547}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18690 |{22548}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18691 |{22549}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18692 |{22550}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18693 |{22551}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18694 |{22552}=1 and {22553}>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 |18695 |{22554}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18696 |{22555}=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 |18697 |{22556}=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 |18698 |{22557}=0 |{#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 |18699 |{22558} > {$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 |18700 |{22559}=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 |18701 |{22560}=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 |18702 |{22561}=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 |18703 |{22562}=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 |18704 |{22563}=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 |18705 |{22564}=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 |18706 |{22565} > {$UPS.INPUT_VOLT.MAX.WARN} or {22566} < {$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 |18707 |{22567} > {$UPS.INPUT_VOLT.MAX.WARN} or {22568} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18708 |{22569} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18709 |{22570}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18710 |{22571}=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 |18711 |{22572}=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 |18712 |{22573} > {$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 |18713 |{22574} > 0 and ({22574} > {$UPS.INPUT_FREQ.MAX.WARN} or {22575} < {$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 |18714 |{22576} > 0 and ({22576} > {$UPS.INPUT_VOLT.MAX.WARN} or {22577} < {$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 |18715 |{22578} > {$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 |18716 |{22579}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18717 |{22580}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18718 |{22581}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18719 |{22582}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18720 |{22583}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18721 |{22584}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18722 |{22585}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18723 |{22586}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18724 |{22587}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18725 |{22588}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18726 |{22589}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18727 |{22590}=1 and {22591}>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 |18728 |{22592}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18729 |{22593}=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 |18730 |{22594}=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 |18731 |{22595}=0 |{#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 |18732 |{22596} > {$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 |18733 |{22597}=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 |18734 |{22598}=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 |18735 |{22599}=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 |18736 |{22600}=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 |18737 |{22601}=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 |18738 |{22602}=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 |18739 |{22603} > {$UPS.INPUT_VOLT.MAX.WARN} or {22604} < {$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 |18740 |{22605} > {$UPS.INPUT_VOLT.MAX.WARN} or {22606} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18741 |{22607} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18742 |{22608}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18743 |{22609}=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 |18744 |{22610}=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 |18745 |{22611} > {$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 |18746 |{22612} > 0 and ({22612} > {$UPS.INPUT_FREQ.MAX.WARN} or {22613} < {$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 |18747 |{22614} > 0 and ({22614} > {$UPS.INPUT_VOLT.MAX.WARN} or {22615} < {$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 |18748 |{22616} > {$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 |18749 |{22617}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18750 |{22618}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18751 |{22619}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18752 |{22620}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18753 |{22621}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18754 |{22622}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18755 |{22623}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18756 |{22624}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18757 |{22625}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18758 |{22626}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18759 |{22627}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18760 |{22628}=1 and {22629}>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 |18761 |{22630}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18762 |{22631}=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 |18763 |{22632}=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 |18764 |{22633}=0 |{#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 |18765 |{22634} > {$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 |18766 |{22635}=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 |18767 |{22636}=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 |18768 |{22637}=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 |18769 |{22638}=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 |18770 |{22639}=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 |18771 |{22640}=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 |18772 |{22641} > {$UPS.INPUT_VOLT.MAX.WARN} or {22642} < {$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 |18773 |{22643} > {$UPS.INPUT_VOLT.MAX.WARN} or {22644} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18774 |{22645} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18775 |{22646}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18776 |{22647}=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 |18777 |{22648}=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 |18778 |{22649} > {$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 |18779 |{22650} > 0 and ({22650} > {$UPS.INPUT_FREQ.MAX.WARN} or {22651} < {$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 |18780 |{22652} > 0 and ({22652} > {$UPS.INPUT_VOLT.MAX.WARN} or {22653} < {$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 |18781 |{22654} > {$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 |18782 |{22655}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18783 |{22656}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18784 |{22657}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18785 |{22658}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18786 |{22659}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18787 |{22660}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18788 |{22661}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18789 |{22662}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18790 |{22663}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18791 |{22664}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18792 |{22665}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18793 |{22666}=1 and {22667}>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 |18794 |{22668}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18795 |{22669}=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 |18796 |{22670}=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 |18797 |{22671}=0 |{#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 |18798 |{22672} > {$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 |18799 |{22673}=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 |18800 |{22674}=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 |18801 |{22675}=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 |18802 |{22676}=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 |18803 |{22677}=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 |18804 |{22678}=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 |18805 |{22679} > {$UPS.INPUT_VOLT.MAX.WARN} or {22680} < {$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 |18806 |{22681} > {$UPS.INPUT_VOLT.MAX.WARN} or {22682} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18807 |{22683} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18808 |{22684}=1 and {22685}>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 |18809 |{22686}=0 |{#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 |18810 |{22687} > {$UPS.INPUT_VOLT.MAX.WARN} or {22688} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18811 |{22689} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18812 |{22690}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18813 |{22691}=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 |18814 |{22692}=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 |18815 |{22693} > {$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 |18816 |{22694} > 0 and ({22694} > {$UPS.INPUT_FREQ.MAX.WARN} or {22695} < {$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 |18817 |{22696} > 0 and ({22696} > {$UPS.INPUT_VOLT.MAX.WARN} or {22697} < {$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 |18818 |{22698} > {$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 |18819 |{22699}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18820 |{22700}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18821 |{22701}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18822 |{22702}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18823 |{22703}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18824 |{22704}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18825 |{22705}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18826 |{22706}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18827 |{22707}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18828 |{22708}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18829 |{22709}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18830 |{22710}=1 and {22711}>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 |18831 |{22712}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18832 |{22713}=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 |18833 |{22714}=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 |18834 |{22715}=0 |{#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 |18835 |{22716} > {$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 |18836 |{22717}=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 |18837 |{22718}=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 |18838 |{22719}=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 |18839 |{22720}=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 |18840 |{22721}=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 |18841 |{22722}=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 |18842 |{22723} > {$UPS.INPUT_VOLT.MAX.WARN} or {22724} < {$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 |18843 |{22725} > {$UPS.INPUT_VOLT.MAX.WARN} or {22726} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18844 |{22727} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18845 |{22728}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18846 |{22729}=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 |18847 |{22730}=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 |18848 |{22731} > {$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 |18849 |{22732} > 0 and ({22732} > {$UPS.INPUT_FREQ.MAX.WARN} or {22733} < {$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 |18850 |{22734} > 0 and ({22734} > {$UPS.INPUT_VOLT.MAX.WARN} or {22735} < {$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 |18851 |{22736} > {$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 |18852 |{22737}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18853 |{22738}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18854 |{22739}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18855 |{22740}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18856 |{22741}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18857 |{22742}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18858 |{22743}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18859 |{22744}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18860 |{22745}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18861 |{22746}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18862 |{22747}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18863 |{22748}=1 and {22749}>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 |18864 |{22750}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18865 |{22751}=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 |18866 |{22752}=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 |18867 |{22753}=0 |{#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 |18868 |{22754} > {$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 |18869 |{22755}=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 |18870 |{22756}=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 |18871 |{22757}=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 |18872 |{22758}=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 |18873 |{22759}=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 |18874 |{22760}=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 |18875 |{22761} > {$UPS.INPUT_VOLT.MAX.WARN} or {22762} < {$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 |18876 |{22763} > {$UPS.INPUT_VOLT.MAX.WARN} or {22764} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 |18877 |{22765} < {$BATTERY.CAPACITY.MIN.WARN} |Battery has low capacity (below {$BATTERY.CAPACITY.MIN.WARN}%) | |0 |4 | |NULL |0 |0 |0 | |0 | |0 |Current capacity: {ITEM.LASTVALUE1} |0 | |
+ROW |18878 |{22766}=2 |Battery needs replacement | |0 |4 |A battery installed has an internal error condition. |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18879 |{22767}=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 |18880 |{22768}=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 |18881 |{22769} > {$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 |18882 |{22770} > 0 and ({22770} > {$UPS.INPUT_FREQ.MAX.WARN} or {22771} < {$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 |18883 |{22772} > 0 and ({22772} > {$UPS.INPUT_VOLT.MAX.WARN} or {22773} < {$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 |18884 |{22774} > {$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 |18885 |{22775}=16 |UPS is Emergency Static Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18886 |{22776}=10 |UPS is Hardware Failure Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18887 |{22777}=7 |UPS is Off | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18888 |{22778}=3 |UPS is on battery | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18889 |{22779}=4 |UPS is on Smart Boost | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18890 |{22780}=12 |UPS is On Smart Trim | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18891 |{22781}=8 |UPS is Rebooting | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18892 |{22782}=11 |UPS is Sleeping Until Power Return | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18893 |{22783}=6 |UPS is Software Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18894 |{22784}=9 |UPS is Switched Bypass | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18895 |{22785}=5 |UPS is Timed Sleeping | |0 |3 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |18896 |{22786}=1 and {22787}>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 |18897 |{22788}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
+ROW |18898 |{22789}=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 |18899 |{22790}=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 |18900 |{22791}=0 |{#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 |18901 |{22792} > {$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 |18902 |{22793}=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 |18903 |{22794}=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 |18904 |{22795}=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 |18905 |{22796}=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 |18906 |{22797}=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 |18907 |{22798}=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 |18908 |{22799} > {$UPS.INPUT_VOLT.MAX.WARN} or {22800} < {$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 |18909 |{22801} > {$UPS.INPUT_VOLT.MAX.WARN} or {22802} < {$UPS.INPUT_VOLT.MIN.WARN} |{#PHASEINDEX}: Unacceptable phase {#PHASEINDEX} output 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 | |
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|event_name|
@@ -8464,10 +9525,10 @@ ROW |13571 |{13231}>75
ROW |14293 |{14468}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14251 |0 |0 |0 | |0 | |0 | |0 | |
ROW |14294 |{14469}>{$ICMP_LOSS_WARN} and {14469}<100 |High ICMP ping loss | |0 |2 | |14252 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |14295 |{14470}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14253 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
-ROW |14411 |({14672}<>{22382})=1 and length({14673})>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |14413 |({14676}<>{22383})=1 and length({14677})>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |14428 |({14698}<>{22385})=1 and length({14699})>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
-ROW |14430 |({14702}<>{22386})=1 and length({14703})>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
+ROW |14411 |{14672}=1 and {14673}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |14413 |{14676}=1 and {14677}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |14428 |{14698}=1 and {14699}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
+ROW |14430 |{14702}=1 and {14703}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
ROW |14942 |{15732}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
ROW |14943 |{15733}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
ROW |14944 |{15734}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
@@ -8479,8 +9540,8 @@ ROW |14949 |{15739}=2
ROW |14950 |{15740}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
ROW |14951 |{15741}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
ROW |14953 |{15743}=2 |Interface {#IFNAME}({#IFALIAS}): In half-duplex mode | |0 |2 |Please check autonegotiation settings and cabling |14941 |0 |2 |0 | |0 | |1 | |0 | |
-ROW |15208 |({16445}<>{22410})=1 and length({16446})>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |15209 |({16447}<>{22411})=1 and length({16448})>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
+ROW |15208 |{16445}=1 and {16446}>0 |Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14409 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |15209 |{16447}=1 and {16448}>0 |{#ENT_NAME}: Device has been replaced (new serial number received) | |0 |1 |Device serial number has changed. Ack to close |14417 |0 |2 |0 | |0 | |1 | |0 | |
ROW |15354 |{16866}=1 or {16867}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |15355 |{16868}=1 or {16869}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |15356 |{16870}=1 or {16871}=1 |{#SENSOR_INFO}: Power supply is in critical state | |0 |3 |Please check the power supply unit for errors |15344 |0 |2 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |
@@ -8532,8 +9593,8 @@ ROW |16055 |{18335}=0
ROW |16059 |{18341}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16038 |0 |0 |0 | |0 | |0 | |0 | |
ROW |16061 |{18343}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16039 |0 |0 |0 | |0 | |0 | |0 | |
ROW |16063 |{18345}/{18346}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16040 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 | |
-ROW |16065 |({18349}<>{22425})>0 |/etc/passwd has been changed | |0 |1 | |16041 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16067 |({18351}<>{22427})=1 and length({18352})>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16042 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16065 |{18349}>0 |/etc/passwd has been changed | |0 |1 | |16041 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16067 |{18351}=1 and {18352}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16042 |0 |0 |0 | |0 | |1 | |0 | |
ROW |16077 |{18376}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18377}-{18378})<5G or {18379}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16069 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16079 |{18384}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18385}-{18386})<10G or {18387}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16070 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16081 |{18392}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16071 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 | |
@@ -8619,81 +9680,81 @@ ROW |16457 |{19111}<10m
ROW |16458 |{19112}=0 |No SNMP data collection | |0 |2 |SNMP is not available for polling. Please check device connectivity and SNMP settings. |16289 |0 |0 |0 | |0 | |0 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |16500 |{19181}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16501 |{19182}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16498 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
-ROW |16509 |({19194}<>{22435})=1 and length({19195})>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16510 |({19196}<>{22436})=1 and length({19197})>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16511 |({19198}<>{22437})=1 and length({19199})>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16509 |{19194}=1 and {19195}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16510 |{19196}=1 and {19197}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16511 |{19198}=1 and {19199}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16507 |0 |0 |0 | |0 | |1 | |0 | |
ROW |16512 |{19200}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16508 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16519 |{19207}>{$CPU.UTIL.CRIT} |{#SNMPVALUE}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16514 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16520 |{19208}>{$CPU.UTIL.CRIT} |#{#SNMPINDEX}: High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16515 |0 |2 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16564 |{19273}/{19274}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19275}>0&eol;and {19276}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16563 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 | |
ROW |16576 |{19309}/{19310}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19311}>0&eol;and {19312}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16575 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 | |
-ROW |16580 |({19318}<>{22449})=1 and length({19319})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16579 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16586 |({19330}<>{22453})=1 and length({19331})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16585 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16591 |({19340}<>{22454})=1 and length({19341})>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 |16594 |({19346}<>{22456})=1 and length({19347})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16595 |({19348}<>{22457})=1 and length({19349})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16596 |({19350}<>{22458})=1 and length({19351})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16597 |({19352}<>{22459})=1 and length({19353})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16598 |({19354}<>{22460})=1 and length({19355})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16599 |({19356}<>{22461})=1 and length({19357})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16600 |({19358}<>{22462})=1 and length({19359})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16601 |({19360}<>{22463})=1 and length({19361})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16602 |({19362}<>{22464})=1 and length({19363})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16603 |({19364}<>{22465})=1 and length({19365})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16604 |({19366}<>{22466})=1 and length({19367})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16605 |({19368}<>{22467})=1 and length({19369})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16606 |({19370}<>{22468})=1 and length({19371})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16607 |({19372}<>{22469})=1 and length({19373})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16608 |({19374}<>{22470})=1 and length({19375})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16609 |({19376}<>{22471})=1 and length({19377})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16610 |({19378}<>{22472})=1 and length({19379})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16611 |({19380}<>{22473})=1 and length({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}<>{22474})=1 and length({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}<>{22475})=1 and length({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 |16615 |({19388}<>{22476})=1 and length({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}<>{22477})=1 and length({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}<>{22478})=1 and length({19393})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16618 |({19394}<>{22479})=1 and length({19395})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16619 |({19396}<>{22480})=1 and length({19397})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16620 |({19398}<>{22481})=1 and length({19399})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16621 |({19400}<>{22482})=1 and length({19401})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16622 |({19402}<>{22483})=1 and length({19403})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16623 |({19404}<>{22484})=1 and length({19405})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16580 |{19318}=1 and {19319}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16579 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16586 |{19330}=1 and {19331}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16585 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16591 |{19340}=1 and {19341}>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 |16594 |{19346}=1 and {19347}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16595 |{19348}=1 and {19349}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16596 |{19350}=1 and {19351}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16597 |{19352}=1 and {19353}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16598 |{19354}=1 and {19355}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16599 |{19356}=1 and {19357}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16600 |{19358}=1 and {19359}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16601 |{19360}=1 and {19361}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16602 |{19362}=1 and {19363}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16603 |{19364}=1 and {19365}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16604 |{19366}=1 and {19367}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16605 |{19368}=1 and {19369}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16606 |{19370}=1 and {19371}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16607 |{19372}=1 and {19373}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16608 |{19374}=1 and {19375}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16609 |{19376}=1 and {19377}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16610 |{19378}=1 and {19379}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16611 |{19380}=1 and {19381}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16612 |{19382}=1 and {19383}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16613 |{19384}=1 and {19385}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16615 |{19388}=1 and {19389}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16616 |{19390}=1 and {19391}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16617 |{19392}=1 and {19393}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16618 |{19394}=1 and {19395}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16619 |{19396}=1 and {19397}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16620 |{19398}=1 and {19399}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16621 |{19400}=1 and {19401}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16622 |{19402}=1 and {19403}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16623 |{19404}=1 and {19405}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16593 |0 |0 |0 | |0 | |1 | |0 | |
ROW |16625 |{19407}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16624 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16636 |{19424}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19425}-{19426})<5G or {19427}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16630 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16640 |{19440}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({19441}-{19442})<10G or {19443}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16631 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16714 |{19553}<>0 |"{#SERVICE.NAME}" ({#SERVICE.DISPLAYNAME}) is not running (startup type {#SERVICE.STARTUPNAME}) | |0 |3 |The service has a state other than "Running" for the last three times. |16713 |0 |2 |0 | |0 | |0 | |0 | |
-ROW |16842 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19696}=2 and ({19697}<>{22501})=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 |{19696}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16843 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19698}=2 and ({19699}<>{22502})=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 |{19698}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16844 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19700}=2 and ({19701}<>{22503})=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 |{19700}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16845 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19702}=2 and ({19703}<>{22504})=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 |{19702}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16846 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19704}=2 and ({19705}<>{22505})=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 |{19704}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16847 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19706}=2 and ({19707}<>{22506})=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 |{19706}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16848 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19708}=2 and ({19709}<>{22507})=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 |{19708}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16849 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19710}=2 and ({19711}<>{22508})=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 |{19710}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16850 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19712}=2 and ({19713}<>{22509})=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 |{19712}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16851 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19714}=2 and ({19715}<>{22510})=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 |{19714}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16852 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19716}=2 and ({19717}<>{22511})=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 |{19716}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16853 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19718}=2 and ({19719}<>{22512})=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 |{19718}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16854 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19720}=2 and ({19721}<>{22513})=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 |{19720}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16855 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19722}=2 and ({19723}<>{22514})=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 |{19722}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16856 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19724}=2 and ({19725}<>{22515})=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}<>{22516})=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}<>{22517})=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 |16860 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19732}=2 and ({19733}<>{22518})=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}<>{22519})=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}<>{22520})=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 | |
-ROW |16864 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19740}=2 and ({19741}<>{22522})=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. |16863 |0 |2 |1 |{19740}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16865 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19742}=2 and ({19743}<>{22523})=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. |16863 |0 |2 |1 |{19742}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16867 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19746}=2 and ({19747}<>{22525})=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. |16866 |0 |2 |1 |{19746}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
-ROW |16868 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19748}=2 and ({19749}<>{22526})=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. |16863 |0 |2 |1 |{19748}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16842 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19696}=2 and {19697}=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 |{19696}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16843 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19698}=2 and {19699}=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 |{19698}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16844 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19700}=2 and {19701}=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 |{19700}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16845 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19702}=2 and {19703}=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 |{19702}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16846 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19704}=2 and {19705}=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 |{19704}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16847 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19706}=2 and {19707}=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 |{19706}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16848 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19708}=2 and {19709}=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 |{19708}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16849 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19710}=2 and {19711}=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 |{19710}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16850 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19712}=2 and {19713}=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 |{19712}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16851 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19714}=2 and {19715}=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 |{19714}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16852 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19716}=2 and {19717}=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 |{19716}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16853 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19718}=2 and {19719}=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 |{19718}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16854 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19720}=2 and {19721}=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 |{19720}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16855 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19722}=2 and {19723}=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 |{19722}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+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 |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 | |
+ROW |16864 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19740}=2 and {19741}=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. |16863 |0 |2 |1 |{19740}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16865 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19742}=2 and {19743}=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. |16863 |0 |2 |1 |{19742}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16867 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19746}=2 and {19747}=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. |16866 |0 |2 |1 |{19746}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |16868 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19748}=2 and {19749}=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. |16863 |0 |2 |1 |{19748}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |16878 |{19776}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19777}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |16879 |{19778}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19779}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |16880 |{19780}<{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} |{#SNMPVALUE}: Temperature is too low: <{$TEMP_CRIT_LOW:"{#SNMPVALUE}"} | |0 |3 | |16871 |0 |2 |1 |{19781}>{$TEMP_CRIT_LOW:"{#SNMPVALUE}"}+3 |0 | |0 |Current value: {ITEM.LASTVALUE1} |0 | |
ROW |17025 |{19960} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19961} > {$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. |17023 |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17026 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19962}=2 and ({19963}<>{22545})=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. |17024 |0 |2 |1 |{19962}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17026 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19962}=2 and {19963}=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. |17024 |0 |2 |1 |{19962}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17037 |{19982} - {19983} * 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 }. |17035 |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17047 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20013}<>2 and ({20014}<>{22548})=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. |17042 |0 |2 |1 |{20013}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17047 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20013}<>2 and {20014}=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. |17042 |0 |2 |1 |{20013}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17048 |{20015}>{$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 |17043 |0 |2 |0 | |0 | |1 | |0 | |
ROW |17239 |{20311}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17253 |{20333}/{20334}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |17240 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 | |
@@ -8701,31 +9762,31 @@ ROW |17256 |{20339}/{20340}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {20341}>0&
ROW |17257 |{20343}>{$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. |17244 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |17258 |{20344}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |17245 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17259 |{20345}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |17246 |0 |0 |0 | |0 | |0 | |0 | |
-ROW |17260 |({20346}<>{22564})=1 and length({20347})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |17247 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17260 |{20346}=1 and {20347}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |17247 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17261 |{20348}=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. |17248 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17262 |({20349}<>{22565})=1 and length({20350})>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. |17249 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17262 |{20349}=1 and {20350}>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. |17249 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17263 |{20351}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |The host uptime is less than 10 minutes |17250 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |17264 |({20352}<>{22566})>0 |/etc/passwd has been changed | |0 |1 | |17251 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17264 |{20352}>0 |/etc/passwd has been changed | |0 |1 | |17251 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17274 |{20376} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {20377} > {$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. |17266 |0 |2 |0 | |0 | |1 | |0 | |
ROW |17275 |{20378}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({20379}-{20380})<5G or {20381}<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. |17267 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |17276 |{20382}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({20383}-{20384})<10G or {20385}<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. |17268 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |17277 |{20386}<{$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. |17269 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 | |
ROW |17278 |{20387}<{$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. |17270 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 | |
ROW |17279 |{20388}<0 and {20389}>0&eol;and&eol;({20389}=6&eol;or {20389}=1)&eol;and&eol;({20390}<>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. |17271 |0 |2 |1 |({20388}>0 and {20391}>0) or&eol;({20390}=2) |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |
-ROW |17281 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20396}=2 and ({20397}<>{22568})=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. |17273 |0 |2 |1 |{20396}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17281 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20396}=2 and {20397}=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. |17273 |0 |2 |1 |{20396}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17282 |{20398}=0 |Zabbix agent is not available (for {$AGENT.TIMEOUT}) | |0 |3 |For passive only agents, host availability is used with {$AGENT.TIMEOUT} as time threshold. |16196 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17294 |{20413} - {20414} * 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 }. |17283 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17296 |{20417}>{$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%.|17285 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17297 |{20418}>{$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}%. |17286 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17298 |{20419}>{$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. |17287 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
-ROW |17299 |({20420}<>{22570})=1 and length({20421})>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |17288 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |17299 |{20420}=1 and {20421}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |17288 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17300 |{20422}=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. |17289 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17301 |{20423}<10m |Host has been restarted (uptime < 10m) | |0 |2 |The device uptime is less than 10 minutes. |17290 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17302 |{20424}<{$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. |17291 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17303 |{20425}>{$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. |17292 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17313 |{20451}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({20452}-{20453})<5G or {20454}<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. |17305 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |17314 |{20455}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({20456}-{20457})<10G or {20458}<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. |17306 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
-ROW |17318 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20471}<>2 and ({20472}<>{22572})=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. |17310 |0 |2 |1 |{20471}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17318 |{$IFCONTROL:"{#IFNAME}"}=1 and ({20471}<>2 and {20472}=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. |17310 |0 |2 |1 |{20471}=2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17319 |{20473}>{$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 |17311 |0 |2 |0 | |0 | |1 | |0 | |
ROW |17320 |{20474}<>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. |17312 |0 |2 |0 | |0 | |0 | |0 | |
ROW |17537 |{20767}>75 |Zabbix availability manager processes more than 75% busy | |0 |3 | |17535 |0 |0 |1 |{20767}<65 |0 | |0 | |0 | |
@@ -8742,7 +9803,7 @@ ROW |17916 |{21173} > {$VFS.DEV.WRITE.AWAIT.WARN:"{#DEVNAME}"}
ROW |17920 |{21179}<0 and&eol;{21180}>0 and&eol;{21181}=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. |17917 |0 |2 |0 | |0 | |1 |Current reported speed: {ITEM.LASTVALUE1} |0 | |
ROW |17921 |{21182} > {$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. |17918 |0 |2 |0 | |0 | |1 | |0 | |
ROW |17922 |{21183} > {$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. |17919 |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17926 |({21187}<>{22588})=1 and length({21188})>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 |17926 |{21187}=1 and {21188}>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 |17927 |{21189}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 | |
ROW |17928 |{21190}=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 |18036 |{21352}>{$MEMORY.UTIL.MAX} |{#MEMNAME}: High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |18035 |0 |2 |0 | |0 | |0 | |0 | |
@@ -8762,7 +9823,7 @@ ROW |18163 |{21658}<{$SWAP.PFREE.MIN.WARN} and {21659}>0
ROW |18164 |{21660}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |18162 |0 |0 |0 | |0 | |0 | |0 | |
ROW |18171 |{21678}<{$SWAP.PFREE.MIN.WARN} and {21679}>0 |High swap space usage (less than {$SWAP.PFREE.MIN.WARN}% free) | |0 |2 |This trigger is ignored, if there is no swap configured |18169 |0 |0 |0 | |0 | |0 |Free: {ITEM.LASTVALUE1}, total: {ITEM.LASTVALUE2} |0 | |
ROW |18172 |{21680}>{$MEMORY.UTIL.MAX} |High memory utilization (>{$MEMORY.UTIL.MAX}% for 5m) | |0 |3 |The system is running out of free memory. |18170 |0 |0 |0 | |0 | |0 | |0 | |
-ROW |18180 |({21698}<>{22608})=1 and length({21699})>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 |18180 |{21698}=1 and {21699}>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 |18181 |{21700}<10m |{HOST.NAME} has been restarted (uptime < 10m) | |0 |2 |Uptime is less than 10 minutes |16287 |0 |0 |0 | |0 | |1 | |0 | |
ROW |18182 |{21701}=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 |18244 |({21781}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21782} or&eol;{21783}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{21782}) and&eol;{21782}>0 |Interface {#IFDESCR}: High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |18242 |0 |2 |1 |{21781}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21782} and&eol;{21783}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{21782}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |
@@ -8821,6 +9882,8 @@ ROW |18467 |({22271}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22272} or&eol;{22273
ROW |18468 |{22274}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22275}>{$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 |18466 |0 |2 |1 |{22276}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22277}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |
ROW |18471 |({22285}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22286} or&eol;{22287}>({$IF.UTIL.MAX:"{#IFNAME}"}/100)*{22286}) and&eol;{22286}>0 |Interface {#IFNAME}({#IFALIAS}): High bandwidth usage (>{$IF.UTIL.MAX:"{#IFNAME}"}% ) | |0 |2 |The network interface utilization is close to its estimated maximum bandwidth. |18469 |0 |2 |1 |{22285}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22286} and&eol;{22287}<(({$IF.UTIL.MAX:"{#IFNAME}"}-3)/100)*{22286}|0 | |1 |In: {ITEM.LASTVALUE1}, out: {ITEM.LASTVALUE3}, speed: {ITEM.LASTVALUE2} |0 | |
ROW |18472 |{22288}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22289}>{$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 |18470 |0 |2 |1 |{22290}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8&eol;and {22291}<{$IF.ERRORS.WARN:"{#IFNAME}"}*0.8 |0 | |1 |errors in: {ITEM.LASTVALUE1}, errors out: {ITEM.LASTVALUE2} |0 | |
+ROW |18532 |{22369}>75 |Zabbix report manager processes more than 75% busy | |0 |3 | |18530 |0 |0 |1 |{22369}<65 |0 | |0 | |0 | |
+ROW |18533 |{22370}>75 |Zabbix report writer processes more than 75% busy | |0 |3 | |18531 |0 |0 |1 |{22370}<65 |0 | |0 | |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|event_name|
@@ -8917,8 +9980,8 @@ ROW |16056 |{18336}=0
ROW |16060 |{18342}<{$KERNEL.MAXFILES.MIN} |Configured max number of open filedescriptors is too low (< {$KERNEL.MAXFILES.MIN}) | |0 |1 | |16059 |0 |0 |0 | |0 | |0 | |0 | |
ROW |16062 |{18344}<{$KERNEL.MAXPROC.MIN} |Configured max number of processes is too low (< {$KERNEL.MAXPROC.MIN}) | |0 |1 | |16061 |0 |0 |0 | |0 | |0 | |0 | |
ROW |16064 |{18347}/{18348}*100>80 |Getting closer to process limit (over 80% used) | |0 |2 | |16063 |0 |0 |0 | |0 | |0 |{ITEM.LASTVALUE1} active, {ITEM.LASTVALUE2} limit. |0 | |
-ROW |16066 |({18350}<>{22426})>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16068 |({18353}<>{22428})=1 and length({18354})>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16067 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16066 |{18350}>0 |/etc/passwd has been changed | |0 |1 | |16065 |0 |0 |0 | |0 | |1 | |0 | |
+ROW |16068 |{18353}=1 and {18354}>0 |Operating system description has changed | |0 |1 |Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close. |16067 |0 |0 |0 | |0 | |1 | |0 | |
ROW |16078 |{18380}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({18381}-{18382})<5G or {18383}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16077 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16080 |{18388}>{$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"} and&eol;(({18389}-{18390})<10G or {18391}<1d) |{#FSNAME}: Disk space is low (used > {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}%) | |0 |2 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.WARN:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 10G.&eol; - The disk will be full in less than 24 hours. |16079 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
ROW |16082 |{18393}<{$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"} |{#FSNAME}: Running out of free inodes (free < {$VFS.FS.INODE.PFREE.MIN.CRIT:"{#FSNAME}"}%) | |0 |3 |It may become impossible to write to disk if there are no index nodes left.&eol;As symptoms, 'No space left on device' or 'Disk is full' errors may be seen even though free space is available. |16081 |0 |2 |0 | |0 | |0 |Free inodes: {ITEM.LASTVALUE1} |0 | |
@@ -8929,7 +9992,7 @@ ROW |16453 |{19106}=0
ROW |16454 |{19107}>{$ICMP_LOSS_WARN} and {19107}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |16455 |{19108}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
ROW |16565 |{19277}/{19278}>{$LOAD_AVG_PER_CPU.MAX.WARN}&eol;and {19279}>0&eol;and {19280}>0 |Load average is too high (per CPU load over {$LOAD_AVG_PER_CPU.MAX.WARN} for 5m) | |0 |3 |Per CPU load average is too high. Your system may be slow to respond. |16564 |0 |0 |0 | |0 | |0 |Load averages(1m 5m 15m): ({ITEM.LASTVALUE1} {ITEM.LASTVALUE3} {ITEM.LASTVALUE4}), # of CPUs: {ITEM.LASTVALUE2}|0 | |
-ROW |16581 |({19320}<>{22450})=1 and length({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 |16581 |{19320}=1 and {19321}>0 |System name has changed (new name: {ITEM.VALUE}) | |0 |1 |System name has changed. Ack to close. |16580 |0 |0 |0 | |0 | |1 | |0 | |
ROW |16627 |{19409}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16628 |{19410}>{$CPU.UTIL.CRIT} |High CPU utilization (over {$CPU.UTIL.CRIT}% for 5m) | |0 |2 |CPU utilization is too high. The system might be slow to respond. |16625 |0 |0 |0 | |0 | |0 |Current utilization: {ITEM.LASTVALUE1} |0 | |
ROW |16638 |{19432}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19433}-{19434})<5G or {19435}<1d) |{#FSNAME}: Disk space is critically low (used > {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}%) | |0 |3 |Two conditions should match: First, space utilization should be above {$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"}.&eol; Second condition should be one of the following:&eol; - The disk free space is less than 5G.&eol; - The disk will be full in less than 24 hours. |16636 |0 |2 |0 | |0 | |1 |Space used: {ITEM.LASTVALUE3} of {ITEM.LASTVALUE2} ({ITEM.LASTVALUE1}) |0 | |
@@ -8937,7 +10000,7 @@ ROW |16639 |{19436}>{$VFS.FS.PUSED.MAX.CRIT:"{#FSNAME}"} and&eol;(({19437}-
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 |17027 |{19964} > {$VFS.DEV.READ.AWAIT.WARN:"{#DEVNAME}"} or {19965} > {$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. |17025 |0 |2 |0 | |0 | |1 | |0 | |
-ROW |17028 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19966}=2 and ({19967}<>{22546})=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.|17026 |0 |2 |1 |{19966}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
+ROW |17028 |{$IFCONTROL:"{#IFNAME}"}=1 and ({19966}=2 and {19967}=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.|17026 |0 |2 |1 |{19966}<>2 or {$IFCONTROL:"{#IFNAME}"}=0 |0 | |1 |Current state: {ITEM.LASTVALUE1} |0 | |
ROW |17923 |{21184}=0 |Unavailable by ICMP ping | |0 |4 |Last three attempts returned timeout. Please check device connectivity. |14293 |0 |0 |0 | |0 | |0 | |0 | |
ROW |17924 |{21185}>{$ICMP_LOSS_WARN} and {21185}<100 |High ICMP ping loss | |0 |2 | |14294 |0 |0 |0 | |0 | |0 |Loss: {ITEM.LASTVALUE1} |0 | |
ROW |17925 |{21186}>{$ICMP_RESPONSE_TIME_WARN} |High ICMP ping response time | |0 |2 | |14295 |0 |0 |0 | |0 | |0 |Value: {ITEM.LASTVALUE1} |0 | |
@@ -8953,4586 +10016,4729 @@ ROW |18457 |{22239}>{$IF.ERRORS.WARN:"{#IFNAME}"}&eol;or {22240}>{$IF.ERROR
TABLE |trigger_depends
FIELDS|triggerdepid|triggerid_down|triggerid_up|
-ROW |23736 |17412 |17411 |
-ROW |23737 |17414 |17413 |
-ROW |23738 |17416 |17415 |
-ROW |23739 |15944 |15947 |
-ROW |23740 |15944 |15943 |
-ROW |23741 |15943 |15947 |
-ROW |23742 |16888 |15947 |
-ROW |23743 |16888 |15943 |
-ROW |23744 |15948 |15949 |
-ROW |23745 |15950 |15949 |
-ROW |23746 |17429 |17428 |
-ROW |23747 |17431 |17430 |
-ROW |23748 |17433 |17432 |
-ROW |23749 |17355 |17354 |
-ROW |23750 |17358 |17357 |
-ROW |23751 |16743 |16744 |
-ROW |23752 |16784 |16785 |
-ROW |23753 |16790 |16791 |
-ROW |23754 |16892 |16900 |
-ROW |23755 |16894 |16900 |
-ROW |23756 |17459 |17458 |
-ROW |23757 |17463 |17458 |
-ROW |23758 |17471 |17480 |
-ROW |23759 |17476 |17481 |
-ROW |23760 |17478 |17480 |
-ROW |23761 |17479 |17481 |
-ROW |23762 |17483 |17482 |
-ROW |23763 |17486 |17485 |
-ROW |23764 |16646 |16647 |
-ROW |23765 |16809 |16810 |
-ROW |23766 |16902 |16904 |
-ROW |23767 |16904 |16905 |
-ROW |23768 |16909 |16906 |
-ROW |23769 |16910 |16912 |
-ROW |23770 |16912 |16913 |
-ROW |23771 |16917 |16914 |
-ROW |23772 |17962 |17963 |
-ROW |23773 |17962 |17958 |
-ROW |23774 |16752 |16753 |
-ROW |23775 |15955 |15957 |
-ROW |23776 |15955 |15954 |
-ROW |23777 |15954 |15957 |
-ROW |23778 |15956 |15957 |
-ROW |23779 |15956 |15954 |
-ROW |23780 |16678 |15957 |
-ROW |23781 |16678 |15954 |
-ROW |23782 |15961 |15960 |
-ROW |23783 |15962 |15960 |
-ROW |23784 |16679 |15960 |
-ROW |23785 |17090 |17096 |
-ROW |23786 |17093 |17096 |
-ROW |23787 |17101 |17098 |
-ROW |23788 |16257 |16255 |
-ROW |23789 |16257 |16256 |
-ROW |23790 |16256 |16255 |
-ROW |23791 |16251 |16255 |
-ROW |23792 |16251 |16256 |
-ROW |23793 |16443 |16255 |
-ROW |23794 |16443 |16256 |
-ROW |23795 |16270 |16269 |
-ROW |23796 |16448 |16269 |
-ROW |23797 |16265 |16269 |
-ROW |23798 |17503 |17505 |
-ROW |23799 |17512 |17511 |
-ROW |23800 |17513 |17505 |
-ROW |23806 |17516 |17518 |
-ROW |23807 |17517 |17516 |
-ROW |23808 |17517 |17518 |
-ROW |23809 |17517 |17519 |
-ROW |23810 |17519 |17518 |
-ROW |23811 |17973 |17965 |
-ROW |23812 |17974 |17966 |
-ROW |23813 |17141 |17151 |
-ROW |23814 |17142 |17141 |
-ROW |23815 |17142 |17151 |
-ROW |23816 |17143 |17151 |
-ROW |23817 |17144 |17143 |
-ROW |23818 |17144 |17151 |
-ROW |23819 |17146 |17145 |
-ROW |23820 |17147 |17151 |
-ROW |23821 |17148 |17147 |
-ROW |23822 |17148 |17151 |
-ROW |23823 |17150 |17149 |
-ROW |23824 |17152 |17168 |
-ROW |23825 |17153 |17152 |
-ROW |23826 |17153 |17168 |
-ROW |23827 |17154 |17168 |
-ROW |23828 |17155 |17154 |
-ROW |23829 |17155 |17168 |
-ROW |23830 |17156 |17168 |
-ROW |23831 |17157 |17156 |
-ROW |23832 |17157 |17168 |
-ROW |23833 |17158 |17168 |
-ROW |23834 |17159 |17158 |
-ROW |23835 |17159 |17168 |
-ROW |23836 |17160 |17168 |
-ROW |23837 |17161 |17160 |
-ROW |23838 |17161 |17168 |
-ROW |23839 |17163 |17162 |
-ROW |23840 |17164 |17168 |
-ROW |23841 |17165 |17164 |
-ROW |23842 |17165 |17168 |
-ROW |23843 |17166 |17168 |
-ROW |23844 |17167 |17166 |
-ROW |23845 |17167 |17168 |
-ROW |23846 |17169 |17168 |
-ROW |23847 |17170 |17168 |
-ROW |23848 |17170 |17169 |
-ROW |23849 |17171 |17168 |
-ROW |23850 |17172 |17168 |
-ROW |23851 |17172 |17171 |
-ROW |23852 |17540 |17541 |
-ROW |23853 |16920 |16921 |
-ROW |23854 |16833 |16920 |
-ROW |23855 |17978 |17977 |
-ROW |23856 |17980 |17979 |
-ROW |23857 |17984 |17983 |
-ROW |23858 |17985 |17983 |
-ROW |23859 |18000 |18001 |
-ROW |23860 |18225 |18224 |
-ROW |23861 |18237 |18236 |
-ROW |23862 |16929 |16928 |
-ROW |23863 |16940 |17084 |
-ROW |23864 |16719 |16721 |
-ROW |23865 |16975 |16723 |
-ROW |23866 |16729 |16728 |
-ROW |23867 |16730 |16728 |
-ROW |23868 |16756 |16758 |
-ROW |23869 |16979 |16759 |
-ROW |23870 |16765 |16764 |
-ROW |23871 |16766 |16764 |
-ROW |23872 |16734 |16736 |
-ROW |23873 |16983 |16732 |
-ROW |23874 |16741 |16740 |
-ROW |23875 |16742 |16740 |
-ROW |23876 |17192 |17191 |
-ROW |23877 |17194 |17195 |
-ROW |23878 |17199 |17198 |
-ROW |23879 |17546 |17545 |
-ROW |23880 |17547 |17548 |
-ROW |23881 |16997 |16984 |
-ROW |23882 |17002 |17003 |
-ROW |23883 |17006 |17005 |
-ROW |23884 |17011 |17010 |
-ROW |23885 |17550 |17549 |
-ROW |23886 |17551 |17552 |
-ROW |23887 |17391 |17396 |
-ROW |23888 |17395 |17396 |
-ROW |23889 |16683 |16687 |
-ROW |23890 |14252 |14251 |
-ROW |23891 |14294 |14293 |
-ROW |23892 |14312 |14311 |
-ROW |23893 |14328 |14327 |
-ROW |23894 |14348 |14347 |
-ROW |23895 |14357 |14356 |
-ROW |23896 |14390 |14389 |
-ROW |23897 |14404 |14403 |
-ROW |23898 |14452 |14451 |
-ROW |23899 |14469 |14468 |
-ROW |23900 |14487 |14486 |
-ROW |23901 |14506 |14505 |
-ROW |23902 |14535 |14534 |
-ROW |23903 |14545 |14544 |
-ROW |23904 |14583 |14582 |
-ROW |23905 |14599 |14598 |
-ROW |23906 |14616 |14615 |
-ROW |23907 |14653 |14652 |
-ROW |23908 |14674 |14673 |
-ROW |23909 |14692 |14691 |
-ROW |23910 |14705 |14704 |
-ROW |23911 |14718 |14717 |
-ROW |23912 |14907 |14906 |
-ROW |23914 |15221 |15220 |
-ROW |23915 |15702 |15701 |
-ROW |23916 |15724 |15723 |
-ROW |23917 |15756 |15755 |
-ROW |23918 |15820 |15819 |
-ROW |23919 |15841 |15840 |
-ROW |23920 |15991 |15990 |
-ROW |23921 |16018 |16017 |
-ROW |23922 |16454 |16453 |
-ROW |23923 |17924 |17923 |
-ROW |23924 |18178 |18177 |
-ROW |23925 |14253 |14252 |
-ROW |23926 |14295 |14294 |
-ROW |23927 |14313 |14312 |
-ROW |23928 |14329 |14328 |
-ROW |23929 |14349 |14348 |
-ROW |23930 |14358 |14357 |
-ROW |23931 |14391 |14390 |
-ROW |23932 |14405 |14404 |
-ROW |23933 |14453 |14452 |
-ROW |23934 |14470 |14469 |
-ROW |23935 |14488 |14487 |
-ROW |23936 |14507 |14506 |
-ROW |23937 |14536 |14535 |
-ROW |23938 |14546 |14545 |
-ROW |23939 |14584 |14583 |
-ROW |23940 |14600 |14599 |
-ROW |23941 |14617 |14616 |
-ROW |23942 |14654 |14653 |
-ROW |23943 |14675 |14674 |
-ROW |23944 |14693 |14692 |
-ROW |23945 |14706 |14705 |
-ROW |23946 |14719 |14718 |
-ROW |23947 |14908 |14907 |
-ROW |23949 |15222 |15221 |
-ROW |23950 |15703 |15702 |
-ROW |23951 |15725 |15724 |
-ROW |23952 |15757 |15756 |
-ROW |23953 |15821 |15820 |
-ROW |23954 |15842 |15841 |
-ROW |23955 |15992 |15991 |
-ROW |23956 |16019 |16018 |
-ROW |23957 |16455 |16454 |
-ROW |23958 |17925 |17924 |
-ROW |23959 |18179 |18178 |
-ROW |23960 |14253 |14251 |
-ROW |23961 |14295 |14293 |
-ROW |23962 |14313 |14311 |
-ROW |23963 |14329 |14327 |
-ROW |23964 |14349 |14347 |
-ROW |23965 |14358 |14356 |
-ROW |23966 |14391 |14389 |
-ROW |23967 |14405 |14403 |
-ROW |23968 |14453 |14451 |
-ROW |23969 |14470 |14468 |
-ROW |23970 |14488 |14486 |
-ROW |23971 |14507 |14505 |
-ROW |23972 |14536 |14534 |
-ROW |23973 |14546 |14544 |
-ROW |23974 |14584 |14582 |
-ROW |23975 |14600 |14598 |
-ROW |23976 |14617 |14615 |
-ROW |23977 |14654 |14652 |
-ROW |23978 |14675 |14673 |
-ROW |23979 |14693 |14691 |
-ROW |23980 |14706 |14704 |
-ROW |23981 |14719 |14717 |
-ROW |23982 |14908 |14906 |
-ROW |23984 |15222 |15220 |
-ROW |23985 |15703 |15701 |
-ROW |23986 |15725 |15723 |
-ROW |23987 |15757 |15755 |
-ROW |23988 |15821 |15819 |
-ROW |23989 |15842 |15840 |
-ROW |23990 |15992 |15990 |
-ROW |23991 |16019 |16017 |
-ROW |23992 |16455 |16453 |
-ROW |23993 |17925 |17923 |
-ROW |23994 |18179 |18177 |
-ROW |23995 |16287 |16289 |
-ROW |23996 |16279 |16285 |
-ROW |23997 |16290 |16348 |
-ROW |23998 |16291 |16349 |
-ROW |23999 |16292 |16350 |
-ROW |24000 |16293 |16351 |
-ROW |24001 |16294 |16352 |
-ROW |24002 |16295 |16353 |
-ROW |24003 |16296 |16354 |
-ROW |24004 |16297 |16355 |
-ROW |24005 |16298 |16356 |
-ROW |24006 |16299 |16357 |
-ROW |24007 |16300 |16358 |
-ROW |24008 |16301 |16359 |
-ROW |24009 |16302 |16360 |
-ROW |24010 |16303 |16361 |
-ROW |24011 |16304 |16362 |
-ROW |24012 |16305 |16363 |
-ROW |24013 |16306 |16364 |
-ROW |24014 |16307 |16365 |
-ROW |24015 |16308 |16366 |
-ROW |24016 |16309 |16367 |
-ROW |24018 |16311 |16369 |
-ROW |24019 |16312 |16370 |
-ROW |24020 |16313 |16371 |
-ROW |24021 |16314 |16372 |
-ROW |24022 |16315 |16373 |
-ROW |24023 |16316 |16374 |
-ROW |24024 |16317 |16375 |
-ROW |24025 |16318 |16376 |
-ROW |24026 |16457 |16458 |
-ROW |24027 |17927 |17928 |
-ROW |24028 |18181 |18182 |
-ROW |24029 |16289 |14293 |
-ROW |24030 |16285 |14717 |
-ROW |24031 |16348 |14311 |
-ROW |24032 |16349 |14327 |
-ROW |24033 |16350 |14347 |
-ROW |24034 |16351 |14356 |
-ROW |24035 |16352 |14389 |
-ROW |24036 |16353 |14403 |
-ROW |24037 |16354 |14451 |
-ROW |24038 |16355 |14468 |
-ROW |24039 |16356 |14486 |
-ROW |24040 |16357 |14505 |
-ROW |24041 |16358 |14534 |
-ROW |24042 |16359 |14544 |
-ROW |24043 |16360 |14582 |
-ROW |24044 |16361 |14598 |
-ROW |24045 |16362 |14615 |
-ROW |24046 |16363 |14652 |
-ROW |24047 |16364 |14673 |
-ROW |24048 |16365 |14691 |
-ROW |24049 |16366 |14704 |
-ROW |24050 |16367 |14906 |
-ROW |24052 |16369 |15220 |
-ROW |24053 |16370 |15701 |
-ROW |24054 |16371 |15723 |
-ROW |24055 |16372 |15755 |
-ROW |24056 |16373 |15819 |
-ROW |24057 |16374 |15840 |
-ROW |24058 |16375 |15990 |
-ROW |24059 |16376 |16017 |
-ROW |24060 |16458 |16453 |
-ROW |24061 |17928 |17923 |
-ROW |24062 |18182 |18177 |
-ROW |24063 |16631 |16630 |
-ROW |24064 |16640 |16636 |
-ROW |24066 |16642 |16638 |
-ROW |24067 |16643 |16639 |
-ROW |24068 |15695 |16863 |
-ROW |24069 |18242 |16863 |
-ROW |24070 |18243 |16863 |
-ROW |24071 |15694 |16868 |
-ROW |24072 |15696 |16864 |
-ROW |24073 |15697 |16865 |
-ROW |24074 |18244 |16864 |
-ROW |24075 |18245 |16865 |
-ROW |24076 |18246 |16868 |
-ROW |24077 |18247 |16864 |
-ROW |24078 |18248 |16865 |
-ROW |24079 |18249 |16868 |
-ROW |24080 |15671 |16841 |
-ROW |24081 |18250 |16841 |
-ROW |24082 |18251 |16841 |
-ROW |24083 |15672 |16842 |
-ROW |24084 |15673 |16843 |
-ROW |24085 |15674 |16844 |
-ROW |24086 |15675 |16845 |
-ROW |24087 |15676 |16846 |
-ROW |24088 |15677 |16847 |
-ROW |24089 |15678 |16848 |
-ROW |24090 |15679 |16849 |
-ROW |24091 |15680 |16850 |
-ROW |24092 |15681 |16851 |
-ROW |24093 |15682 |16852 |
-ROW |24094 |15683 |16853 |
-ROW |24095 |15684 |16854 |
-ROW |24096 |15685 |16855 |
-ROW |24097 |15686 |16856 |
-ROW |24098 |15687 |16857 |
-ROW |24099 |15689 |16858 |
-ROW |24101 |15691 |16860 |
-ROW |24102 |15708 |16861 |
-ROW |24103 |15997 |16862 |
-ROW |24104 |18252 |16842 |
-ROW |24105 |18253 |16843 |
-ROW |24106 |18254 |16844 |
-ROW |24107 |18255 |16845 |
-ROW |24108 |18256 |16846 |
-ROW |24109 |18257 |16847 |
-ROW |24110 |18258 |16848 |
-ROW |24111 |18259 |16849 |
-ROW |24112 |18260 |16850 |
-ROW |24113 |18261 |16851 |
-ROW |24114 |18262 |16852 |
-ROW |24115 |18263 |16853 |
-ROW |24116 |18264 |16854 |
-ROW |24117 |18265 |16855 |
-ROW |24118 |18266 |16856 |
-ROW |24119 |18267 |16857 |
-ROW |24120 |18268 |16858 |
-ROW |24122 |18270 |16860 |
-ROW |24123 |18271 |16861 |
-ROW |24124 |18272 |16862 |
-ROW |24125 |18273 |16842 |
-ROW |24126 |18274 |16843 |
-ROW |24127 |18275 |16844 |
-ROW |24128 |18276 |16845 |
-ROW |24129 |18277 |16846 |
-ROW |24130 |18278 |16847 |
-ROW |24131 |18279 |16848 |
-ROW |24132 |18280 |16849 |
-ROW |24133 |18281 |16850 |
-ROW |24134 |18282 |16851 |
-ROW |24135 |18283 |16852 |
-ROW |24136 |18284 |16853 |
-ROW |24137 |18285 |16854 |
-ROW |24138 |18286 |16855 |
-ROW |24139 |18287 |16856 |
-ROW |24140 |18288 |16857 |
-ROW |24141 |18289 |16858 |
-ROW |24143 |18291 |16860 |
-ROW |24144 |18292 |16861 |
-ROW |24145 |18293 |16862 |
-ROW |24146 |15698 |16866 |
-ROW |24147 |18294 |16866 |
-ROW |24148 |18295 |16866 |
-ROW |24149 |16028 |16867 |
-ROW |24150 |18296 |16867 |
-ROW |24151 |18297 |16867 |
-ROW |24152 |18100 |18099 |
-ROW |24153 |18106 |18105 |
-ROW |24154 |14318 |14319 |
-ROW |24155 |17554 |15717 |
-ROW |24156 |17555 |15717 |
-ROW |24157 |17555 |17554 |
-ROW |24158 |17556 |15717 |
-ROW |24159 |17557 |15717 |
-ROW |24160 |17557 |17556 |
-ROW |24161 |17559 |17558 |
-ROW |24162 |17561 |17560 |
-ROW |24163 |17563 |17562 |
-ROW |24164 |17565 |17564 |
-ROW |24165 |15721 |15720 |
-ROW |24166 |15394 |15393 |
-ROW |24167 |15392 |15391 |
-ROW |24168 |17322 |14339 |
-ROW |24169 |15382 |15381 |
-ROW |24170 |15380 |15379 |
-ROW |24171 |16504 |16505 |
-ROW |24172 |14372 |14373 |
-ROW |24173 |15386 |15385 |
-ROW |24174 |15384 |15383 |
-ROW |24175 |14380 |14381 |
-ROW |24176 |18299 |18298 |
-ROW |24177 |18300 |18299 |
-ROW |24178 |18300 |18298 |
-ROW |24179 |18303 |18302 |
-ROW |24180 |18309 |18308 |
-ROW |24181 |18311 |18316 |
-ROW |24182 |18312 |18316 |
-ROW |24183 |18313 |18316 |
-ROW |24184 |18314 |18316 |
-ROW |24185 |18315 |18316 |
-ROW |24186 |18319 |18318 |
-ROW |24187 |18321 |18320 |
-ROW |24188 |18323 |18322 |
-ROW |24189 |18326 |18325 |
-ROW |24190 |18327 |18326 |
-ROW |24191 |18327 |18325 |
-ROW |24192 |18330 |18329 |
-ROW |24193 |18336 |18335 |
-ROW |24194 |18338 |18343 |
-ROW |24195 |18339 |18343 |
-ROW |24196 |18340 |18343 |
-ROW |24197 |18341 |18343 |
-ROW |24198 |18342 |18343 |
-ROW |24199 |18346 |18345 |
-ROW |24200 |18348 |18347 |
-ROW |24201 |18350 |18349 |
-ROW |24202 |18353 |18352 |
-ROW |24203 |18354 |18353 |
-ROW |24204 |18354 |18352 |
-ROW |24205 |18357 |18356 |
-ROW |24206 |18363 |18362 |
-ROW |24207 |18365 |18370 |
-ROW |24208 |18366 |18370 |
-ROW |24209 |18367 |18370 |
-ROW |24210 |18368 |18370 |
-ROW |24211 |18369 |18370 |
-ROW |24212 |18373 |18372 |
-ROW |24213 |18375 |18374 |
-ROW |24214 |18377 |18376 |
-ROW |24215 |18380 |18379 |
-ROW |24216 |18381 |18380 |
-ROW |24217 |18381 |18379 |
-ROW |24218 |18384 |18383 |
-ROW |24219 |18390 |18389 |
-ROW |24220 |18392 |18397 |
-ROW |24221 |18393 |18397 |
-ROW |24222 |18394 |18397 |
-ROW |24223 |18395 |18397 |
-ROW |24224 |18396 |18397 |
-ROW |24225 |18400 |18399 |
-ROW |24226 |18402 |18401 |
-ROW |24227 |18404 |18403 |
-ROW |24228 |18407 |18406 |
-ROW |24229 |18408 |18407 |
-ROW |24230 |18408 |18406 |
-ROW |24231 |18411 |18410 |
-ROW |24232 |18417 |18416 |
-ROW |24233 |18419 |18424 |
-ROW |24234 |18420 |18424 |
-ROW |24235 |18421 |18424 |
-ROW |24236 |18422 |18424 |
-ROW |24237 |18423 |18424 |
-ROW |24238 |18427 |18426 |
-ROW |24239 |18429 |18428 |
-ROW |24240 |18431 |18430 |
-ROW |24241 |15347 |15346 |
-ROW |24242 |15345 |15344 |
-ROW |24243 |17567 |17566 |
-ROW |24244 |15363 |15360 |
-ROW |24245 |15364 |15361 |
-ROW |24246 |15365 |15362 |
-ROW |24247 |15357 |15354 |
-ROW |24248 |15358 |15355 |
-ROW |24249 |15359 |15356 |
-ROW |24250 |17571 |17568 |
-ROW |24251 |17572 |17569 |
-ROW |24252 |17573 |17570 |
-ROW |24253 |15334 |15333 |
-ROW |24254 |15332 |15331 |
-ROW |24255 |14460 |14461 |
-ROW |24256 |14476 |14477 |
-ROW |24257 |14495 |14496 |
-ROW |24258 |14511 |17574 |
-ROW |24259 |14551 |14552 |
-ROW |24260 |15374 |15373 |
-ROW |24261 |15376 |15375 |
-ROW |24262 |14914 |14915 |
-ROW |24263 |14589 |14590 |
-ROW |24264 |15338 |15337 |
-ROW |24265 |17333 |17332 |
-ROW |24266 |14624 |14625 |
-ROW |24267 |18434 |18433 |
-ROW |24268 |18435 |18434 |
-ROW |24269 |18435 |18433 |
-ROW |24270 |18438 |18439 |
-ROW |24271 |18439 |18433 |
-ROW |24272 |18441 |18444 |
-ROW |24273 |18442 |18444 |
-ROW |24274 |18443 |18444 |
-ROW |24275 |18446 |18447 |
-ROW |24276 |18450 |18449 |
-ROW |24277 |14664 |14665 |
-ROW |24278 |17085 |17086 |
-ROW |24279 |16547 |16546 |
-ROW |24280 |17576 |17575 |
-ROW |24281 |17578 |17577 |
-ROW |24282 |17628 |17626 |
-ROW |24283 |17629 |17627 |
-ROW |24284 |17632 |17630 |
-ROW |24285 |17633 |17631 |
-ROW |24286 |17635 |17634 |
-ROW |24287 |17637 |17636 |
-ROW |24288 |17686 |17684 |
-ROW |24289 |17687 |17685 |
-ROW |24290 |17690 |17688 |
-ROW |24291 |17691 |17689 |
-ROW |24292 |17693 |17692 |
-ROW |24293 |17695 |17694 |
-ROW |24294 |17730 |17728 |
-ROW |24295 |17731 |17729 |
-ROW |24296 |17734 |17732 |
-ROW |24297 |17735 |17733 |
-ROW |24298 |17737 |17736 |
-ROW |24299 |17754 |17752 |
-ROW |24300 |17755 |17753 |
-ROW |24301 |17757 |17756 |
-ROW |24302 |17819 |17817 |
-ROW |24303 |17820 |17818 |
-ROW |24304 |17823 |17821 |
-ROW |24305 |17824 |17822 |
-ROW |24306 |17826 |17825 |
-ROW |24307 |17860 |17858 |
-ROW |24308 |17861 |17859 |
-ROW |24309 |17864 |17862 |
-ROW |24310 |17865 |17863 |
-ROW |24311 |17899 |17897 |
-ROW |24312 |17900 |17898 |
-ROW |24313 |17903 |17901 |
-ROW |24314 |17904 |17902 |
-ROW |24315 |17906 |17905 |
-ROW |24316 |17908 |17907 |
-ROW |24317 |17910 |17909 |
-ROW |24318 |16551 |16552 |
-ROW |24319 |18130 |18132 |
-ROW |24320 |18133 |18135 |
-ROW |24321 |18136 |18138 |
-ROW |24322 |18130 |18452 |
-ROW |24323 |18133 |18453 |
-ROW |24324 |18136 |18454 |
-ROW |24325 |16031 |16563 |
-ROW |24326 |16045 |16564 |
-ROW |24327 |16046 |16565 |
-ROW |24328 |16039 |16040 |
-ROW |24329 |16061 |16063 |
-ROW |24330 |16062 |16064 |
-ROW |24331 |16042 |16579 |
-ROW |24332 |16067 |16580 |
-ROW |24333 |16068 |16581 |
-ROW |24334 |16041 |16042 |
-ROW |24335 |16065 |16067 |
-ROW |24336 |16066 |16068 |
-ROW |24337 |16041 |16579 |
-ROW |24338 |16065 |16580 |
-ROW |24339 |16066 |16581 |
-ROW |24340 |18132 |18452 |
-ROW |24341 |18135 |18453 |
-ROW |24342 |18138 |18454 |
-ROW |24343 |16070 |16069 |
-ROW |24344 |16072 |16071 |
-ROW |24345 |16076 |17024 |
-ROW |24346 |18455 |17024 |
-ROW |24347 |16079 |16077 |
-ROW |24348 |16080 |16078 |
-ROW |24349 |16083 |16081 |
-ROW |24350 |16084 |16082 |
-ROW |24351 |16091 |17026 |
-ROW |24352 |16092 |17028 |
-ROW |24353 |18456 |17026 |
-ROW |24354 |18457 |17028 |
-ROW |24355 |18142 |18144 |
-ROW |24356 |18145 |18147 |
-ROW |24357 |18142 |18458 |
-ROW |24358 |18145 |18459 |
-ROW |24359 |17244 |17243 |
-ROW |24360 |17257 |17256 |
-ROW |24361 |17246 |17240 |
-ROW |24362 |17259 |17253 |
-ROW |24363 |17249 |17247 |
-ROW |24364 |17262 |17260 |
-ROW |24365 |17251 |17249 |
-ROW |24366 |17264 |17262 |
-ROW |24367 |17251 |17247 |
-ROW |24368 |17264 |17260 |
-ROW |24369 |18144 |18458 |
-ROW |24370 |18147 |18459 |
-ROW |24371 |17268 |17267 |
-ROW |24372 |17270 |17269 |
-ROW |24373 |17271 |17273 |
-ROW |24374 |18460 |17273 |
-ROW |24375 |17276 |17275 |
-ROW |24376 |17278 |17277 |
-ROW |24377 |17279 |17281 |
-ROW |24378 |18461 |17281 |
-ROW |24379 |18150 |18152 |
-ROW |24380 |18150 |18462 |
-ROW |24381 |16141 |16142 |
-ROW |24382 |16146 |16573 |
-ROW |24383 |16143 |16584 |
-ROW |24384 |18152 |18462 |
-ROW |24385 |16152 |16883 |
-ROW |24386 |16153 |16883 |
-ROW |24387 |18463 |16883 |
-ROW |24388 |18464 |16883 |
-ROW |24389 |16156 |16155 |
-ROW |24390 |16158 |16157 |
-ROW |24391 |18155 |18157 |
-ROW |24392 |18158 |18160 |
-ROW |24393 |18155 |18156 |
-ROW |24394 |18158 |18159 |
-ROW |24395 |18157 |18156 |
-ROW |24396 |18160 |18159 |
-ROW |24397 |16009 |16008 |
-ROW |24398 |16011 |16010 |
-ROW |24399 |16014 |16013 |
-ROW |24400 |16016 |16015 |
-ROW |24401 |17035 |16160 |
-ROW |24402 |17037 |16171 |
-ROW |24403 |18161 |18162 |
-ROW |24404 |18163 |18164 |
-ROW |24405 |16161 |16160 |
-ROW |24406 |16172 |16171 |
-ROW |24407 |16162 |16161 |
-ROW |24408 |16173 |16172 |
-ROW |24409 |16162 |16160 |
-ROW |24410 |16173 |16171 |
-ROW |24411 |16166 |18162 |
-ROW |24412 |16177 |18164 |
-ROW |24413 |16167 |18162 |
-ROW |24414 |16178 |18164 |
-ROW |24415 |16183 |16182 |
-ROW |24416 |17911 |17042 |
-ROW |24417 |18465 |17042 |
-ROW |24418 |18466 |17042 |
-ROW |24419 |17043 |17912 |
-ROW |24420 |17043 |17913 |
-ROW |24421 |16190 |16189 |
-ROW |24422 |17914 |17047 |
-ROW |24423 |18467 |17047 |
-ROW |24424 |18468 |17047 |
-ROW |24425 |17048 |17915 |
-ROW |24426 |17048 |17916 |
-ROW |24427 |17283 |17287 |
-ROW |24428 |17294 |17298 |
-ROW |24429 |18169 |18170 |
-ROW |24430 |18171 |18172 |
-ROW |24431 |17285 |17287 |
-ROW |24432 |17296 |17298 |
-ROW |24433 |17286 |17285 |
-ROW |24434 |17297 |17296 |
-ROW |24435 |17286 |17287 |
-ROW |24436 |17297 |17298 |
-ROW |24437 |17291 |18170 |
-ROW |24438 |17302 |18172 |
-ROW |24439 |17292 |18170 |
-ROW |24440 |17303 |18172 |
-ROW |24441 |17306 |17305 |
-ROW |24442 |17917 |17310 |
-ROW |24443 |18469 |17310 |
-ROW |24444 |18470 |17310 |
-ROW |24445 |17311 |17918 |
-ROW |24446 |17311 |17919 |
-ROW |24447 |17314 |17313 |
-ROW |24448 |17920 |17318 |
-ROW |24449 |18471 |17318 |
-ROW |24450 |18472 |17318 |
-ROW |24451 |17319 |17921 |
-ROW |24452 |17319 |17922 |
-ROW |24453 |18478 |18477 |
-ROW |24454 |18479 |18478 |
-ROW |24455 |18479 |18477 |
-ROW |24456 |18495 |18496 |
-ROW |24457 |18496 |18477 |
-ROW |24458 |16772 |16773 |
-ROW |24459 |16771 |16772 |
-ROW |24460 |16771 |16773 |
-ROW |24461 |16769 |16770 |
-ROW |24462 |16768 |16769 |
-ROW |24463 |16768 |16770 |
-ROW |24464 |16488 |16487 |
-ROW |24465 |16485 |16484 |
-ROW |24466 |16486 |16484 |
-ROW |24467 |16486 |16485 |
-ROW |24468 |16480 |16479 |
-ROW |24469 |16482 |16481 |
-ROW |24470 |16475 |16474 |
-ROW |24471 |16471 |16472 |
-ROW |24472 |16468 |16469 |
-ROW |24473 |16459 |16460 |
-ROW |24474 |16462 |16463 |
-ROW |24475 |16465 |16466 |
-ROW |24476 |16477 |16476 |
-ROW |24477 |15729 |15728 |
-ROW |24478 |15730 |15728 |
-ROW |24479 |15730 |15729 |
-ROW |24480 |15752 |15754 |
-ROW |24481 |15753 |15754 |
-ROW |24482 |15753 |15752 |
-ROW |24483 |15742 |15741 |
-ROW |24484 |15750 |15749 |
-ROW |24485 |15751 |15750 |
-ROW |24486 |15751 |15749 |
-ROW |24487 |15746 |15743 |
-ROW |24488 |15744 |15743 |
-ROW |24489 |15740 |15739 |
-ROW |24490 |17946 |17945 |
-ROW |24491 |17948 |17947 |
-ROW |24492 |15748 |15747 |
-ROW |24493 |16440 |16439 |
-ROW |24494 |18003 |15790 |
-ROW |24495 |18004 |15787 |
-ROW |24496 |18005 |15787 |
-ROW |24497 |18005 |18004 |
-ROW |24498 |15786 |15785 |
-ROW |24499 |15784 |15783 |
-ROW |24500 |15794 |15792 |
-ROW |24501 |15793 |15792 |
-ROW |24502 |15782 |15781 |
-ROW |24503 |15797 |15796 |
-ROW |24504 |15825 |15824 |
-ROW |24505 |15826 |15824 |
-ROW |24506 |15826 |15825 |
-ROW |24507 |15828 |15829 |
-ROW |24508 |15831 |15832 |
-ROW |24509 |15834 |15835 |
-ROW |24510 |15845 |15846 |
-ROW |24511 |17223 |17227 |
-ROW |24512 |17226 |17227 |
+ROW |24513 |17412 |17411 |
+ROW |24514 |17414 |17413 |
+ROW |24515 |17416 |17415 |
+ROW |24516 |15944 |15947 |
+ROW |24517 |15944 |15943 |
+ROW |24518 |15943 |15947 |
+ROW |24519 |16888 |15947 |
+ROW |24520 |16888 |15943 |
+ROW |24521 |15948 |15949 |
+ROW |24522 |15950 |15949 |
+ROW |24523 |17429 |17428 |
+ROW |24524 |17431 |17430 |
+ROW |24525 |17433 |17432 |
+ROW |24526 |17355 |17354 |
+ROW |24527 |17358 |17357 |
+ROW |24528 |16743 |16744 |
+ROW |24529 |16784 |16785 |
+ROW |24530 |16790 |16791 |
+ROW |24531 |16892 |16900 |
+ROW |24532 |16894 |16900 |
+ROW |24533 |17459 |17458 |
+ROW |24534 |17463 |17458 |
+ROW |24535 |17471 |17480 |
+ROW |24536 |17476 |17481 |
+ROW |24537 |17478 |17480 |
+ROW |24538 |17479 |17481 |
+ROW |24539 |17483 |17482 |
+ROW |24540 |17486 |17485 |
+ROW |24541 |16646 |16647 |
+ROW |24542 |16809 |16810 |
+ROW |24543 |16902 |16904 |
+ROW |24544 |16904 |16905 |
+ROW |24545 |16909 |16906 |
+ROW |24546 |16910 |16912 |
+ROW |24547 |16912 |16913 |
+ROW |24548 |16917 |16914 |
+ROW |24549 |17962 |17963 |
+ROW |24550 |17962 |17958 |
+ROW |24551 |16752 |16753 |
+ROW |24552 |15955 |15957 |
+ROW |24553 |15955 |15954 |
+ROW |24554 |15954 |15957 |
+ROW |24555 |15956 |15957 |
+ROW |24556 |15956 |15954 |
+ROW |24557 |16678 |15957 |
+ROW |24558 |16678 |15954 |
+ROW |24559 |15961 |15960 |
+ROW |24560 |15962 |15960 |
+ROW |24561 |16679 |15960 |
+ROW |24562 |17090 |17096 |
+ROW |24563 |17093 |17096 |
+ROW |24564 |17101 |17098 |
+ROW |24565 |16257 |16255 |
+ROW |24566 |16257 |16256 |
+ROW |24567 |16256 |16255 |
+ROW |24568 |16251 |16255 |
+ROW |24569 |16251 |16256 |
+ROW |24570 |16443 |16255 |
+ROW |24571 |16443 |16256 |
+ROW |24572 |16270 |16269 |
+ROW |24573 |16448 |16269 |
+ROW |24574 |16265 |16269 |
+ROW |24575 |17503 |17505 |
+ROW |24576 |17512 |17511 |
+ROW |24577 |17513 |17505 |
+ROW |24583 |17516 |17518 |
+ROW |24584 |17517 |17516 |
+ROW |24585 |17517 |17518 |
+ROW |24586 |17517 |17519 |
+ROW |24587 |17519 |17518 |
+ROW |24588 |17973 |17965 |
+ROW |24589 |17974 |17966 |
+ROW |24590 |17141 |17151 |
+ROW |24591 |17142 |17141 |
+ROW |24592 |17142 |17151 |
+ROW |24593 |17143 |17151 |
+ROW |24594 |17144 |17143 |
+ROW |24595 |17144 |17151 |
+ROW |24596 |17146 |17145 |
+ROW |24597 |17147 |17151 |
+ROW |24598 |17148 |17147 |
+ROW |24599 |17148 |17151 |
+ROW |24600 |17150 |17149 |
+ROW |24601 |17152 |17168 |
+ROW |24602 |17153 |17152 |
+ROW |24603 |17153 |17168 |
+ROW |24604 |17154 |17168 |
+ROW |24605 |17155 |17154 |
+ROW |24606 |17155 |17168 |
+ROW |24607 |17156 |17168 |
+ROW |24608 |17157 |17156 |
+ROW |24609 |17157 |17168 |
+ROW |24610 |17158 |17168 |
+ROW |24611 |17159 |17158 |
+ROW |24612 |17159 |17168 |
+ROW |24613 |17160 |17168 |
+ROW |24614 |17161 |17160 |
+ROW |24615 |17161 |17168 |
+ROW |24616 |17163 |17162 |
+ROW |24617 |17164 |17168 |
+ROW |24618 |17165 |17164 |
+ROW |24619 |17165 |17168 |
+ROW |24620 |17166 |17168 |
+ROW |24621 |17167 |17166 |
+ROW |24622 |17167 |17168 |
+ROW |24623 |17169 |17168 |
+ROW |24624 |17170 |17168 |
+ROW |24625 |17170 |17169 |
+ROW |24626 |17171 |17168 |
+ROW |24627 |17172 |17168 |
+ROW |24628 |17172 |17171 |
+ROW |24629 |17540 |17541 |
+ROW |24630 |16920 |16921 |
+ROW |24631 |16833 |16920 |
+ROW |24632 |17978 |17977 |
+ROW |24633 |17980 |17979 |
+ROW |24634 |17984 |17983 |
+ROW |24635 |17985 |17983 |
+ROW |24636 |18000 |18001 |
+ROW |24637 |18225 |18224 |
+ROW |24638 |18237 |18236 |
+ROW |24639 |16929 |16928 |
+ROW |24640 |16940 |17084 |
+ROW |24641 |18537 |18536 |
+ROW |24642 |18539 |18538 |
+ROW |24643 |18541 |18540 |
+ROW |24644 |16719 |16721 |
+ROW |24645 |16975 |16723 |
+ROW |24646 |16729 |16728 |
+ROW |24647 |16730 |16728 |
+ROW |24648 |16756 |16758 |
+ROW |24649 |16979 |16759 |
+ROW |24650 |16765 |16764 |
+ROW |24651 |16766 |16764 |
+ROW |24652 |16734 |16736 |
+ROW |24653 |16983 |16732 |
+ROW |24654 |16741 |16740 |
+ROW |24655 |16742 |16740 |
+ROW |24656 |17192 |17191 |
+ROW |24657 |17194 |17195 |
+ROW |24658 |17199 |17198 |
+ROW |24659 |17546 |17545 |
+ROW |24660 |17547 |17548 |
+ROW |24661 |16997 |16984 |
+ROW |24662 |17002 |17003 |
+ROW |24663 |17006 |17005 |
+ROW |24664 |17011 |17010 |
+ROW |24665 |17550 |17549 |
+ROW |24666 |17551 |17552 |
+ROW |24667 |17391 |17396 |
+ROW |24668 |17395 |17396 |
+ROW |24669 |16683 |16687 |
+ROW |24670 |14252 |14251 |
+ROW |24671 |14294 |14293 |
+ROW |24672 |14312 |14311 |
+ROW |24673 |14328 |14327 |
+ROW |24674 |14348 |14347 |
+ROW |24675 |14357 |14356 |
+ROW |24676 |14390 |14389 |
+ROW |24677 |14404 |14403 |
+ROW |24678 |14452 |14451 |
+ROW |24679 |14469 |14468 |
+ROW |24680 |14487 |14486 |
+ROW |24681 |14506 |14505 |
+ROW |24682 |14535 |14534 |
+ROW |24683 |14545 |14544 |
+ROW |24684 |14583 |14582 |
+ROW |24685 |14599 |14598 |
+ROW |24686 |14616 |14615 |
+ROW |24687 |14653 |14652 |
+ROW |24688 |14674 |14673 |
+ROW |24689 |14692 |14691 |
+ROW |24690 |14705 |14704 |
+ROW |24691 |14718 |14717 |
+ROW |24692 |14907 |14906 |
+ROW |24693 |15221 |15220 |
+ROW |24694 |15702 |15701 |
+ROW |24695 |15724 |15723 |
+ROW |24696 |15756 |15755 |
+ROW |24697 |15820 |15819 |
+ROW |24698 |15841 |15840 |
+ROW |24699 |15991 |15990 |
+ROW |24700 |16018 |16017 |
+ROW |24701 |16454 |16453 |
+ROW |24702 |17924 |17923 |
+ROW |24703 |18178 |18177 |
+ROW |24704 |14253 |14252 |
+ROW |24705 |14295 |14294 |
+ROW |24706 |14313 |14312 |
+ROW |24707 |14329 |14328 |
+ROW |24708 |14349 |14348 |
+ROW |24709 |14358 |14357 |
+ROW |24710 |14391 |14390 |
+ROW |24711 |14405 |14404 |
+ROW |24712 |14453 |14452 |
+ROW |24713 |14470 |14469 |
+ROW |24714 |14488 |14487 |
+ROW |24715 |14507 |14506 |
+ROW |24716 |14536 |14535 |
+ROW |24717 |14546 |14545 |
+ROW |24718 |14584 |14583 |
+ROW |24719 |14600 |14599 |
+ROW |24720 |14617 |14616 |
+ROW |24721 |14654 |14653 |
+ROW |24722 |14675 |14674 |
+ROW |24723 |14693 |14692 |
+ROW |24724 |14706 |14705 |
+ROW |24725 |14719 |14718 |
+ROW |24726 |14908 |14907 |
+ROW |24727 |15222 |15221 |
+ROW |24728 |15703 |15702 |
+ROW |24729 |15725 |15724 |
+ROW |24730 |15757 |15756 |
+ROW |24731 |15821 |15820 |
+ROW |24732 |15842 |15841 |
+ROW |24733 |15992 |15991 |
+ROW |24734 |16019 |16018 |
+ROW |24735 |16455 |16454 |
+ROW |24736 |17925 |17924 |
+ROW |24737 |18179 |18178 |
+ROW |24738 |14253 |14251 |
+ROW |24739 |14295 |14293 |
+ROW |24740 |14313 |14311 |
+ROW |24741 |14329 |14327 |
+ROW |24742 |14349 |14347 |
+ROW |24743 |14358 |14356 |
+ROW |24744 |14391 |14389 |
+ROW |24745 |14405 |14403 |
+ROW |24746 |14453 |14451 |
+ROW |24747 |14470 |14468 |
+ROW |24748 |14488 |14486 |
+ROW |24749 |14507 |14505 |
+ROW |24750 |14536 |14534 |
+ROW |24751 |14546 |14544 |
+ROW |24752 |14584 |14582 |
+ROW |24753 |14600 |14598 |
+ROW |24754 |14617 |14615 |
+ROW |24755 |14654 |14652 |
+ROW |24756 |14675 |14673 |
+ROW |24757 |14693 |14691 |
+ROW |24758 |14706 |14704 |
+ROW |24759 |14719 |14717 |
+ROW |24760 |14908 |14906 |
+ROW |24761 |15222 |15220 |
+ROW |24762 |15703 |15701 |
+ROW |24763 |15725 |15723 |
+ROW |24764 |15757 |15755 |
+ROW |24765 |15821 |15819 |
+ROW |24766 |15842 |15840 |
+ROW |24767 |15992 |15990 |
+ROW |24768 |16019 |16017 |
+ROW |24769 |16455 |16453 |
+ROW |24770 |17925 |17923 |
+ROW |24771 |18179 |18177 |
+ROW |24772 |16287 |16289 |
+ROW |24773 |16279 |16285 |
+ROW |24774 |16290 |16348 |
+ROW |24775 |16291 |16349 |
+ROW |24776 |16292 |16350 |
+ROW |24777 |16293 |16351 |
+ROW |24778 |16294 |16352 |
+ROW |24779 |16295 |16353 |
+ROW |24780 |16296 |16354 |
+ROW |24781 |16297 |16355 |
+ROW |24782 |16298 |16356 |
+ROW |24783 |16299 |16357 |
+ROW |24784 |16300 |16358 |
+ROW |24785 |16301 |16359 |
+ROW |24786 |16302 |16360 |
+ROW |24787 |16303 |16361 |
+ROW |24788 |16304 |16362 |
+ROW |24789 |16305 |16363 |
+ROW |24790 |16306 |16364 |
+ROW |24791 |16307 |16365 |
+ROW |24792 |16308 |16366 |
+ROW |24793 |16309 |16367 |
+ROW |24794 |16311 |16369 |
+ROW |24795 |16312 |16370 |
+ROW |24796 |16313 |16371 |
+ROW |24797 |16314 |16372 |
+ROW |24798 |16315 |16373 |
+ROW |24799 |16316 |16374 |
+ROW |24800 |16317 |16375 |
+ROW |24801 |16318 |16376 |
+ROW |24802 |16457 |16458 |
+ROW |24803 |17927 |17928 |
+ROW |24804 |18181 |18182 |
+ROW |24805 |16289 |14293 |
+ROW |24806 |16285 |14717 |
+ROW |24807 |16348 |14311 |
+ROW |24808 |16349 |14327 |
+ROW |24809 |16350 |14347 |
+ROW |24810 |16351 |14356 |
+ROW |24811 |16352 |14389 |
+ROW |24812 |16353 |14403 |
+ROW |24813 |16354 |14451 |
+ROW |24814 |16355 |14468 |
+ROW |24815 |16356 |14486 |
+ROW |24816 |16357 |14505 |
+ROW |24817 |16358 |14534 |
+ROW |24818 |16359 |14544 |
+ROW |24819 |16360 |14582 |
+ROW |24820 |16361 |14598 |
+ROW |24821 |16362 |14615 |
+ROW |24822 |16363 |14652 |
+ROW |24823 |16364 |14673 |
+ROW |24824 |16365 |14691 |
+ROW |24825 |16366 |14704 |
+ROW |24826 |16367 |14906 |
+ROW |24827 |16369 |15220 |
+ROW |24828 |16370 |15701 |
+ROW |24829 |16371 |15723 |
+ROW |24830 |16372 |15755 |
+ROW |24831 |16373 |15819 |
+ROW |24832 |16374 |15840 |
+ROW |24833 |16375 |15990 |
+ROW |24834 |16376 |16017 |
+ROW |24835 |16458 |16453 |
+ROW |24836 |17928 |17923 |
+ROW |24837 |18182 |18177 |
+ROW |24838 |16631 |16630 |
+ROW |24839 |16640 |16636 |
+ROW |24840 |16642 |16638 |
+ROW |24841 |16643 |16639 |
+ROW |24842 |15695 |16863 |
+ROW |24843 |18242 |16863 |
+ROW |24844 |18243 |16863 |
+ROW |24845 |15694 |16868 |
+ROW |24846 |15696 |16864 |
+ROW |24847 |15697 |16865 |
+ROW |24848 |18244 |16864 |
+ROW |24849 |18245 |16865 |
+ROW |24850 |18246 |16868 |
+ROW |24851 |18247 |16864 |
+ROW |24852 |18248 |16865 |
+ROW |24853 |18249 |16868 |
+ROW |24854 |15671 |16841 |
+ROW |24855 |18250 |16841 |
+ROW |24856 |18251 |16841 |
+ROW |24857 |15672 |16842 |
+ROW |24858 |15673 |16843 |
+ROW |24859 |15674 |16844 |
+ROW |24860 |15675 |16845 |
+ROW |24861 |15676 |16846 |
+ROW |24862 |15677 |16847 |
+ROW |24863 |15678 |16848 |
+ROW |24864 |15679 |16849 |
+ROW |24865 |15680 |16850 |
+ROW |24866 |15681 |16851 |
+ROW |24867 |15682 |16852 |
+ROW |24868 |15683 |16853 |
+ROW |24869 |15684 |16854 |
+ROW |24870 |15685 |16855 |
+ROW |24871 |15686 |16856 |
+ROW |24872 |15687 |16857 |
+ROW |24873 |15689 |16858 |
+ROW |24874 |15691 |16860 |
+ROW |24875 |15708 |16861 |
+ROW |24876 |15997 |16862 |
+ROW |24877 |18252 |16842 |
+ROW |24878 |18253 |16843 |
+ROW |24879 |18254 |16844 |
+ROW |24880 |18255 |16845 |
+ROW |24881 |18256 |16846 |
+ROW |24882 |18257 |16847 |
+ROW |24883 |18258 |16848 |
+ROW |24884 |18259 |16849 |
+ROW |24885 |18260 |16850 |
+ROW |24886 |18261 |16851 |
+ROW |24887 |18262 |16852 |
+ROW |24888 |18263 |16853 |
+ROW |24889 |18264 |16854 |
+ROW |24890 |18265 |16855 |
+ROW |24891 |18266 |16856 |
+ROW |24892 |18267 |16857 |
+ROW |24893 |18268 |16858 |
+ROW |24894 |18270 |16860 |
+ROW |24895 |18271 |16861 |
+ROW |24896 |18272 |16862 |
+ROW |24897 |18273 |16842 |
+ROW |24898 |18274 |16843 |
+ROW |24899 |18275 |16844 |
+ROW |24900 |18276 |16845 |
+ROW |24901 |18277 |16846 |
+ROW |24902 |18278 |16847 |
+ROW |24903 |18279 |16848 |
+ROW |24904 |18280 |16849 |
+ROW |24905 |18281 |16850 |
+ROW |24906 |18282 |16851 |
+ROW |24907 |18283 |16852 |
+ROW |24908 |18284 |16853 |
+ROW |24909 |18285 |16854 |
+ROW |24910 |18286 |16855 |
+ROW |24911 |18287 |16856 |
+ROW |24912 |18288 |16857 |
+ROW |24913 |18289 |16858 |
+ROW |24914 |18291 |16860 |
+ROW |24915 |18292 |16861 |
+ROW |24916 |18293 |16862 |
+ROW |24917 |15698 |16866 |
+ROW |24918 |18294 |16866 |
+ROW |24919 |18295 |16866 |
+ROW |24920 |16028 |16867 |
+ROW |24921 |18296 |16867 |
+ROW |24922 |18297 |16867 |
+ROW |24923 |18100 |18099 |
+ROW |24924 |18106 |18105 |
+ROW |24925 |14318 |14319 |
+ROW |24926 |17554 |15717 |
+ROW |24927 |17555 |15717 |
+ROW |24928 |17555 |17554 |
+ROW |24929 |17556 |15717 |
+ROW |24930 |17557 |15717 |
+ROW |24931 |17557 |17556 |
+ROW |24932 |17559 |17558 |
+ROW |24933 |17561 |17560 |
+ROW |24934 |17563 |17562 |
+ROW |24935 |17565 |17564 |
+ROW |24936 |15721 |15720 |
+ROW |24937 |15394 |15393 |
+ROW |24938 |15392 |15391 |
+ROW |24939 |17322 |14339 |
+ROW |24940 |15382 |15381 |
+ROW |24941 |15380 |15379 |
+ROW |24942 |16504 |16505 |
+ROW |24943 |14372 |14373 |
+ROW |24944 |15386 |15385 |
+ROW |24945 |15384 |15383 |
+ROW |24946 |14380 |14381 |
+ROW |24947 |18299 |18298 |
+ROW |24948 |18300 |18299 |
+ROW |24949 |18300 |18298 |
+ROW |24950 |18303 |18302 |
+ROW |24951 |18309 |18308 |
+ROW |24952 |18311 |18316 |
+ROW |24953 |18312 |18316 |
+ROW |24954 |18313 |18316 |
+ROW |24955 |18314 |18316 |
+ROW |24956 |18315 |18316 |
+ROW |24957 |18319 |18318 |
+ROW |24958 |18321 |18320 |
+ROW |24959 |18323 |18322 |
+ROW |24960 |18326 |18325 |
+ROW |24961 |18327 |18326 |
+ROW |24962 |18327 |18325 |
+ROW |24963 |18330 |18329 |
+ROW |24964 |18336 |18335 |
+ROW |24965 |18338 |18343 |
+ROW |24966 |18339 |18343 |
+ROW |24967 |18340 |18343 |
+ROW |24968 |18341 |18343 |
+ROW |24969 |18342 |18343 |
+ROW |24970 |18346 |18345 |
+ROW |24971 |18348 |18347 |
+ROW |24972 |18350 |18349 |
+ROW |24973 |18353 |18352 |
+ROW |24974 |18354 |18353 |
+ROW |24975 |18354 |18352 |
+ROW |24976 |18357 |18356 |
+ROW |24977 |18363 |18362 |
+ROW |24978 |18365 |18370 |
+ROW |24979 |18366 |18370 |
+ROW |24980 |18367 |18370 |
+ROW |24981 |18368 |18370 |
+ROW |24982 |18369 |18370 |
+ROW |24983 |18373 |18372 |
+ROW |24984 |18375 |18374 |
+ROW |24985 |18377 |18376 |
+ROW |24986 |18380 |18379 |
+ROW |24987 |18381 |18380 |
+ROW |24988 |18381 |18379 |
+ROW |24989 |18384 |18383 |
+ROW |24990 |18390 |18389 |
+ROW |24991 |18392 |18397 |
+ROW |24992 |18393 |18397 |
+ROW |24993 |18394 |18397 |
+ROW |24994 |18395 |18397 |
+ROW |24995 |18396 |18397 |
+ROW |24996 |18400 |18399 |
+ROW |24997 |18402 |18401 |
+ROW |24998 |18404 |18403 |
+ROW |24999 |18407 |18406 |
+ROW |25000 |18408 |18407 |
+ROW |25001 |18408 |18406 |
+ROW |25002 |18411 |18410 |
+ROW |25003 |18417 |18416 |
+ROW |25004 |18419 |18424 |
+ROW |25005 |18420 |18424 |
+ROW |25006 |18421 |18424 |
+ROW |25007 |18422 |18424 |
+ROW |25008 |18423 |18424 |
+ROW |25009 |18427 |18426 |
+ROW |25010 |18429 |18428 |
+ROW |25011 |18431 |18430 |
+ROW |25012 |15347 |15346 |
+ROW |25013 |15345 |15344 |
+ROW |25014 |17567 |17566 |
+ROW |25015 |15363 |15360 |
+ROW |25016 |15364 |15361 |
+ROW |25017 |15365 |15362 |
+ROW |25018 |15357 |15354 |
+ROW |25019 |15358 |15355 |
+ROW |25020 |15359 |15356 |
+ROW |25021 |17571 |17568 |
+ROW |25022 |17572 |17569 |
+ROW |25023 |17573 |17570 |
+ROW |25024 |15334 |15333 |
+ROW |25025 |15332 |15331 |
+ROW |25026 |14460 |14461 |
+ROW |25027 |14476 |14477 |
+ROW |25028 |14495 |14496 |
+ROW |25029 |14511 |17574 |
+ROW |25030 |14551 |14552 |
+ROW |25031 |15374 |15373 |
+ROW |25032 |15376 |15375 |
+ROW |25033 |14914 |14915 |
+ROW |25034 |14589 |14590 |
+ROW |25035 |15338 |15337 |
+ROW |25036 |17333 |17332 |
+ROW |25037 |14624 |14625 |
+ROW |25038 |18434 |18433 |
+ROW |25039 |18435 |18434 |
+ROW |25040 |18435 |18433 |
+ROW |25041 |18438 |18439 |
+ROW |25042 |18439 |18433 |
+ROW |25043 |18441 |18444 |
+ROW |25044 |18442 |18444 |
+ROW |25045 |18443 |18444 |
+ROW |25046 |18446 |18447 |
+ROW |25047 |18450 |18449 |
+ROW |25048 |14664 |14665 |
+ROW |25049 |17085 |17086 |
+ROW |25050 |16547 |16546 |
+ROW |25051 |17576 |17575 |
+ROW |25052 |17578 |17577 |
+ROW |25053 |17628 |17626 |
+ROW |25054 |17629 |17627 |
+ROW |25055 |17632 |17630 |
+ROW |25056 |17633 |17631 |
+ROW |25057 |17635 |17634 |
+ROW |25058 |17637 |17636 |
+ROW |25059 |17686 |17684 |
+ROW |25060 |17687 |17685 |
+ROW |25061 |17690 |17688 |
+ROW |25062 |17691 |17689 |
+ROW |25063 |17693 |17692 |
+ROW |25064 |17695 |17694 |
+ROW |25065 |17730 |17728 |
+ROW |25066 |17731 |17729 |
+ROW |25067 |17734 |17732 |
+ROW |25068 |17735 |17733 |
+ROW |25069 |17737 |17736 |
+ROW |25070 |17754 |17752 |
+ROW |25071 |17755 |17753 |
+ROW |25072 |17757 |17756 |
+ROW |25073 |17819 |17817 |
+ROW |25074 |17820 |17818 |
+ROW |25075 |17823 |17821 |
+ROW |25076 |17824 |17822 |
+ROW |25077 |17826 |17825 |
+ROW |25078 |17860 |17858 |
+ROW |25079 |17861 |17859 |
+ROW |25080 |17864 |17862 |
+ROW |25081 |17865 |17863 |
+ROW |25082 |17899 |17897 |
+ROW |25083 |17900 |17898 |
+ROW |25084 |17903 |17901 |
+ROW |25085 |17904 |17902 |
+ROW |25086 |17906 |17905 |
+ROW |25087 |17908 |17907 |
+ROW |25088 |17910 |17909 |
+ROW |25089 |16551 |16552 |
+ROW |25090 |18130 |18132 |
+ROW |25091 |18133 |18135 |
+ROW |25092 |18136 |18138 |
+ROW |25093 |18130 |18452 |
+ROW |25094 |18133 |18453 |
+ROW |25095 |18136 |18454 |
+ROW |25096 |16031 |16563 |
+ROW |25097 |16045 |16564 |
+ROW |25098 |16046 |16565 |
+ROW |25099 |16039 |16040 |
+ROW |25100 |16061 |16063 |
+ROW |25101 |16062 |16064 |
+ROW |25102 |16042 |16579 |
+ROW |25103 |16067 |16580 |
+ROW |25104 |16068 |16581 |
+ROW |25105 |16041 |16042 |
+ROW |25106 |16065 |16067 |
+ROW |25107 |16066 |16068 |
+ROW |25108 |16041 |16579 |
+ROW |25109 |16065 |16580 |
+ROW |25110 |16066 |16581 |
+ROW |25111 |18132 |18452 |
+ROW |25112 |18135 |18453 |
+ROW |25113 |18138 |18454 |
+ROW |25114 |16070 |16069 |
+ROW |25115 |16072 |16071 |
+ROW |25116 |16076 |17024 |
+ROW |25117 |18455 |17024 |
+ROW |25118 |16079 |16077 |
+ROW |25119 |16080 |16078 |
+ROW |25120 |16083 |16081 |
+ROW |25121 |16084 |16082 |
+ROW |25122 |16091 |17026 |
+ROW |25123 |16092 |17028 |
+ROW |25124 |18456 |17026 |
+ROW |25125 |18457 |17028 |
+ROW |25126 |18142 |18144 |
+ROW |25127 |18145 |18147 |
+ROW |25128 |18142 |18458 |
+ROW |25129 |18145 |18459 |
+ROW |25130 |17244 |17243 |
+ROW |25131 |17257 |17256 |
+ROW |25132 |17246 |17240 |
+ROW |25133 |17259 |17253 |
+ROW |25134 |17249 |17247 |
+ROW |25135 |17262 |17260 |
+ROW |25136 |17251 |17249 |
+ROW |25137 |17264 |17262 |
+ROW |25138 |17251 |17247 |
+ROW |25139 |17264 |17260 |
+ROW |25140 |18144 |18458 |
+ROW |25141 |18147 |18459 |
+ROW |25142 |17268 |17267 |
+ROW |25143 |17270 |17269 |
+ROW |25144 |17271 |17273 |
+ROW |25145 |18460 |17273 |
+ROW |25146 |17276 |17275 |
+ROW |25147 |17278 |17277 |
+ROW |25148 |17279 |17281 |
+ROW |25149 |18461 |17281 |
+ROW |25150 |18150 |18152 |
+ROW |25151 |18150 |18462 |
+ROW |25152 |16141 |16142 |
+ROW |25153 |16146 |16573 |
+ROW |25154 |16143 |16584 |
+ROW |25155 |18152 |18462 |
+ROW |25156 |16152 |16883 |
+ROW |25157 |16153 |16883 |
+ROW |25158 |18463 |16883 |
+ROW |25159 |18464 |16883 |
+ROW |25160 |16156 |16155 |
+ROW |25161 |16158 |16157 |
+ROW |25162 |18155 |18157 |
+ROW |25163 |18158 |18160 |
+ROW |25164 |18155 |18156 |
+ROW |25165 |18158 |18159 |
+ROW |25166 |18157 |18156 |
+ROW |25167 |18160 |18159 |
+ROW |25168 |16009 |16008 |
+ROW |25169 |16011 |16010 |
+ROW |25170 |16014 |16013 |
+ROW |25171 |16016 |16015 |
+ROW |25172 |17035 |16160 |
+ROW |25173 |17037 |16171 |
+ROW |25174 |18161 |18162 |
+ROW |25175 |18163 |18164 |
+ROW |25176 |16161 |16160 |
+ROW |25177 |16172 |16171 |
+ROW |25178 |16162 |16161 |
+ROW |25179 |16173 |16172 |
+ROW |25180 |16162 |16160 |
+ROW |25181 |16173 |16171 |
+ROW |25182 |16166 |18162 |
+ROW |25183 |16177 |18164 |
+ROW |25184 |16167 |18162 |
+ROW |25185 |16178 |18164 |
+ROW |25186 |16183 |16182 |
+ROW |25187 |17911 |17042 |
+ROW |25188 |18465 |17042 |
+ROW |25189 |18466 |17042 |
+ROW |25190 |17043 |17912 |
+ROW |25191 |17043 |17913 |
+ROW |25192 |16190 |16189 |
+ROW |25193 |17914 |17047 |
+ROW |25194 |18467 |17047 |
+ROW |25195 |18468 |17047 |
+ROW |25196 |17048 |17915 |
+ROW |25197 |17048 |17916 |
+ROW |25198 |17283 |17287 |
+ROW |25199 |17294 |17298 |
+ROW |25200 |18169 |18170 |
+ROW |25201 |18171 |18172 |
+ROW |25202 |17285 |17287 |
+ROW |25203 |17296 |17298 |
+ROW |25204 |17286 |17285 |
+ROW |25205 |17297 |17296 |
+ROW |25206 |17286 |17287 |
+ROW |25207 |17297 |17298 |
+ROW |25208 |17291 |18170 |
+ROW |25209 |17302 |18172 |
+ROW |25210 |17292 |18170 |
+ROW |25211 |17303 |18172 |
+ROW |25212 |17306 |17305 |
+ROW |25213 |17917 |17310 |
+ROW |25214 |18469 |17310 |
+ROW |25215 |18470 |17310 |
+ROW |25216 |17311 |17918 |
+ROW |25217 |17311 |17919 |
+ROW |25218 |17314 |17313 |
+ROW |25219 |17920 |17318 |
+ROW |25220 |18471 |17318 |
+ROW |25221 |18472 |17318 |
+ROW |25222 |17319 |17921 |
+ROW |25223 |17319 |17922 |
+ROW |25224 |18596 |18597 |
+ROW |25225 |18629 |18630 |
+ROW |25226 |18662 |18663 |
+ROW |25227 |18695 |18696 |
+ROW |25228 |18728 |18729 |
+ROW |25229 |18761 |18762 |
+ROW |25230 |18794 |18795 |
+ROW |25231 |18495 |18496 |
+ROW |25232 |18831 |18832 |
+ROW |25233 |18864 |18865 |
+ROW |25234 |18897 |18898 |
+ROW |25235 |16772 |16773 |
+ROW |25236 |16771 |16772 |
+ROW |25237 |16771 |16773 |
+ROW |25238 |16769 |16770 |
+ROW |25239 |16768 |16769 |
+ROW |25240 |16768 |16770 |
+ROW |25241 |16488 |16487 |
+ROW |25242 |16485 |16484 |
+ROW |25243 |16486 |16484 |
+ROW |25244 |16486 |16485 |
+ROW |25245 |16480 |16479 |
+ROW |25246 |16482 |16481 |
+ROW |25247 |16475 |16474 |
+ROW |25248 |16471 |16472 |
+ROW |25249 |16468 |16469 |
+ROW |25250 |16459 |16460 |
+ROW |25251 |16462 |16463 |
+ROW |25252 |16465 |16466 |
+ROW |25253 |16477 |16476 |
+ROW |25254 |15729 |15728 |
+ROW |25255 |15730 |15728 |
+ROW |25256 |15730 |15729 |
+ROW |25257 |15752 |15754 |
+ROW |25258 |15753 |15754 |
+ROW |25259 |15753 |15752 |
+ROW |25260 |15742 |15741 |
+ROW |25261 |15750 |15749 |
+ROW |25262 |15751 |15750 |
+ROW |25263 |15751 |15749 |
+ROW |25264 |15746 |15743 |
+ROW |25265 |15744 |15743 |
+ROW |25266 |15740 |15739 |
+ROW |25267 |17946 |17945 |
+ROW |25268 |17948 |17947 |
+ROW |25269 |15748 |15747 |
+ROW |25270 |16440 |16439 |
+ROW |25271 |18003 |15790 |
+ROW |25272 |18004 |15787 |
+ROW |25273 |18005 |15787 |
+ROW |25274 |18005 |18004 |
+ROW |25275 |15786 |15785 |
+ROW |25276 |15784 |15783 |
+ROW |25277 |15794 |15792 |
+ROW |25278 |15793 |15792 |
+ROW |25279 |15782 |15781 |
+ROW |25280 |15797 |15796 |
+ROW |25281 |15825 |15824 |
+ROW |25282 |15826 |15824 |
+ROW |25283 |15826 |15825 |
+ROW |25284 |15828 |15829 |
+ROW |25285 |15831 |15832 |
+ROW |25286 |15834 |15835 |
+ROW |25287 |15845 |15846 |
+ROW |25288 |17223 |17227 |
+ROW |25289 |17226 |17227 |
TABLE |functions
-FIELDS|functionid|itemid|triggerid|name |parameter |
-ROW |12641 |22189 |13015 |max |$,10m |
-ROW |12645 |22183 |13073 |max |$,10m |
-ROW |12646 |22191 |13074 |max |$,10m |
-ROW |12648 |23620 |13075 |max |$,10m |
-ROW |12649 |22185 |13019 |max |$,10m |
-ROW |12651 |22396 |13017 |max |$,10m |
-ROW |12653 |22219 |13023 |min |$,10m |
-ROW |12723 |22853 |13336 |last |$,#1 |
-ROW |12725 |22858 |13338 |last |$,#1 |
-ROW |12726 |22859 |13339 |change |$ |
-ROW |12727 |22861 |13340 |last |$,#1 |
-ROW |12739 |22893 |13352 |last |$,#1 |
-ROW |12741 |22898 |13354 |last |$,#1 |
-ROW |12742 |22899 |13355 |change |$ |
-ROW |12743 |22901 |13356 |last |$,#1 |
-ROW |12755 |22933 |13368 |last |$,#1 |
-ROW |12757 |22938 |13370 |last |$,#1 |
-ROW |12758 |22939 |13371 |change |$ |
-ROW |12759 |22941 |13372 |last |$,#1 |
-ROW |12771 |22973 |13384 |last |$,#1 |
-ROW |12773 |22978 |13386 |last |$,#1 |
-ROW |12775 |22981 |13388 |last |$,#1 |
-ROW |12787 |23013 |13400 |last |$,#1 |
-ROW |12789 |23018 |13402 |last |$,#1 |
-ROW |12790 |23019 |13403 |change |$ |
-ROW |12791 |23021 |13404 |last |$,#1 |
-ROW |12803 |23053 |13416 |last |$,#1 |
-ROW |12805 |23058 |13418 |last |$,#1 |
-ROW |12806 |23059 |13419 |change |$ |
-ROW |12807 |23061 |13420 |last |$,#1 |
-ROW |12895 |23271 |13486 |min |$,10m |
-ROW |12896 |23273 |13487 |max |$,10m |
-ROW |12897 |23274 |13488 |max |$,10m |
-ROW |12898 |23275 |13489 |max |$,10m |
-ROW |12899 |23276 |13490 |max |$,10m |
-ROW |12946 |23357 |13517 |max |$,10m |
-ROW |12947 |23342 |13518 |max |$,10m |
-ROW |12948 |23341 |13519 |max |$,10m |
-ROW |12949 |23359 |13520 |min |$,10m |
-ROW |12965 |23634 |13536 |max |$,10m |
-ROW |12966 |23635 |13537 |max |$,10m |
-ROW |12994 |23644 |13544 |max |$,#3 |
-ROW |12995 |23645 |13545 |max |$,#3 |
-ROW |12996 |23646 |13546 |max |$,#3 |
-ROW |12997 |23647 |13547 |max |$,#3 |
-ROW |12998 |23648 |13548 |max |$,#3 |
-ROW |13068 |23115 |13367 |avg |$,5m |
-ROW |13069 |22922 |13366 |avg |$,5m |
-ROW |13070 |22918 |13365 |avg |$,5m |
-ROW |13071 |22917 |13364 |avg |$,5m |
-ROW |13072 |22882 |13350 |avg |$,5m |
-ROW |13073 |22878 |13349 |avg |$,5m |
-ROW |13074 |22877 |13348 |avg |$,5m |
-ROW |13075 |22962 |13382 |avg |$,5m |
-ROW |13086 |23042 |13414 |avg |$,5m |
-ROW |13087 |22842 |13334 |avg |$,5m |
-ROW |13088 |22838 |13333 |avg |$,5m |
-ROW |13089 |22837 |13332 |avg |$,5m |
-ROW |13090 |23007 |13399 |avg |$,5m |
-ROW |13091 |23002 |13398 |avg |$,5m |
-ROW |13092 |22998 |13397 |avg |$,5m |
-ROW |13093 |22997 |13396 |avg |$,5m |
-ROW |13152 |23651 |13551 |max |$,#3 |
-ROW |13154 |23649 |13549 |max |$,#3 |
-ROW |13156 |23650 |13550 |max |$,#3 |
-ROW |13157 |23652 |13552 |max |$,#3 |
-ROW |13158 |23653 |13553 |max |$,#3 |
-ROW |13159 |23654 |13285 |max |$,#3 |
-ROW |13160 |23661 |13557 |last |$ |
-ROW |13161 |23662 |13558 |last |$ |
-ROW |13164 |22424 |13080 |avg |$,10m |
-ROW |13165 |23252 |13467 |avg |$,10m |
-ROW |13170 |22412 |13081 |avg |$,10m |
-ROW |13171 |23253 |13468 |avg |$,10m |
-ROW |13172 |22430 |13083 |avg |$,10m |
-ROW |13173 |23255 |13470 |avg |$,10m |
-ROW |13174 |22422 |13084 |avg |$,10m |
-ROW |13175 |23256 |13471 |avg |$,10m |
-ROW |13176 |22406 |13085 |avg |$,10m |
-ROW |13177 |23257 |13472 |avg |$,10m |
-ROW |13178 |22408 |13086 |avg |$,30m |
-ROW |13179 |23258 |13473 |avg |$,30m |
-ROW |13180 |22402 |13087 |avg |$,10m |
-ROW |13181 |23259 |13474 |avg |$,10m |
-ROW |13182 |22418 |13088 |avg |$,10m |
-ROW |13183 |23260 |13475 |avg |$,10m |
-ROW |13184 |22416 |13089 |avg |$,10m |
-ROW |13185 |23261 |13476 |avg |$,10m |
-ROW |13186 |22689 |13275 |avg |$,10m |
-ROW |13187 |23262 |13477 |avg |$,10m |
-ROW |13188 |22399 |13091 |avg |$,10m |
-ROW |13189 |23264 |13479 |avg |$,10m |
-ROW |13190 |22420 |13092 |avg |$,10m |
-ROW |13191 |23265 |13480 |avg |$,10m |
-ROW |13192 |22414 |13093 |min |$,10m |
-ROW |13193 |23266 |13481 |min |$,10m |
-ROW |13194 |23171 |13441 |avg |$,10m |
-ROW |13195 |23267 |13482 |avg |$,10m |
-ROW |13196 |23663 |13559 |avg |$,10m |
-ROW |13197 |23664 |13560 |avg |$,10m |
-ROW |13198 |22426 |13094 |avg |$,10m |
-ROW |13199 |23268 |13483 |avg |$,10m |
-ROW |13200 |22404 |13095 |avg |$,10m |
-ROW |13201 |23269 |13484 |avg |$,10m |
-ROW |13202 |22400 |13096 |avg |$,10m |
-ROW |13203 |23270 |13485 |avg |$,10m |
-ROW |13204 |22401 |13097 |avg |$,10m |
-ROW |13205 |23328 |13436 |avg |$,10m |
-ROW |13206 |23347 |13521 |avg |$,10m |
-ROW |13207 |23360 |13534 |avg |$,10m |
-ROW |13208 |23352 |13522 |avg |$,10m |
-ROW |13209 |23351 |13535 |avg |$,10m |
-ROW |13210 |23350 |13523 |avg |$,10m |
-ROW |13211 |23353 |13524 |avg |$,30m |
-ROW |13212 |23354 |13525 |avg |$,10m |
-ROW |13213 |23356 |13526 |avg |$,10m |
-ROW |13214 |23355 |13527 |avg |$,10m |
-ROW |13215 |23349 |13528 |avg |$,10m |
-ROW |13216 |23348 |13529 |avg |$,10m |
-ROW |13217 |23343 |13530 |avg |$,10m |
-ROW |13218 |23344 |13531 |avg |$,10m |
-ROW |13219 |23345 |13532 |avg |$,10m |
-ROW |13220 |23346 |13533 |avg |$,10m |
-ROW |13222 |25366 |13562 |avg |$,10m |
-ROW |13223 |25367 |13563 |avg |$,10m |
-ROW |13224 |25368 |13564 |avg |$,10m |
-ROW |13225 |25369 |13565 |avg |$,10m |
-ROW |13226 |25370 |13566 |avg |$,10m |
-ROW |13227 |25371 |13567 |avg |$,10m |
-ROW |13228 |25665 |13568 |avg |$,10m |
-ROW |13229 |25666 |13569 |avg |$,10m |
-ROW |13230 |25667 |13570 |avg |$,10m |
-ROW |13231 |25668 |13571 |avg |$,10m |
-ROW |14378 |27067 |14251 |max |$,#3 |
-ROW |14379 |27066 |14252 |min |$,5m |
-ROW |14380 |27065 |14253 |avg |$,5m |
-ROW |14468 |27149 |14293 |max |$,#3 |
-ROW |14469 |27150 |14294 |min |$,5m |
-ROW |14470 |27151 |14295 |avg |$,5m |
-ROW |14508 |27192 |14311 |max |$,#3 |
-ROW |14509 |27193 |14312 |min |$,5m |
-ROW |14510 |27194 |14313 |avg |$,5m |
-ROW |14515 |27212 |14318 |avg |$,5m |
-ROW |14516 |27212 |14318 |max |$,5m |
-ROW |14517 |27212 |14319 |avg |$,5m |
-ROW |14518 |27212 |14319 |max |$,5m |
-ROW |14519 |27212 |14320 |avg |$,5m |
-ROW |14520 |27212 |14320 |min |$,5m |
-ROW |14522 |27214 |14322 |last |$,#1 |
-ROW |14523 |27214 |14322 |last |$ |
-ROW |14536 |27225 |14327 |max |$,#3 |
-ROW |14537 |27226 |14328 |min |$,5m |
-ROW |14538 |27227 |14329 |avg |$,5m |
-ROW |14545 |27237 |14336 |last |$,#1 |
-ROW |14546 |27237 |14336 |last |$ |
-ROW |14547 |27236 |14337 |last |$,#1 |
-ROW |14548 |27236 |14337 |last |$ |
-ROW |14552 |27247 |14339 |avg |$,5m |
-ROW |14553 |27247 |14339 |max |$,5m |
-ROW |14554 |27247 |14340 |avg |$,5m |
-ROW |14555 |27247 |14340 |min |$,5m |
-ROW |14570 |27261 |14347 |max |$,#3 |
-ROW |14571 |27262 |14348 |min |$,5m |
-ROW |14572 |27263 |14349 |avg |$,5m |
-ROW |14587 |27282 |14356 |max |$,#3 |
-ROW |14588 |27283 |14357 |min |$,5m |
-ROW |14589 |27284 |14358 |avg |$,5m |
-ROW |14594 |27296 |14363 |last |$,#1 |
-ROW |14595 |27296 |14363 |last |$ |
-ROW |14596 |27295 |14364 |last |$,#1 |
-ROW |14597 |27295 |14364 |last |$ |
-ROW |14598 |27297 |14365 |last |$,#1 |
-ROW |14599 |27297 |14365 |last |$ |
-ROW |14606 |27314 |14372 |avg |$,5m |
-ROW |14607 |27314 |14372 |max |$,5m |
-ROW |14608 |27314 |14373 |avg |$,5m |
-ROW |14609 |27314 |14373 |max |$,5m |
-ROW |14610 |27314 |14374 |avg |$,5m |
-ROW |14611 |27314 |14374 |min |$,5m |
-ROW |14620 |27318 |14380 |avg |$,5m |
-ROW |14621 |27318 |14380 |max |$,5m |
-ROW |14622 |27318 |14381 |avg |$,5m |
-ROW |14623 |27318 |14381 |max |$,5m |
-ROW |14624 |27318 |14382 |avg |$,5m |
-ROW |14625 |27318 |14382 |min |$,5m |
-ROW |14626 |27320 |14383 |last |$,#1 |
-ROW |14627 |27320 |14383 |last |$ |
-ROW |14641 |27333 |14389 |max |$,#3 |
-ROW |14642 |27334 |14390 |min |$,5m |
-ROW |14643 |27335 |14391 |avg |$,5m |
-ROW |14663 |27365 |14403 |max |$,#3 |
-ROW |14664 |27366 |14404 |min |$,5m |
-ROW |14665 |27367 |14405 |avg |$,5m |
-ROW |14669 |27378 |14409 |last |$,#1 |
-ROW |14670 |27378 |14409 |last |$ |
-ROW |14672 |27385 |14411 |last |$,#1 |
-ROW |14673 |27385 |14411 |last |$ |
-ROW |14676 |27382 |14413 |last |$,#1 |
-ROW |14677 |27382 |14413 |last |$ |
-ROW |14681 |27419 |14417 |last |$,#1 |
-ROW |14682 |27419 |14417 |last |$ |
-ROW |14698 |27428 |14428 |last |$,#1 |
-ROW |14699 |27428 |14428 |last |$ |
-ROW |14702 |27445 |14430 |last |$,#1 |
-ROW |14703 |27445 |14430 |last |$ |
-ROW |14747 |27462 |14451 |max |$,#3 |
-ROW |14748 |27463 |14452 |min |$,5m |
-ROW |14749 |27464 |14453 |avg |$,5m |
-ROW |14756 |27485 |14460 |avg |$,5m |
-ROW |14757 |27485 |14460 |max |$,5m |
-ROW |14758 |27485 |14461 |avg |$,5m |
-ROW |14759 |27485 |14461 |max |$,5m |
-ROW |14760 |27485 |14462 |avg |$,5m |
-ROW |14761 |27485 |14462 |min |$,5m |
-ROW |14762 |27483 |14463 |last |$,#1 |
-ROW |14763 |27483 |14463 |last |$ |
-ROW |14776 |27496 |14468 |max |$,#3 |
-ROW |14777 |27497 |14469 |min |$,5m |
-ROW |14778 |27498 |14470 |avg |$,5m |
-ROW |14782 |27509 |14474 |last |$,#1 |
-ROW |14783 |27509 |14474 |last |$ |
-ROW |14785 |27517 |14476 |avg |$,5m |
-ROW |14786 |27517 |14476 |max |$,5m |
-ROW |14787 |27517 |14477 |avg |$,5m |
-ROW |14788 |27517 |14477 |max |$,5m |
-ROW |14789 |27517 |14478 |avg |$,5m |
-ROW |14790 |27517 |14478 |min |$,5m |
-ROW |14806 |27532 |14486 |max |$,#3 |
-ROW |14807 |27533 |14487 |min |$,5m |
-ROW |14808 |27534 |14488 |avg |$,5m |
-ROW |14812 |27545 |14492 |last |$,#1 |
-ROW |14813 |27545 |14492 |last |$ |
-ROW |14814 |27544 |14493 |last |$,#1 |
-ROW |14815 |27544 |14493 |last |$ |
-ROW |14817 |27553 |14495 |avg |$,5m |
-ROW |14818 |27553 |14495 |max |$,5m |
-ROW |14819 |27553 |14496 |avg |$,5m |
-ROW |14820 |27553 |14496 |max |$,5m |
-ROW |14821 |27553 |14497 |avg |$,5m |
-ROW |14822 |27553 |14497 |min |$,5m |
-ROW |14838 |27568 |14505 |max |$,#3 |
-ROW |14839 |27569 |14506 |min |$,5m |
-ROW |14840 |27570 |14507 |avg |$,5m |
-ROW |14844 |27584 |14511 |avg |$,5m |
-ROW |14845 |27584 |14511 |max |$,5m |
-ROW |14849 |27584 |14513 |avg |$,5m |
-ROW |14850 |27584 |14513 |min |$,5m |
-ROW |14851 |27582 |14514 |last |$,#1 |
-ROW |14852 |27582 |14514 |last |$ |
-ROW |14853 |27579 |14515 |last |$,#1 |
-ROW |14854 |27579 |14515 |last |$ |
-ROW |14889 |27631 |14534 |max |$,#3 |
-ROW |14890 |27632 |14535 |min |$,5m |
-ROW |14891 |27633 |14536 |avg |$,5m |
-ROW |14907 |27654 |14544 |max |$,#3 |
-ROW |14908 |27655 |14545 |min |$,5m |
-ROW |14909 |27656 |14546 |avg |$,5m |
-ROW |14914 |27672 |14551 |avg |$,5m |
-ROW |14915 |27672 |14551 |max |$,5m |
-ROW |14916 |27672 |14552 |avg |$,5m |
-ROW |14917 |27672 |14552 |max |$,5m |
-ROW |14918 |27672 |14553 |avg |$,5m |
-ROW |14919 |27672 |14553 |min |$,5m |
-ROW |14922 |27678 |14556 |last |$,#1 |
-ROW |14923 |27678 |14556 |last |$ |
-ROW |14924 |27677 |14557 |last |$,#1 |
-ROW |14925 |27677 |14557 |last |$ |
-ROW |14972 |27734 |14582 |max |$,#3 |
-ROW |14973 |27735 |14583 |min |$,5m |
-ROW |14974 |27736 |14584 |avg |$,5m |
-ROW |14979 |27751 |14589 |avg |$,5m |
-ROW |14980 |27751 |14589 |max |$,5m |
-ROW |14981 |27751 |14590 |avg |$,5m |
-ROW |14982 |27751 |14590 |max |$,5m |
-ROW |14983 |27751 |14591 |avg |$,5m |
-ROW |14984 |27751 |14591 |min |$,5m |
-ROW |14985 |27750 |14592 |last |$,#1 |
-ROW |14986 |27750 |14592 |last |$ |
-ROW |15000 |27766 |14598 |max |$,#3 |
-ROW |15001 |27767 |14599 |min |$,5m |
-ROW |15002 |27768 |14600 |avg |$,5m |
-ROW |15005 |27777 |14603 |last |$,#1 |
-ROW |15006 |27777 |14603 |last |$ |
-ROW |15013 |27784 |14606 |avg |$,5m |
-ROW |15014 |27784 |14606 |min |$,5m |
-ROW |15015 |27785 |14607 |last |$,#1 |
-ROW |15016 |27785 |14607 |last |$ |
-ROW |15032 |27800 |14615 |max |$,#3 |
-ROW |15033 |27801 |14616 |min |$,5m |
-ROW |15034 |27802 |14617 |avg |$,5m |
-ROW |15038 |27813 |14621 |last |$,#1 |
-ROW |15039 |27813 |14621 |last |$ |
-ROW |15042 |27821 |14624 |avg |$,5m |
-ROW |15043 |27821 |14624 |max |$,5m |
-ROW |15044 |27821 |14625 |avg |$,5m |
-ROW |15045 |27821 |14625 |max |$,5m |
-ROW |15046 |27821 |14626 |avg |$,5m |
-ROW |15047 |27821 |14626 |min |$,5m |
-ROW |15094 |27882 |14652 |max |$,#3 |
-ROW |15095 |27883 |14653 |min |$,5m |
-ROW |15096 |27884 |14654 |avg |$,5m |
-ROW |15106 |27894 |14661 |last |$,#1 |
-ROW |15107 |27894 |14661 |last |$ |
-ROW |15108 |27895 |14662 |last |$,#1 |
-ROW |15109 |27895 |14662 |last |$ |
-ROW |15111 |27905 |14664 |avg |$,5m |
-ROW |15112 |27905 |14664 |max |$,5m |
-ROW |15113 |27905 |14665 |avg |$,5m |
-ROW |15114 |27905 |14665 |max |$,5m |
-ROW |15115 |27905 |14666 |avg |$,5m |
-ROW |15116 |27905 |14666 |min |$,5m |
-ROW |15131 |27919 |14673 |max |$,#3 |
-ROW |15132 |27920 |14674 |min |$,5m |
-ROW |15133 |27921 |14675 |avg |$,5m |
-ROW |15138 |27931 |14680 |last |$,#1 |
-ROW |15139 |27931 |14680 |last |$ |
-ROW |15146 |27941 |14683 |avg |$,5m |
-ROW |15147 |27941 |14683 |min |$,5m |
-ROW |15163 |27956 |14691 |max |$,#3 |
-ROW |15164 |27957 |14692 |min |$,5m |
-ROW |15165 |27958 |14693 |avg |$,5m |
-ROW |15170 |27970 |14698 |last |$,#1 |
-ROW |15171 |27970 |14698 |last |$ |
-ROW |15172 |27967 |14699 |last |$,#1 |
-ROW |15173 |27967 |14699 |last |$ |
-ROW |15186 |27986 |14704 |max |$,#3 |
-ROW |15187 |27987 |14705 |min |$,5m |
-ROW |15188 |27988 |14706 |avg |$,5m |
-ROW |15191 |27999 |14709 |last |$,#1 |
-ROW |15192 |27999 |14709 |last |$ |
-ROW |15193 |27998 |14710 |last |$,#1 |
-ROW |15194 |27998 |14710 |last |$ |
-ROW |15209 |28015 |14717 |max |$,#3 |
-ROW |15210 |28016 |14718 |min |$,5m |
-ROW |15211 |28017 |14719 |avg |$,5m |
-ROW |15216 |28027 |14724 |last |$,#1 |
-ROW |15217 |28027 |14724 |last |$ |
-ROW |15678 |28130 |14906 |max |$,#3 |
-ROW |15679 |28131 |14907 |min |$,5m |
-ROW |15680 |28132 |14908 |avg |$,5m |
-ROW |15684 |28142 |14912 |last |$,#1 |
-ROW |15685 |28142 |14912 |last |$ |
-ROW |15686 |28141 |14913 |last |$,#1 |
-ROW |15687 |28141 |14913 |last |$ |
-ROW |15688 |28150 |14914 |avg |$,5m |
-ROW |15689 |28150 |14914 |max |$,5m |
-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 |15726 |28204 |14937 |last |$,#1 |
-ROW |15727 |28204 |14937 |last |$ |
-ROW |15731 |27032 |14941 |last |$ |
-ROW |15732 |27191 |14942 |last |$ |
-ROW |15733 |27332 |14943 |last |$ |
-ROW |15734 |27461 |14944 |last |$ |
-ROW |15735 |27531 |14945 |last |$ |
-ROW |15736 |27567 |14946 |last |$ |
-ROW |15737 |27630 |14947 |last |$ |
-ROW |15738 |27653 |14948 |last |$ |
-ROW |15739 |27733 |14949 |last |$ |
-ROW |15740 |27799 |14950 |last |$ |
-ROW |15741 |27955 |14951 |last |$ |
-ROW |15743 |28129 |14953 |last |$ |
-ROW |16445 |28210 |15208 |last |$,#1 |
-ROW |16446 |28210 |15208 |last |$ |
-ROW |16447 |28208 |15209 |last |$,#1 |
-ROW |16448 |28208 |15209 |last |$ |
-ROW |16472 |28233 |15220 |max |$,#3 |
-ROW |16473 |28234 |15221 |min |$,5m |
-ROW |16474 |28235 |15222 |avg |$,5m |
-ROW |16818 |27213 |15330 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16819 |27479 |15331 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16820 |27479 |15332 |count |$,#1,"ne","{$PSU_OK_STATUS}" |
-ROW |16821 |27480 |15333 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16822 |27480 |15334 |count |$,#1,"ne","{$FAN_OK_STATUS}" |
-ROW |16829 |27786 |15337 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16830 |27786 |15338 |count |$,#1,"eq","{$PSU_WARN_STATUS}" |
-ROW |16831 |27787 |15339 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16832 |27554 |15340 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16833 |27555 |15341 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16840 |27422 |15344 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"critical\"}" |
-ROW |16841 |27422 |15344 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"shutdown\"}" |
-ROW |16842 |27422 |15345 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"warning\"}" |
-ROW |16843 |27422 |15345 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16844 |27423 |15346 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"critical\"}" |
-ROW |16845 |27423 |15346 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"shutdown\"}" |
-ROW |16846 |27423 |15347 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"warning\"}" |
-ROW |16847 |27423 |15347 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16866 |27431 |15354 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"critical\"}" |
-ROW |16867 |27431 |15354 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"shutdown\"}" |
-ROW |16868 |27448 |15355 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"critical\"}" |
-ROW |16869 |27448 |15355 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"shutdown\"}" |
-ROW |16870 |28216 |15356 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"critical\"}" |
-ROW |16871 |28216 |15356 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"shutdown\"}" |
-ROW |16872 |27431 |15357 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"warning\"}" |
-ROW |16873 |27431 |15357 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16874 |27448 |15358 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"warning\"}" |
-ROW |16875 |27448 |15358 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16876 |28216 |15359 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"warning\"}" |
-ROW |16877 |28216 |15359 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16878 |27432 |15360 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"critical\"}" |
-ROW |16879 |27432 |15360 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"shutdown\"}" |
-ROW |16880 |27449 |15361 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"critical\"}" |
-ROW |16881 |27449 |15361 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"shutdown\"}" |
-ROW |16882 |28215 |15362 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"critical\"}" |
-ROW |16883 |28215 |15362 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"shutdown\"}" |
-ROW |16884 |27432 |15363 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"warning\"}" |
-ROW |16885 |27432 |15363 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16886 |27449 |15364 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"warning\"}" |
-ROW |16887 |27449 |15364 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16888 |28215 |15365 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"warning\"}" |
-ROW |16889 |28215 |15365 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"notFunctioning\"}" |
-ROW |16890 |27518 |15366 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16891 |27519 |15367 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16895 |27593 |15369 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16896 |27595 |15370 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16897 |27673 |15371 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"fanError\"}" |
-ROW |16898 |27673 |15371 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"hardwareFaulty\"}" |
-ROW |16899 |27674 |15372 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"psuError\"}" |
-ROW |16900 |27674 |15372 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"rpsError\"}" |
-ROW |16901 |27674 |15372 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"hardwareFaulty\"}" |
-ROW |16902 |28154 |15373 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"bad\"}" |
-ROW |16903 |28154 |15374 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"warning\"}" |
-ROW |16904 |28155 |15375 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"bad\"}" |
-ROW |16905 |28155 |15376 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"warning\"}" |
-ROW |16906 |27822 |15377 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16907 |27823 |15378 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16908 |27312 |15379 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16909 |27312 |15380 |count |$,#1,"ne","{$PSU_OK_STATUS}" |
-ROW |16910 |27313 |15381 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16911 |27313 |15382 |count |$,#1,"ne","{$FAN_OK_STATUS}" |
-ROW |16912 |27316 |15383 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16913 |27316 |15384 |count |$,#1,"ne","{$PSU_OK_STATUS}" |
-ROW |16914 |27317 |15385 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16915 |27317 |15386 |count |$,#1,"ne","{$FAN_OK_STATUS}" |
-ROW |16924 |27248 |15391 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |16925 |27248 |15392 |count |$,#1,"ne","{$PSU_OK_STATUS}" |
-ROW |16926 |27250 |15393 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16927 |27250 |15394 |count |$,#1,"ne","{$FAN_OK_STATUS}" |
-ROW |16928 |27755 |15395 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |16935 |27942 |15398 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"failed\"}" |
-ROW |16936 |27943 |15399 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"failed\"}" |
-ROW |17243 |28013 |15493 |last |$ |
-ROW |17244 |28013 |15493 |last |$,#1 |
-ROW |17657 |28251 |15640 |max |$,10m |
-ROW |17658 |28250 |15641 |avg |$,10m |
-ROW |17692 |27101 |15671 |change |$ |
-ROW |17693 |27101 |15671 |last |$ |
-ROW |17694 |27100 |15671 |last |$ |
-ROW |17695 |27107 |15671 |last |$ |
-ROW |17696 |27101 |15671 |last |$,#2 |
-ROW |17697 |27187 |15672 |change |$ |
-ROW |17698 |27187 |15672 |last |$ |
-ROW |17699 |27189 |15672 |last |$ |
-ROW |17700 |27188 |15672 |last |$ |
-ROW |17701 |27187 |15672 |last |$,#2 |
-ROW |17702 |27222 |15673 |change |$ |
-ROW |17703 |27222 |15673 |last |$ |
-ROW |17704 |27224 |15673 |last |$ |
-ROW |17705 |27223 |15673 |last |$ |
-ROW |17706 |27222 |15673 |last |$,#2 |
-ROW |17707 |27258 |15674 |change |$ |
-ROW |17708 |27258 |15674 |last |$ |
-ROW |17709 |27260 |15674 |last |$ |
-ROW |17710 |27259 |15674 |last |$ |
-ROW |17711 |27258 |15674 |last |$,#2 |
-ROW |17712 |27279 |15675 |change |$ |
-ROW |17713 |27279 |15675 |last |$ |
-ROW |17714 |27281 |15675 |last |$ |
-ROW |17715 |27280 |15675 |last |$ |
-ROW |17716 |27279 |15675 |last |$,#2 |
-ROW |17717 |27328 |15676 |change |$ |
-ROW |17718 |27328 |15676 |last |$ |
-ROW |17719 |27330 |15676 |last |$ |
-ROW |17720 |27329 |15676 |last |$ |
-ROW |17721 |27328 |15676 |last |$,#2 |
-ROW |17722 |27457 |15677 |change |$ |
-ROW |17723 |27457 |15677 |last |$ |
-ROW |17724 |27459 |15677 |last |$ |
-ROW |17725 |27458 |15677 |last |$ |
-ROW |17726 |27457 |15677 |last |$,#2 |
-ROW |17727 |27493 |15678 |change |$ |
-ROW |17728 |27493 |15678 |last |$ |
-ROW |17729 |27495 |15678 |last |$ |
-ROW |17730 |27494 |15678 |last |$ |
-ROW |17731 |27493 |15678 |last |$,#2 |
-ROW |17732 |27527 |15679 |change |$ |
-ROW |17733 |27527 |15679 |last |$ |
-ROW |17734 |27529 |15679 |last |$ |
-ROW |17735 |27528 |15679 |last |$ |
-ROW |17736 |27527 |15679 |last |$,#2 |
-ROW |17737 |27563 |15680 |change |$ |
-ROW |17738 |27563 |15680 |last |$ |
-ROW |17739 |27565 |15680 |last |$ |
-ROW |17740 |27564 |15680 |last |$ |
-ROW |17741 |27563 |15680 |last |$,#2 |
-ROW |17742 |27649 |15681 |change |$ |
-ROW |17743 |27649 |15681 |last |$ |
-ROW |17744 |27651 |15681 |last |$ |
-ROW |17745 |27650 |15681 |last |$ |
-ROW |17746 |27649 |15681 |last |$,#2 |
-ROW |17747 |27729 |15682 |change |$ |
-ROW |17748 |27729 |15682 |last |$ |
-ROW |17749 |27731 |15682 |last |$ |
-ROW |17750 |27730 |15682 |last |$ |
-ROW |17751 |27729 |15682 |last |$,#2 |
-ROW |17752 |27763 |15683 |change |$ |
-ROW |17753 |27763 |15683 |last |$ |
-ROW |17754 |27765 |15683 |last |$ |
-ROW |17755 |27764 |15683 |last |$ |
-ROW |17756 |27763 |15683 |last |$,#2 |
-ROW |17757 |27795 |15684 |change |$ |
-ROW |17758 |27795 |15684 |last |$ |
-ROW |17759 |27797 |15684 |last |$ |
-ROW |17760 |27796 |15684 |last |$ |
-ROW |17761 |27795 |15684 |last |$,#2 |
-ROW |17762 |27879 |15685 |change |$ |
-ROW |17763 |27879 |15685 |last |$ |
-ROW |17764 |27881 |15685 |last |$ |
-ROW |17765 |27880 |15685 |last |$ |
-ROW |17766 |27879 |15685 |last |$,#2 |
-ROW |17767 |27916 |15686 |change |$ |
-ROW |17768 |27916 |15686 |last |$ |
-ROW |17769 |27918 |15686 |last |$ |
-ROW |17770 |27917 |15686 |last |$ |
-ROW |17771 |27916 |15686 |last |$,#2 |
-ROW |17772 |27951 |15687 |change |$ |
-ROW |17773 |27951 |15687 |last |$ |
-ROW |17774 |27953 |15687 |last |$ |
-ROW |17775 |27952 |15687 |last |$ |
-ROW |17776 |27951 |15687 |last |$,#2 |
-ROW |17782 |28125 |15689 |change |$ |
-ROW |17783 |28125 |15689 |last |$ |
-ROW |17784 |28127 |15689 |last |$ |
-ROW |17785 |28126 |15689 |last |$ |
-ROW |17786 |28125 |15689 |last |$,#2 |
-ROW |17792 |28230 |15691 |change |$ |
-ROW |17793 |28230 |15691 |last |$ |
-ROW |17794 |28232 |15691 |last |$ |
-ROW |17795 |28231 |15691 |last |$ |
-ROW |17796 |28230 |15691 |last |$,#2 |
-ROW |17807 |28012 |15694 |change |$ |
-ROW |17808 |28012 |15694 |last |$ |
-ROW |17809 |28014 |15694 |last |$ |
-ROW |17810 |28013 |15694 |last |$ |
-ROW |17811 |28012 |15694 |last |$,#2 |
-ROW |17812 |27081 |15695 |change |$ |
-ROW |17813 |27081 |15695 |last |$ |
-ROW |17814 |27080 |15695 |last |$ |
-ROW |17815 |27087 |15695 |last |$ |
-ROW |17816 |27081 |15695 |last |$,#2 |
-ROW |17817 |27626 |15696 |change |$ |
-ROW |17818 |27626 |15696 |last |$ |
-ROW |17819 |27628 |15696 |last |$ |
-ROW |17820 |27627 |15696 |last |$ |
-ROW |17821 |27626 |15696 |last |$,#2 |
-ROW |17822 |27983 |15697 |change |$ |
-ROW |17823 |27983 |15697 |last |$ |
-ROW |17824 |27985 |15697 |last |$ |
-ROW |17825 |27984 |15697 |last |$ |
-ROW |17826 |27983 |15697 |last |$,#2 |
-ROW |17827 |27121 |15698 |change |$ |
-ROW |17828 |27121 |15698 |last |$ |
-ROW |17829 |27120 |15698 |last |$ |
-ROW |17830 |27127 |15698 |last |$ |
-ROW |17831 |27121 |15698 |last |$,#2 |
-ROW |17837 |28281 |15700 |last |$ |
-ROW |17838 |28282 |15701 |max |$,#3 |
-ROW |17839 |28283 |15702 |min |$,5m |
-ROW |17840 |28284 |15703 |avg |$,5m |
-ROW |17848 |28300 |15708 |change |$ |
-ROW |17849 |28300 |15708 |last |$ |
-ROW |17850 |28302 |15708 |last |$ |
-ROW |17851 |28301 |15708 |last |$ |
-ROW |17852 |28300 |15708 |last |$,#2 |
-ROW |17866 |28326 |15717 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |17867 |28328 |15718 |last |$,#1 |
-ROW |17868 |28328 |15718 |last |$ |
-ROW |17869 |28329 |15719 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |17870 |27238 |15720 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS}" |
-ROW |17871 |27238 |15721 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"offline\"}" |
-ROW |17872 |27238 |15721 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"testing\"}" |
-ROW |17873 |27814 |15722 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS}" |
-ROW |17874 |28330 |15723 |max |$,#3 |
-ROW |17875 |28331 |15724 |min |$,5m |
-ROW |17876 |28332 |15725 |avg |$,5m |
-ROW |17879 |28341 |15728 |count |$,#1,"eq","{$HEALTH_DISASTER_STATUS}" |
-ROW |17880 |28341 |15729 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS}" |
-ROW |17881 |28341 |15730 |count |$,#1,"eq","{$HEALTH_WARN_STATUS}" |
-ROW |17882 |28344 |15731 |last |$,#1 |
-ROW |17883 |28344 |15731 |last |$ |
-ROW |17884 |28345 |15732 |last |$,#1 |
-ROW |17885 |28345 |15732 |last |$ |
-ROW |17892 |28354 |15735 |avg |$,5m |
-ROW |17893 |28354 |15735 |min |$,5m |
-ROW |17900 |28356 |15738 |avg |$,5m |
-ROW |17901 |28356 |15738 |min |$,5m |
-ROW |17902 |28358 |15739 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"critical\"}" |
-ROW |17903 |28358 |15739 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"nonRecoverable\"}" |
-ROW |17904 |28358 |15740 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"nonCritical\"}" |
-ROW |17905 |28359 |15741 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"criticalUpper\"}" |
-ROW |17906 |28359 |15741 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"nonRecoverableUpper\"}" |
-ROW |17907 |28359 |15741 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"criticalLower\"}" |
-ROW |17908 |28359 |15741 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"nonRecoverableLower\"}" |
-ROW |17909 |28359 |15741 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"failed\"}" |
-ROW |17910 |28359 |15742 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"nonCriticalUpper\"}" |
-ROW |17911 |28359 |15742 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"nonCriticalLower\"}" |
-ROW |17912 |28361 |15743 |count |$,#1,"eq","{$DISK_FAIL_STATUS:\"critical\"}" |
-ROW |17913 |28361 |15743 |count |$,#1,"eq","{$DISK_FAIL_STATUS:\"nonRecoverable\"}" |
-ROW |17914 |28361 |15744 |count |$,#1,"eq","{$DISK_WARN_STATUS:\"nonCritical\"}" |
-ROW |17915 |28362 |15745 |last |$,#1 |
-ROW |17916 |28362 |15745 |last |$ |
-ROW |17917 |28363 |15746 |count |$,#1,"eq","{$DISK_SMART_FAIL_STATUS}" |
-ROW |17918 |28373 |15747 |count |$,#1,"eq","{$VDISK_CRIT_STATUS:\"failed\"}" |
-ROW |17919 |28373 |15748 |count |$,#1,"eq","{$VDISK_WARN_STATUS:\"degraded\"}" |
-ROW |17920 |28374 |15749 |count |$,#1,"eq","{$DISK_ARRAY_FAIL_STATUS:\"nonRecoverable\"}" |
-ROW |17921 |28374 |15750 |count |$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\"critical\"}" |
-ROW |17922 |28374 |15751 |count |$,#1,"eq","{$DISK_ARRAY_WARN_STATUS:\"nonCritical\"}" |
-ROW |17923 |28376 |15752 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS}" |
-ROW |17924 |28376 |15753 |count |$,#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}" |
-ROW |17925 |28376 |15754 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}" |
-ROW |17926 |28377 |15755 |max |$,#3 |
-ROW |17927 |28378 |15756 |min |$,5m |
-ROW |17928 |28379 |15757 |avg |$,5m |
-ROW |17933 |28391 |15762 |last |$,#1 |
-ROW |17934 |28391 |15762 |last |$ |
-ROW |17971 |28411 |15781 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |17972 |28411 |15782 |count |$,#1,"eq","{$PSU_WARN_STATUS}" |
-ROW |17973 |28412 |15783 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |17974 |28412 |15784 |count |$,#1,"eq","{$FAN_WARN_STATUS}" |
-ROW |17975 |28413 |15785 |count |$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS}" |
-ROW |17976 |28413 |15786 |count |$,#1,"eq","{$DISK_ARRAY_WARN_STATUS}" |
-ROW |17977 |28415 |15787 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_CRIT_STATUS:\"cacheModCriticalFailure\"}" |
-ROW |17983 |28416 |15790 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\"failed\"}" |
-ROW |17984 |28416 |15790 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:\"capacitorFailed\"}" |
-ROW |17987 |28417 |15792 |count |$,#1,"eq","{$DISK_FAIL_STATUS}" |
-ROW |17988 |28417 |15793 |count |$,#1,"eq","{$DISK_WARN_STATUS}" |
-ROW |17989 |28418 |15794 |count |$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\"replaceDrive\"}" |
-ROW |17990 |28418 |15794 |count |$,#1,"eq","{$DISK_SMART_FAIL_STATUS:\"replaceDriveSSDWearOut\"}" |
-ROW |17991 |28419 |15795 |last |$,#1 |
-ROW |17992 |28419 |15795 |last |$ |
-ROW |17993 |28423 |15796 |count |$,#1,"eq","{$VDISK_CRIT_STATUS}" |
-ROW |17994 |28423 |15797 |count |$,#1,"ne","{$VDISK_OK_STATUS}" |
-ROW |18026 |28454 |15819 |max |$,#3 |
-ROW |18027 |28455 |15820 |min |$,5m |
-ROW |18028 |28456 |15821 |avg |$,5m |
-ROW |18031 |28465 |15824 |count |$,#1,"eq","{$HEALTH_DISASTER_STATUS}" |
-ROW |18032 |28465 |15825 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS}" |
-ROW |18033 |28465 |15826 |count |$,#1,"eq","{$HEALTH_WARN_STATUS}" |
-ROW |18034 |28467 |15827 |last |$,#1 |
-ROW |18035 |28467 |15827 |last |$ |
-ROW |18036 |28474 |15828 |avg |$,5m |
-ROW |18037 |28474 |15828 |max |$,5m |
-ROW |18038 |28474 |15829 |avg |$,5m |
-ROW |18039 |28474 |15829 |max |$,5m |
-ROW |18040 |28474 |15830 |avg |$,5m |
-ROW |18041 |28474 |15830 |min |$,5m |
-ROW |18042 |28475 |15831 |avg |$,5m |
-ROW |18043 |28475 |15831 |max |$,5m |
-ROW |18044 |28475 |15832 |avg |$,5m |
-ROW |18045 |28475 |15832 |max |$,5m |
-ROW |18046 |28475 |15833 |avg |$,5m |
-ROW |18047 |28475 |15833 |min |$,5m |
-ROW |18048 |28476 |15834 |avg |$,5m |
-ROW |18049 |28476 |15834 |max |$,5m |
-ROW |18050 |28476 |15835 |avg |$,5m |
-ROW |18051 |28476 |15835 |max |$,5m |
-ROW |18052 |28476 |15836 |avg |$,5m |
-ROW |18053 |28476 |15836 |min |$,5m |
-ROW |18054 |28477 |15837 |count |$,#1,"ne","{$PSU_OK_STATUS}" |
-ROW |18055 |28478 |15838 |count |$,#1,"ne","{$FAN_OK_STATUS}" |
-ROW |18056 |28480 |15839 |count |$,#1,"ne","{$DISK_OK_STATUS}" |
-ROW |18057 |28482 |15840 |max |$,#3 |
-ROW |18058 |28483 |15841 |min |$,5m |
-ROW |18059 |28484 |15842 |avg |$,5m |
-ROW |18062 |28495 |15845 |avg |$,5m |
-ROW |18063 |28495 |15845 |max |$,5m |
-ROW |18064 |28495 |15846 |avg |$,5m |
-ROW |18065 |28495 |15846 |max |$,5m |
-ROW |18066 |28495 |15847 |avg |$,5m |
-ROW |18067 |28495 |15847 |min |$,5m |
-ROW |18076 |28535 |15853 |avg |$,10m |
-ROW |18077 |28536 |15854 |avg |$,10m |
-ROW |18078 |28537 |15855 |avg |$,10m |
-ROW |18079 |28538 |15856 |avg |$,10m |
-ROW |18080 |28543 |15857 |max |$,10m |
-ROW |18081 |28549 |15858 |max |$,10m |
-ROW |18082 |28542 |15859 |max |$,10m |
-ROW |18083 |28551 |15860 |max |$,10m |
-ROW |18084 |28548 |15861 |max |$,10m |
-ROW |18085 |28544 |15862 |max |$,10m |
-ROW |18086 |28541 |15863 |min |$,10m |
-ROW |18087 |28561 |15864 |avg |$,10m |
-ROW |18088 |28563 |15865 |avg |$,10m |
-ROW |18089 |28564 |15866 |avg |$,10m |
-ROW |18090 |28565 |15867 |avg |$,10m |
-ROW |18091 |28566 |15868 |avg |$,10m |
-ROW |18092 |28567 |15869 |avg |$,10m |
-ROW |18093 |28568 |15870 |avg |$,30m |
-ROW |18094 |28569 |15871 |avg |$,10m |
-ROW |18095 |28570 |15872 |avg |$,10m |
-ROW |18096 |28562 |15873 |avg |$,10m |
-ROW |18097 |28571 |15874 |avg |$,10m |
-ROW |18098 |28573 |15875 |avg |$,10m |
-ROW |18099 |28574 |15876 |avg |$,10m |
-ROW |18100 |28575 |15877 |avg |$,10m |
-ROW |18101 |28576 |15878 |avg |$,10m |
-ROW |18102 |28577 |15879 |avg |$,10m |
-ROW |18103 |28578 |15880 |avg |$,10m |
-ROW |18104 |28579 |15881 |avg |$,10m |
-ROW |18105 |28580 |15882 |avg |$,10m |
-ROW |18106 |28572 |15883 |avg |$,10m |
-ROW |18107 |28581 |15884 |avg |$,10m |
-ROW |18108 |28552 |15885 |avg |$,10m |
-ROW |18109 |28547 |15886 |last |$ |
-ROW |18110 |28559 |15887 |avg |$,10m |
-ROW |18111 |28582 |15888 |avg |$,10m |
-ROW |18112 |28583 |15889 |avg |$,10m |
-ROW |18113 |28599 |15890 |max |$,10m |
-ROW |18114 |28597 |15891 |max |$,10m |
-ROW |18115 |28596 |15892 |max |$,10m |
-ROW |18116 |28598 |15893 |max |$,10m |
-ROW |18117 |28587 |15894 |min |$,10m |
-ROW |18118 |28600 |15895 |avg |$,10m |
-ROW |18119 |28601 |15896 |avg |$,10m |
-ROW |18120 |28615 |15897 |avg |$,10m |
-ROW |18121 |28614 |15898 |avg |$,10m |
-ROW |18122 |28613 |15899 |avg |$,10m |
-ROW |18123 |28612 |15900 |avg |$,30m |
-ROW |18124 |28611 |15901 |avg |$,10m |
-ROW |18125 |28610 |15902 |avg |$,10m |
-ROW |18126 |28609 |15903 |avg |$,10m |
-ROW |18127 |28608 |15904 |avg |$,10m |
-ROW |18128 |28607 |15905 |avg |$,10m |
-ROW |18129 |28606 |15906 |avg |$,10m |
-ROW |18130 |28605 |15907 |avg |$,10m |
-ROW |18131 |28604 |15908 |avg |$,10m |
-ROW |18132 |28603 |15909 |avg |$,10m |
-ROW |18133 |28602 |15910 |avg |$,10m |
-ROW |18134 |28616 |15911 |avg |$,10m |
-ROW |18135 |28588 |15912 |avg |$,10m |
-ROW |18136 |28618 |15913 |avg |$,10m |
-ROW |18137 |28619 |15914 |avg |$,10m |
-ROW |18169 |28743 |15943 |last |$ |
-ROW |18170 |28748 |15944 |min |$,5m |
-ROW |18174 |28746 |15947 |last |$ |
-ROW |18175 |28775 |15948 |nodata |$,30m |
-ROW |18176 |28776 |15949 |last |$ |
-ROW |18177 |28777 |15950 |min |$,5m |
-ROW |18178 |28791 |15951 |last |$ |
-ROW |18179 |28790 |15952 |last |$,#1 |
-ROW |18180 |28790 |15952 |last |$ |
-ROW |18183 |28810 |15954 |last |$ |
-ROW |18184 |28805 |15955 |min |$,5m |
-ROW |18185 |28816 |15956 |min |$,5m |
-ROW |18186 |28809 |15957 |last |$ |
-ROW |18187 |28820 |15958 |last |$,#1 |
-ROW |18188 |28820 |15958 |last |$ |
-ROW |18191 |28822 |15960 |last |$ |
-ROW |18192 |28823 |15961 |min |$,5m |
-ROW |18193 |28827 |15962 |min |$,5m |
-ROW |18194 |28833 |15963 |last |$,#1 |
-ROW |18195 |28833 |15963 |last |$ |
-ROW |18223 |28956 |15989 |last |$ |
-ROW |18224 |28957 |15990 |max |$,#3 |
-ROW |18225 |28958 |15991 |min |$,5m |
-ROW |18226 |28959 |15992 |avg |$,5m |
-ROW |18234 |28975 |15997 |change |$ |
-ROW |18235 |28975 |15997 |last |$ |
-ROW |18236 |28977 |15997 |last |$ |
-ROW |18237 |28976 |15997 |last |$ |
-ROW |18238 |28975 |15997 |last |$,#2 |
-ROW |18255 |29048 |16007 |min |$,5m |
-ROW |18256 |29029 |16008 |last |$ |
-ROW |18257 |29028 |16008 |last |$ |
-ROW |18258 |29027 |16008 |last |$ |
-ROW |18259 |29029 |16008 |timeleft |$,1h,100 |
-ROW |18260 |29029 |16009 |last |$ |
-ROW |18261 |29028 |16009 |last |$ |
-ROW |18262 |29027 |16009 |last |$ |
-ROW |18263 |29029 |16009 |timeleft |$,1h,100 |
-ROW |18264 |29030 |16010 |min |$,5m |
-ROW |18265 |29030 |16011 |min |$,5m |
-ROW |18266 |29049 |16012 |min |$,5m |
-ROW |18267 |29046 |16013 |last |$ |
-ROW |18268 |29045 |16013 |last |$ |
-ROW |18269 |29044 |16013 |last |$ |
-ROW |18270 |29046 |16013 |timeleft |$,1h,100 |
-ROW |18271 |29046 |16014 |last |$ |
-ROW |18272 |29045 |16014 |last |$ |
-ROW |18273 |29044 |16014 |last |$ |
-ROW |18274 |29046 |16014 |timeleft |$,1h,100 |
-ROW |18275 |29047 |16015 |min |$,5m |
-ROW |18276 |29047 |16016 |min |$,5m |
-ROW |18277 |29050 |16017 |max |$,#3 |
-ROW |18278 |29051 |16018 |min |$,5m |
-ROW |18279 |29052 |16019 |avg |$,5m |
-ROW |18291 |29084 |16028 |change |$ |
-ROW |18292 |29084 |16028 |last |$ |
-ROW |18293 |29086 |16028 |last |$ |
-ROW |18294 |29085 |16028 |last |$ |
-ROW |18295 |29084 |16028 |last |$,#2 |
-ROW |18300 |29198 |16031 |min |$,5m |
-ROW |18306 |29110 |16035 |last |$ |
-ROW |18307 |29112 |16036 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18310 |29116 |16038 |last |$ |
-ROW |18311 |29117 |16039 |last |$ |
-ROW |18312 |29118 |16040 |last |$ |
-ROW |18313 |29117 |16040 |last |$ |
-ROW |18314 |29120 |16041 |last |$,#1 |
-ROW |18315 |29121 |16042 |last |$,#1 |
-ROW |18316 |29121 |16042 |last |$ |
-ROW |18321 |29199 |16045 |min |$,5m |
-ROW |18322 |29200 |16046 |min |$,5m |
-ROW |18333 |29147 |16053 |last |$ |
-ROW |18334 |29184 |16054 |last |$ |
-ROW |18335 |29149 |16055 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18336 |29186 |16056 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18341 |29153 |16059 |last |$ |
-ROW |18342 |29190 |16060 |last |$ |
-ROW |18343 |29154 |16061 |last |$ |
-ROW |18344 |29191 |16062 |last |$ |
-ROW |18345 |29155 |16063 |last |$ |
-ROW |18346 |29154 |16063 |last |$ |
-ROW |18347 |29192 |16064 |last |$ |
-ROW |18348 |29191 |16064 |last |$ |
-ROW |18349 |29157 |16065 |last |$,#1 |
-ROW |18350 |29194 |16066 |last |$,#1 |
-ROW |18351 |29158 |16067 |last |$,#1 |
-ROW |18352 |29158 |16067 |last |$ |
-ROW |18353 |29195 |16068 |last |$,#1 |
-ROW |18354 |29195 |16068 |last |$ |
-ROW |18355 |29212 |16069 |last |$ |
-ROW |18356 |29211 |16069 |last |$ |
-ROW |18357 |29210 |16069 |last |$ |
-ROW |18358 |29212 |16069 |timeleft |$,1h,100 |
-ROW |18359 |29212 |16070 |last |$ |
-ROW |18360 |29211 |16070 |last |$ |
-ROW |18361 |29210 |16070 |last |$ |
-ROW |18362 |29212 |16070 |timeleft |$,1h,100 |
-ROW |18363 |29213 |16071 |min |$,5m |
-ROW |18364 |29213 |16072 |min |$,5m |
-ROW |18372 |29223 |16076 |change |$ |
-ROW |18373 |29223 |16076 |last |$ |
-ROW |18374 |29222 |16076 |last |$ |
-ROW |18375 |29223 |16076 |last |$,#2 |
-ROW |18376 |29226 |16077 |last |$ |
-ROW |18377 |29225 |16077 |last |$ |
-ROW |18378 |29224 |16077 |last |$ |
-ROW |18379 |29226 |16077 |timeleft |$,1h,100 |
-ROW |18380 |29240 |16078 |last |$ |
-ROW |18381 |29239 |16078 |last |$ |
-ROW |18382 |29238 |16078 |last |$ |
-ROW |18383 |29240 |16078 |timeleft |$,1h,100 |
-ROW |18384 |29226 |16079 |last |$ |
-ROW |18385 |29225 |16079 |last |$ |
-ROW |18386 |29224 |16079 |last |$ |
-ROW |18387 |29226 |16079 |timeleft |$,1h,100 |
-ROW |18388 |29240 |16080 |last |$ |
-ROW |18389 |29239 |16080 |last |$ |
-ROW |18390 |29238 |16080 |last |$ |
-ROW |18391 |29240 |16080 |timeleft |$,1h,100 |
-ROW |18392 |29227 |16081 |min |$,5m |
-ROW |18393 |29241 |16082 |min |$,5m |
-ROW |18394 |29227 |16083 |min |$,5m |
-ROW |18395 |29241 |16084 |min |$,5m |
-ROW |18410 |29237 |16091 |change |$ |
-ROW |18411 |29237 |16091 |last |$ |
-ROW |18412 |29236 |16091 |last |$ |
-ROW |18413 |29237 |16091 |last |$,#2 |
-ROW |18414 |29251 |16092 |change |$ |
-ROW |18415 |29251 |16092 |last |$ |
-ROW |18416 |29250 |16092 |last |$ |
-ROW |18417 |29251 |16092 |last |$,#2 |
-ROW |18501 |29395 |16138 |nodata |$,30m |
-ROW |18502 |29398 |16139 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18505 |29424 |16141 |last |$ |
-ROW |18506 |29423 |16142 |last |$ |
-ROW |18507 |29424 |16142 |last |$ |
-ROW |18508 |29428 |16143 |last |$,#1 |
-ROW |18509 |29428 |16143 |last |$ |
-ROW |18510 |29421 |16144 |last |$ |
-ROW |18513 |29427 |16146 |min |$,5m |
-ROW |18526 |29442 |16152 |change |$ |
-ROW |18527 |29442 |16152 |last |$ |
-ROW |18528 |29443 |16152 |last |$ |
-ROW |18529 |29444 |16152 |last |$ |
-ROW |18530 |29442 |16152 |last |$,#2 |
-ROW |18531 |29443 |16153 |change |$ |
-ROW |18532 |29443 |16153 |last |$ |
-ROW |18533 |29444 |16153 |last |$ |
-ROW |18534 |29443 |16153 |last |$,#2 |
-ROW |18537 |29433 |16155 |last |$ |
-ROW |18538 |29446 |16155 |last |$ |
-ROW |18539 |29432 |16155 |last |$ |
-ROW |18540 |29433 |16155 |timeleft |$,1h,100 |
-ROW |18541 |29433 |16156 |last |$ |
-ROW |18542 |29446 |16156 |last |$ |
-ROW |18543 |29432 |16156 |last |$ |
-ROW |18544 |29433 |16156 |timeleft |$,1h,100 |
-ROW |18545 |29447 |16157 |min |$,5m |
-ROW |18546 |29447 |16158 |min |$,5m |
-ROW |18548 |29454 |16160 |min |$,5m |
-ROW |18549 |29455 |16161 |min |$,5m |
-ROW |18550 |29457 |16162 |min |$,5m |
-ROW |18555 |29467 |16166 |max |$,5m |
-ROW |18556 |29469 |16167 |min |$,5m |
-ROW |18557 |29472 |16168 |last |$ |
-ROW |18558 |29473 |16169 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18561 |29480 |16171 |min |$,5m |
-ROW |18562 |29481 |16172 |min |$,5m |
-ROW |18563 |29483 |16173 |min |$,5m |
-ROW |18568 |29493 |16177 |max |$,5m |
-ROW |18569 |29495 |16178 |min |$,5m |
-ROW |18570 |29498 |16179 |last |$ |
-ROW |18571 |29499 |16180 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |18574 |29514 |16182 |last |$ |
-ROW |18575 |29513 |16182 |last |$ |
-ROW |18576 |29512 |16182 |last |$ |
-ROW |18577 |29514 |16182 |timeleft |$,1h,100 |
-ROW |18578 |29514 |16183 |last |$ |
-ROW |18579 |29513 |16183 |last |$ |
-ROW |18580 |29512 |16183 |last |$ |
-ROW |18581 |29514 |16183 |timeleft |$,1h,100 |
-ROW |18597 |29523 |16189 |last |$ |
-ROW |18598 |29522 |16189 |last |$ |
-ROW |18599 |29521 |16189 |last |$ |
-ROW |18600 |29523 |16189 |timeleft |$,1h,100 |
-ROW |18601 |29523 |16190 |last |$ |
-ROW |18602 |29522 |16190 |last |$ |
-ROW |18603 |29521 |16190 |last |$ |
-ROW |18604 |29523 |16190 |timeleft |$,1h,100 |
-ROW |18620 |29544 |16196 |max |$,{$AGENT.TIMEOUT} |
-ROW |18621 |29547 |16197 |nodata |$,{$AGENT.NODATA_TIMEOUT} |
-ROW |18622 |29548 |16198 |max |$,{$AGENT.TIMEOUT} |
-ROW |18623 |29557 |16199 |max |$,{$AGENT.TIMEOUT} |
-ROW |18624 |29549 |16200 |max |$,{$AGENT.TIMEOUT} |
-ROW |18625 |29550 |16201 |max |$,{$AGENT.TIMEOUT} |
-ROW |18626 |29551 |16202 |max |$,{$AGENT.TIMEOUT} |
-ROW |18627 |29552 |16203 |max |$,{$AGENT.TIMEOUT} |
-ROW |18628 |29553 |16204 |max |$,{$AGENT.TIMEOUT} |
-ROW |18629 |29554 |16205 |max |$,{$AGENT.TIMEOUT} |
-ROW |18630 |29555 |16206 |max |$,{$AGENT.TIMEOUT} |
-ROW |18711 |29696 |16250 |min |$,5m |
-ROW |18712 |29695 |16251 |max |$,5m |
-ROW |18715 |29692 |16254 |last |$ |
-ROW |18716 |29659 |16255 |last |$ |
-ROW |18717 |29655 |16256 |last |$ |
-ROW |18718 |29660 |16257 |min |$,5m |
-ROW |18719 |29720 |16258 |min |$,5m |
-ROW |18720 |29738 |16259 |nodata |$,30m |
-ROW |18726 |29771 |16264 |min |$,5m |
-ROW |18727 |29775 |16265 |max |$,5m |
-ROW |18730 |29772 |16268 |last |$ |
-ROW |18731 |29742 |16269 |last |$ |
-ROW |18732 |29743 |16270 |min |$,5m |
-ROW |18733 |29803 |16271 |min |$,5m |
-ROW |18734 |29821 |16272 |avg |$,10m |
-ROW |18735 |29822 |16273 |avg |$,10m |
-ROW |18736 |29823 |16274 |avg |$,10m |
-ROW |18742 |29834 |16279 |last |$ |
-ROW |18751 |28025 |16285 |max |$,{$SNMP.TIMEOUT} |
-ROW |18753 |29844 |16287 |last |$ |
-ROW |18756 |27154 |16289 |max |$,{$SNMP.TIMEOUT} |
-ROW |18757 |29849 |16290 |last |$ |
-ROW |18758 |29854 |16291 |last |$ |
-ROW |18759 |29859 |16292 |last |$ |
-ROW |18760 |29864 |16293 |last |$ |
-ROW |18761 |29869 |16294 |last |$ |
-ROW |18762 |29874 |16295 |last |$ |
-ROW |18763 |29879 |16296 |last |$ |
-ROW |18764 |29884 |16297 |last |$ |
-ROW |18765 |29889 |16298 |last |$ |
-ROW |18766 |29894 |16299 |last |$ |
-ROW |18767 |29899 |16300 |last |$ |
-ROW |18768 |29904 |16301 |last |$ |
-ROW |18769 |29909 |16302 |last |$ |
-ROW |18770 |29914 |16303 |last |$ |
-ROW |18771 |29919 |16304 |last |$ |
-ROW |18772 |29924 |16305 |last |$ |
-ROW |18773 |29929 |16306 |last |$ |
-ROW |18774 |29934 |16307 |last |$ |
-ROW |18775 |29939 |16308 |last |$ |
-ROW |18776 |29944 |16309 |last |$ |
-ROW |18778 |29954 |16311 |last |$ |
-ROW |18779 |29959 |16312 |last |$ |
-ROW |18780 |29964 |16313 |last |$ |
-ROW |18781 |29969 |16314 |last |$ |
-ROW |18782 |29974 |16315 |last |$ |
-ROW |18783 |29979 |16316 |last |$ |
-ROW |18784 |29984 |16317 |last |$ |
-ROW |18785 |29989 |16318 |last |$ |
-ROW |18844 |27202 |16348 |max |$,{$SNMP.TIMEOUT} |
-ROW |18845 |27235 |16349 |max |$,{$SNMP.TIMEOUT} |
-ROW |18846 |27271 |16350 |max |$,{$SNMP.TIMEOUT} |
-ROW |18847 |27292 |16351 |max |$,{$SNMP.TIMEOUT} |
-ROW |18848 |27343 |16352 |max |$,{$SNMP.TIMEOUT} |
-ROW |18849 |27375 |16353 |max |$,{$SNMP.TIMEOUT} |
-ROW |18850 |27472 |16354 |max |$,{$SNMP.TIMEOUT} |
-ROW |18851 |27506 |16355 |max |$,{$SNMP.TIMEOUT} |
-ROW |18852 |27542 |16356 |max |$,{$SNMP.TIMEOUT} |
-ROW |18853 |27578 |16357 |max |$,{$SNMP.TIMEOUT} |
-ROW |18854 |27641 |16358 |max |$,{$SNMP.TIMEOUT} |
-ROW |18855 |27664 |16359 |max |$,{$SNMP.TIMEOUT} |
-ROW |18856 |27744 |16360 |max |$,{$SNMP.TIMEOUT} |
-ROW |18857 |27776 |16361 |max |$,{$SNMP.TIMEOUT} |
-ROW |18858 |27810 |16362 |max |$,{$SNMP.TIMEOUT} |
-ROW |18859 |27892 |16363 |max |$,{$SNMP.TIMEOUT} |
-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 |18865 |28243 |16369 |max |$,{$SNMP.TIMEOUT} |
-ROW |18866 |28292 |16370 |max |$,{$SNMP.TIMEOUT} |
-ROW |18867 |28340 |16371 |max |$,{$SNMP.TIMEOUT} |
-ROW |18868 |28387 |16372 |max |$,{$SNMP.TIMEOUT} |
-ROW |18869 |28464 |16373 |max |$,{$SNMP.TIMEOUT} |
-ROW |18870 |28492 |16374 |max |$,{$SNMP.TIMEOUT} |
-ROW |18871 |28967 |16375 |max |$,{$SNMP.TIMEOUT} |
-ROW |18872 |29060 |16376 |max |$,{$SNMP.TIMEOUT} |
-ROW |19090 |29994 |16439 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS}" |
-ROW |19091 |29994 |16440 |count |$,#1,"eq","{$HEALTH_WARN_STATUS}" |
-ROW |19093 |29998 |16442 |nodata |$,30m |
-ROW |19094 |29654 |16443 |nodata |$,30m |
-ROW |19096 |30025 |16445 |last |$,#1 |
-ROW |19097 |30025 |16445 |last |$ |
-ROW |19098 |29693 |16446 |last |$ |
-ROW |19099 |29688 |16447 |last |$ |
-ROW |19100 |29741 |16448 |nodata |$,30m |
-ROW |19102 |30045 |16450 |last |$,#1 |
-ROW |19103 |30045 |16450 |last |$ |
-ROW |19104 |29774 |16451 |last |$ |
-ROW |19105 |29773 |16452 |last |$ |
-ROW |19106 |30046 |16453 |max |$,#3 |
-ROW |19107 |30047 |16454 |min |$,5m |
-ROW |19108 |30048 |16455 |avg |$,5m |
-ROW |19111 |30055 |16457 |last |$ |
-ROW |19112 |30056 |16458 |max |$,{$SNMP.TIMEOUT} |
-ROW |19113 |30066 |16459 |avg |$,5m |
-ROW |19114 |30066 |16459 |max |$,5m |
-ROW |19115 |30066 |16460 |avg |$,5m |
-ROW |19116 |30066 |16460 |max |$,5m |
-ROW |19117 |30066 |16461 |avg |$,5m |
-ROW |19118 |30066 |16461 |min |$,5m |
-ROW |19119 |30067 |16462 |avg |$,5m |
-ROW |19120 |30067 |16462 |max |$,5m |
-ROW |19121 |30067 |16463 |avg |$,5m |
-ROW |19122 |30067 |16463 |max |$,5m |
-ROW |19123 |30067 |16464 |avg |$,5m |
-ROW |19124 |30067 |16464 |min |$,5m |
-ROW |19125 |30068 |16465 |avg |$,5m |
-ROW |19126 |30068 |16465 |max |$,5m |
-ROW |19127 |30068 |16466 |avg |$,5m |
-ROW |19128 |30068 |16466 |max |$,5m |
-ROW |19129 |30068 |16467 |avg |$,5m |
-ROW |19130 |30068 |16467 |min |$,5m |
-ROW |19131 |30069 |16468 |avg |$,5m |
-ROW |19132 |30069 |16468 |max |$,5m |
-ROW |19133 |30069 |16469 |avg |$,5m |
-ROW |19134 |30069 |16469 |max |$,5m |
-ROW |19135 |30069 |16470 |avg |$,5m |
-ROW |19136 |30069 |16470 |min |$,5m |
-ROW |19137 |30070 |16471 |avg |$,5m |
-ROW |19138 |30070 |16471 |max |$,5m |
-ROW |19139 |30070 |16472 |avg |$,5m |
-ROW |19140 |30070 |16472 |max |$,5m |
-ROW |19141 |30070 |16473 |avg |$,5m |
-ROW |19142 |30070 |16473 |min |$,5m |
-ROW |19143 |30071 |16474 |count |$,#1,"eq","{$PSU_CRIT_STATUS:\"inoperable\"}" |
-ROW |19144 |30071 |16475 |count |$,#1,"eq","{$PSU_WARN_STATUS:\"degraded\"}" |
-ROW |19145 |30072 |16476 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS:\"computeFailed\"}" |
-ROW |19146 |30072 |16476 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS:\"configFailure\"}" |
-ROW |19147 |30072 |16476 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS:\"unconfigFailure\"}" |
-ROW |19148 |30072 |16476 |count |$,#1,"eq","{$HEALTH_CRIT_STATUS:\"inoperable\"}" |
-ROW |19149 |30072 |16477 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"testFailed\"}" |
-ROW |19150 |30072 |16477 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"thermalProblem\"}" |
-ROW |19151 |30072 |16477 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"powerProblem\"}" |
-ROW |19152 |30072 |16477 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"voltageProblem\"}" |
-ROW |19153 |30072 |16477 |count |$,#1,"eq","{$HEALTH_WARN_STATUS:\"diagnosticsFailed\"}" |
-ROW |19154 |30074 |16478 |last |$,#1 |
-ROW |19155 |30074 |16478 |last |$ |
-ROW |19156 |30075 |16479 |count |$,#1,"eq","{$FAN_CRIT_STATUS:\"inoperable\"}" |
-ROW |19157 |30075 |16480 |count |$,#1,"eq","{$FAN_WARN_STATUS:\"degraded\"}" |
-ROW |19158 |30076 |16481 |count |$,#1,"eq","{$DISK_FAIL_STATUS:\"failed\"}" |
-ROW |19159 |30076 |16482 |count |$,#1,"eq","{$DISK_CRIT_STATUS:\"bad\"}" |
-ROW |19160 |30076 |16482 |count |$,#1,"eq","{$DISK_CRIT_STATUS:\"predictiveFailure\"}" |
-ROW |19161 |30080 |16483 |count |$,#1,"ne","{$VDISK_OK_STATUS:\"equipped\"}" |
-ROW |19162 |30083 |16484 |count |$,#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\"inoperable\"}" |
-ROW |19163 |30083 |16485 |count |$,#1,"eq","{$DISK_ARRAY_WARN_STATUS:\"degraded\"}" |
-ROW |19164 |30083 |16486 |count |$,#1,"ne","{$DISK_ARRAY_OK_STATUS:\"operable\"}" |
-ROW |19165 |30085 |16487 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}" |
-ROW |19166 |30085 |16488 |count |$,#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}" |
-ROW |19171 |27208 |16491 |min |$,5m |
-ROW |19172 |30086 |16492 |last |$,#1 |
-ROW |19173 |30086 |16492 |last |$ |
-ROW |19175 |30091 |16494 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |19176 |30092 |16495 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |19177 |27240 |16496 |min |$,5m |
-ROW |19179 |27294 |16498 |min |$,5m |
-ROW |19181 |27299 |16500 |min |$,5m |
-ROW |19182 |27301 |16501 |min |$,5m |
-ROW |19185 |27315 |16504 |avg |$,5m |
-ROW |19186 |27315 |16504 |max |$,5m |
-ROW |19187 |27315 |16505 |avg |$,5m |
-ROW |19188 |27315 |16505 |max |$,5m |
-ROW |19189 |27315 |16506 |avg |$,5m |
-ROW |19190 |27315 |16506 |min |$,5m |
-ROW |19191 |30097 |16507 |last |$,#1 |
-ROW |19192 |30097 |16507 |last |$ |
-ROW |19193 |27376 |16508 |min |$,5m |
-ROW |19194 |30098 |16509 |last |$,#1 |
-ROW |19195 |30098 |16509 |last |$ |
-ROW |19196 |30099 |16510 |last |$,#1 |
-ROW |19197 |30099 |16510 |last |$ |
-ROW |19198 |30100 |16511 |last |$,#1 |
-ROW |19199 |30100 |16511 |last |$ |
-ROW |19200 |27380 |16512 |min |$,5m |
-ROW |19202 |28246 |16514 |min |$,5m |
-ROW |19203 |27417 |16515 |min |$,5m |
-ROW |19207 |28247 |16519 |min |$,5m |
-ROW |19208 |27427 |16520 |min |$,5m |
-ROW |19209 |27478 |16521 |min |$,5m |
-ROW |19211 |27481 |16523 |last |$,#1 |
-ROW |19212 |27481 |16523 |last |$ |
-ROW |19213 |27511 |16524 |min |$,5m |
-ROW |19214 |30106 |16525 |last |$,#1 |
-ROW |19215 |30106 |16525 |last |$ |
-ROW |19217 |27547 |16527 |min |$,5m |
-ROW |19219 |27586 |16529 |min |$,5m |
-ROW |19220 |30109 |16530 |last |$,#1 |
-ROW |19221 |30109 |16530 |last |$ |
-ROW |19223 |27675 |16532 |last |$,#1 |
-ROW |19224 |27675 |16532 |last |$ |
-ROW |19225 |27671 |16533 |min |$,5m |
-ROW |19227 |28143 |16535 |min |$,5m |
-ROW |19229 |27753 |16537 |min |$,5m |
-ROW |19230 |27749 |16538 |last |$,#1 |
-ROW |19231 |27749 |16538 |last |$ |
-ROW |19233 |30117 |16540 |last |$,#1 |
-ROW |19234 |30117 |16540 |last |$ |
-ROW |19235 |28894 |16541 |min |$,5m |
-ROW |19237 |30119 |16543 |last |$,#1 |
-ROW |19238 |30119 |16543 |last |$ |
-ROW |19240 |27904 |16545 |min |$,5m |
-ROW |19241 |27906 |16546 |last |$ |
-ROW |19242 |27907 |16546 |last |$ |
-ROW |19243 |27908 |16546 |last |$ |
-ROW |19244 |27906 |16546 |timeleft |$,1h,100 |
-ROW |19245 |27906 |16547 |last |$ |
-ROW |19246 |27907 |16547 |last |$ |
-ROW |19247 |27908 |16547 |last |$ |
-ROW |19248 |27906 |16547 |timeleft |$,1h,100 |
-ROW |19249 |27936 |16548 |min |$,5m |
-ROW |19250 |30121 |16549 |last |$,#1 |
-ROW |19251 |30121 |16549 |last |$ |
-ROW |19253 |30124 |16551 |avg |$,5m |
-ROW |19254 |30124 |16551 |max |$,5m |
-ROW |19255 |30124 |16552 |avg |$,5m |
-ROW |19256 |30124 |16552 |max |$,5m |
-ROW |19257 |30124 |16553 |avg |$,5m |
-ROW |19258 |30124 |16553 |min |$,5m |
-ROW |19259 |27975 |16554 |min |$,5m |
-ROW |19260 |30125 |16555 |last |$,#1 |
-ROW |19261 |30125 |16555 |last |$ |
-ROW |19263 |30129 |16557 |count |$,#1,"eq","{$FAN_CRIT_STATUS}" |
-ROW |19264 |30130 |16558 |count |$,#1,"eq","{$PSU_CRIT_STATUS}" |
-ROW |19265 |28003 |16559 |min |$,5m |
-ROW |19267 |28031 |16561 |min |$,5m |
-ROW |19269 |29096 |16563 |min |$,5m |
-ROW |19270 |29087 |16563 |last |$ |
-ROW |19271 |29101 |16563 |last |$ |
-ROW |19272 |29100 |16563 |last |$ |
-ROW |19273 |29133 |16564 |min |$,5m |
-ROW |19274 |29124 |16564 |last |$ |
-ROW |19275 |29138 |16564 |last |$ |
-ROW |19276 |29137 |16564 |last |$ |
-ROW |19277 |29170 |16565 |min |$,5m |
-ROW |19278 |29161 |16565 |last |$ |
-ROW |19279 |29175 |16565 |last |$ |
-ROW |19280 |29174 |16565 |last |$ |
-ROW |19299 |29420 |16573 |min |$,5m |
-ROW |19300 |29417 |16573 |last |$ |
-ROW |19301 |29419 |16573 |last |$ |
-ROW |19302 |29418 |16573 |last |$ |
-ROW |19305 |28987 |16575 |min |$,5m |
-ROW |19306 |28990 |16575 |last |$ |
-ROW |19307 |28988 |16575 |last |$ |
-ROW |19308 |28989 |16575 |last |$ |
-ROW |19309 |29002 |16576 |min |$,5m |
-ROW |19310 |29005 |16576 |last |$ |
-ROW |19311 |29003 |16576 |last |$ |
-ROW |19312 |29004 |16576 |last |$ |
-ROW |19313 |30141 |16577 |last |$,#1 |
-ROW |19314 |30141 |16577 |last |$ |
-ROW |19316 |29113 |16579 |last |$,#1 |
-ROW |19317 |29113 |16579 |last |$ |
-ROW |19318 |29150 |16580 |last |$,#1 |
-ROW |19319 |29150 |16580 |last |$ |
-ROW |19320 |29187 |16581 |last |$,#1 |
-ROW |19321 |29187 |16581 |last |$ |
-ROW |19326 |29414 |16584 |last |$,#1 |
-ROW |19327 |29414 |16584 |last |$ |
-ROW |19328 |29474 |16585 |last |$,#1 |
-ROW |19329 |29474 |16585 |last |$ |
-ROW |19330 |29500 |16586 |last |$,#1 |
-ROW |19331 |29500 |16586 |last |$ |
-ROW |19340 |28022 |16591 |last |$,#1 |
-ROW |19341 |28022 |16591 |last |$ |
-ROW |19344 |27152 |16593 |last |$,#1 |
-ROW |19345 |27152 |16593 |last |$ |
-ROW |19346 |27199 |16594 |last |$,#1 |
-ROW |19347 |27199 |16594 |last |$ |
-ROW |19348 |27232 |16595 |last |$,#1 |
-ROW |19349 |27232 |16595 |last |$ |
-ROW |19350 |27268 |16596 |last |$,#1 |
-ROW |19351 |27268 |16596 |last |$ |
-ROW |19352 |27289 |16597 |last |$,#1 |
-ROW |19353 |27289 |16597 |last |$ |
-ROW |19354 |27340 |16598 |last |$,#1 |
-ROW |19355 |27340 |16598 |last |$ |
-ROW |19356 |27372 |16599 |last |$,#1 |
-ROW |19357 |27372 |16599 |last |$ |
-ROW |19358 |27469 |16600 |last |$,#1 |
-ROW |19359 |27469 |16600 |last |$ |
-ROW |19360 |27503 |16601 |last |$,#1 |
-ROW |19361 |27503 |16601 |last |$ |
-ROW |19362 |27539 |16602 |last |$,#1 |
-ROW |19363 |27539 |16602 |last |$ |
-ROW |19364 |27575 |16603 |last |$,#1 |
-ROW |19365 |27575 |16603 |last |$ |
-ROW |19366 |27638 |16604 |last |$,#1 |
-ROW |19367 |27638 |16604 |last |$ |
-ROW |19368 |27661 |16605 |last |$,#1 |
-ROW |19369 |27661 |16605 |last |$ |
-ROW |19370 |27741 |16606 |last |$,#1 |
-ROW |19371 |27741 |16606 |last |$ |
-ROW |19372 |27773 |16607 |last |$,#1 |
-ROW |19373 |27773 |16607 |last |$ |
-ROW |19374 |27807 |16608 |last |$,#1 |
-ROW |19375 |27807 |16608 |last |$ |
-ROW |19376 |27889 |16609 |last |$,#1 |
-ROW |19377 |27889 |16609 |last |$ |
-ROW |19378 |27926 |16610 |last |$,#1 |
-ROW |19379 |27926 |16610 |last |$ |
-ROW |19380 |27963 |16611 |last |$,#1 |
-ROW |19381 |27963 |16611 |last |$ |
-ROW |19382 |27993 |16612 |last |$,#1 |
-ROW |19383 |27993 |16612 |last |$ |
-ROW |19384 |28137 |16613 |last |$,#1 |
-ROW |19385 |28137 |16613 |last |$ |
-ROW |19388 |28240 |16615 |last |$,#1 |
-ROW |19389 |28240 |16615 |last |$ |
-ROW |19390 |28289 |16616 |last |$,#1 |
-ROW |19391 |28289 |16616 |last |$ |
-ROW |19392 |28337 |16617 |last |$,#1 |
-ROW |19393 |28337 |16617 |last |$ |
-ROW |19394 |28384 |16618 |last |$,#1 |
-ROW |19395 |28384 |16618 |last |$ |
-ROW |19396 |28461 |16619 |last |$,#1 |
-ROW |19397 |28461 |16619 |last |$ |
-ROW |19398 |28489 |16620 |last |$,#1 |
-ROW |19399 |28489 |16620 |last |$ |
-ROW |19400 |28964 |16621 |last |$,#1 |
-ROW |19401 |28964 |16621 |last |$ |
-ROW |19402 |29057 |16622 |last |$,#1 |
-ROW |19403 |29057 |16622 |last |$ |
-ROW |19404 |30053 |16623 |last |$,#1 |
-ROW |19405 |30053 |16623 |last |$ |
-ROW |19406 |30142 |16624 |min |$,5m |
-ROW |19407 |30143 |16625 |min |$,5m |
-ROW |19409 |30145 |16627 |min |$,5m |
-ROW |19410 |30146 |16628 |min |$,5m |
-ROW |19412 |30160 |16630 |last |$ |
-ROW |19413 |30161 |16630 |last |$ |
-ROW |19414 |30162 |16630 |last |$ |
-ROW |19415 |30160 |16630 |timeleft |$,1h,100 |
-ROW |19416 |30160 |16631 |last |$ |
-ROW |19417 |30161 |16631 |last |$ |
-ROW |19418 |30162 |16631 |last |$ |
-ROW |19419 |30160 |16631 |timeleft |$,1h,100 |
-ROW |19424 |30166 |16636 |last |$ |
-ROW |19425 |30167 |16636 |last |$ |
-ROW |19426 |30168 |16636 |last |$ |
-ROW |19427 |30166 |16636 |timeleft |$,1h,100 |
-ROW |19432 |30178 |16638 |last |$ |
-ROW |19433 |30179 |16638 |last |$ |
-ROW |19434 |30180 |16638 |last |$ |
-ROW |19435 |30178 |16638 |timeleft |$,1h,100 |
-ROW |19436 |30184 |16639 |last |$ |
-ROW |19437 |30185 |16639 |last |$ |
-ROW |19438 |30186 |16639 |last |$ |
-ROW |19439 |30184 |16639 |timeleft |$,1h,100 |
-ROW |19440 |30166 |16640 |last |$ |
-ROW |19441 |30167 |16640 |last |$ |
-ROW |19442 |30168 |16640 |last |$ |
-ROW |19443 |30166 |16640 |timeleft |$,1h,100 |
-ROW |19448 |30178 |16642 |last |$ |
-ROW |19449 |30179 |16642 |last |$ |
-ROW |19450 |30180 |16642 |last |$ |
-ROW |19451 |30178 |16642 |timeleft |$,1h,100 |
-ROW |19452 |30184 |16643 |last |$ |
-ROW |19453 |30185 |16643 |last |$ |
-ROW |19454 |30186 |16643 |last |$ |
-ROW |19455 |30184 |16643 |timeleft |$,1h,100 |
-ROW |19456 |30191 |16644 |last |$ |
-ROW |19457 |30192 |16645 |last |$,#1 |
-ROW |19458 |30192 |16645 |last |$ |
-ROW |19459 |30187 |16646 |min |$,5m |
-ROW |19460 |30188 |16647 |last |$ |
-ROW |19461 |30199 |16648 |min |$,5m |
-ROW |19462 |30200 |16649 |min |$,5m |
-ROW |19463 |30201 |16650 |min |$,5m |
-ROW |19464 |30202 |16651 |min |$,5m |
-ROW |19465 |30203 |16652 |max |$,#5 |
-ROW |19466 |30208 |16653 |min |$,5m |
-ROW |19467 |30209 |16654 |min |$,5m |
-ROW |19468 |30196 |16655 |min |$,5m |
-ROW |19469 |30221 |16656 |min |$,5m |
-ROW |19470 |30224 |16657 |min |$,5m |
-ROW |19471 |30225 |16658 |min |$,5m |
-ROW |19472 |30226 |16659 |min |$,5m |
-ROW |19473 |30227 |16660 |max |$,#5 |
-ROW |19474 |30234 |16661 |last |$ |
-ROW |19475 |30235 |16662 |last |$,#1 |
-ROW |19476 |30235 |16662 |last |$ |
-ROW |19479 |30242 |16665 |min |$,5m |
-ROW |19480 |30243 |16666 |min |$,5m |
-ROW |19481 |30244 |16667 |min |$,5m |
-ROW |19482 |30245 |16668 |min |$,5m |
-ROW |19483 |30246 |16669 |max |$,#5 |
-ROW |19484 |30251 |16670 |min |$,5m |
-ROW |19485 |30252 |16671 |min |$,5m |
-ROW |19486 |30239 |16672 |min |$,5m |
-ROW |19487 |30264 |16673 |min |$,5m |
-ROW |19488 |30267 |16674 |min |$,5m |
-ROW |19489 |30268 |16675 |min |$,5m |
-ROW |19490 |30269 |16676 |min |$,5m |
-ROW |19491 |30270 |16677 |max |$,#5 |
-ROW |19492 |28804 |16678 |find |$,,"like","HTTP/1.1 200" |
-ROW |19493 |28804 |16678 |nodata |$,30m |
-ROW |19494 |28821 |16679 |find |$,,"like","HTTP/1.1 200" |
-ROW |19495 |28821 |16679 |nodata |$,30m |
-ROW |19497 |30322 |16681 |min |$,5m |
-ROW |19498 |30312 |16681 |last |$ |
-ROW |19499 |30275 |16682 |last |$,#1 |
-ROW |19500 |30275 |16682 |last |$ |
-ROW |19501 |30276 |16683 |nodata |$,30m |
-ROW |19502 |30317 |16684 |min |$,15m |
-ROW |19503 |30326 |16685 |last |$ |
-ROW |19504 |30333 |16686 |last |$ |
-ROW |19505 |30273 |16687 |last |$ |
-ROW |19506 |30306 |16688 |last |$,#1 |
-ROW |19507 |30286 |16689 |last |$,#1 |
-ROW |19508 |30286 |16689 |last |$ |
-ROW |19509 |30283 |16690 |last |$,#1 |
-ROW |19510 |30283 |16690 |last |$ |
-ROW |19511 |30281 |16691 |last |$ |
-ROW |19512 |30274 |16692 |min |$,5m |
-ROW |19513 |30298 |16693 |last |$ |
-ROW |19514 |30347 |16694 |last |$ |
-ROW |19517 |30398 |16696 |min |$,5m |
-ROW |19548 |29434 |16710 |min |$,15m |
-ROW |19549 |29435 |16710 |min |$,15m |
-ROW |19552 |30425 |16713 |min |$,#3 |
-ROW |19553 |30426 |16714 |min |$,#3 |
-ROW |19558 |30470 |16719 |min |$,5m |
-ROW |19559 |30434 |16720 |max |$,5m |
-ROW |19560 |30454 |16721 |last |$ |
-ROW |19562 |30432 |16723 |last |$ |
-ROW |19563 |30445 |16724 |min |$,5m |
-ROW |19564 |30450 |16725 |last |$ |
-ROW |19565 |30431 |16726 |last |$,#1 |
-ROW |19566 |30431 |16726 |last |$ |
-ROW |19567 |30476 |16727 |min |$,5m |
-ROW |19568 |30477 |16728 |count |$,#1,"eq","No" |
-ROW |19569 |30477 |16729 |count |$,#1,"ne","Yes" |
-ROW |19570 |30478 |16730 |count |$,#1,"eq","No" |
-ROW |19572 |30481 |16732 |last |$ |
-ROW |19573 |30480 |16733 |last |$,#1 |
-ROW |19574 |30480 |16733 |last |$ |
-ROW |19575 |30505 |16734 |min |$,5m |
-ROW |19576 |30483 |16735 |max |$,5m |
-ROW |19577 |30514 |16736 |last |$ |
-ROW |19578 |30495 |16737 |min |$,5m |
-ROW |19579 |30519 |16738 |last |$ |
-ROW |19580 |30524 |16739 |min |$,5m |
-ROW |19581 |30525 |16740 |count |$,#1,"eq","No" |
-ROW |19582 |30525 |16741 |count |$,#1,"ne","Yes" |
-ROW |19583 |30526 |16742 |count |$,#1,"eq","No" |
-ROW |19584 |30537 |16743 |nodata |$,30m |
-ROW |19585 |30530 |16744 |last |$ |
-ROW |19586 |30547 |16745 |last |$,#1 |
-ROW |19587 |30547 |16745 |last |$ |
-ROW |19588 |30599 |16746 |last |$ |
-ROW |19589 |30604 |16746 |last |$ |
-ROW |19590 |30598 |16747 |last |$,#1 |
-ROW |19591 |30598 |16747 |last |$ |
-ROW |19592 |30614 |16748 |min |$,5m |
-ROW |19593 |30634 |16748 |last |$ |
-ROW |19594 |30633 |16749 |min |$,5m |
-ROW |19595 |30632 |16749 |last |$ |
-ROW |19596 |30631 |16750 |min |$,5m |
-ROW |19597 |30628 |16751 |min |$,5m |
-ROW |19598 |30627 |16752 |nodata |$,30m |
-ROW |19599 |30611 |16753 |last |$ |
-ROW |19600 |30615 |16754 |last |$ |
-ROW |19601 |30636 |16755 |last |$,#1 |
-ROW |19602 |30636 |16755 |last |$ |
-ROW |19603 |30676 |16756 |min |$,5m |
-ROW |19604 |30640 |16757 |max |$,5m |
-ROW |19605 |30660 |16758 |last |$ |
-ROW |19606 |30638 |16759 |last |$ |
-ROW |19607 |30651 |16760 |min |$,5m |
-ROW |19608 |30656 |16761 |last |$ |
-ROW |19609 |30637 |16762 |last |$,#1 |
-ROW |19610 |30637 |16762 |last |$ |
-ROW |19611 |30682 |16763 |min |$,5m |
-ROW |19612 |30683 |16764 |count |$,#1,"eq","No" |
-ROW |19613 |30683 |16765 |count |$,#1,"ne","Yes" |
-ROW |19614 |30684 |16766 |count |$,#1,"eq","No" |
-ROW |19615 |30688 |16767 |last |$,#1 |
-ROW |19616 |30689 |16768 |min |$,5m |
-ROW |19617 |30689 |16769 |min |$,5m |
-ROW |19618 |30689 |16770 |min |$,5m |
-ROW |19619 |30689 |16771 |min |$,5m |
-ROW |19620 |30689 |16772 |min |$,5m |
-ROW |19621 |30689 |16773 |min |$,5m |
-ROW |19622 |30697 |16774 |last |$ |
-ROW |19623 |30698 |16774 |last |$ |
-ROW |19624 |30709 |16774 |last |$ |
-ROW |19625 |30710 |16775 |min |$,10m |
-ROW |19626 |30708 |16776 |change |$ |
-ROW |19627 |30708 |16777 |change |$ |
-ROW |19628 |30705 |16778 |last |$ |
-ROW |19629 |30705 |16779 |last |$ |
-ROW |19630 |30705 |16780 |last |$ |
-ROW |19631 |30712 |16781 |min |$,10m |
-ROW |19632 |30699 |16782 |last |$ |
-ROW |19633 |30696 |16783 |last |$ |
-ROW |19634 |30692 |16784 |min |$,5m |
-ROW |19635 |30690 |16785 |last |$ |
-ROW |19636 |30715 |16786 |min |$,5m |
-ROW |19637 |30716 |16787 |min |$,5m |
-ROW |19638 |30717 |16788 |min |$,5m |
-ROW |19639 |30714 |16789 |min |$,5m |
-ROW |19640 |30724 |16790 |min |$,1h |
-ROW |19641 |30724 |16791 |min |$,1h |
-ROW |19642 |30725 |16792 |last |$ |
-ROW |19643 |30729 |16793 |min |$,5m |
-ROW |19644 |30733 |16794 |min |$,5m |
-ROW |19645 |30758 |16795 |min |$,5m |
-ROW |19646 |30765 |16796 |min |$,5m |
-ROW |19647 |30766 |16797 |min |$,5m |
-ROW |19648 |30767 |16798 |min |$,5m |
-ROW |19649 |30768 |16799 |min |$,5m |
-ROW |19650 |30769 |16800 |max |$,#5 |
-ROW |19651 |30774 |16801 |min |$,5m |
-ROW |19652 |30775 |16802 |min |$,5m |
-ROW |19653 |30762 |16803 |min |$,5m |
-ROW |19654 |30782 |16804 |min |$,5m |
-ROW |19655 |30783 |16805 |min |$,5m |
-ROW |19656 |30784 |16806 |min |$,5m |
-ROW |19657 |30785 |16807 |min |$,5m |
-ROW |19658 |30786 |16808 |max |$,#5 |
-ROW |19659 |30789 |16809 |min |$,5m |
-ROW |19660 |30790 |16810 |last |$ |
-ROW |19661 |30797 |16811 |min |$,5m |
-ROW |19662 |30798 |16812 |min |$,5m |
-ROW |19663 |30799 |16813 |min |$,5m |
-ROW |19664 |30800 |16814 |min |$,5m |
-ROW |19665 |30801 |16815 |max |$,#5 |
-ROW |19666 |30806 |16816 |min |$,5m |
-ROW |19667 |30807 |16817 |min |$,5m |
-ROW |19668 |30794 |16818 |min |$,5m |
-ROW |19669 |30814 |16819 |min |$,5m |
-ROW |19670 |30815 |16820 |min |$,5m |
-ROW |19671 |30816 |16821 |min |$,5m |
-ROW |19672 |30817 |16822 |min |$,5m |
-ROW |19673 |30818 |16823 |max |$,#5 |
-ROW |19674 |30854 |16824 |min |$,5m |
-ROW |19675 |30858 |16825 |min |$,5m |
-ROW |19676 |30864 |16826 |min |$,5m |
-ROW |19677 |30862 |16827 |min |$,5m |
-ROW |19679 |30827 |16829 |last |$ |
-ROW |19680 |30837 |16830 |min |$,5m |
-ROW |19681 |30829 |16831 |last |$,#1 |
-ROW |19682 |30829 |16831 |last |$ |
-ROW |19683 |30846 |16832 |last |$ |
-ROW |19684 |30846 |16833 |nodata |$,30m |
-ROW |19685 |30822 |16834 |last |$,#1 |
-ROW |19686 |30822 |16834 |last |$ |
-ROW |19687 |30843 |16835 |min |$,5m |
-ROW |19688 |30880 |16836 |max |$,5m |
-ROW |19689 |30891 |16836 |last |$ |
-ROW |19690 |30883 |16837 |min |$,5m |
-ROW |19691 |30884 |16838 |min |$,5m |
-ROW |19692 |30885 |16839 |min |$,5m |
-ROW |19693 |30890 |16840 |min |$,5m |
-ROW |19694 |27107 |16841 |last |$ |
-ROW |19695 |27107 |16841 |last |$,#1 |
-ROW |19696 |27188 |16842 |last |$ |
-ROW |19697 |27188 |16842 |last |$,#1 |
-ROW |19698 |27223 |16843 |last |$ |
-ROW |19699 |27223 |16843 |last |$,#1 |
-ROW |19700 |27259 |16844 |last |$ |
-ROW |19701 |27259 |16844 |last |$,#1 |
-ROW |19702 |27280 |16845 |last |$ |
-ROW |19703 |27280 |16845 |last |$,#1 |
-ROW |19704 |27329 |16846 |last |$ |
-ROW |19705 |27329 |16846 |last |$,#1 |
-ROW |19706 |27458 |16847 |last |$ |
-ROW |19707 |27458 |16847 |last |$,#1 |
-ROW |19708 |27494 |16848 |last |$ |
-ROW |19709 |27494 |16848 |last |$,#1 |
-ROW |19710 |27528 |16849 |last |$ |
-ROW |19711 |27528 |16849 |last |$,#1 |
-ROW |19712 |27564 |16850 |last |$ |
-ROW |19713 |27564 |16850 |last |$,#1 |
-ROW |19714 |27650 |16851 |last |$ |
-ROW |19715 |27650 |16851 |last |$,#1 |
-ROW |19716 |27730 |16852 |last |$ |
-ROW |19717 |27730 |16852 |last |$,#1 |
-ROW |19718 |27764 |16853 |last |$ |
-ROW |19719 |27764 |16853 |last |$,#1 |
-ROW |19720 |27796 |16854 |last |$ |
-ROW |19721 |27796 |16854 |last |$,#1 |
-ROW |19722 |27880 |16855 |last |$ |
-ROW |19723 |27880 |16855 |last |$,#1 |
-ROW |19724 |27917 |16856 |last |$ |
-ROW |19725 |27917 |16856 |last |$,#1 |
-ROW |19726 |27952 |16857 |last |$ |
-ROW |19727 |27952 |16857 |last |$,#1 |
-ROW |19728 |28126 |16858 |last |$ |
-ROW |19729 |28126 |16858 |last |$,#1 |
-ROW |19732 |28231 |16860 |last |$ |
-ROW |19733 |28231 |16860 |last |$,#1 |
-ROW |19734 |28301 |16861 |last |$ |
-ROW |19735 |28301 |16861 |last |$,#1 |
-ROW |19736 |28976 |16862 |last |$ |
-ROW |19737 |28976 |16862 |last |$,#1 |
-ROW |19738 |27087 |16863 |last |$ |
-ROW |19739 |27087 |16863 |last |$,#1 |
-ROW |19740 |27627 |16864 |last |$ |
-ROW |19741 |27627 |16864 |last |$,#1 |
-ROW |19742 |27984 |16865 |last |$ |
-ROW |19743 |27984 |16865 |last |$,#1 |
-ROW |19744 |27127 |16866 |last |$ |
-ROW |19745 |27127 |16866 |last |$,#1 |
-ROW |19746 |29085 |16867 |last |$ |
-ROW |19747 |29085 |16867 |last |$,#1 |
-ROW |19748 |28013 |16868 |last |$ |
-ROW |19749 |28013 |16868 |last |$,#1 |
-ROW |19756 |27421 |16871 |avg |$,5m |
-ROW |19757 |27421 |16871 |min |$,5m |
-ROW |19776 |27430 |16878 |avg |$,5m |
-ROW |19777 |27430 |16878 |min |$,5m |
-ROW |19778 |27447 |16879 |avg |$,5m |
-ROW |19779 |27447 |16879 |min |$,5m |
-ROW |19780 |28218 |16880 |avg |$,5m |
-ROW |19781 |28218 |16880 |min |$,5m |
-ROW |19786 |29444 |16883 |last |$ |
-ROW |19787 |29444 |16883 |last |$,#1 |
-ROW |19792 |30912 |16886 |last |$ |
-ROW |19793 |30911 |16887 |last |$,#1 |
-ROW |19794 |30911 |16887 |last |$ |
-ROW |19795 |30896 |16888 |nodata |$,30m |
-ROW |19796 |30927 |16889 |min |$,5m |
-ROW |19797 |30944 |16889 |last |$ |
-ROW |19798 |30943 |16890 |last |$,#1 |
-ROW |19799 |30943 |16890 |last |$ |
-ROW |19800 |30945 |16891 |last |$ |
-ROW |19801 |30924 |16892 |last |$ |
-ROW |19802 |30954 |16893 |min |$,5m |
-ROW |19803 |30956 |16894 |nodata |$,30m |
-ROW |19804 |30960 |16895 |max |$,15m |
-ROW |19805 |30930 |16896 |min |$,5m |
-ROW |19806 |30931 |16897 |min |$,5m |
-ROW |19807 |30937 |16898 |last |$,#1 |
-ROW |19808 |30937 |16898 |last |$ |
-ROW |19809 |30939 |16899 |last |$ |
-ROW |19810 |30923 |16900 |last |$ |
-ROW |19811 |30963 |16901 |min |$,5m |
-ROW |19812 |30968 |16902 |last |$ |
-ROW |19813 |30975 |16903 |last |$ |
-ROW |19814 |30984 |16904 |last |$ |
-ROW |19815 |31004 |16905 |last |$ |
-ROW |19816 |31006 |16906 |last |$ |
-ROW |19817 |31007 |16907 |last |$ |
-ROW |19818 |31008 |16908 |last |$,#1 |
-ROW |19819 |31009 |16909 |min |$,{$IIS.QUEUE.MAX.TIME} |
-ROW |19820 |31010 |16910 |last |$ |
-ROW |19821 |31017 |16911 |last |$ |
-ROW |19822 |31026 |16912 |last |$ |
-ROW |19823 |31046 |16913 |last |$ |
-ROW |19824 |31048 |16914 |last |$ |
-ROW |19825 |31049 |16915 |last |$ |
-ROW |19826 |31050 |16916 |last |$,#1 |
-ROW |19827 |31051 |16917 |min |$,{$IIS.QUEUE.MAX.TIME} |
-ROW |19828 |31052 |16918 |last |$,#1 |
-ROW |19829 |31052 |16918 |last |$ |
-ROW |19830 |31053 |16919 |last |$,#1 |
-ROW |19831 |31053 |16919 |last |$ |
-ROW |19832 |30821 |16920 |last |$ |
-ROW |19833 |31054 |16920 |last |$ |
-ROW |19834 |31054 |16921 |last |$ |
-ROW |19841 |31092 |16925 |last |$ |
-ROW |19842 |31095 |16925 |last |$ |
-ROW |19845 |31056 |16927 |min |$,5m |
-ROW |19846 |31096 |16928 |max |$,5m |
-ROW |19847 |31096 |16929 |max |$,5m |
-ROW |19848 |31106 |16930 |min |$,5m |
-ROW |19849 |31114 |16931 |min |$,5m |
-ROW |19850 |31115 |16932 |min |$,5m |
-ROW |19851 |31116 |16933 |min |$,5m |
-ROW |19852 |31118 |16934 |min |$,5m |
-ROW |19853 |31062 |16935 |min |$,5m |
-ROW |19854 |31064 |16936 |max |$,15m |
-ROW |19855 |31066 |16937 |min |$,5m |
-ROW |19856 |31068 |16938 |min |$,5m |
-ROW |19857 |31082 |16939 |last |$ |
-ROW |19858 |31082 |16940 |nodata |$,30m |
-ROW |19859 |31085 |16941 |last |$,#1 |
-ROW |19860 |31085 |16941 |last |$ |
-ROW |19861 |31086 |16942 |min |$,5m |
-ROW |19862 |31087 |16943 |min |$,5m |
-ROW |19863 |31088 |16944 |max |$,5m |
-ROW |19865 |31133 |16946 |last |$ |
-ROW |19866 |31135 |16947 |last |$ |
-ROW |19867 |31136 |16948 |last |$ |
-ROW |19868 |31136 |16949 |last |$ |
-ROW |19869 |31142 |16950 |min |$,5m |
-ROW |19870 |31143 |16951 |min |$,5m |
-ROW |19873 |31148 |16954 |min |$,5m |
-ROW |19874 |31149 |16955 |last |$ |
-ROW |19875 |31152 |16956 |last |$ |
-ROW |19876 |31153 |16957 |last |$ |
-ROW |19877 |31153 |16958 |last |$ |
-ROW |19878 |31157 |16959 |last |$ |
-ROW |19879 |31157 |16960 |last |$ |
-ROW |19880 |31157 |16961 |last |$ |
-ROW |19881 |31158 |16962 |last |$ |
-ROW |19888 |31161 |16965 |last |$ |
-ROW |19889 |31166 |16965 |last |$ |
-ROW |19890 |31164 |16966 |last |$ |
-ROW |19891 |31164 |16967 |last |$ |
-ROW |19892 |31164 |16968 |last |$ |
-ROW |19893 |31165 |16969 |last |$ |
-ROW |19894 |31167 |16970 |last |$ |
-ROW |19895 |31167 |16971 |last |$ |
-ROW |19896 |31169 |16972 |min |$,5m |
-ROW |19897 |31170 |16973 |min |$,5m |
-ROW |19898 |31171 |16974 |min |$,5m |
-ROW |19899 |30450 |16975 |nodata |$,30m |
-ROW |19900 |31173 |16976 |min |$,5m |
-ROW |19901 |31174 |16977 |min |$,5m |
-ROW |19902 |31175 |16978 |min |$,5m |
-ROW |19903 |30656 |16979 |nodata |$,30m |
-ROW |19904 |31177 |16980 |min |$,5m |
-ROW |19905 |31179 |16981 |min |$,5m |
-ROW |19906 |31178 |16982 |min |$,5m |
-ROW |19907 |30519 |16983 |nodata |$,30m |
-ROW |19908 |31183 |16984 |max |$,#3 |
-ROW |19909 |31184 |16984 |max |$,#3 |
-ROW |19910 |31192 |16985 |min |$,5m |
-ROW |19911 |31193 |16985 |last |$ |
-ROW |19912 |31200 |16986 |min |$,5m |
-ROW |19913 |31202 |16986 |last |$ |
-ROW |19914 |31233 |16987 |min |$,5m |
-ROW |19915 |31234 |16987 |last |$ |
-ROW |19916 |31216 |16988 |min |$,5m |
-ROW |19917 |31237 |16988 |last |$ |
-ROW |19918 |31244 |16989 |last |$,#1 |
-ROW |19919 |31244 |16989 |last |$ |
-ROW |19920 |31245 |16990 |last |$,#1 |
-ROW |19921 |31245 |16990 |last |$ |
-ROW |19922 |31194 |16991 |max |$,5m |
-ROW |19923 |31199 |16992 |min |$,5m |
-ROW |19924 |31190 |16993 |min |$,5m |
-ROW |19925 |31203 |16994 |min |$,5m |
-ROW |19926 |31211 |16995 |max |$,5m |
-ROW |19927 |31217 |16996 |last |$ |
-ROW |19928 |31217 |16997 |nodata |$,5m |
-ROW |19929 |31218 |16998 |last |$ |
-ROW |19930 |31189 |16999 |last |$,#1 |
-ROW |19931 |31189 |16999 |last |$ |
-ROW |19932 |31184 |17000 |max |$,#3 |
-ROW |19933 |31260 |17001 |last |$ |
-ROW |19934 |31263 |17002 |min |$,5m |
-ROW |19935 |31263 |17003 |min |$,5m |
-ROW |19936 |31264 |17004 |last |$ |
-ROW |19937 |31265 |17004 |last |$ |
-ROW |19938 |31266 |17005 |last |$ |
-ROW |19939 |31266 |17006 |last |$,#1 |
-ROW |19940 |31267 |17007 |last |$,#1 |
-ROW |19941 |31268 |17008 |last |$ |
-ROW |19942 |31268 |17009 |last |$,#1 |
-ROW |19943 |31272 |17010 |last |$ |
-ROW |19944 |31272 |17011 |last |$,#1 |
-ROW |19947 |31329 |17014 |min |$,5m |
-ROW |19949 |31282 |17016 |last |$ |
-ROW |19950 |31287 |17017 |last |$ |
-ROW |19951 |31357 |17018 |min |$,5m |
-ROW |19952 |31356 |17019 |min |$,5m |
-ROW |19956 |31370 |17023 |min |$,15m |
-ROW |19957 |31371 |17023 |min |$,15m |
-ROW |19958 |29222 |17024 |last |$ |
-ROW |19959 |29222 |17024 |last |$,#1 |
-ROW |19960 |31373 |17025 |min |$,15m |
-ROW |19961 |31374 |17025 |min |$,15m |
-ROW |19962 |29236 |17026 |last |$ |
-ROW |19963 |29236 |17026 |last |$,#1 |
-ROW |19964 |31376 |17027 |min |$,15m |
-ROW |19965 |31377 |17027 |min |$,15m |
-ROW |19966 |29250 |17028 |last |$ |
-ROW |19967 |29250 |17028 |last |$,#1 |
-ROW |19978 |29459 |17035 |min |$,5m |
-ROW |19979 |31419 |17035 |last |$ |
-ROW |19982 |29485 |17037 |min |$,5m |
-ROW |19983 |31423 |17037 |last |$ |
-ROW |19998 |31454 |17042 |last |$ |
-ROW |19999 |31454 |17042 |last |$,#1 |
-ROW |20000 |31439 |17043 |min |$,15m |
-ROW |20013 |31457 |17047 |last |$ |
-ROW |20014 |31457 |17047 |last |$,#1 |
-ROW |20015 |31443 |17048 |min |$,15m |
-ROW |20054 |31532 |17063 |last |$ |
-ROW |20055 |31538 |17063 |last |$ |
-ROW |20056 |31536 |17064 |last |$ |
-ROW |20057 |31534 |17064 |last |$ |
-ROW |20058 |31528 |17065 |last |$ |
-ROW |20059 |31542 |17065 |last |$ |
-ROW |20060 |31546 |17066 |min |$,{$JMX.HEAP.MEM.USAGE.TIME} |
-ROW |20061 |31545 |17066 |last |$ |
-ROW |20062 |31549 |17067 |min |$,{$JMX.NONHEAP.MEM.USAGE.TIME} |
-ROW |20063 |31548 |17067 |last |$ |
-ROW |20064 |31541 |17068 |min |$,{$JMX.MP.USAGE.TIME:"CMS Old Gen"} |
-ROW |20065 |31552 |17068 |last |$ |
-ROW |20066 |31525 |17069 |min |$,{$JMX.MP.USAGE.TIME:"CMS Perm Gen"} |
-ROW |20067 |31513 |17069 |last |$ |
-ROW |20068 |31503 |17070 |min |$,{$JMX.MP.USAGE.TIME:"Code Cache"} |
-ROW |20069 |31502 |17070 |last |$ |
-ROW |20070 |31506 |17071 |min |$,{$JMX.MP.USAGE.TIME:"Perm Gen"} |
-ROW |20071 |31505 |17071 |last |$ |
-ROW |20072 |31509 |17072 |min |$,{$JMX.MP.USAGE.TIME:"PS Old Gen"} |
-ROW |20073 |31508 |17072 |last |$ |
-ROW |20074 |31500 |17073 |min |$,{$JMX.MP.USAGE.TIME:"PS Perm Gen"} |
-ROW |20075 |31511 |17073 |last |$ |
-ROW |20076 |31515 |17074 |min |$,{$JMX.MP.USAGE.TIME:"Tenured Gen"} |
-ROW |20077 |31514 |17074 |last |$ |
-ROW |20078 |31517 |17075 |min |$,{$JMX.FILE.DESCRIPTORS.TIME} |
-ROW |20079 |31516 |17075 |last |$ |
-ROW |20080 |31530 |17076 |find |$,,"like","Client" |
-ROW |20081 |31518 |17077 |min |$,{$JMX.CPU.LOAD.TIME} |
-ROW |20082 |31519 |17078 |nodata |$,5m |
-ROW |20083 |31520 |17079 |find |$,,"like","Server" |
-ROW |20084 |31070 |17080 |last |$ |
-ROW |20085 |31066 |17080 |last |$ |
-ROW |20086 |31554 |17081 |min |$,15m |
-ROW |20087 |31556 |17082 |min |$,15m |
-ROW |20088 |31555 |17083 |min |$,15m |
-ROW |20089 |31057 |17084 |last |$ |
-ROW |20090 |31560 |17085 |avg |$,5m |
-ROW |20091 |31560 |17085 |max |$,5m |
-ROW |20092 |31560 |17086 |avg |$,5m |
-ROW |20093 |31560 |17086 |max |$,5m |
-ROW |20094 |31560 |17087 |avg |$,5m |
-ROW |20095 |31560 |17087 |min |$,5m |
-ROW |20096 |31569 |17088 |last |$ |
-ROW |20097 |31573 |17089 |min |$,15m |
-ROW |20098 |31587 |17090 |last |$ |
-ROW |20099 |31587 |17090 |nodata |$,3m |
-ROW |20100 |31586 |17091 |last |$,#1 |
-ROW |20101 |31577 |17092 |min |$,#3 |
-ROW |20102 |31579 |17093 |nodata |$,30m |
-ROW |20103 |31579 |17094 |last |$ |
-ROW |20104 |31578 |17095 |last |$,#1 |
-ROW |20105 |31578 |17095 |last |$ |
-ROW |20106 |31572 |17096 |last |$ |
-ROW |20107 |31593 |17097 |min |$,15m |
-ROW |20108 |31603 |17098 |last |$ |
-ROW |20109 |31603 |17098 |nodata |$,3m |
-ROW |20110 |31605 |17099 |last |$,#1 |
-ROW |20111 |31600 |17100 |min |$,#3 |
-ROW |20112 |31598 |17101 |nodata |$,30m |
-ROW |20113 |31598 |17102 |last |$ |
-ROW |20114 |31611 |17103 |last |$,#1 |
-ROW |20115 |31611 |17103 |last |$ |
-ROW |20128 |22942 |17113 |last |$ |
-ROW |20129 |22952 |17114 |last |$ |
-ROW |20130 |22949 |17115 |last |$ |
-ROW |20131 |22875 |17116 |last |$ |
-ROW |20132 |22876 |17117 |last |$ |
-ROW |20133 |22902 |17118 |last |$ |
-ROW |20134 |22896 |17119 |last |$ |
-ROW |20135 |22912 |17120 |last |$ |
-ROW |20136 |22909 |17121 |last |$ |
-ROW |20137 |22982 |17122 |last |$ |
-ROW |20138 |22992 |17123 |last |$ |
-ROW |20139 |22989 |17124 |last |$ |
-ROW |20140 |23035 |17125 |last |$ |
-ROW |20141 |23036 |17126 |last |$ |
-ROW |20142 |23062 |17127 |last |$ |
-ROW |20143 |23072 |17128 |last |$ |
-ROW |20144 |23069 |17129 |last |$ |
-ROW |20145 |22835 |17130 |last |$ |
-ROW |20146 |22836 |17131 |last |$ |
-ROW |20147 |22862 |17132 |last |$ |
-ROW |20148 |22856 |17133 |last |$ |
-ROW |20149 |22872 |17134 |last |$ |
-ROW |20150 |22869 |17135 |last |$ |
-ROW |20151 |22996 |17136 |last |$ |
-ROW |20152 |23022 |17137 |last |$ |
-ROW |20153 |23016 |17138 |last |$ |
-ROW |20154 |23032 |17139 |last |$ |
-ROW |20155 |23029 |17140 |last |$ |
-ROW |20156 |26932 |17141 |last |$ |
-ROW |20157 |26932 |17142 |last |$ |
-ROW |20158 |26930 |17143 |last |$ |
-ROW |20159 |26930 |17144 |last |$ |
-ROW |20160 |26931 |17145 |last |$ |
-ROW |20161 |26931 |17146 |last |$ |
-ROW |20162 |26929 |17147 |last |$ |
-ROW |20163 |26929 |17148 |last |$ |
-ROW |20164 |26928 |17149 |last |$ |
-ROW |20165 |26928 |17150 |last |$ |
-ROW |20166 |26925 |17151 |last |$ |
-ROW |20167 |26943 |17152 |last |$ |
-ROW |20168 |26943 |17153 |last |$ |
-ROW |20169 |26939 |17154 |last |$ |
-ROW |20170 |26939 |17155 |last |$ |
-ROW |20171 |26940 |17156 |last |$ |
-ROW |20172 |26940 |17157 |last |$ |
-ROW |20173 |26941 |17158 |last |$ |
-ROW |20174 |26941 |17159 |last |$ |
-ROW |20175 |26942 |17160 |last |$ |
-ROW |20176 |26942 |17161 |last |$ |
-ROW |20177 |26938 |17162 |last |$ |
-ROW |20178 |26938 |17163 |last |$ |
-ROW |20179 |26937 |17164 |last |$ |
-ROW |20180 |26937 |17165 |last |$ |
-ROW |20181 |26933 |17166 |last |$ |
-ROW |20182 |26933 |17167 |last |$ |
-ROW |20183 |26934 |17168 |last |$ |
-ROW |20184 |26935 |17169 |last |$ |
-ROW |20185 |26935 |17170 |last |$ |
-ROW |20186 |26936 |17171 |last |$ |
-ROW |20187 |26936 |17172 |last |$ |
-ROW |20188 |31687 |17173 |min |$,5m |
-ROW |20189 |31710 |17173 |last |$ |
-ROW |20190 |31705 |17174 |min |$,5m |
-ROW |20191 |31708 |17174 |last |$ |
-ROW |20192 |31685 |17175 |min |$,5m |
-ROW |20193 |31738 |17175 |last |$ |
-ROW |20194 |31723 |17176 |min |$,5m |
-ROW |20195 |31757 |17176 |last |$ |
-ROW |20196 |31748 |17177 |last |$,#1 |
-ROW |20197 |31748 |17177 |last |$ |
-ROW |20198 |31749 |17178 |last |$,#1 |
-ROW |20199 |31749 |17178 |last |$ |
-ROW |20200 |31684 |17179 |last |$ |
-ROW |20201 |31695 |17180 |max |$,5m |
-ROW |20202 |31704 |17181 |min |$,5m |
-ROW |20203 |31709 |17182 |min |$,5m |
-ROW |20204 |31712 |17183 |min |$,5m |
-ROW |20205 |31718 |17184 |max |$,5m |
-ROW |20206 |31724 |17185 |nodata |$,30m |
-ROW |20207 |31724 |17186 |last |$ |
-ROW |20208 |31696 |17187 |last |$ |
-ROW |20209 |31760 |17188 |last |$,#1 |
-ROW |20210 |31760 |17188 |last |$ |
-ROW |20211 |31768 |17189 |last |$ |
-ROW |20212 |31769 |17190 |last |$ |
-ROW |20213 |31770 |17190 |last |$ |
-ROW |20214 |31771 |17191 |last |$ |
-ROW |20215 |31771 |17192 |last |$,#1 |
-ROW |20216 |31772 |17193 |last |$,#1 |
-ROW |20217 |31775 |17194 |min |$,5m |
-ROW |20218 |31775 |17195 |min |$,5m |
-ROW |20219 |31776 |17196 |last |$ |
-ROW |20220 |31776 |17197 |last |$,#1 |
-ROW |20221 |31780 |17198 |last |$ |
-ROW |20222 |31780 |17199 |last |$,#1 |
-ROW |20285 |31788 |17222 |last |$ |
-ROW |20286 |31788 |17223 |nodata |$,30m |
-ROW |20287 |31787 |17224 |last |$ |
-ROW |20288 |31786 |17225 |last |$,#1 |
-ROW |20289 |31786 |17225 |last |$ |
-ROW |20290 |31783 |17226 |min |$,5m |
-ROW |20291 |31782 |17227 |last |$ |
-ROW |20293 |31808 |17229 |last |$ |
-ROW |20295 |31810 |17231 |last |$ |
-ROW |20298 |31815 |17234 |last |$ |
-ROW |20311 |31819 |17239 |max |$,{$AGENT.TIMEOUT} |
-ROW |20312 |31838 |17240 |last |$ |
-ROW |20313 |31837 |17240 |last |$ |
-ROW |20318 |31829 |17243 |min |$,5m |
-ROW |20319 |31832 |17243 |last |$ |
-ROW |20320 |31833 |17243 |last |$ |
-ROW |20321 |31834 |17243 |last |$ |
-ROW |20322 |31892 |17244 |min |$,5m |
-ROW |20323 |31836 |17245 |last |$ |
-ROW |20324 |31837 |17246 |last |$ |
-ROW |20325 |31841 |17247 |last |$,#1 |
-ROW |20326 |31841 |17247 |last |$ |
-ROW |20327 |31842 |17248 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |20328 |31844 |17249 |last |$,#1 |
-ROW |20329 |31844 |17249 |last |$ |
-ROW |20330 |31847 |17250 |last |$ |
-ROW |20331 |31849 |17251 |last |$,#1 |
-ROW |20333 |31874 |17253 |last |$ |
-ROW |20334 |31873 |17253 |last |$ |
-ROW |20339 |31865 |17256 |min |$,5m |
-ROW |20340 |31868 |17256 |last |$ |
-ROW |20341 |31869 |17256 |last |$ |
-ROW |20342 |31870 |17256 |last |$ |
-ROW |20343 |31894 |17257 |min |$,5m |
-ROW |20344 |31872 |17258 |last |$ |
-ROW |20345 |31873 |17259 |last |$ |
-ROW |20346 |31877 |17260 |last |$,#1 |
-ROW |20347 |31877 |17260 |last |$ |
-ROW |20348 |31878 |17261 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |20349 |31880 |17262 |last |$,#1 |
-ROW |20350 |31880 |17262 |last |$ |
-ROW |20351 |31883 |17263 |last |$ |
-ROW |20352 |31885 |17264 |last |$,#1 |
-ROW |20354 |31902 |17266 |min |$,15m |
-ROW |20355 |31903 |17266 |min |$,15m |
-ROW |20356 |31906 |17267 |last |$ |
-ROW |20357 |31907 |17267 |last |$ |
-ROW |20358 |31908 |17267 |last |$ |
-ROW |20359 |31906 |17267 |timeleft |$,1h,100 |
-ROW |20360 |31906 |17268 |last |$ |
-ROW |20361 |31907 |17268 |last |$ |
-ROW |20362 |31908 |17268 |last |$ |
-ROW |20363 |31906 |17268 |timeleft |$,1h,100 |
-ROW |20364 |31905 |17269 |min |$,5m |
-ROW |20365 |31905 |17270 |min |$,5m |
-ROW |20366 |31916 |17271 |change |$ |
-ROW |20367 |31916 |17271 |last |$ |
-ROW |20368 |31915 |17271 |last |$ |
-ROW |20369 |31916 |17271 |last |$,#2 |
-ROW |20374 |31915 |17273 |last |$ |
-ROW |20375 |31915 |17273 |last |$,#1 |
-ROW |20376 |31917 |17274 |min |$,15m |
-ROW |20377 |31918 |17274 |min |$,15m |
-ROW |20378 |31921 |17275 |last |$ |
-ROW |20379 |31922 |17275 |last |$ |
-ROW |20380 |31923 |17275 |last |$ |
-ROW |20381 |31921 |17275 |timeleft |$,1h,100 |
-ROW |20382 |31921 |17276 |last |$ |
-ROW |20383 |31922 |17276 |last |$ |
-ROW |20384 |31923 |17276 |last |$ |
-ROW |20385 |31921 |17276 |timeleft |$,1h,100 |
-ROW |20386 |31920 |17277 |min |$,5m |
-ROW |20387 |31920 |17278 |min |$,5m |
-ROW |20388 |31931 |17279 |change |$ |
-ROW |20389 |31931 |17279 |last |$ |
-ROW |20390 |31930 |17279 |last |$ |
-ROW |20391 |31931 |17279 |last |$,#2 |
-ROW |20396 |31930 |17281 |last |$ |
-ROW |20397 |31930 |17281 |last |$,#1 |
-ROW |20398 |31947 |17282 |max |$,{$AGENT.TIMEOUT} |
-ROW |20399 |31953 |17283 |min |$,5m |
-ROW |20400 |31955 |17283 |last |$ |
-ROW |20403 |31949 |17285 |min |$,5m |
-ROW |20404 |31950 |17286 |min |$,5m |
-ROW |20405 |31954 |17287 |min |$,5m |
-ROW |20406 |31958 |17288 |last |$,#1 |
-ROW |20407 |31958 |17288 |last |$ |
-ROW |20408 |31959 |17289 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |20409 |31962 |17290 |last |$ |
-ROW |20410 |31964 |17291 |max |$,5m |
-ROW |20411 |31966 |17292 |min |$,5m |
-ROW |20413 |31980 |17294 |min |$,5m |
-ROW |20414 |31982 |17294 |last |$ |
-ROW |20417 |31976 |17296 |min |$,5m |
-ROW |20418 |31977 |17297 |min |$,5m |
-ROW |20419 |31981 |17298 |min |$,5m |
-ROW |20420 |31985 |17299 |last |$,#1 |
-ROW |20421 |31985 |17299 |last |$ |
-ROW |20422 |31986 |17300 |fuzzytime|$,{$SYSTEM.FUZZYTIME.MAX} |
-ROW |20423 |31989 |17301 |last |$ |
-ROW |20424 |31991 |17302 |max |$,5m |
-ROW |20425 |31993 |17303 |min |$,5m |
-ROW |20427 |32012 |17305 |last |$ |
-ROW |20428 |32013 |17305 |last |$ |
-ROW |20429 |32014 |17305 |last |$ |
-ROW |20430 |32012 |17305 |timeleft |$,1h,100 |
-ROW |20431 |32012 |17306 |last |$ |
-ROW |20432 |32013 |17306 |last |$ |
-ROW |20433 |32014 |17306 |last |$ |
-ROW |20434 |32012 |17306 |timeleft |$,1h,100 |
-ROW |20447 |32041 |17310 |last |$ |
-ROW |20448 |32041 |17310 |last |$,#1 |
-ROW |20449 |32021 |17311 |min |$,15m |
-ROW |20450 |32025 |17312 |min |$,#3 |
-ROW |20451 |32026 |17313 |last |$ |
-ROW |20452 |32027 |17313 |last |$ |
-ROW |20453 |32028 |17313 |last |$ |
-ROW |20454 |32026 |17313 |timeleft |$,1h,100 |
-ROW |20455 |32026 |17314 |last |$ |
-ROW |20456 |32027 |17314 |last |$ |
-ROW |20457 |32028 |17314 |last |$ |
-ROW |20458 |32026 |17314 |timeleft |$,1h,100 |
-ROW |20471 |32044 |17318 |last |$ |
-ROW |20472 |32044 |17318 |last |$,#1 |
-ROW |20473 |32035 |17319 |min |$,15m |
-ROW |20474 |32039 |17320 |min |$,#3 |
-ROW |20478 |27247 |17322 |avg |$,5m |
-ROW |20479 |27246 |17322 |last |$ |
-ROW |20480 |27247 |17322 |max |$,5m |
-ROW |20508 |27784 |17332 |avg |$,5m |
-ROW |20509 |27783 |17332 |last |$ |
-ROW |20510 |27784 |17332 |max |$,5m |
-ROW |20511 |27784 |17333 |avg |$,5m |
-ROW |20512 |27783 |17333 |last |$ |
-ROW |20513 |27784 |17333 |max |$,5m |
-ROW |20541 |32165 |17353 |last |$,#1 |
-ROW |20542 |32165 |17353 |last |$ |
-ROW |20543 |32166 |17354 |last |$ |
-ROW |20544 |32166 |17355 |last |$ |
-ROW |20545 |32120 |17356 |last |$ |
-ROW |20546 |32170 |17357 |min |$,15m |
-ROW |20547 |32153 |17357 |last |$ |
-ROW |20548 |32170 |17358 |min |$,15m |
-ROW |20549 |32160 |17358 |last |$ |
-ROW |20550 |32175 |17359 |last |$ |
-ROW |20564 |32262 |17367 |avg |$,5m |
-ROW |20565 |32251 |17367 |avg |$,5m |
-ROW |20566 |32272 |17368 |last |$ |
-ROW |20567 |32259 |17368 |last |$ |
-ROW |20568 |32261 |17368 |last |$ |
-ROW |20569 |32272 |17369 |last |$ |
-ROW |20570 |32260 |17369 |last |$ |
-ROW |20571 |32261 |17369 |last |$ |
-ROW |20572 |32239 |17370 |last |$ |
-ROW |20573 |32274 |17371 |last |$ |
-ROW |20574 |32263 |17372 |last |$ |
-ROW |20575 |32292 |17373 |last |$,#1 |
-ROW |20576 |32292 |17373 |last |$ |
-ROW |20595 |32392 |17390 |last |$ |
-ROW |20596 |32375 |17391 |nodata |$,30m |
-ROW |20597 |32374 |17392 |max |$,5m |
-ROW |20598 |32373 |17393 |last |$,#1 |
-ROW |20599 |32373 |17393 |last |$ |
-ROW |20600 |32402 |17394 |min |$,5m |
-ROW |20601 |32366 |17395 |min |$,5m |
-ROW |20602 |32367 |17396 |last |$ |
-ROW |20603 |32370 |17397 |min |$,5m |
-ROW |20604 |32372 |17398 |max |$,5m |
-ROW |20605 |32377 |17399 |last |$ |
-ROW |20606 |32378 |17400 |last |$,#1 |
-ROW |20607 |32378 |17400 |last |$ |
-ROW |20608 |32408 |17401 |min |$,5m |
-ROW |20609 |32422 |17402 |min |$,5m |
-ROW |20610 |32434 |17403 |last |$ |
-ROW |20611 |32409 |17404 |min |$,5m |
-ROW |20612 |32417 |17405 |min |$,5m |
-ROW |20613 |32436 |17406 |max |$,5m |
-ROW |20614 |32437 |17407 |max |$,5m |
-ROW |20615 |32438 |17408 |max |$,5m |
-ROW |20616 |32439 |17409 |max |$,5m |
-ROW |20617 |32442 |17410 |last |$,#1 |
-ROW |20618 |32442 |17410 |last |$ |
-ROW |20619 |32444 |17411 |min |$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"} |
-ROW |20620 |32444 |17412 |min |$,{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"} |
-ROW |20621 |32446 |17413 |min |$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"} |
-ROW |20622 |32446 |17414 |min |$,{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"} |
-ROW |20623 |32448 |17415 |min |$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"} |
-ROW |20624 |32448 |17416 |min |$,{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"} |
-ROW |20625 |32449 |17417 |max |$,{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"} |
-ROW |20626 |32451 |17418 |avg |$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"} |
-ROW |20627 |32452 |17419 |max |$,{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"} |
-ROW |20628 |32453 |17420 |last |$ |
-ROW |20629 |32456 |17421 |max |$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20630 |32454 |17421 |last |$ |
-ROW |20631 |32456 |17421 |min |$,{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20632 |32458 |17422 |avg |$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20633 |32457 |17422 |avg |$,{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20634 |32461 |17423 |max |$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20635 |32455 |17423 |last |$ |
-ROW |20636 |32461 |17423 |min |$,{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20637 |32459 |17424 |last |$ |
-ROW |20638 |32460 |17425 |last |$ |
-ROW |20639 |32460 |17426 |last |$ |
-ROW |20640 |32462 |17427 |min |$,{$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"} |
-ROW |20641 |32486 |17428 |max |$,5m |
-ROW |20642 |32486 |17429 |max |$,5m |
-ROW |20643 |32487 |17430 |min |$,5m |
-ROW |20644 |32487 |17431 |min |$,5m |
-ROW |20645 |32491 |17432 |min |$,5m |
-ROW |20646 |32491 |17433 |max |$,5m |
-ROW |20647 |32493 |17434 |last |$ |
-ROW |20648 |32537 |17435 |avg |$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
-ROW |20649 |32534 |17435 |avg |$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
-ROW |20650 |32529 |17436 |min |$,{$MS.EXCHANGE.DB.FAULTS.TIME} |
-ROW |20651 |32530 |17437 |avg |$,{$MS.EXCHANGE.LOG.STALLS.TIME} |
-ROW |20652 |32533 |17438 |min |$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME} |
-ROW |20653 |32534 |17439 |min |$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME} |
-ROW |20654 |32536 |17440 |min |$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} |
-ROW |20655 |32540 |17441 |min |$,{$MS.EXCHANGE.RPC.TIME} |
-ROW |20656 |32542 |17442 |min |$,{$MS.EXCHANGE.RPC.COUNT.TIME} |
-ROW |20657 |32543 |17443 |min |$,{$MS.EXCHANGE.LDAP.TIME} |
-ROW |20658 |32544 |17444 |min |$,{$MS.EXCHANGE.LDAP.TIME} |
-ROW |20659 |32567 |17445 |avg |$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
-ROW |20660 |32564 |17445 |avg |$,{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
-ROW |20661 |32559 |17446 |min |$,{$MS.EXCHANGE.DB.FAULTS.TIME} |
-ROW |20662 |32560 |17447 |avg |$,{$MS.EXCHANGE.LOG.STALLS.TIME} |
-ROW |20663 |32563 |17448 |min |$,{$MS.EXCHANGE.DB.ACTIVE.READ.TIME} |
-ROW |20664 |32564 |17449 |min |$,{$MS.EXCHANGE.DB.PASSIVE.READ.TIME} |
-ROW |20665 |32566 |17450 |min |$,{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} |
-ROW |20666 |32570 |17451 |min |$,{$MS.EXCHANGE.RPC.TIME} |
-ROW |20667 |32572 |17452 |min |$,{$MS.EXCHANGE.RPC.COUNT.TIME} |
-ROW |20668 |32573 |17453 |min |$,{$MS.EXCHANGE.LDAP.TIME} |
-ROW |20669 |32574 |17454 |min |$,{$MS.EXCHANGE.LDAP.TIME} |
-ROW |20670 |32584 |17455 |min |$,5m |
-ROW |20671 |32579 |17455 |last |$ |
-ROW |20672 |32607 |17456 |last |$,#1 |
-ROW |20673 |32607 |17456 |last |$ |
-ROW |20674 |32610 |17457 |min |$,5m |
-ROW |20675 |32576 |17458 |last |$ |
-ROW |20676 |32577 |17459 |last |$ |
-ROW |20677 |32599 |17460 |min |$,5m |
-ROW |20678 |32588 |17461 |min |$,5m |
-ROW |20679 |32597 |17462 |min |$,5m |
-ROW |20680 |32593 |17463 |nodata |$,30m |
-ROW |20681 |32621 |17464 |min |$,5m |
-ROW |20682 |32624 |17464 |last |$ |
-ROW |20683 |32626 |17465 |min |$,15m |
-ROW |20684 |32631 |17466 |min |$,5m |
-ROW |20685 |32633 |17466 |last |$ |
-ROW |20686 |32632 |17467 |min |$,5m |
-ROW |20687 |32642 |17468 |min |$,15m |
-ROW |20688 |32656 |17469 |min |$,5m |
-ROW |20689 |32663 |17470 |max |$,15m |
-ROW |20690 |32667 |17471 |nodata |$,30m |
-ROW |20691 |32667 |17472 |last |$ |
-ROW |20692 |32657 |17473 |min |$,15m |
-ROW |20693 |32655 |17474 |max |$,5m |
-ROW |20694 |32649 |17475 |min |$,15m |
-ROW |20695 |32647 |17476 |nodata |$,30m |
-ROW |20696 |32647 |17477 |last |$ |
-ROW |20697 |32638 |17478 |min |$,5m |
-ROW |20698 |32637 |17479 |min |$,5m |
-ROW |20699 |32636 |17480 |last |$ |
-ROW |20700 |32640 |17481 |last |$ |
-ROW |20701 |32678 |17482 |last |$ |
-ROW |20702 |32680 |17483 |nodata |$,30m |
-ROW |20703 |32680 |17484 |last |$ |
-ROW |20704 |32689 |17485 |last |$ |
-ROW |20705 |32690 |17486 |nodata |$,30m |
-ROW |20706 |32690 |17487 |last |$ |
-ROW |20707 |32724 |17488 |last |$ |
-ROW |20708 |32727 |17489 |last |$ |
-ROW |20709 |32732 |17490 |last |$ |
-ROW |20710 |32696 |17491 |nodata |$,15m |
-ROW |20711 |32696 |17492 |max |$,15m |
-ROW |20712 |32697 |17493 |last |$ |
-ROW |20713 |32698 |17494 |last |$,#1 |
-ROW |20714 |32698 |17494 |last |$ |
-ROW |20715 |32694 |17495 |max |$,15m |
-ROW |20716 |32714 |17496 |last |$ |
-ROW |20717 |32715 |17497 |last |$ |
-ROW |20718 |32717 |17498 |find |$,,"regexp","CONNECTED" |
-ROW |20719 |28511 |17499 |last |$,#1 |
-ROW |20720 |28511 |17499 |last |$ |
-ROW |20721 |32766 |17500 |find |$,,"like","off" |
-ROW |20722 |32778 |17501 |min |$,{$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"} |
-ROW |20723 |32779 |17501 |last |$ |
-ROW |20724 |32804 |17502 |min |$,5m |
-ROW |20725 |32805 |17502 |last |$ |
-ROW |20726 |32794 |17503 |last |$ |
-ROW |20727 |32793 |17504 |last |$ |
-ROW |20728 |32789 |17505 |last |$ |
-ROW |20729 |32788 |17506 |last |$,#1 |
-ROW |20730 |32788 |17506 |last |$ |
-ROW |20731 |32840 |17507 |max |$,1h |
-ROW |20732 |32848 |17508 |max |$,1h |
-ROW |20733 |32860 |17509 |max |$,1h |
-ROW |20734 |32802 |17510 |last |$ |
-ROW |20735 |32872 |17511 |last |$ |
-ROW |20736 |32873 |17511 |last |$ |
-ROW |20737 |32872 |17512 |last |$ |
-ROW |20738 |32873 |17512 |last |$ |
-ROW |20739 |32871 |17513 |last |$ |
-ROW |20741 |32909 |17515 |last |$ |
-ROW |20742 |32914 |17516 |last |$ |
-ROW |20743 |32914 |17517 |last |$ |
-ROW |20744 |32913 |17518 |last |$ |
-ROW |20745 |32913 |17519 |last |$ |
-ROW |20746 |32912 |17520 |last |$ |
-ROW |20747 |32970 |17521 |min |$,5m |
-ROW |20748 |32980 |17521 |last |$ |
-ROW |20749 |32966 |17522 |min |$,5m |
-ROW |20750 |32975 |17523 |last |$,#1 |
-ROW |20751 |32975 |17523 |last |$ |
-ROW |20752 |32977 |17524 |nodata |$,10m |
-ROW |20753 |32977 |17525 |last |$ |
-ROW |20754 |32978 |17526 |last |$,#1 |
-ROW |20755 |32978 |17526 |last |$ |
-ROW |20756 |33009 |17527 |last |$ |
-ROW |20757 |33008 |17527 |last |$ |
-ROW |20758 |33007 |17528 |min |$,5m |
-ROW |20759 |33012 |17529 |avg |$,10m |
-ROW |20760 |33013 |17530 |avg |$,10m |
-ROW |20761 |33016 |17531 |avg |$,10m |
-ROW |20762 |33017 |17532 |avg |$,10m |
-ROW |20763 |33018 |17533 |avg |$,10m |
-ROW |20764 |33019 |17534 |avg |$,10m |
-ROW |20765 |33022 |17535 |avg |$,10m |
-ROW |20766 |33023 |17536 |avg |$,10m |
-ROW |20767 |33026 |17537 |avg |$,10m |
-ROW |20768 |33027 |17538 |avg |$,10m |
-ROW |20769 |33062 |17539 |last |$,#1 |
-ROW |20770 |33062 |17539 |last |$ |
-ROW |20771 |33091 |17540 |min |$,15m |
-ROW |20772 |33091 |17541 |min |$,15m |
-ROW |20773 |33079 |17542 |min |$,5m |
-ROW |20774 |33061 |17543 |nodata |$,15m |
-ROW |20775 |33059 |17544 |last |$ |
-ROW |20776 |33169 |17545 |min |$,5m |
-ROW |20777 |33169 |17546 |min |$,5m |
-ROW |20778 |31781 |17547 |min |$,5m |
-ROW |20779 |31781 |17548 |min |$,5m |
-ROW |20780 |33171 |17549 |min |$,5m |
-ROW |20781 |33171 |17550 |min |$,5m |
-ROW |20782 |31273 |17551 |min |$,5m |
-ROW |20783 |31273 |17552 |min |$,5m |
-ROW |20784 |33174 |17553 |last |$ |
-ROW |20785 |28325 |17554 |min |$,5m |
-ROW |20786 |28325 |17555 |min |$,5m |
-ROW |20787 |28325 |17556 |max |$,5m |
-ROW |20788 |28325 |17557 |max |$,5m |
-ROW |20789 |28323 |17558 |min |$,5m |
-ROW |20790 |28323 |17559 |min |$,5m |
-ROW |20791 |28323 |17560 |max |$,5m |
-ROW |20792 |28323 |17561 |max |$,5m |
-ROW |20793 |33183 |17562 |min |$,5m |
-ROW |20794 |33183 |17563 |min |$,5m |
-ROW |20795 |33183 |17564 |max |$,5m |
-ROW |20796 |33183 |17565 |max |$,5m |
-ROW |20797 |27421 |17566 |avg |$,5m |
-ROW |20798 |27420 |17566 |last |$ |
-ROW |20799 |27421 |17566 |max |$,5m |
-ROW |20800 |27421 |17567 |avg |$,5m |
-ROW |20801 |27420 |17567 |last |$ |
-ROW |20802 |27421 |17567 |max |$,5m |
-ROW |20803 |27430 |17568 |avg |$,5m |
-ROW |20804 |27429 |17568 |last |$ |
-ROW |20805 |27430 |17568 |max |$,5m |
-ROW |20806 |27447 |17569 |avg |$,5m |
-ROW |20807 |27446 |17569 |last |$ |
-ROW |20808 |27447 |17569 |max |$,5m |
-ROW |20809 |28218 |17570 |avg |$,5m |
-ROW |20810 |28217 |17570 |last |$ |
-ROW |20811 |28218 |17570 |max |$,5m |
-ROW |20812 |27430 |17571 |avg |$,5m |
-ROW |20813 |27429 |17571 |last |$ |
-ROW |20814 |27430 |17571 |max |$,5m |
-ROW |20815 |27447 |17572 |avg |$,5m |
-ROW |20816 |27446 |17572 |last |$ |
-ROW |20817 |27447 |17572 |max |$,5m |
-ROW |20818 |28218 |17573 |avg |$,5m |
-ROW |20819 |28217 |17573 |last |$ |
-ROW |20820 |28218 |17573 |max |$,5m |
-ROW |20821 |27584 |17574 |avg |$,5m |
-ROW |20822 |27585 |17574 |last |$ |
-ROW |20823 |27584 |17574 |max |$,5m |
-ROW |20824 |33199 |17575 |last |$ |
-ROW |20825 |33199 |17576 |last |$ |
-ROW |20826 |33185 |17577 |last |$ |
-ROW |20827 |33185 |17578 |last |$ |
-ROW |20828 |33192 |17579 |count |$,#3,"like","arrayCurrentOffset" |
-ROW |20829 |33192 |17580 |count |$,#3,"like","batterySenseDisconnected" |
-ROW |20830 |33192 |17581 |count |$,#3,"like","batterySenseOutOfRange" |
-ROW |20831 |33192 |17582 |count |$,#3,"like","controllerReset" |
-ROW |20832 |33192 |17583 |count |$,#3,"like","currentLimit" |
-ROW |20833 |33192 |17584 |count |$,#3,"like","currentMeasurementError" |
-ROW |20834 |33192 |17585 |count |$,#3,"like","eepromAccessFailure" |
-ROW |20835 |33192 |17586 |count |$,#3,"like","fp10SupplyOutOfRange" |
-ROW |20836 |33192 |17587 |count |$,#3,"like","heatsinkTempLimit" |
-ROW |20837 |33192 |17588 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |20838 |33192 |17589 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |20839 |33192 |17590 |count |$,#3,"like","hightInputVoltageLimit" |
-ROW |20840 |33192 |17591 |count |$,#3,"like","inductorTempLimit" |
-ROW |20841 |33192 |17592 |count |$,#3,"like","inductorTempSensorOpen" |
-ROW |20842 |33192 |17593 |count |$,#3,"like","inductorTempSensorShorted" |
-ROW |20843 |33192 |17594 |count |$,#3,"like","loadCurrentOffset" |
-ROW |20844 |33192 |17595 |count |$,#3,"like","loadLvd" |
-ROW |20845 |33192 |17596 |count |$,#3,"like","logTimeout" |
-ROW |20846 |33192 |17597 |count |$,#3,"like","mosfetOpen" |
-ROW |20847 |33192 |17598 |count |$,#3,"like","p12SupplyOutOfRange" |
-ROW |20848 |33192 |17599 |count |$,#3,"like","p33SupplyOutOfRange" |
-ROW |20849 |33192 |17600 |count |$,#3,"like","rtsDisconnected" |
-ROW |20850 |33192 |17601 |count |$,#3,"like","rtsShorted" |
-ROW |20851 |33192 |17602 |count |$,#3,"like","tb5v" |
-ROW |20852 |33192 |17603 |count |$,#3,"like","uncalibrated" |
-ROW |20853 |33191 |17604 |count |$,#3,"like","arrayHvd" |
-ROW |20854 |33191 |17605 |count |$,#3,"like","batteryHvd" |
-ROW |20855 |33191 |17606 |count |$,#3,"like","batteryLowVoltageDisconnect" |
-ROW |20856 |33191 |17607 |count |$,#3,"like","customSettingsEdit" |
-ROW |20857 |33191 |17608 |count |$,#3,"like","dipSwitchChanged" |
-ROW |20858 |33191 |17609 |count |$,#3,"like","localTempSensorDamaged" |
-ROW |20859 |33191 |17610 |count |$,#3,"like","mosfetSShorted" |
-ROW |20860 |33191 |17611 |count |$,#3,"like","overcurrent" |
-ROW |20861 |33191 |17612 |count |$,#3,"like","rtsNoLongerValid" |
-ROW |20862 |33191 |17613 |count |$,#3,"like","rtsShorted" |
-ROW |20863 |33191 |17614 |count |$,#3,"like","slaveTimeout" |
-ROW |20864 |33191 |17615 |count |$,#3,"like","software" |
-ROW |20865 |33190 |17616 |count |$,#3,"like","customSettingsEdit" |
-ROW |20866 |33190 |17617 |count |$,#3,"like","dipSwitchChanged" |
-ROW |20867 |33190 |17618 |count |$,#3,"like","externalShortCircuit" |
-ROW |20868 |33190 |17619 |count |$,#3,"like","highTempDisconnect" |
-ROW |20869 |33190 |17620 |count |$,#3,"like","loadHvd" |
-ROW |20870 |33190 |17621 |count |$,#3,"like","mosfetShorted" |
-ROW |20871 |33190 |17622 |count |$,#3,"like","overcurrent" |
-ROW |20872 |33190 |17623 |count |$,#3,"like","software" |
-ROW |20873 |33189 |17624 |last |$ |
-ROW |20874 |33189 |17625 |nodata |$,5m |
-ROW |20875 |33186 |17626 |min |$,5m |
-ROW |20876 |33186 |17627 |max |$,5m |
-ROW |20877 |33186 |17628 |min |$,5m |
-ROW |20878 |33186 |17629 |max |$,5m |
-ROW |20879 |33206 |17630 |min |$,5m |
-ROW |20880 |33206 |17631 |max |$,5m |
-ROW |20881 |33206 |17632 |min |$,5m |
-ROW |20882 |33206 |17633 |max |$,5m |
-ROW |20883 |33222 |17634 |last |$ |
-ROW |20884 |33222 |17635 |last |$ |
-ROW |20885 |33217 |17636 |last |$ |
-ROW |20886 |33217 |17637 |last |$ |
-ROW |20887 |33208 |17638 |count |$,#3,"like","arrayCurrentOffset" |
-ROW |20888 |33208 |17639 |count |$,#3,"like","batterySenseDisconnected" |
-ROW |20889 |33208 |17640 |count |$,#3,"like","batterySenseOutOfRange" |
-ROW |20890 |33208 |17641 |count |$,#3,"like","batteryTempOutOfRange" |
-ROW |20891 |33208 |17642 |count |$,#3,"like","controllerReset" |
-ROW |20892 |33208 |17643 |count |$,#3,"like","currentLimit" |
-ROW |20893 |33208 |17644 |count |$,#3,"like","currentMeasurementError" |
-ROW |20894 |33208 |17645 |count |$,#3,"like","eepromAccessFailure" |
-ROW |20895 |33208 |17646 |count |$,#3,"like","fp10SupplyOutOfRange" |
-ROW |20896 |33208 |17647 |count |$,#3,"like","heatsinkTempLimit" |
-ROW |20897 |33208 |17648 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |20898 |33208 |17649 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |20899 |33208 |17650 |count |$,#3,"like","hightInputVoltageLimit" |
-ROW |20900 |33208 |17651 |count |$,#3,"like","loadCurrentOffset" |
-ROW |20901 |33208 |17652 |count |$,#3,"like","loadLvd" |
-ROW |20902 |33208 |17653 |count |$,#3,"like","logTimeout" |
-ROW |20903 |33208 |17654 |count |$,#3,"like","mosfetOpen" |
-ROW |20904 |33208 |17655 |count |$,#3,"like","p12SupplyOutOfRange" |
-ROW |20905 |33208 |17656 |count |$,#3,"like","p33SupplyOutOfRange" |
-ROW |20906 |33208 |17657 |count |$,#3,"like","rtsDisconnected" |
-ROW |20907 |33208 |17658 |count |$,#3,"like","rtsShorted" |
-ROW |20908 |33208 |17659 |count |$,#3,"like","uncalibrated" |
-ROW |20909 |33214 |17660 |count |$,#3,"like","arrayHvd" |
-ROW |20910 |33214 |17661 |count |$,#3,"like","batteryHvd" |
-ROW |20911 |33214 |17662 |count |$,#3,"like","batteryLowVoltageDisconnect" |
-ROW |20912 |33214 |17663 |count |$,#3,"like","customSettingsEdit" |
-ROW |20913 |33214 |17664 |count |$,#3,"like","dipSwitchChanged" |
-ROW |20914 |33214 |17665 |count |$,#3,"like","localTempSensorDamaged" |
-ROW |20915 |33214 |17666 |count |$,#3,"like","mosfetSShorted" |
-ROW |20916 |33214 |17667 |count |$,#3,"like","overcurrent" |
-ROW |20917 |33214 |17668 |count |$,#3,"like","p3Fault" |
-ROW |20918 |33214 |17669 |count |$,#3,"like","rtsNoLongerValid" |
-ROW |20919 |33214 |17670 |count |$,#3,"like","rtsShorted" |
-ROW |20920 |33214 |17671 |count |$,#3,"like","slaveTimeout" |
-ROW |20921 |33214 |17672 |count |$,#3,"like","software" |
-ROW |20922 |33213 |17673 |count |$,#3,"like","customSettingsEdit" |
-ROW |20923 |33213 |17674 |count |$,#3,"like","dipSwitchChanged" |
-ROW |20924 |33213 |17675 |count |$,#3,"like","externalShortCircuit" |
-ROW |20925 |33213 |17676 |count |$,#3,"like","highTempDisconnect" |
-ROW |20926 |33213 |17677 |count |$,#3,"like","loadHvd" |
-ROW |20927 |33213 |17678 |count |$,#3,"like","mosfetShorted" |
-ROW |20928 |33213 |17679 |count |$,#3,"like","overcurrent" |
-ROW |20929 |33213 |17680 |count |$,#3,"like","p3Fault" |
-ROW |20930 |33213 |17681 |count |$,#3,"like","software" |
-ROW |20931 |33212 |17682 |last |$ |
-ROW |20932 |33212 |17683 |nodata |$,5m |
-ROW |20933 |33209 |17684 |min |$,5m |
-ROW |20934 |33209 |17685 |max |$,5m |
-ROW |20935 |33209 |17686 |min |$,5m |
-ROW |20936 |33209 |17687 |max |$,5m |
-ROW |20937 |33226 |17688 |min |$,5m |
-ROW |20938 |33226 |17689 |max |$,5m |
-ROW |20939 |33226 |17690 |min |$,5m |
-ROW |20940 |33226 |17691 |max |$,5m |
-ROW |20941 |33242 |17692 |last |$ |
-ROW |20942 |33242 |17693 |last |$ |
-ROW |20943 |33228 |17694 |last |$ |
-ROW |20944 |33228 |17695 |last |$ |
-ROW |20945 |33235 |17696 |count |$,#3,"like","currentLimit" |
-ROW |20946 |33235 |17697 |count |$,#3,"like","currentOffset" |
-ROW |20947 |33235 |17698 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |20948 |33235 |17699 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |20949 |33235 |17700 |count |$,#3,"like","highVaCurrentLimit" |
-ROW |20950 |33235 |17701 |count |$,#3,"like","mosfetSOpen" |
-ROW |20951 |33235 |17702 |count |$,#3,"like","p12VoltageReferenceOff" |
-ROW |20952 |33235 |17703 |count |$,#3,"like","rtsDisconnected" |
-ROW |20953 |33235 |17704 |count |$,#3,"like","rtsMiswire" |
-ROW |20954 |33235 |17705 |count |$,#3,"like","rtsShorted" |
-ROW |20955 |33235 |17706 |count |$,#3,"like","sspptHot" |
-ROW |20956 |33235 |17707 |count |$,#3,"like","systemMiswire" |
-ROW |20957 |33235 |17708 |count |$,#3,"like","uncalibrated" |
-ROW |20958 |33234 |17709 |count |$,#3,"like","arrayHvd" |
-ROW |20959 |33234 |17710 |count |$,#3,"like","batteryHvd" |
-ROW |20960 |33234 |17711 |count |$,#3,"like","customSettingsEdit" |
-ROW |20961 |33234 |17712 |count |$,#3,"like","localTempSensorDamaged" |
-ROW |20962 |33234 |17713 |count |$,#3,"like","mosfetSShorted" |
-ROW |20963 |33234 |17714 |count |$,#3,"like","overcurrent" |
-ROW |20964 |33234 |17715 |count |$,#3,"like","rtsNoLongerValid" |
-ROW |20965 |33234 |17716 |count |$,#3,"like","rtsShorted" |
-ROW |20966 |33234 |17717 |count |$,#3,"like","softwareFault" |
-ROW |20967 |33233 |17718 |count |$,#3,"like","customSettingsEdit" |
-ROW |20968 |33233 |17719 |count |$,#3,"like","externalShortCircuit" |
-ROW |20969 |33233 |17720 |count |$,#3,"like","highTempDisconnect" |
-ROW |20970 |33233 |17721 |count |$,#3,"like","loadHvd" |
-ROW |20971 |33233 |17722 |count |$,#3,"like","mosfetShorted" |
-ROW |20972 |33233 |17723 |count |$,#3,"like","overcurrent" |
-ROW |20973 |33233 |17724 |count |$,#3,"like","software" |
-ROW |20974 |33233 |17725 |count |$,#3,"like","unknownLoadFault" |
-ROW |20975 |33232 |17726 |last |$ |
-ROW |20976 |33232 |17727 |nodata |$,5m |
-ROW |20977 |33229 |17728 |min |$,5m |
-ROW |20978 |33229 |17729 |max |$,5m |
-ROW |20979 |33229 |17730 |min |$,5m |
-ROW |20980 |33229 |17731 |max |$,5m |
-ROW |20981 |33249 |17732 |min |$,5m |
-ROW |20982 |33249 |17733 |max |$,5m |
-ROW |20983 |33249 |17734 |min |$,5m |
-ROW |20984 |33249 |17735 |max |$,5m |
-ROW |20985 |33252 |17736 |last |$ |
-ROW |20986 |33252 |17737 |last |$ |
-ROW |20987 |33253 |17738 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |20988 |33253 |17739 |count |$,#3,"like","heatsinkTempSensorShort" |
-ROW |20989 |33253 |17740 |count |$,#3,"like","suresineHot" |
-ROW |20990 |33253 |17741 |count |$,#3,"like","unknownAlarm" |
-ROW |20991 |33254 |17742 |count |$,#3,"like","customSettingsEdit" |
-ROW |20992 |33254 |17743 |count |$,#3,"like","dipSwitchChanged" |
-ROW |20993 |33254 |17744 |count |$,#3,"like","highVoltageDisconnect" |
-ROW |20994 |33254 |17745 |count |$,#3,"like","overcurrent" |
-ROW |20995 |33254 |17746 |count |$,#3,"like","reset" |
-ROW |20996 |33254 |17747 |count |$,#3,"like","software" |
-ROW |20997 |33254 |17748 |count |$,#3,"like","suresineHot" |
-ROW |20998 |33254 |17749 |count |$,#3,"like","unknownFault" |
-ROW |20999 |33255 |17750 |last |$ |
-ROW |21000 |33255 |17751 |nodata |$,5m |
-ROW |21001 |33258 |17752 |min |$,5m |
-ROW |21002 |33258 |17753 |max |$,5m |
-ROW |21003 |33258 |17754 |min |$,5m |
-ROW |21004 |33258 |17755 |max |$,5m |
-ROW |21005 |33267 |17756 |last |$ |
-ROW |21006 |33267 |17757 |last |$ |
-ROW |21007 |33265 |17758 |count |$,#3,"like","alarm21Internal" |
-ROW |21008 |33265 |17759 |count |$,#3,"like","arrayCurrentOffset" |
-ROW |21009 |33265 |17760 |count |$,#3,"like","batterySense" |
-ROW |21010 |33265 |17761 |count |$,#3,"like","batterySenseDisconnected" |
-ROW |21011 |33265 |17762 |count |$,#3,"like","controllerWasReset" |
-ROW |21012 |33265 |17763 |count |$,#3,"like","currentLimit" |
-ROW |21013 |33265 |17764 |count |$,#3,"like","currentOffset" |
-ROW |21014 |33265 |17765 |count |$,#3,"like","derateLimit" |
-ROW |21015 |33265 |17766 |count |$,#3,"like","ee-i2cRetryLimit" |
-ROW |21016 |33265 |17767 |count |$,#3,"like","ethernetAlarm" |
-ROW |21017 |33265 |17768 |count |$,#3,"like","extflashFault" |
-ROW |21018 |33265 |17769 |count |$,#3,"like","fp12VoltageOutOfRange" |
-ROW |21019 |33265 |17770 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |21020 |33265 |17771 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |21021 |33265 |17772 |count |$,#3,"like","highArrayVCurrentLimit" |
-ROW |21022 |33265 |17773 |count |$,#3,"like","highTemperatureCurrentLimit" |
-ROW |21023 |33265 |17774 |count |$,#3,"like","highVoltageDisconnect" |
-ROW |21024 |33265 |17775 |count |$,#3,"like","lvd" |
-ROW |21025 |33265 |17776 |count |$,#3,"like","maxAdcValueReached" |
-ROW |21026 |33265 |17777 |count |$,#3,"like","mosfetSOpen" |
-ROW |21027 |33265 |17778 |count |$,#3,"like","p3VoltageOutOfRange" |
-ROW |21028 |33265 |17779 |count |$,#3,"like","p12VoltageOutOfRange" |
-ROW |21029 |33265 |17780 |count |$,#3,"like","rtsDisconnected" |
-ROW |21030 |33265 |17781 |count |$,#3,"like","rtsMiswire" |
-ROW |21031 |33265 |17782 |count |$,#3,"like","rtsShorted" |
-ROW |21032 |33265 |17783 |count |$,#3,"like","slaveControlFault" |
-ROW |21033 |33265 |17784 |count |$,#3,"like","software" |
-ROW |21034 |33265 |17785 |count |$,#3,"like","systemMiswire" |
-ROW |21035 |33265 |17786 |count |$,#3,"like","uncalibrated" |
-ROW |21036 |33264 |17787 |count |$,#3,"like","arrayHvd" |
-ROW |21037 |33264 |17788 |count |$,#3,"like","batteryHvd" |
-ROW |21038 |33264 |17789 |count |$,#3,"like","batteryLvd" |
-ROW |21039 |33264 |17790 |count |$,#3,"like","blockbusBoot" |
-ROW |21040 |33264 |17791 |count |$,#3,"like","chargeSlaveControlTimeout" |
-ROW |21041 |33264 |17792 |count |$,#3,"like","controllerWasReset" |
-ROW |21042 |33264 |17793 |count |$,#3,"like","currentSensorReferenceOutOfRange" |
-ROW |21043 |33264 |17794 |count |$,#3,"like","customSettingsEdit" |
-ROW |21044 |33264 |17795 |count |$,#3,"like","dipSwitchChange" |
-ROW |21045 |33264 |17796 |count |$,#3,"like","eepromRetryLimit" |
-ROW |21046 |33264 |17797 |count |$,#3,"like","fault16Software" |
-ROW |21047 |33264 |17798 |count |$,#3,"like","fault17Software" |
-ROW |21048 |33264 |17799 |count |$,#3,"like","fault18Software" |
-ROW |21049 |33264 |17800 |count |$,#3,"like","fault19Software" |
-ROW |21050 |33264 |17801 |count |$,#3,"like","fault20Software" |
-ROW |21051 |33264 |17802 |count |$,#3,"like","fault21Software" |
-ROW |21052 |33264 |17803 |count |$,#3,"like","fetShort" |
-ROW |21053 |33264 |17804 |count |$,#3,"like","fpgaVersion" |
-ROW |21054 |33264 |17805 |count |$,#3,"like","hscomm" |
-ROW |21055 |33264 |17806 |count |$,#3,"like","hscommMaster" |
-ROW |21056 |33264 |17807 |count |$,#3,"like","ia-refSlaveModeTimeout" |
-ROW |21057 |33264 |17808 |count |$,#3,"like","overcurrent" |
-ROW |21058 |33264 |17809 |count |$,#3,"like","powerboardCommunicationFault" |
-ROW |21059 |33264 |17810 |count |$,#3,"like","rs232SerialToMeterBridge" |
-ROW |21060 |33264 |17811 |count |$,#3,"like","rtsDisconnected" |
-ROW |21061 |33264 |17812 |count |$,#3,"like","rtsShorted" |
-ROW |21062 |33264 |17813 |count |$,#3,"like","slave" |
-ROW |21063 |33264 |17814 |count |$,#3,"like","softwareFault" |
-ROW |21064 |33263 |17815 |last |$ |
-ROW |21065 |33263 |17816 |nodata |$,5m |
-ROW |21066 |33261 |17817 |min |$,5m |
-ROW |21067 |33261 |17818 |max |$,5m |
-ROW |21068 |33261 |17819 |min |$,5m |
-ROW |21069 |33261 |17820 |max |$,5m |
-ROW |21070 |33277 |17821 |min |$,5m |
-ROW |21071 |33277 |17822 |max |$,5m |
-ROW |21072 |33277 |17823 |min |$,5m |
-ROW |21073 |33277 |17824 |max |$,5m |
-ROW |21074 |33286 |17825 |last |$ |
-ROW |21075 |33286 |17826 |last |$ |
-ROW |21076 |33284 |17827 |count |$,#3,"like","batterySense" |
-ROW |21077 |33284 |17828 |count |$,#3,"like","batterySenseDisconnected" |
-ROW |21078 |33284 |17829 |count |$,#3,"like","controllerWasReset" |
-ROW |21079 |33284 |17830 |count |$,#3,"like","currentLimit" |
-ROW |21080 |33284 |17831 |count |$,#3,"like","currentOffset" |
-ROW |21081 |33284 |17832 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |21082 |33284 |17833 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |21083 |33284 |17834 |count |$,#3,"like","highArrayVCurrentLimit" |
-ROW |21084 |33284 |17835 |count |$,#3,"like","highTemperatureCurrentLimit" |
-ROW |21085 |33284 |17836 |count |$,#3,"like","highVoltageDisconnect" |
-ROW |21086 |33284 |17837 |count |$,#3,"like","maxAdcValueReached" |
-ROW |21087 |33284 |17838 |count |$,#3,"like","mosfetSOpen" |
-ROW |21088 |33284 |17839 |count |$,#3,"like","p12VoltageReferenceOff" |
-ROW |21089 |33284 |17840 |count |$,#3,"like","rtsDisconnected" |
-ROW |21090 |33284 |17841 |count |$,#3,"like","rtsMiswire" |
-ROW |21091 |33284 |17842 |count |$,#3,"like","rtsShorted" |
-ROW |21092 |33284 |17843 |count |$,#3,"like","systemMiswire" |
-ROW |21093 |33284 |17844 |count |$,#3,"like","uncalibrated" |
-ROW |21094 |33283 |17845 |count |$,#3,"like","arrayHvd" |
-ROW |21095 |33283 |17846 |count |$,#3,"like","batteryHvd" |
-ROW |21096 |33283 |17847 |count |$,#3,"like","customSettingsEdit" |
-ROW |21097 |33283 |17848 |count |$,#3,"like","dipSwitchChange" |
-ROW |21098 |33283 |17849 |count |$,#3,"like","eepromRetryLimit" |
-ROW |21099 |33283 |17850 |count |$,#3,"like","fetShort" |
-ROW |21100 |33283 |17851 |count |$,#3,"like","overcurrent" |
-ROW |21101 |33283 |17852 |count |$,#3,"like","rtsDisconnected" |
-ROW |21102 |33283 |17853 |count |$,#3,"like","rtsShorted" |
-ROW |21103 |33283 |17854 |count |$,#3,"like","slaveControlTimeout" |
-ROW |21104 |33283 |17855 |count |$,#3,"like","softwareFault" |
-ROW |21105 |33282 |17856 |last |$ |
-ROW |21106 |33282 |17857 |nodata |$,5m |
-ROW |21107 |33280 |17858 |min |$,5m |
-ROW |21108 |33280 |17859 |max |$,5m |
-ROW |21109 |33280 |17860 |min |$,5m |
-ROW |21110 |33280 |17861 |max |$,5m |
-ROW |21111 |33296 |17862 |min |$,5m |
-ROW |21112 |33296 |17863 |max |$,5m |
-ROW |21113 |33296 |17864 |min |$,5m |
-ROW |21114 |33296 |17865 |max |$,5m |
-ROW |21115 |33301 |17866 |count |$,#3,"like","batterySense" |
-ROW |21116 |33301 |17867 |count |$,#3,"like","batterySenseDisconnected" |
-ROW |21117 |33301 |17868 |count |$,#3,"like","currentLimit" |
-ROW |21118 |33301 |17869 |count |$,#3,"like","currentOffset" |
-ROW |21119 |33301 |17870 |count |$,#3,"like","diversionLoadNearMax" |
-ROW |21120 |33301 |17871 |count |$,#3,"like","heatsinkTempSensorOpen" |
-ROW |21121 |33301 |17872 |count |$,#3,"like","heatsinkTempSensorShorted" |
-ROW |21122 |33301 |17873 |count |$,#3,"like","highVoltageDisconnect" |
-ROW |21123 |33301 |17874 |count |$,#3,"like","loadDisconnectState" |
-ROW |21124 |33301 |17875 |count |$,#3,"like","mosfetSOpen" |
-ROW |21125 |33301 |17876 |count |$,#3,"like","p12VoltageReferenceOff" |
-ROW |21126 |33301 |17877 |count |$,#3,"like","rtsDisconnected" |
-ROW |21127 |33301 |17878 |count |$,#3,"like","rtsMiswire" |
-ROW |21128 |33301 |17879 |count |$,#3,"like","rtsShorted" |
-ROW |21129 |33301 |17880 |count |$,#3,"like","systemMiswire" |
-ROW |21130 |33301 |17881 |count |$,#3,"like","tristarHot" |
-ROW |21131 |33301 |17882 |count |$,#3,"like","uncalibrated" |
-ROW |21132 |33302 |17883 |count |$,#3,"like","customSettingsEdit" |
-ROW |21133 |33302 |17884 |count |$,#3,"like","dipSwitchChange" |
-ROW |21134 |33302 |17885 |count |$,#3,"like","externalShort" |
-ROW |21135 |33302 |17886 |count |$,#3,"like","highVoltageDisconnect" |
-ROW |21136 |33302 |17887 |count |$,#3,"like","mosfetSShorted" |
-ROW |21137 |33302 |17888 |count |$,#3,"like","overcurrent" |
-ROW |21138 |33302 |17889 |count |$,#3,"like","reset" |
-ROW |21139 |33302 |17890 |count |$,#3,"like","rtsDisconnected" |
-ROW |21140 |33302 |17891 |count |$,#3,"like","rtsShorted" |
-ROW |21141 |33302 |17892 |count |$,#3,"like","softwareFault" |
-ROW |21142 |33302 |17893 |count |$,#3,"like","systemMiswire" |
-ROW |21143 |33302 |17894 |count |$,#3,"like","tristarHot" |
-ROW |21144 |33303 |17895 |last |$ |
-ROW |21145 |33303 |17896 |nodata |$,5m |
-ROW |21146 |33304 |17897 |min |$,5m |
-ROW |21147 |33304 |17898 |max |$,5m |
-ROW |21148 |33304 |17899 |min |$,5m |
-ROW |21149 |33304 |17900 |max |$,5m |
-ROW |21150 |33312 |17901 |min |$,5m |
-ROW |21151 |33312 |17902 |max |$,5m |
-ROW |21152 |33312 |17903 |min |$,5m |
-ROW |21153 |33312 |17904 |max |$,5m |
-ROW |21154 |33315 |17905 |last |$ |
-ROW |21155 |33315 |17906 |last |$ |
-ROW |21156 |33318 |17907 |last |$ |
-ROW |21157 |33318 |17908 |last |$ |
-ROW |21158 |27941 |17909 |avg |$,5m |
-ROW |21159 |27940 |17909 |last |$ |
-ROW |21160 |27941 |17909 |max |$,5m |
-ROW |21161 |27941 |17910 |avg |$,5m |
-ROW |21162 |27940 |17910 |last |$ |
-ROW |21163 |27941 |17910 |max |$,5m |
-ROW |21164 |31453 |17911 |change |$ |
-ROW |21165 |31453 |17911 |last |$ |
-ROW |21166 |31454 |17911 |last |$ |
-ROW |21167 |33322 |17912 |min |$,15m |
-ROW |21168 |33323 |17913 |min |$,15m |
-ROW |21169 |31456 |17914 |change |$ |
-ROW |21170 |31456 |17914 |last |$ |
-ROW |21171 |31457 |17914 |last |$ |
-ROW |21172 |33326 |17915 |min |$,15m |
-ROW |21173 |33327 |17916 |min |$,15m |
-ROW |21174 |32040 |17917 |change |$ |
-ROW |21175 |32040 |17917 |last |$ |
-ROW |21176 |32041 |17917 |last |$ |
-ROW |21177 |33330 |17918 |min |$,15m |
-ROW |21178 |33331 |17919 |min |$,15m |
-ROW |21179 |32043 |17920 |change |$ |
-ROW |21180 |32043 |17920 |last |$ |
-ROW |21181 |32044 |17920 |last |$ |
-ROW |21182 |33334 |17921 |min |$,15m |
-ROW |21183 |33335 |17922 |min |$,15m |
-ROW |21184 |33337 |17923 |max |$,#3 |
-ROW |21185 |33338 |17924 |min |$,5m |
-ROW |21186 |33339 |17925 |avg |$,5m |
-ROW |21187 |33344 |17926 |last |$,#1 |
-ROW |21188 |33344 |17926 |last |$ |
-ROW |21189 |33346 |17927 |last |$ |
-ROW |21190 |33347 |17928 |max |$,{$SNMP.TIMEOUT} |
-ROW |21191 |33348 |17929 |last |$ |
-ROW |21192 |33349 |17929 |last |$,#1 |
-ROW |21193 |33359 |17930 |last |$ |
-ROW |21194 |33360 |17930 |last |$ |
-ROW |21195 |33357 |17931 |last |$ |
-ROW |21196 |33358 |17931 |last |$ |
-ROW |21197 |33361 |17932 |last |$ |
-ROW |21198 |33362 |17933 |last |$ |
-ROW |21199 |33365 |17934 |last |$ |
-ROW |21200 |33367 |17935 |last |$ |
-ROW |21201 |33368 |17936 |min |$,5m |
-ROW |21202 |33369 |17937 |min |$,{$FAS3220.FS.TIME:"{#FSNAME}"} |
-ROW |21203 |33374 |17938 |max |$,{$FAS3220.FS.TIME:"{#FSNAME}"} |
-ROW |21204 |33375 |17939 |last |$ |
-ROW |21205 |33376 |17940 |last |$ |
-ROW |21206 |33376 |17941 |last |$ |
-ROW |21211 |33385 |17943 |last |$ |
-ROW |21212 |33388 |17943 |last |$ |
-ROW |21213 |33384 |17944 |last |$ |
-ROW |21214 |33383 |17944 |last |$ |
-ROW |21215 |28356 |17945 |avg |$,5m |
-ROW |21216 |28357 |17945 |last |$ |
-ROW |21217 |28356 |17945 |max |$,5m |
-ROW |21218 |28356 |17946 |avg |$,5m |
-ROW |21219 |28357 |17946 |last |$ |
-ROW |21220 |28356 |17946 |max |$,5m |
-ROW |21221 |28354 |17947 |avg |$,5m |
-ROW |21222 |28355 |17947 |last |$ |
-ROW |21223 |28354 |17947 |max |$,5m |
-ROW |21224 |28354 |17948 |avg |$,5m |
-ROW |21225 |28355 |17948 |last |$ |
-ROW |21226 |28354 |17948 |max |$,5m |
-ROW |21227 |31807 |17949 |min |$,10m |
-ROW |21228 |31809 |17950 |min |$,10m |
-ROW |21229 |31812 |17951 |min |$,10m |
-ROW |21230 |31814 |17952 |min |$,10m |
-ROW |21231 |33444 |17953 |last |$ |
-ROW |21232 |33443 |17953 |last |$ |
-ROW |21233 |33409 |17954 |last |$ |
-ROW |21234 |33426 |17954 |last |$ |
-ROW |21235 |33416 |17955 |last |$ |
-ROW |21236 |33415 |17955 |last |$ |
-ROW |21237 |33414 |17956 |last |$ |
-ROW |21238 |33413 |17956 |last |$ |
-ROW |21239 |33447 |17957 |min |$,5m |
-ROW |21240 |33397 |17958 |last |$ |
-ROW |21241 |33392 |17959 |last |$ |
-ROW |21242 |33417 |17960 |last |$ |
-ROW |21243 |33464 |17961 |last |$,#1 |
-ROW |21244 |33464 |17961 |last |$ |
-ROW |21245 |33475 |17962 |last |$ |
-ROW |21246 |33473 |17962 |last |$ |
-ROW |21247 |33476 |17963 |last |$ |
-ROW |21248 |33473 |17963 |last |$ |
-ROW |21249 |33480 |17964 |last |$ |
-ROW |21250 |33506 |17965 |last |$ |
-ROW |21251 |33504 |17965 |last |$ |
-ROW |21252 |33505 |17965 |last |$ |
-ROW |21253 |33506 |17966 |last |$ |
-ROW |21254 |33504 |17966 |last |$ |
-ROW |21255 |33505 |17966 |last |$ |
-ROW |21256 |33518 |17967 |min |$,5m |
-ROW |21257 |33508 |17968 |last |$,#1 |
-ROW |21258 |33508 |17968 |last |$ |
-ROW |21260 |33499 |17970 |last |$,#1 |
-ROW |21261 |33499 |17970 |last |$ |
-ROW |21262 |33519 |17971 |last |$ |
-ROW |21263 |33524 |17972 |last |$,#1 |
-ROW |21264 |33525 |17972 |last |$,#1 |
-ROW |21265 |33526 |17972 |last |$,#1 |
-ROW |21266 |33523 |17973 |last |$ |
-ROW |21267 |33523 |17974 |last |$ |
-ROW |21268 |33539 |17975 |last |$ |
-ROW |21269 |33540 |17975 |last |$ |
-ROW |21270 |33528 |17976 |last |$,#1 |
-ROW |21271 |33527 |17976 |last |$,#1 |
-ROW |21272 |33538 |17976 |last |$,#1 |
-ROW |21273 |33540 |17976 |last |$,#1 |
-ROW |21274 |33539 |17976 |last |$,#1 |
-ROW |21275 |33562 |17977 |min |$,5m |
-ROW |21276 |33553 |17977 |last |$ |
-ROW |21277 |33562 |17978 |min |$,5m |
-ROW |21278 |33553 |17978 |last |$ |
-ROW |21279 |33558 |17979 |min |$,5m |
-ROW |21280 |33557 |17979 |last |$ |
-ROW |21281 |33558 |17980 |min |$,5m |
-ROW |21282 |33557 |17980 |last |$ |
-ROW |21283 |33555 |17981 |min |$,5m |
-ROW |21284 |33560 |17982 |min |$,5m |
-ROW |21285 |33565 |17983 |min |$,5m |
-ROW |21286 |33565 |17984 |min |$,5m |
-ROW |21287 |33567 |17985 |min |$,15m |
-ROW |21288 |33568 |17986 |min |$,15m |
-ROW |21289 |33577 |17987 |last |$ |
-ROW |21290 |33574 |17987 |last |$ |
-ROW |21291 |33577 |17988 |change |$ |
-ROW |21292 |33577 |17989 |change |$ |
-ROW |21293 |33578 |17990 |last |$,#1 |
-ROW |21294 |33578 |17990 |last |$ |
-ROW |21295 |33580 |17991 |nodata |$,10m |
-ROW |21296 |33580 |17992 |last |$ |
-ROW |21297 |33585 |17993 |last |$,#1 |
-ROW |21298 |33585 |17993 |last |$ |
-ROW |21301 |33599 |17995 |last |$,#1 |
-ROW |21302 |33599 |17995 |last |$ |
-ROW |21303 |33600 |17996 |max |$,30m |
-ROW |21304 |33605 |17997 |max |$,30m |
-ROW |21305 |33610 |17998 |min |$,5m |
-ROW |21306 |33616 |17999 |last |$ |
-ROW |21307 |33619 |17999 |last |$ |
-ROW |21308 |33618 |18000 |min |$,5m |
-ROW |21309 |33617 |18000 |max |$,5m |
-ROW |21310 |33618 |18001 |min |$,5m |
-ROW |21311 |33617 |18001 |max |$,5m |
-ROW |21312 |30318 |18002 |last |$ |
-ROW |21313 |30369 |18002 |min |$,5m |
-ROW |21314 |28416 |18003 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:\"degraded\"}" |
-ROW |21315 |28415 |18004 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\"cacheModDegradedFailsafeSpeed\"}"|
-ROW |21316 |28415 |18004 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\"cacheReadCacheNotMapped\"}" |
-ROW |21317 |28415 |18004 |count |$,#1,"eq","{$DISK_ARRAY_CACHE_WARN_STATUS:\"cacheModFlashMemNotAttached\"}" |
-ROW |21318 |28415 |18005 |count |$,#1,"ne","{$DISK_ARRAY_CACHE_OK_STATUS:\"enabled\"}" |
-ROW |21319 |28415 |18005 |last |$ |
-ROW |21320 |33621 |18006 |last |$ |
-ROW |21321 |33621 |18007 |last |$ |
-ROW |21322 |33621 |18008 |last |$ |
-ROW |21323 |33622 |18009 |last |$ |
-ROW |21324 |33622 |18010 |last |$ |
-ROW |21325 |33622 |18011 |last |$ |
-ROW |21326 |33623 |18012 |last |$ |
-ROW |21327 |33623 |18013 |last |$ |
-ROW |21328 |33623 |18014 |last |$ |
-ROW |21329 |33624 |18015 |last |$ |
-ROW |21330 |33624 |18016 |last |$ |
-ROW |21331 |33624 |18017 |last |$ |
-ROW |21332 |33626 |18018 |last |$ |
-ROW |21333 |33626 |18019 |last |$ |
-ROW |21334 |33626 |18020 |last |$ |
-ROW |21335 |33627 |18021 |last |$ |
-ROW |21336 |33627 |18022 |last |$ |
-ROW |21337 |33627 |18023 |last |$ |
-ROW |21338 |33628 |18024 |last |$ |
-ROW |21339 |33628 |18025 |last |$ |
-ROW |21340 |33628 |18026 |last |$ |
-ROW |21341 |33632 |18027 |last |$ |
-ROW |21342 |33633 |18028 |last |$ |
-ROW |21343 |33631 |18029 |last |$ |
-ROW |21344 |33636 |18030 |last |$,#1 |
-ROW |21345 |33641 |18031 |last |$ |
-ROW |21346 |33655 |18032 |last |$,#1 |
-ROW |21347 |33655 |18032 |last |$ |
-ROW |21348 |33501 |18033 |min |$,5m |
-ROW |21349 |33598 |18034 |min |$,5m |
-ROW |21350 |33605 |18034 |max |$,5m |
-ROW |21351 |30159 |18035 |min |$,5m |
-ROW |21352 |30165 |18036 |min |$,5m |
-ROW |21354 |30177 |18038 |min |$,5m |
-ROW |21355 |30183 |18039 |min |$,5m |
-ROW |21552 |33659 |18096 |last |$ |
-ROW |21553 |33664 |18097 |last |$ |
-ROW |21554 |33665 |18098 |last |$,#1 |
-ROW |21555 |33665 |18098 |last |$ |
-ROW |21556 |33666 |18099 |avg |$,5m |
-ROW |21557 |33666 |18100 |avg |$,5m |
-ROW |21558 |33667 |18101 |last |$ |
-ROW |21559 |33671 |18102 |last |$ |
-ROW |21560 |33676 |18103 |last |$ |
-ROW |21561 |33677 |18104 |last |$,#1 |
-ROW |21562 |33677 |18104 |last |$ |
-ROW |21563 |33678 |18105 |avg |$,5m |
-ROW |21564 |33678 |18106 |avg |$,5m |
-ROW |21565 |33679 |18107 |last |$ |
-ROW |21566 |30089 |18108 |min |$,5m |
-ROW |21567 |30093 |18109 |min |$,5m |
-ROW |21568 |30094 |18110 |min |$,5m |
-ROW |21569 |30095 |18111 |min |$,5m |
-ROW |21570 |30096 |18112 |min |$,5m |
-ROW |21571 |30101 |18113 |min |$,5m |
-ROW |21572 |30102 |18114 |min |$,5m |
-ROW |21573 |30103 |18115 |min |$,5m |
-ROW |21574 |30104 |18116 |min |$,5m |
-ROW |21575 |30105 |18117 |min |$,5m |
-ROW |21576 |30107 |18118 |min |$,5m |
-ROW |21577 |30108 |18119 |min |$,5m |
-ROW |21578 |30111 |18120 |min |$,5m |
-ROW |21579 |30112 |18121 |min |$,5m |
-ROW |21580 |30115 |18122 |min |$,5m |
-ROW |21581 |30116 |18123 |min |$,5m |
-ROW |21582 |30118 |18124 |min |$,5m |
-ROW |21583 |30120 |18125 |min |$,5m |
-ROW |21584 |30123 |18126 |min |$,5m |
-ROW |21585 |30126 |18127 |min |$,5m |
-ROW |21586 |30131 |18128 |min |$,5m |
-ROW |21587 |30136 |18129 |min |$,5m |
-ROW |21588 |29108 |18130 |min |$,5m |
-ROW |21589 |29106 |18130 |last |$ |
-ROW |21592 |31364 |18132 |min |$,5m |
-ROW |21593 |29145 |18133 |min |$,5m |
-ROW |21594 |29143 |18133 |last |$ |
-ROW |21597 |31365 |18135 |min |$,5m |
-ROW |21598 |29182 |18136 |min |$,5m |
-ROW |21599 |29180 |18136 |last |$ |
-ROW |21602 |31366 |18138 |min |$,5m |
-ROW |21615 |31851 |18142 |min |$,5m |
-ROW |21616 |31852 |18142 |last |$ |
-ROW |21619 |31893 |18144 |min |$,5m |
-ROW |21620 |31887 |18145 |min |$,5m |
-ROW |21621 |31888 |18145 |last |$ |
-ROW |21624 |31895 |18147 |min |$,5m |
-ROW |21633 |29397 |18150 |min |$,5m |
-ROW |21634 |29401 |18150 |last |$ |
-ROW |21637 |29396 |18152 |min |$,5m |
-ROW |21645 |28986 |18155 |min |$,5m |
-ROW |21646 |28984 |18155 |last |$ |
-ROW |21647 |28983 |18156 |min |$,5m |
-ROW |21648 |28982 |18156 |last |$ |
-ROW |21649 |28978 |18157 |min |$,5m |
-ROW |21650 |29001 |18158 |min |$,5m |
-ROW |21651 |28999 |18158 |last |$ |
-ROW |21652 |28998 |18159 |min |$,5m |
-ROW |21653 |28997 |18159 |last |$ |
-ROW |21654 |28993 |18160 |min |$,5m |
-ROW |21655 |31427 |18161 |min |$,5m |
-ROW |21656 |29466 |18161 |last |$ |
-ROW |21657 |29462 |18162 |min |$,5m |
-ROW |21658 |31428 |18163 |min |$,5m |
-ROW |21659 |29492 |18163 |last |$ |
-ROW |21660 |29488 |18164 |min |$,5m |
-ROW |21675 |32002 |18169 |min |$,5m |
-ROW |21676 |31970 |18169 |last |$ |
-ROW |21677 |31973 |18170 |min |$,5m |
-ROW |21678 |32003 |18171 |min |$,5m |
-ROW |21679 |31997 |18171 |last |$ |
-ROW |21680 |32000 |18172 |min |$,5m |
-ROW |21695 |33680 |18177 |max |$,#3 |
-ROW |21696 |33681 |18178 |min |$,5m |
-ROW |21697 |33682 |18179 |avg |$,5m |
-ROW |21698 |33687 |18180 |last |$,#1 |
-ROW |21699 |33687 |18180 |last |$ |
-ROW |21700 |33689 |18181 |last |$ |
-ROW |21701 |33690 |18182 |max |$,{$SNMP.TIMEOUT} |
-ROW |21702 |33694 |18183 |last |$,#1 |
-ROW |21703 |33694 |18183 |last |$ |
-ROW |21704 |33703 |18184 |last |$ |
-ROW |21705 |33704 |18185 |last |$ |
-ROW |21706 |33705 |18186 |min |$,5m |
-ROW |21707 |33706 |18187 |last |$ |
-ROW |21708 |33707 |18188 |min |$,{$HUAWEI.5300.MEM.MAX.TIME} |
-ROW |21709 |33708 |18189 |last |$,#1 |
-ROW |21710 |33709 |18190 |last |$ |
-ROW |21711 |33711 |18191 |last |$ |
-ROW |21712 |33712 |18192 |last |$ |
-ROW |21713 |33713 |18193 |min |$,{$HUAWEI.5300.DISK.TEMP.MAX.TIME} |
-ROW |21714 |33714 |18194 |last |$ |
-ROW |21715 |33715 |18195 |last |$ |
-ROW |21716 |33716 |18196 |min |$,{$HUAWEI.5300.TEMP.MAX.TIME} |
-ROW |21717 |33717 |18197 |last |$ |
-ROW |21718 |33718 |18198 |last |$ |
-ROW |21719 |33719 |18199 |min |$,{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME} |
-ROW |21720 |33729 |18200 |last |$ |
-ROW |21721 |33730 |18201 |min |$,5m |
-ROW |21722 |33731 |18202 |min |$,{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME} |
-ROW |21723 |33739 |18203 |min |$,{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME} |
-ROW |21724 |33740 |18204 |last |$ |
-ROW |21725 |33741 |18205 |last |$ |
-ROW |21726 |33378 |18206 |min |$,5m |
-ROW |21727 |33381 |18206 |min |$,5m |
-ROW |21728 |33378 |18206 |max |$,5m |
-ROW |21729 |33381 |18206 |max |$,5m |
-ROW |21730 |33747 |18207 |last |$ |
-ROW |21731 |33748 |18208 |last |$ |
-ROW |21732 |33749 |18209 |last |$ |
-ROW |21733 |33750 |18210 |last |$ |
-ROW |21734 |33751 |18211 |last |$ |
-ROW |21735 |33752 |18212 |last |$ |
-ROW |21736 |33753 |18213 |last |$ |
-ROW |21737 |33757 |18214 |last |$ |
-ROW |21738 |33758 |18215 |last |$ |
-ROW |21739 |33759 |18216 |last |$ |
-ROW |21740 |33760 |18217 |last |$ |
-ROW |21741 |33761 |18218 |last |$ |
-ROW |21742 |33762 |18219 |last |$ |
-ROW |21743 |33763 |18220 |last |$ |
-ROW |21744 |33801 |18221 |min |$,5m |
-ROW |21745 |33800 |18221 |last |$ |
-ROW |21746 |33801 |18221 |last |$ |
-ROW |21747 |33798 |18222 |min |$,5m |
-ROW |21748 |33786 |18223 |min |$,5m |
-ROW |21749 |33766 |18224 |last |$ |
-ROW |21750 |33784 |18225 |nodata |$,10m |
-ROW |21751 |33784 |18226 |last |$ |
-ROW |21752 |33807 |18227 |last |$,#1 |
-ROW |21753 |33807 |18227 |last |$ |
-ROW |21754 |33868 |18228 |last |$ |
-ROW |21755 |33850 |18228 |last |$ |
-ROW |21756 |33863 |18229 |min |$,5m |
-ROW |21757 |33852 |18230 |change |$ |
-ROW |21758 |33875 |18231 |max |$,5m |
-ROW |21759 |33872 |18232 |max |$,5m |
-ROW |21760 |33918 |18233 |max |$,5m |
-ROW |21761 |33908 |18234 |min |$,5m |
-ROW |21762 |33907 |18235 |min |$,5m |
-ROW |21763 |33888 |18236 |last |$ |
-ROW |21764 |33901 |18237 |nodata |$,10m |
-ROW |21765 |33901 |18238 |last |$ |
-ROW |21766 |33919 |18239 |last |$,#1 |
-ROW |21767 |33919 |18239 |last |$ |
-ROW |21768 |33942 |18240 |last |$,#1 |
-ROW |21769 |33942 |18240 |last |$,#2 |
-ROW |21770 |33942 |18240 |last |$,#3 |
-ROW |21771 |33943 |18241 |last |$,#1 |
-ROW |21772 |33943 |18241 |last |$,#2 |
-ROW |21773 |33943 |18241 |last |$,#3 |
-ROW |21774 |27084 |18242 |avg |$,15m |
-ROW |21775 |27081 |18242 |last |$ |
-ROW |21776 |27085 |18242 |avg |$,15m |
-ROW |21777 |27086 |18243 |min |$,5m |
-ROW |21778 |27083 |18243 |min |$,5m |
-ROW |21779 |27086 |18243 |max |$,5m |
-ROW |21780 |27083 |18243 |max |$,5m |
-ROW |21781 |27622 |18244 |avg |$,15m |
-ROW |21782 |27626 |18244 |last |$ |
-ROW |21783 |27625 |18244 |avg |$,15m |
-ROW |21784 |27979 |18245 |avg |$,15m |
-ROW |21785 |27983 |18245 |last |$ |
-ROW |21786 |27982 |18245 |avg |$,15m |
-ROW |21787 |28008 |18246 |avg |$,15m |
-ROW |21788 |28012 |18246 |last |$ |
-ROW |21789 |28011 |18246 |avg |$,15m |
-ROW |21790 |27621 |18247 |min |$,5m |
-ROW |21791 |27624 |18247 |min |$,5m |
-ROW |21792 |27621 |18247 |max |$,5m |
-ROW |21793 |27624 |18247 |max |$,5m |
-ROW |21794 |27978 |18248 |min |$,5m |
-ROW |21795 |27981 |18248 |min |$,5m |
-ROW |21796 |27978 |18248 |max |$,5m |
-ROW |21797 |27981 |18248 |max |$,5m |
-ROW |21798 |28007 |18249 |min |$,5m |
-ROW |21799 |28010 |18249 |min |$,5m |
-ROW |21800 |28007 |18249 |max |$,5m |
-ROW |21801 |28010 |18249 |max |$,5m |
-ROW |21802 |27104 |18250 |avg |$,15m |
-ROW |21803 |27101 |18250 |last |$ |
-ROW |21804 |27105 |18250 |avg |$,15m |
-ROW |21805 |27106 |18251 |min |$,5m |
-ROW |21806 |27103 |18251 |min |$,5m |
-ROW |21807 |27106 |18251 |max |$,5m |
-ROW |21808 |27103 |18251 |max |$,5m |
-ROW |21809 |27183 |18252 |avg |$,15m |
-ROW |21810 |27187 |18252 |last |$ |
-ROW |21811 |27186 |18252 |avg |$,15m |
-ROW |21812 |27218 |18253 |avg |$,15m |
-ROW |21813 |27222 |18253 |last |$ |
-ROW |21814 |27221 |18253 |avg |$,15m |
-ROW |21815 |27254 |18254 |avg |$,15m |
-ROW |21816 |27258 |18254 |last |$ |
-ROW |21817 |27257 |18254 |avg |$,15m |
-ROW |21818 |27275 |18255 |avg |$,15m |
-ROW |21819 |27279 |18255 |last |$ |
-ROW |21820 |27278 |18255 |avg |$,15m |
-ROW |21821 |27324 |18256 |avg |$,15m |
-ROW |21822 |27328 |18256 |last |$ |
-ROW |21823 |27327 |18256 |avg |$,15m |
-ROW |21824 |27453 |18257 |avg |$,15m |
-ROW |21825 |27457 |18257 |last |$ |
-ROW |21826 |27456 |18257 |avg |$,15m |
-ROW |21827 |27489 |18258 |avg |$,15m |
-ROW |21828 |27493 |18258 |last |$ |
-ROW |21829 |27492 |18258 |avg |$,15m |
-ROW |21830 |27523 |18259 |avg |$,15m |
-ROW |21831 |27527 |18259 |last |$ |
-ROW |21832 |27526 |18259 |avg |$,15m |
-ROW |21833 |27559 |18260 |avg |$,15m |
-ROW |21834 |27563 |18260 |last |$ |
-ROW |21835 |27562 |18260 |avg |$,15m |
-ROW |21836 |27645 |18261 |avg |$,15m |
-ROW |21837 |27649 |18261 |last |$ |
-ROW |21838 |27648 |18261 |avg |$,15m |
-ROW |21839 |27725 |18262 |avg |$,15m |
-ROW |21840 |27729 |18262 |last |$ |
-ROW |21841 |27728 |18262 |avg |$,15m |
-ROW |21842 |27759 |18263 |avg |$,15m |
-ROW |21843 |27763 |18263 |last |$ |
-ROW |21844 |27762 |18263 |avg |$,15m |
-ROW |21845 |27791 |18264 |avg |$,15m |
-ROW |21846 |27795 |18264 |last |$ |
-ROW |21847 |27794 |18264 |avg |$,15m |
-ROW |21848 |27875 |18265 |avg |$,15m |
-ROW |21849 |27879 |18265 |last |$ |
-ROW |21850 |27878 |18265 |avg |$,15m |
-ROW |21851 |27912 |18266 |avg |$,15m |
-ROW |21852 |27916 |18266 |last |$ |
-ROW |21853 |27915 |18266 |avg |$,15m |
-ROW |21854 |27947 |18267 |avg |$,15m |
-ROW |21855 |27951 |18267 |last |$ |
-ROW |21856 |27950 |18267 |avg |$,15m |
-ROW |21857 |28121 |18268 |avg |$,15m |
-ROW |21858 |28125 |18268 |last |$ |
-ROW |21859 |28124 |18268 |avg |$,15m |
-ROW |21863 |28226 |18270 |avg |$,15m |
-ROW |21864 |28230 |18270 |last |$ |
-ROW |21865 |28229 |18270 |avg |$,15m |
-ROW |21866 |28296 |18271 |avg |$,15m |
-ROW |21867 |28300 |18271 |last |$ |
-ROW |21868 |28299 |18271 |avg |$,15m |
-ROW |21869 |28971 |18272 |avg |$,15m |
-ROW |21870 |28975 |18272 |last |$ |
-ROW |21871 |28974 |18272 |avg |$,15m |
-ROW |21872 |27182 |18273 |min |$,5m |
-ROW |21873 |27185 |18273 |min |$,5m |
-ROW |21874 |27182 |18273 |max |$,5m |
-ROW |21875 |27185 |18273 |max |$,5m |
-ROW |21876 |27217 |18274 |min |$,5m |
-ROW |21877 |27220 |18274 |min |$,5m |
-ROW |21878 |27217 |18274 |max |$,5m |
-ROW |21879 |27220 |18274 |max |$,5m |
-ROW |21880 |27253 |18275 |min |$,5m |
-ROW |21881 |27256 |18275 |min |$,5m |
-ROW |21882 |27253 |18275 |max |$,5m |
-ROW |21883 |27256 |18275 |max |$,5m |
-ROW |21884 |27274 |18276 |min |$,5m |
-ROW |21885 |27277 |18276 |min |$,5m |
-ROW |21886 |27274 |18276 |max |$,5m |
-ROW |21887 |27277 |18276 |max |$,5m |
-ROW |21888 |27323 |18277 |min |$,5m |
-ROW |21889 |27326 |18277 |min |$,5m |
-ROW |21890 |27323 |18277 |max |$,5m |
-ROW |21891 |27326 |18277 |max |$,5m |
-ROW |21892 |27452 |18278 |min |$,5m |
-ROW |21893 |27455 |18278 |min |$,5m |
-ROW |21894 |27452 |18278 |max |$,5m |
-ROW |21895 |27455 |18278 |max |$,5m |
-ROW |21896 |27488 |18279 |min |$,5m |
-ROW |21897 |27491 |18279 |min |$,5m |
-ROW |21898 |27488 |18279 |max |$,5m |
-ROW |21899 |27491 |18279 |max |$,5m |
-ROW |21900 |27522 |18280 |min |$,5m |
-ROW |21901 |27525 |18280 |min |$,5m |
-ROW |21902 |27522 |18280 |max |$,5m |
-ROW |21903 |27525 |18280 |max |$,5m |
-ROW |21904 |27558 |18281 |min |$,5m |
-ROW |21905 |27561 |18281 |min |$,5m |
-ROW |21906 |27558 |18281 |max |$,5m |
-ROW |21907 |27561 |18281 |max |$,5m |
-ROW |21908 |27644 |18282 |min |$,5m |
-ROW |21909 |27647 |18282 |min |$,5m |
-ROW |21910 |27644 |18282 |max |$,5m |
-ROW |21911 |27647 |18282 |max |$,5m |
-ROW |21912 |27724 |18283 |min |$,5m |
-ROW |21913 |27727 |18283 |min |$,5m |
-ROW |21914 |27724 |18283 |max |$,5m |
-ROW |21915 |27727 |18283 |max |$,5m |
-ROW |21916 |27758 |18284 |min |$,5m |
-ROW |21917 |27761 |18284 |min |$,5m |
-ROW |21918 |27758 |18284 |max |$,5m |
-ROW |21919 |27761 |18284 |max |$,5m |
-ROW |21920 |27790 |18285 |min |$,5m |
-ROW |21921 |27793 |18285 |min |$,5m |
-ROW |21922 |27790 |18285 |max |$,5m |
-ROW |21923 |27793 |18285 |max |$,5m |
-ROW |21924 |27874 |18286 |min |$,5m |
-ROW |21925 |27877 |18286 |min |$,5m |
-ROW |21926 |27874 |18286 |max |$,5m |
-ROW |21927 |27877 |18286 |max |$,5m |
-ROW |21928 |27911 |18287 |min |$,5m |
-ROW |21929 |27914 |18287 |min |$,5m |
-ROW |21930 |27911 |18287 |max |$,5m |
-ROW |21931 |27914 |18287 |max |$,5m |
-ROW |21932 |27946 |18288 |min |$,5m |
-ROW |21933 |27949 |18288 |min |$,5m |
-ROW |21934 |27946 |18288 |max |$,5m |
-ROW |21935 |27949 |18288 |max |$,5m |
-ROW |21936 |28120 |18289 |min |$,5m |
-ROW |21937 |28123 |18289 |min |$,5m |
-ROW |21938 |28120 |18289 |max |$,5m |
-ROW |21939 |28123 |18289 |max |$,5m |
-ROW |21944 |28225 |18291 |min |$,5m |
-ROW |21945 |28228 |18291 |min |$,5m |
-ROW |21946 |28225 |18291 |max |$,5m |
-ROW |21947 |28228 |18291 |max |$,5m |
-ROW |21948 |28295 |18292 |min |$,5m |
-ROW |21949 |28298 |18292 |min |$,5m |
-ROW |21950 |28295 |18292 |max |$,5m |
-ROW |21951 |28298 |18292 |max |$,5m |
-ROW |21952 |28970 |18293 |min |$,5m |
-ROW |21953 |28973 |18293 |min |$,5m |
-ROW |21954 |28970 |18293 |max |$,5m |
-ROW |21955 |28973 |18293 |max |$,5m |
-ROW |21956 |27124 |18294 |avg |$,15m |
-ROW |21957 |27121 |18294 |last |$ |
-ROW |21958 |27125 |18294 |avg |$,15m |
-ROW |21959 |27126 |18295 |min |$,5m |
-ROW |21960 |27123 |18295 |min |$,5m |
-ROW |21961 |27126 |18295 |max |$,5m |
-ROW |21962 |27123 |18295 |max |$,5m |
-ROW |21963 |29080 |18296 |avg |$,15m |
-ROW |21964 |29084 |18296 |last |$ |
-ROW |21965 |29083 |18296 |avg |$,15m |
-ROW |21966 |29079 |18297 |min |$,5m |
-ROW |21967 |29082 |18297 |min |$,5m |
-ROW |21968 |29079 |18297 |max |$,5m |
-ROW |21969 |29082 |18297 |max |$,5m |
-ROW |21970 |33944 |18298 |max |$,#3 |
-ROW |21971 |33945 |18299 |min |$,5m |
-ROW |21972 |33946 |18300 |avg |$,5m |
-ROW |21973 |33951 |18301 |last |$,#1 |
-ROW |21974 |33951 |18301 |last |$ |
-ROW |21975 |33953 |18302 |last |$,#1 |
-ROW |21976 |33953 |18302 |last |$ |
-ROW |21977 |33955 |18303 |last |$,#1 |
-ROW |21978 |33955 |18303 |last |$ |
-ROW |21979 |33956 |18304 |last |$ |
-ROW |21980 |33957 |18305 |max |$,{$SNMP.TIMEOUT} |
-ROW |21981 |33966 |18306 |min |$,5m |
-ROW |21982 |33967 |18307 |last |$,#1 |
-ROW |21983 |33967 |18307 |last |$ |
-ROW |21984 |33968 |18308 |last |$ |
-ROW |21985 |33968 |18309 |last |$ |
-ROW |21986 |33971 |18310 |min |$,5m |
-ROW |21987 |33978 |18311 |change |$ |
-ROW |21988 |33978 |18311 |last |$ |
-ROW |21989 |33980 |18311 |last |$ |
-ROW |21990 |33979 |18311 |last |$ |
-ROW |21991 |33978 |18311 |last |$,#2 |
-ROW |21992 |33974 |18312 |avg |$,15m |
-ROW |21993 |33978 |18312 |last |$ |
-ROW |21994 |33977 |18313 |avg |$,15m |
-ROW |21995 |33978 |18313 |last |$ |
-ROW |21996 |33973 |18314 |min |$,5m |
-ROW |21997 |33973 |18314 |max |$,5m |
-ROW |21998 |33976 |18315 |min |$,5m |
-ROW |21999 |33976 |18315 |max |$,5m |
-ROW |22000 |33979 |18316 |last |$ |
-ROW |22001 |33981 |18317 |last |$ |
-ROW |22002 |33982 |18318 |last |$ |
-ROW |22003 |33982 |18318 |last |$ |
-ROW |22004 |33982 |18319 |last |$ |
-ROW |22005 |33983 |18320 |last |$ |
-ROW |22006 |33983 |18321 |last |$ |
-ROW |22007 |33984 |18322 |avg |$,5m |
-ROW |22008 |33984 |18322 |max |$,5m |
-ROW |22009 |33984 |18323 |avg |$,5m |
-ROW |22010 |33984 |18323 |max |$,5m |
-ROW |22011 |33984 |18324 |avg |$,5m |
-ROW |22012 |33984 |18324 |min |$,5m |
-ROW |22013 |33985 |18325 |max |$,#3 |
-ROW |22014 |33986 |18326 |min |$,5m |
-ROW |22015 |33987 |18327 |avg |$,5m |
-ROW |22016 |33992 |18328 |last |$,#1 |
-ROW |22017 |33992 |18328 |last |$ |
-ROW |22018 |33994 |18329 |last |$,#1 |
-ROW |22019 |33994 |18329 |last |$ |
-ROW |22020 |33996 |18330 |last |$,#1 |
-ROW |22021 |33996 |18330 |last |$ |
-ROW |22022 |33997 |18331 |last |$ |
-ROW |22023 |33998 |18332 |max |$,{$SNMP.TIMEOUT} |
-ROW |22024 |34007 |18333 |min |$,5m |
-ROW |22025 |34008 |18334 |last |$,#1 |
-ROW |22026 |34008 |18334 |last |$ |
-ROW |22027 |34009 |18335 |last |$ |
-ROW |22028 |34009 |18336 |last |$ |
-ROW |22029 |34012 |18337 |min |$,5m |
-ROW |22030 |34019 |18338 |change |$ |
-ROW |22031 |34019 |18338 |last |$ |
-ROW |22032 |34021 |18338 |last |$ |
-ROW |22033 |34020 |18338 |last |$ |
-ROW |22034 |34019 |18338 |last |$,#2 |
-ROW |22035 |34015 |18339 |avg |$,15m |
-ROW |22036 |34019 |18339 |last |$ |
-ROW |22037 |34018 |18340 |avg |$,15m |
-ROW |22038 |34019 |18340 |last |$ |
-ROW |22039 |34014 |18341 |min |$,5m |
-ROW |22040 |34014 |18341 |max |$,5m |
-ROW |22041 |34017 |18342 |min |$,5m |
-ROW |22042 |34017 |18342 |max |$,5m |
-ROW |22043 |34020 |18343 |last |$ |
-ROW |22044 |34022 |18344 |last |$ |
-ROW |22045 |34023 |18345 |last |$ |
-ROW |22046 |34023 |18345 |last |$ |
-ROW |22047 |34023 |18346 |last |$ |
-ROW |22048 |34024 |18347 |last |$ |
-ROW |22049 |34024 |18348 |last |$ |
-ROW |22050 |34025 |18349 |avg |$,5m |
-ROW |22051 |34025 |18349 |max |$,5m |
-ROW |22052 |34025 |18350 |avg |$,5m |
-ROW |22053 |34025 |18350 |max |$,5m |
-ROW |22054 |34025 |18351 |avg |$,5m |
-ROW |22055 |34025 |18351 |min |$,5m |
-ROW |22056 |34026 |18352 |max |$,#3 |
-ROW |22057 |34027 |18353 |min |$,5m |
-ROW |22058 |34028 |18354 |avg |$,5m |
-ROW |22059 |34033 |18355 |last |$,#1 |
-ROW |22060 |34033 |18355 |last |$ |
-ROW |22061 |34035 |18356 |last |$,#1 |
-ROW |22062 |34035 |18356 |last |$ |
-ROW |22063 |34037 |18357 |last |$,#1 |
-ROW |22064 |34037 |18357 |last |$ |
-ROW |22065 |34038 |18358 |last |$ |
-ROW |22066 |34039 |18359 |max |$,{$SNMP.TIMEOUT} |
-ROW |22067 |34048 |18360 |min |$,5m |
-ROW |22068 |34049 |18361 |last |$,#1 |
-ROW |22069 |34049 |18361 |last |$ |
-ROW |22070 |34050 |18362 |last |$ |
-ROW |22071 |34050 |18363 |last |$ |
-ROW |22072 |34053 |18364 |min |$,5m |
-ROW |22073 |34060 |18365 |change |$ |
-ROW |22074 |34060 |18365 |last |$ |
-ROW |22075 |34062 |18365 |last |$ |
-ROW |22076 |34061 |18365 |last |$ |
-ROW |22077 |34060 |18365 |last |$,#2 |
-ROW |22078 |34056 |18366 |avg |$,15m |
-ROW |22079 |34060 |18366 |last |$ |
-ROW |22080 |34059 |18367 |avg |$,15m |
-ROW |22081 |34060 |18367 |last |$ |
-ROW |22082 |34055 |18368 |min |$,5m |
-ROW |22083 |34055 |18368 |max |$,5m |
-ROW |22084 |34058 |18369 |min |$,5m |
-ROW |22085 |34058 |18369 |max |$,5m |
-ROW |22086 |34061 |18370 |last |$ |
-ROW |22087 |34063 |18371 |last |$ |
-ROW |22088 |34064 |18372 |last |$ |
-ROW |22089 |34064 |18372 |last |$ |
-ROW |22090 |34064 |18373 |last |$ |
-ROW |22091 |34065 |18374 |last |$ |
-ROW |22092 |34065 |18375 |last |$ |
-ROW |22093 |34066 |18376 |avg |$,5m |
-ROW |22094 |34066 |18376 |max |$,5m |
-ROW |22095 |34066 |18377 |avg |$,5m |
-ROW |22096 |34066 |18377 |max |$,5m |
-ROW |22097 |34066 |18378 |avg |$,5m |
-ROW |22098 |34066 |18378 |min |$,5m |
-ROW |22099 |34067 |18379 |max |$,#3 |
-ROW |22100 |34068 |18380 |min |$,5m |
-ROW |22101 |34069 |18381 |avg |$,5m |
-ROW |22102 |34074 |18382 |last |$,#1 |
-ROW |22103 |34074 |18382 |last |$ |
-ROW |22104 |34076 |18383 |last |$,#1 |
-ROW |22105 |34076 |18383 |last |$ |
-ROW |22106 |34078 |18384 |last |$,#1 |
-ROW |22107 |34078 |18384 |last |$ |
-ROW |22108 |34079 |18385 |last |$ |
-ROW |22109 |34080 |18386 |max |$,{$SNMP.TIMEOUT} |
-ROW |22110 |34089 |18387 |min |$,5m |
-ROW |22111 |34090 |18388 |last |$,#1 |
-ROW |22112 |34090 |18388 |last |$ |
-ROW |22113 |34091 |18389 |last |$ |
-ROW |22114 |34091 |18390 |last |$ |
-ROW |22115 |34094 |18391 |min |$,5m |
-ROW |22116 |34101 |18392 |change |$ |
-ROW |22117 |34101 |18392 |last |$ |
-ROW |22118 |34103 |18392 |last |$ |
-ROW |22119 |34102 |18392 |last |$ |
-ROW |22120 |34101 |18392 |last |$,#2 |
-ROW |22121 |34097 |18393 |avg |$,15m |
-ROW |22122 |34101 |18393 |last |$ |
-ROW |22123 |34100 |18394 |avg |$,15m |
-ROW |22124 |34101 |18394 |last |$ |
-ROW |22125 |34096 |18395 |min |$,5m |
-ROW |22126 |34096 |18395 |max |$,5m |
-ROW |22127 |34099 |18396 |min |$,5m |
-ROW |22128 |34099 |18396 |max |$,5m |
-ROW |22129 |34102 |18397 |last |$ |
-ROW |22130 |34104 |18398 |last |$ |
-ROW |22131 |34105 |18399 |last |$ |
-ROW |22132 |34105 |18399 |last |$ |
-ROW |22133 |34105 |18400 |last |$ |
-ROW |22134 |34106 |18401 |last |$ |
-ROW |22135 |34106 |18402 |last |$ |
-ROW |22136 |34107 |18403 |avg |$,5m |
-ROW |22137 |34107 |18403 |max |$,5m |
-ROW |22138 |34107 |18404 |avg |$,5m |
-ROW |22139 |34107 |18404 |max |$,5m |
-ROW |22140 |34107 |18405 |avg |$,5m |
-ROW |22141 |34107 |18405 |min |$,5m |
-ROW |22142 |34108 |18406 |max |$,#3 |
-ROW |22143 |34109 |18407 |min |$,5m |
-ROW |22144 |34110 |18408 |avg |$,5m |
-ROW |22145 |34115 |18409 |last |$,#1 |
-ROW |22146 |34115 |18409 |last |$ |
-ROW |22147 |34117 |18410 |last |$,#1 |
-ROW |22148 |34117 |18410 |last |$ |
-ROW |22149 |34119 |18411 |last |$,#1 |
-ROW |22150 |34119 |18411 |last |$ |
-ROW |22151 |34120 |18412 |last |$ |
-ROW |22152 |34121 |18413 |max |$,{$SNMP.TIMEOUT} |
-ROW |22153 |34130 |18414 |min |$,5m |
-ROW |22154 |34131 |18415 |last |$,#1 |
-ROW |22155 |34131 |18415 |last |$ |
-ROW |22156 |34132 |18416 |last |$ |
-ROW |22157 |34132 |18417 |last |$ |
-ROW |22158 |34135 |18418 |min |$,5m |
-ROW |22159 |34142 |18419 |change |$ |
-ROW |22160 |34142 |18419 |last |$ |
-ROW |22161 |34144 |18419 |last |$ |
-ROW |22162 |34143 |18419 |last |$ |
-ROW |22163 |34142 |18419 |last |$,#2 |
-ROW |22164 |34138 |18420 |avg |$,15m |
-ROW |22165 |34142 |18420 |last |$ |
-ROW |22166 |34141 |18421 |avg |$,15m |
-ROW |22167 |34142 |18421 |last |$ |
-ROW |22168 |34137 |18422 |min |$,5m |
-ROW |22169 |34137 |18422 |max |$,5m |
-ROW |22170 |34140 |18423 |min |$,5m |
-ROW |22171 |34140 |18423 |max |$,5m |
-ROW |22172 |34143 |18424 |last |$ |
-ROW |22173 |34145 |18425 |last |$ |
-ROW |22174 |34146 |18426 |last |$ |
-ROW |22175 |34146 |18426 |last |$ |
-ROW |22176 |34146 |18427 |last |$ |
-ROW |22177 |34147 |18428 |last |$ |
-ROW |22178 |34147 |18429 |last |$ |
-ROW |22179 |34148 |18430 |avg |$,5m |
-ROW |22180 |34148 |18430 |max |$,5m |
-ROW |22181 |34148 |18431 |avg |$,5m |
-ROW |22182 |34148 |18431 |max |$,5m |
-ROW |22183 |34148 |18432 |avg |$,5m |
-ROW |22184 |34148 |18432 |min |$,5m |
-ROW |22185 |34149 |18433 |max |$,#3 |
-ROW |22186 |34150 |18434 |min |$,5m |
-ROW |22187 |34151 |18435 |avg |$,5m |
-ROW |22188 |34154 |18436 |min |$,5m |
-ROW |22189 |34157 |18437 |last |$,#1 |
-ROW |22190 |34157 |18437 |last |$ |
-ROW |22191 |34159 |18438 |last |$ |
-ROW |22192 |34160 |18439 |max |$,{$SNMP.TIMEOUT} |
-ROW |22193 |28202 |18440 |count |$,#1,"eq","{$FAN.STATUS.CRIT}" |
-ROW |22194 |34170 |18441 |change |$ |
-ROW |22195 |34170 |18441 |last |$ |
-ROW |22196 |34172 |18441 |last |$ |
-ROW |22197 |34171 |18441 |last |$ |
-ROW |22198 |34170 |18441 |last |$,#2 |
-ROW |22199 |34166 |18442 |avg |$,15m |
-ROW |22200 |34170 |18442 |last |$ |
-ROW |22201 |34169 |18442 |avg |$,15m |
-ROW |22202 |34165 |18443 |min |$,5m |
-ROW |22203 |34168 |18443 |min |$,5m |
-ROW |22204 |34165 |18443 |max |$,5m |
-ROW |22205 |34168 |18443 |max |$,5m |
-ROW |22206 |34171 |18444 |last |$ |
-ROW |22207 |34171 |18444 |last |$,#1 |
-ROW |22208 |28206 |18445 |count |$,#1,"eq","{$PSU.STATUS.CRIT}" |
-ROW |22209 |28201 |18446 |avg |$,5m |
-ROW |22210 |28200 |18446 |last |$ |
-ROW |22211 |28201 |18446 |max |$,5m |
-ROW |22212 |28201 |18447 |avg |$,5m |
-ROW |22213 |28201 |18447 |max |$,5m |
-ROW |22214 |28201 |18448 |avg |$,5m |
-ROW |22215 |28201 |18448 |min |$,5m |
-ROW |22216 |34173 |18449 |last |$ |
-ROW |22217 |34174 |18449 |last |$ |
-ROW |22218 |34175 |18449 |last |$ |
-ROW |22219 |34173 |18449 |timeleft |$,1h,100 |
-ROW |22220 |34173 |18450 |last |$ |
-ROW |22221 |34174 |18450 |last |$ |
-ROW |22222 |34175 |18450 |last |$ |
-ROW |22223 |34173 |18450 |timeleft |$,1h,100 |
-ROW |22224 |34178 |18451 |min |$,5m |
-ROW |22225 |29105 |18452 |min |$,5m |
-ROW |22226 |29104 |18452 |last |$ |
-ROW |22227 |29142 |18453 |min |$,5m |
-ROW |22228 |29141 |18453 |last |$ |
-ROW |22229 |29179 |18454 |min |$,5m |
-ROW |22230 |29178 |18454 |last |$ |
-ROW |22231 |29219 |18455 |min |$,5m |
-ROW |22232 |29218 |18455 |min |$,5m |
-ROW |22233 |29219 |18455 |max |$,5m |
-ROW |22234 |29218 |18455 |max |$,5m |
-ROW |22235 |29233 |18456 |min |$,5m |
-ROW |22236 |29232 |18456 |min |$,5m |
-ROW |22237 |29233 |18456 |max |$,5m |
-ROW |22238 |29232 |18456 |max |$,5m |
-ROW |22239 |29247 |18457 |min |$,5m |
-ROW |22240 |29246 |18457 |min |$,5m |
-ROW |22241 |29247 |18457 |max |$,5m |
-ROW |22242 |29246 |18457 |max |$,5m |
-ROW |22243 |31853 |18458 |min |$,5m |
-ROW |22244 |31855 |18458 |last |$ |
-ROW |22245 |31889 |18459 |min |$,5m |
-ROW |22246 |31891 |18459 |last |$ |
-ROW |22247 |31910 |18460 |min |$,5m |
-ROW |22248 |31913 |18460 |min |$,5m |
-ROW |22249 |31910 |18460 |max |$,5m |
-ROW |22250 |31913 |18460 |max |$,5m |
-ROW |22251 |31925 |18461 |min |$,5m |
-ROW |22252 |31928 |18461 |min |$,5m |
-ROW |22253 |31925 |18461 |max |$,5m |
-ROW |22254 |31928 |18461 |max |$,5m |
-ROW |22255 |29402 |18462 |min |$,5m |
-ROW |22256 |29403 |18462 |last |$ |
-ROW |22257 |29436 |18463 |avg |$,15m |
-ROW |22258 |29442 |18463 |last |$ |
-ROW |22259 |29437 |18463 |avg |$,15m |
-ROW |22260 |29439 |18464 |min |$,5m |
-ROW |22261 |29438 |18464 |min |$,5m |
-ROW |22262 |29439 |18464 |max |$,5m |
-ROW |22263 |29438 |18464 |max |$,5m |
-ROW |22264 |31435 |18465 |avg |$,15m |
-ROW |22265 |31453 |18465 |last |$ |
-ROW |22266 |31438 |18465 |avg |$,15m |
-ROW |22267 |31434 |18466 |min |$,5m |
-ROW |22268 |31437 |18466 |min |$,5m |
-ROW |22269 |31434 |18466 |max |$,5m |
-ROW |22270 |31437 |18466 |max |$,5m |
-ROW |22271 |31449 |18467 |avg |$,15m |
-ROW |22272 |31456 |18467 |last |$ |
-ROW |22273 |31452 |18467 |avg |$,15m |
-ROW |22274 |31448 |18468 |min |$,5m |
-ROW |22275 |31451 |18468 |min |$,5m |
-ROW |22276 |31448 |18468 |max |$,5m |
-ROW |22277 |31451 |18468 |max |$,5m |
-ROW |22278 |32017 |18469 |avg |$,15m |
-ROW |22279 |32040 |18469 |last |$ |
-ROW |22280 |32020 |18469 |avg |$,15m |
-ROW |22281 |32016 |18470 |min |$,5m |
-ROW |22282 |32019 |18470 |min |$,5m |
-ROW |22283 |32016 |18470 |max |$,5m |
-ROW |22284 |32019 |18470 |max |$,5m |
-ROW |22285 |32031 |18471 |avg |$,15m |
-ROW |22286 |32043 |18471 |last |$ |
-ROW |22287 |32034 |18471 |avg |$,15m |
-ROW |22288 |32030 |18472 |min |$,5m |
-ROW |22289 |32033 |18472 |min |$,5m |
-ROW |22290 |32030 |18472 |max |$,5m |
-ROW |22291 |32033 |18472 |max |$,5m |
-ROW |22292 |34204 |18473 |last |$ |
-ROW |22293 |34202 |18474 |last |$ |
-ROW |22294 |34202 |18475 |last |$ |
-ROW |22295 |34201 |18476 |min |$,{$TIME.PERIOD} |
-ROW |22296 |34199 |18477 |max |$,#3 |
-ROW |22297 |34198 |18478 |min |$,5m |
-ROW |22298 |34197 |18479 |avg |$,5m |
-ROW |22299 |34195 |18480 |min |$,{$TIME.PERIOD} |
-ROW |22300 |34195 |18480 |max |$,{$TIME.PERIOD} |
-ROW |22301 |34194 |18481 |min |$,{$TIME.PERIOD} |
-ROW |22302 |34194 |18481 |max |$,{$TIME.PERIOD} |
-ROW |22303 |34180 |18482 |min |$,{$TIME.PERIOD} |
-ROW |22304 |34191 |18483 |last |$ |
-ROW |22305 |34191 |18484 |last |$ |
-ROW |22306 |34191 |18485 |last |$ |
-ROW |22307 |34191 |18486 |last |$ |
-ROW |22308 |34191 |18487 |last |$ |
-ROW |22309 |34191 |18488 |last |$ |
-ROW |22310 |34191 |18489 |last |$ |
-ROW |22311 |34191 |18490 |last |$ |
-ROW |22312 |34191 |18491 |last |$ |
-ROW |22313 |34191 |18492 |last |$ |
-ROW |22314 |34191 |18493 |last |$ |
-ROW |22315 |34184 |18494 |last |$,#1 |
-ROW |22316 |34184 |18494 |last |$ |
-ROW |22317 |34181 |18495 |last |$ |
-ROW |22318 |34206 |18496 |max |$,{$SNMP.TIMEOUT} |
-ROW |22319 |34214 |18497 |find |$,,"regexp","^(0)[0&pipe;1]{15}$" |
-ROW |22320 |34215 |18498 |find |$,,"regexp","^(0{16})$" |
-ROW |22321 |34216 |18499 |min |$,{$TIME.PERIOD} |
-ROW |22322 |34219 |18500 |last |$ |
-ROW |22323 |34219 |18501 |last |$ |
-ROW |22324 |34219 |18502 |last |$ |
-ROW |22325 |34222 |18503 |last |$ |
-ROW |22326 |34222 |18504 |last |$ |
-ROW |22327 |34222 |18505 |last |$ |
-ROW |22328 |34225 |18506 |min |$,{$TIME.PERIOD} |
-ROW |22329 |34225 |18506 |max |$,{$TIME.PERIOD} |
-ROW |22330 |34240 |18507 |last |$ |
-ROW |22331 |34248 |18508 |last |$,#1 |
-ROW |22332 |34248 |18508 |last |$ |
-ROW |22333 |34273 |18509 |last |$,#1 |
-ROW |22334 |34273 |18509 |last |$ |
-ROW |22335 |34274 |18510 |last |$,#1 |
-ROW |22336 |34274 |18510 |last |$ |
-ROW |22337 |34275 |18511 |last |$,#1 |
-ROW |22338 |34275 |18511 |last |$ |
-ROW |22339 |34278 |18512 |last |$,#1 |
-ROW |22340 |34278 |18512 |last |$ |
-ROW |22341 |34279 |18513 |last |$,#1 |
-ROW |22342 |34279 |18513 |last |$ |
-ROW |22343 |34280 |18514 |last |$,#1 |
-ROW |22344 |34280 |18514 |last |$ |
-ROW |22345 |34281 |18515 |last |$ |
-ROW |22346 |34284 |18516 |last |$ |
-ROW |22347 |34285 |18517 |last |$ |
-ROW |22348 |34286 |18518 |last |$,#1 |
-ROW |22349 |34286 |18518 |last |$ |
-ROW |22350 |34288 |18519 |last |$,#1 |
-ROW |22351 |34288 |18519 |last |$ |
-ROW |22352 |34290 |18520 |last |$,#1 |
-ROW |22353 |34290 |18520 |last |$ |
-ROW |22354 |34310 |18521 |last |$,#1 |
-ROW |22355 |34310 |18521 |last |$ |
-ROW |22356 |22853 |13336 |last |$,#2 |
-ROW |22357 |22858 |13338 |last |$,#2 |
-ROW |22358 |22861 |13340 |last |$,#2 |
-ROW |22359 |22893 |13352 |last |$,#2 |
-ROW |22360 |22898 |13354 |last |$,#2 |
-ROW |22361 |22901 |13356 |last |$,#2 |
-ROW |22362 |22933 |13368 |last |$,#2 |
-ROW |22363 |22938 |13370 |last |$,#2 |
-ROW |22364 |22941 |13372 |last |$,#2 |
-ROW |22365 |22973 |13384 |last |$,#2 |
-ROW |22366 |22978 |13386 |last |$,#2 |
-ROW |22367 |22981 |13388 |last |$,#2 |
-ROW |22368 |23013 |13400 |last |$,#2 |
-ROW |22369 |23018 |13402 |last |$,#2 |
-ROW |22370 |23021 |13404 |last |$,#2 |
-ROW |22371 |23053 |13416 |last |$,#2 |
-ROW |22372 |23058 |13418 |last |$,#2 |
-ROW |22373 |23061 |13420 |last |$,#2 |
-ROW |22374 |27214 |14322 |last |$,#2 |
-ROW |22375 |27237 |14336 |last |$,#2 |
-ROW |22376 |27236 |14337 |last |$,#2 |
-ROW |22377 |27296 |14363 |last |$,#2 |
-ROW |22378 |27295 |14364 |last |$,#2 |
-ROW |22379 |27297 |14365 |last |$,#2 |
-ROW |22380 |27320 |14383 |last |$,#2 |
-ROW |22381 |27378 |14409 |last |$,#2 |
-ROW |22382 |27385 |14411 |last |$,#2 |
-ROW |22383 |27382 |14413 |last |$,#2 |
-ROW |22384 |27419 |14417 |last |$,#2 |
-ROW |22385 |27428 |14428 |last |$,#2 |
-ROW |22386 |27445 |14430 |last |$,#2 |
-ROW |22387 |27483 |14463 |last |$,#2 |
-ROW |22388 |27509 |14474 |last |$,#2 |
-ROW |22389 |27545 |14492 |last |$,#2 |
-ROW |22390 |27544 |14493 |last |$,#2 |
-ROW |22391 |27582 |14514 |last |$,#2 |
-ROW |22392 |27579 |14515 |last |$,#2 |
-ROW |22393 |27678 |14556 |last |$,#2 |
-ROW |22394 |27677 |14557 |last |$,#2 |
-ROW |22395 |27750 |14592 |last |$,#2 |
-ROW |22396 |27777 |14603 |last |$,#2 |
-ROW |22397 |27785 |14607 |last |$,#2 |
-ROW |22398 |27813 |14621 |last |$,#2 |
-ROW |22399 |27894 |14661 |last |$,#2 |
-ROW |22400 |27895 |14662 |last |$,#2 |
-ROW |22401 |27931 |14680 |last |$,#2 |
-ROW |22402 |27970 |14698 |last |$,#2 |
-ROW |22403 |27967 |14699 |last |$,#2 |
-ROW |22404 |27999 |14709 |last |$,#2 |
-ROW |22405 |27998 |14710 |last |$,#2 |
-ROW |22406 |28027 |14724 |last |$,#2 |
-ROW |22407 |28142 |14912 |last |$,#2 |
-ROW |22408 |28141 |14913 |last |$,#2 |
-ROW |22409 |28204 |14937 |last |$,#2 |
-ROW |22410 |28210 |15208 |last |$,#2 |
-ROW |22411 |28208 |15209 |last |$,#2 |
-ROW |22412 |28013 |15493 |last |$,#2 |
-ROW |22413 |28328 |15718 |last |$,#2 |
-ROW |22414 |28344 |15731 |last |$,#2 |
-ROW |22415 |28345 |15732 |last |$,#2 |
-ROW |22416 |28362 |15745 |last |$,#2 |
-ROW |22417 |28391 |15762 |last |$,#2 |
-ROW |22418 |28419 |15795 |last |$,#2 |
-ROW |22419 |28467 |15827 |last |$,#2 |
-ROW |22420 |28790 |15952 |last |$,#2 |
-ROW |22421 |28820 |15958 |last |$,#2 |
-ROW |22422 |28833 |15963 |last |$,#2 |
-ROW |22423 |29120 |16041 |last |$,#2 |
-ROW |22424 |29121 |16042 |last |$,#2 |
-ROW |22425 |29157 |16065 |last |$,#2 |
-ROW |22426 |29194 |16066 |last |$,#2 |
-ROW |22427 |29158 |16067 |last |$,#2 |
-ROW |22428 |29195 |16068 |last |$,#2 |
-ROW |22429 |29428 |16143 |last |$,#2 |
-ROW |22430 |30025 |16445 |last |$,#2 |
-ROW |22431 |30045 |16450 |last |$,#2 |
-ROW |22432 |30074 |16478 |last |$,#2 |
-ROW |22433 |30086 |16492 |last |$,#2 |
-ROW |22434 |30097 |16507 |last |$,#2 |
-ROW |22435 |30098 |16509 |last |$,#2 |
-ROW |22436 |30099 |16510 |last |$,#2 |
-ROW |22437 |30100 |16511 |last |$,#2 |
-ROW |22438 |27481 |16523 |last |$,#2 |
-ROW |22439 |30106 |16525 |last |$,#2 |
-ROW |22440 |30109 |16530 |last |$,#2 |
-ROW |22441 |27675 |16532 |last |$,#2 |
-ROW |22442 |27749 |16538 |last |$,#2 |
-ROW |22443 |30117 |16540 |last |$,#2 |
-ROW |22444 |30119 |16543 |last |$,#2 |
-ROW |22445 |30121 |16549 |last |$,#2 |
-ROW |22446 |30125 |16555 |last |$,#2 |
-ROW |22447 |30141 |16577 |last |$,#2 |
-ROW |22448 |29113 |16579 |last |$,#2 |
-ROW |22449 |29150 |16580 |last |$,#2 |
-ROW |22450 |29187 |16581 |last |$,#2 |
-ROW |22451 |29414 |16584 |last |$,#2 |
-ROW |22452 |29474 |16585 |last |$,#2 |
-ROW |22453 |29500 |16586 |last |$,#2 |
-ROW |22454 |28022 |16591 |last |$,#2 |
-ROW |22455 |27152 |16593 |last |$,#2 |
-ROW |22456 |27199 |16594 |last |$,#2 |
-ROW |22457 |27232 |16595 |last |$,#2 |
-ROW |22458 |27268 |16596 |last |$,#2 |
-ROW |22459 |27289 |16597 |last |$,#2 |
-ROW |22460 |27340 |16598 |last |$,#2 |
-ROW |22461 |27372 |16599 |last |$,#2 |
-ROW |22462 |27469 |16600 |last |$,#2 |
-ROW |22463 |27503 |16601 |last |$,#2 |
-ROW |22464 |27539 |16602 |last |$,#2 |
-ROW |22465 |27575 |16603 |last |$,#2 |
-ROW |22466 |27638 |16604 |last |$,#2 |
-ROW |22467 |27661 |16605 |last |$,#2 |
-ROW |22468 |27741 |16606 |last |$,#2 |
-ROW |22469 |27773 |16607 |last |$,#2 |
-ROW |22470 |27807 |16608 |last |$,#2 |
-ROW |22471 |27889 |16609 |last |$,#2 |
-ROW |22472 |27926 |16610 |last |$,#2 |
-ROW |22473 |27963 |16611 |last |$,#2 |
-ROW |22474 |27993 |16612 |last |$,#2 |
-ROW |22475 |28137 |16613 |last |$,#2 |
-ROW |22476 |28240 |16615 |last |$,#2 |
-ROW |22477 |28289 |16616 |last |$,#2 |
-ROW |22478 |28337 |16617 |last |$,#2 |
-ROW |22479 |28384 |16618 |last |$,#2 |
-ROW |22480 |28461 |16619 |last |$,#2 |
-ROW |22481 |28489 |16620 |last |$,#2 |
-ROW |22482 |28964 |16621 |last |$,#2 |
-ROW |22483 |29057 |16622 |last |$,#2 |
-ROW |22484 |30053 |16623 |last |$,#2 |
-ROW |22485 |30192 |16645 |last |$,#2 |
-ROW |22486 |30235 |16662 |last |$,#2 |
-ROW |22487 |30275 |16682 |last |$,#2 |
-ROW |22488 |30306 |16688 |last |$,#2 |
-ROW |22489 |30286 |16689 |last |$,#2 |
-ROW |22490 |30283 |16690 |last |$,#2 |
-ROW |22491 |30431 |16726 |last |$,#2 |
-ROW |22492 |30480 |16733 |last |$,#2 |
-ROW |22493 |30547 |16745 |last |$,#2 |
-ROW |22494 |30598 |16747 |last |$,#2 |
-ROW |22495 |30636 |16755 |last |$,#2 |
-ROW |22496 |30637 |16762 |last |$,#2 |
-ROW |22497 |30688 |16767 |last |$,#2 |
-ROW |22498 |30829 |16831 |last |$,#2 |
-ROW |22499 |30822 |16834 |last |$,#2 |
-ROW |22500 |27107 |16841 |last |$,#2 |
-ROW |22501 |27188 |16842 |last |$,#2 |
-ROW |22502 |27223 |16843 |last |$,#2 |
-ROW |22503 |27259 |16844 |last |$,#2 |
-ROW |22504 |27280 |16845 |last |$,#2 |
-ROW |22505 |27329 |16846 |last |$,#2 |
-ROW |22506 |27458 |16847 |last |$,#2 |
-ROW |22507 |27494 |16848 |last |$,#2 |
-ROW |22508 |27528 |16849 |last |$,#2 |
-ROW |22509 |27564 |16850 |last |$,#2 |
-ROW |22510 |27650 |16851 |last |$,#2 |
-ROW |22511 |27730 |16852 |last |$,#2 |
-ROW |22512 |27764 |16853 |last |$,#2 |
-ROW |22513 |27796 |16854 |last |$,#2 |
-ROW |22514 |27880 |16855 |last |$,#2 |
-ROW |22515 |27917 |16856 |last |$,#2 |
-ROW |22516 |27952 |16857 |last |$,#2 |
-ROW |22517 |28126 |16858 |last |$,#2 |
-ROW |22518 |28231 |16860 |last |$,#2 |
-ROW |22519 |28301 |16861 |last |$,#2 |
-ROW |22520 |28976 |16862 |last |$,#2 |
-ROW |22521 |27087 |16863 |last |$,#2 |
-ROW |22522 |27627 |16864 |last |$,#2 |
-ROW |22523 |27984 |16865 |last |$,#2 |
-ROW |22524 |27127 |16866 |last |$,#2 |
-ROW |22525 |29085 |16867 |last |$,#2 |
-ROW |22526 |28013 |16868 |last |$,#2 |
-ROW |22527 |29444 |16883 |last |$,#2 |
-ROW |22528 |30911 |16887 |last |$,#2 |
-ROW |22529 |30943 |16890 |last |$,#2 |
-ROW |22530 |30960 |16895 |min |$,15m |
-ROW |22531 |30937 |16898 |last |$,#2 |
-ROW |22532 |31008 |16908 |last |$,#2 |
-ROW |22533 |31050 |16916 |last |$,#2 |
-ROW |22534 |31052 |16918 |last |$,#2 |
-ROW |22535 |31053 |16919 |last |$,#2 |
-ROW |22536 |31085 |16941 |last |$,#2 |
-ROW |22537 |31244 |16989 |last |$,#2 |
-ROW |22538 |31245 |16990 |last |$,#2 |
-ROW |22539 |31189 |16999 |last |$,#2 |
-ROW |22540 |31266 |17006 |last |$,#2 |
-ROW |22541 |31267 |17007 |last |$,#2 |
-ROW |22542 |31268 |17009 |last |$,#2 |
-ROW |22543 |31272 |17011 |last |$,#2 |
-ROW |22544 |29222 |17024 |last |$,#2 |
-ROW |22545 |29236 |17026 |last |$,#2 |
-ROW |22546 |29250 |17028 |last |$,#2 |
-ROW |22547 |31454 |17042 |last |$,#2 |
-ROW |22548 |31457 |17047 |last |$,#2 |
-ROW |22549 |31586 |17091 |last |$,#2 |
-ROW |22550 |31578 |17095 |last |$,#2 |
-ROW |22551 |31605 |17099 |last |$,#2 |
-ROW |22552 |31611 |17103 |last |$,#2 |
-ROW |22553 |31748 |17177 |last |$,#2 |
-ROW |22554 |31749 |17178 |last |$,#2 |
-ROW |22555 |31760 |17188 |last |$,#2 |
-ROW |22556 |31771 |17192 |last |$,#2 |
-ROW |22557 |31772 |17193 |last |$,#2 |
-ROW |22558 |31776 |17197 |last |$,#2 |
-ROW |22559 |31780 |17199 |last |$,#2 |
-ROW |22560 |31786 |17225 |last |$,#2 |
-ROW |22561 |31841 |17247 |last |$,#2 |
-ROW |22562 |31844 |17249 |last |$,#2 |
-ROW |22563 |31849 |17251 |last |$,#2 |
-ROW |22564 |31877 |17260 |last |$,#2 |
-ROW |22565 |31880 |17262 |last |$,#2 |
-ROW |22566 |31885 |17264 |last |$,#2 |
-ROW |22567 |31915 |17273 |last |$,#2 |
-ROW |22568 |31930 |17281 |last |$,#2 |
-ROW |22569 |31958 |17288 |last |$,#2 |
-ROW |22570 |31985 |17299 |last |$,#2 |
-ROW |22571 |32041 |17310 |last |$,#2 |
-ROW |22572 |32044 |17318 |last |$,#2 |
-ROW |22573 |32165 |17353 |last |$,#2 |
-ROW |22574 |32292 |17373 |last |$,#2 |
-ROW |22575 |32373 |17393 |last |$,#2 |
-ROW |22576 |32378 |17400 |last |$,#2 |
-ROW |22577 |32442 |17410 |last |$,#2 |
-ROW |22578 |32607 |17456 |last |$,#2 |
-ROW |22579 |32698 |17494 |last |$,#2 |
-ROW |22580 |28511 |17499 |last |$,#2 |
-ROW |22581 |32788 |17506 |last |$,#2 |
-ROW |22582 |32840 |17507 |min |$,1h |
-ROW |22583 |32848 |17508 |min |$,1h |
-ROW |22584 |32860 |17509 |min |$,1h |
-ROW |22585 |32975 |17523 |last |$,#2 |
-ROW |22586 |32978 |17526 |last |$,#2 |
-ROW |22587 |33062 |17539 |last |$,#2 |
-ROW |22588 |33344 |17926 |last |$,#2 |
-ROW |22589 |33349 |17929 |last |$,#2 |
-ROW |22590 |33464 |17961 |last |$,#2 |
-ROW |22591 |33508 |17968 |last |$,#2 |
-ROW |22592 |33499 |17970 |last |$,#2 |
-ROW |22593 |33524 |17972 |last |$,#2 |
-ROW |22594 |33525 |17972 |last |$,#2 |
-ROW |22595 |33526 |17972 |last |$,#2 |
-ROW |22596 |33528 |17976 |last |$,#2 |
-ROW |22597 |33527 |17976 |last |$,#2 |
-ROW |22598 |33538 |17976 |last |$,#2 |
-ROW |22599 |33540 |17976 |last |$,#2 |
-ROW |22600 |33539 |17976 |last |$,#2 |
-ROW |22601 |33578 |17990 |last |$,#2 |
-ROW |22602 |33585 |17993 |last |$,#2 |
-ROW |22603 |33599 |17995 |last |$,#2 |
-ROW |22604 |33636 |18030 |last |$,#2 |
-ROW |22605 |33655 |18032 |last |$,#2 |
-ROW |22606 |33665 |18098 |last |$,#2 |
-ROW |22607 |33677 |18104 |last |$,#2 |
-ROW |22608 |33687 |18180 |last |$,#2 |
-ROW |22609 |33694 |18183 |last |$,#2 |
-ROW |22610 |33708 |18189 |last |$,#2 |
-ROW |22611 |33807 |18227 |last |$,#2 |
-ROW |22612 |33919 |18239 |last |$,#2 |
-ROW |22613 |33951 |18301 |last |$,#2 |
-ROW |22614 |33953 |18302 |last |$,#2 |
-ROW |22615 |33955 |18303 |last |$,#2 |
-ROW |22616 |33967 |18307 |last |$,#2 |
-ROW |22617 |33992 |18328 |last |$,#2 |
-ROW |22618 |33994 |18329 |last |$,#2 |
-ROW |22619 |33996 |18330 |last |$,#2 |
-ROW |22620 |34008 |18334 |last |$,#2 |
-ROW |22621 |34033 |18355 |last |$,#2 |
-ROW |22622 |34035 |18356 |last |$,#2 |
-ROW |22623 |34037 |18357 |last |$,#2 |
-ROW |22624 |34049 |18361 |last |$,#2 |
-ROW |22625 |34074 |18382 |last |$,#2 |
-ROW |22626 |34076 |18383 |last |$,#2 |
-ROW |22627 |34078 |18384 |last |$,#2 |
-ROW |22628 |34090 |18388 |last |$,#2 |
-ROW |22629 |34115 |18409 |last |$,#2 |
-ROW |22630 |34117 |18410 |last |$,#2 |
-ROW |22631 |34119 |18411 |last |$,#2 |
-ROW |22632 |34131 |18415 |last |$,#2 |
-ROW |22633 |34157 |18437 |last |$,#2 |
-ROW |22634 |34171 |18444 |last |$,#2 |
-ROW |22635 |34184 |18494 |last |$,#2 |
-ROW |22636 |34248 |18508 |last |$,#2 |
-ROW |22637 |34273 |18509 |last |$,#2 |
-ROW |22638 |34274 |18510 |last |$,#2 |
-ROW |22639 |34275 |18511 |last |$,#2 |
-ROW |22640 |34278 |18512 |last |$,#2 |
-ROW |22641 |34279 |18513 |last |$,#2 |
-ROW |22642 |34280 |18514 |last |$,#2 |
-ROW |22643 |34286 |18518 |last |$,#2 |
-ROW |22644 |34288 |18519 |last |$,#2 |
-ROW |22645 |34290 |18520 |last |$,#2 |
-ROW |22646 |34310 |18521 |last |$,#2 |
+FIELDS|functionid|itemid|triggerid|name |parameter |
+ROW |12641 |22189 |13015 |max |10m |
+ROW |12645 |22183 |13073 |max |10m |
+ROW |12646 |22191 |13074 |max |10m |
+ROW |12648 |23620 |13075 |max |10m |
+ROW |12649 |22185 |13019 |max |10m |
+ROW |12651 |22396 |13017 |max |10m |
+ROW |12653 |22219 |13023 |min |10m |
+ROW |12723 |22853 |13336 |diff |0 |
+ROW |12725 |22858 |13338 |diff |0 |
+ROW |12726 |22859 |13339 |change |0 |
+ROW |12727 |22861 |13340 |diff |0 |
+ROW |12739 |22893 |13352 |diff |0 |
+ROW |12741 |22898 |13354 |diff |0 |
+ROW |12742 |22899 |13355 |change |0 |
+ROW |12743 |22901 |13356 |diff |0 |
+ROW |12755 |22933 |13368 |diff |0 |
+ROW |12757 |22938 |13370 |diff |0 |
+ROW |12758 |22939 |13371 |change |0 |
+ROW |12759 |22941 |13372 |diff |0 |
+ROW |12771 |22973 |13384 |diff |0 |
+ROW |12773 |22978 |13386 |diff |0 |
+ROW |12775 |22981 |13388 |diff |0 |
+ROW |12787 |23013 |13400 |diff |0 |
+ROW |12789 |23018 |13402 |diff |0 |
+ROW |12790 |23019 |13403 |change |0 |
+ROW |12791 |23021 |13404 |diff |0 |
+ROW |12803 |23053 |13416 |diff |0 |
+ROW |12805 |23058 |13418 |diff |0 |
+ROW |12806 |23059 |13419 |change |0 |
+ROW |12807 |23061 |13420 |diff |0 |
+ROW |12895 |23271 |13486 |min |10m |
+ROW |12896 |23273 |13487 |max |10m |
+ROW |12897 |23274 |13488 |max |10m |
+ROW |12898 |23275 |13489 |max |10m |
+ROW |12899 |23276 |13490 |max |10m |
+ROW |12946 |23357 |13517 |max |10m |
+ROW |12947 |23342 |13518 |max |10m |
+ROW |12948 |23341 |13519 |max |10m |
+ROW |12949 |23359 |13520 |min |10m |
+ROW |12965 |23634 |13536 |max |10m |
+ROW |12966 |23635 |13537 |max |10m |
+ROW |12994 |23644 |13544 |max |#3 |
+ROW |12995 |23645 |13545 |max |#3 |
+ROW |12996 |23646 |13546 |max |#3 |
+ROW |12997 |23647 |13547 |max |#3 |
+ROW |12998 |23648 |13548 |max |#3 |
+ROW |13068 |23115 |13367 |avg |5m |
+ROW |13069 |22922 |13366 |avg |5m |
+ROW |13070 |22918 |13365 |avg |5m |
+ROW |13071 |22917 |13364 |avg |5m |
+ROW |13072 |22882 |13350 |avg |5m |
+ROW |13073 |22878 |13349 |avg |5m |
+ROW |13074 |22877 |13348 |avg |5m |
+ROW |13075 |22962 |13382 |avg |5m |
+ROW |13086 |23042 |13414 |avg |5m |
+ROW |13087 |22842 |13334 |avg |5m |
+ROW |13088 |22838 |13333 |avg |5m |
+ROW |13089 |22837 |13332 |avg |5m |
+ROW |13090 |23007 |13399 |avg |5m |
+ROW |13091 |23002 |13398 |avg |5m |
+ROW |13092 |22998 |13397 |avg |5m |
+ROW |13093 |22997 |13396 |avg |5m |
+ROW |13152 |23651 |13551 |max |#3 |
+ROW |13154 |23649 |13549 |max |#3 |
+ROW |13156 |23650 |13550 |max |#3 |
+ROW |13157 |23652 |13552 |max |#3 |
+ROW |13158 |23653 |13553 |max |#3 |
+ROW |13159 |23654 |13285 |max |#3 |
+ROW |13160 |23661 |13557 |last | |
+ROW |13161 |23662 |13558 |last | |
+ROW |13164 |22424 |13080 |avg |10m |
+ROW |13165 |23252 |13467 |avg |10m |
+ROW |13170 |22412 |13081 |avg |10m |
+ROW |13171 |23253 |13468 |avg |10m |
+ROW |13172 |22430 |13083 |avg |10m |
+ROW |13173 |23255 |13470 |avg |10m |
+ROW |13174 |22422 |13084 |avg |10m |
+ROW |13175 |23256 |13471 |avg |10m |
+ROW |13176 |22406 |13085 |avg |10m |
+ROW |13177 |23257 |13472 |avg |10m |
+ROW |13178 |22408 |13086 |avg |30m |
+ROW |13179 |23258 |13473 |avg |30m |
+ROW |13180 |22402 |13087 |avg |10m |
+ROW |13181 |23259 |13474 |avg |10m |
+ROW |13182 |22418 |13088 |avg |10m |
+ROW |13183 |23260 |13475 |avg |10m |
+ROW |13184 |22416 |13089 |avg |10m |
+ROW |13185 |23261 |13476 |avg |10m |
+ROW |13186 |22689 |13275 |avg |10m |
+ROW |13187 |23262 |13477 |avg |10m |
+ROW |13188 |22399 |13091 |avg |10m |
+ROW |13189 |23264 |13479 |avg |10m |
+ROW |13190 |22420 |13092 |avg |10m |
+ROW |13191 |23265 |13480 |avg |10m |
+ROW |13192 |22414 |13093 |min |10m |
+ROW |13193 |23266 |13481 |min |10m |
+ROW |13194 |23171 |13441 |avg |10m |
+ROW |13195 |23267 |13482 |avg |10m |
+ROW |13196 |23663 |13559 |avg |10m |
+ROW |13197 |23664 |13560 |avg |10m |
+ROW |13198 |22426 |13094 |avg |10m |
+ROW |13199 |23268 |13483 |avg |10m |
+ROW |13200 |22404 |13095 |avg |10m |
+ROW |13201 |23269 |13484 |avg |10m |
+ROW |13202 |22400 |13096 |avg |10m |
+ROW |13203 |23270 |13485 |avg |10m |
+ROW |13204 |22401 |13097 |avg |10m |
+ROW |13205 |23328 |13436 |avg |10m |
+ROW |13206 |23347 |13521 |avg |10m |
+ROW |13207 |23360 |13534 |avg |10m |
+ROW |13208 |23352 |13522 |avg |10m |
+ROW |13209 |23351 |13535 |avg |10m |
+ROW |13210 |23350 |13523 |avg |10m |
+ROW |13211 |23353 |13524 |avg |30m |
+ROW |13212 |23354 |13525 |avg |10m |
+ROW |13213 |23356 |13526 |avg |10m |
+ROW |13214 |23355 |13527 |avg |10m |
+ROW |13215 |23349 |13528 |avg |10m |
+ROW |13216 |23348 |13529 |avg |10m |
+ROW |13217 |23343 |13530 |avg |10m |
+ROW |13218 |23344 |13531 |avg |10m |
+ROW |13219 |23345 |13532 |avg |10m |
+ROW |13220 |23346 |13533 |avg |10m |
+ROW |13222 |25366 |13562 |avg |10m |
+ROW |13223 |25367 |13563 |avg |10m |
+ROW |13224 |25368 |13564 |avg |10m |
+ROW |13225 |25369 |13565 |avg |10m |
+ROW |13226 |25370 |13566 |avg |10m |
+ROW |13227 |25371 |13567 |avg |10m |
+ROW |13228 |25665 |13568 |avg |10m |
+ROW |13229 |25666 |13569 |avg |10m |
+ROW |13230 |25667 |13570 |avg |10m |
+ROW |13231 |25668 |13571 |avg |10m |
+ROW |14378 |27067 |14251 |max |#3 |
+ROW |14379 |27066 |14252 |min |5m |
+ROW |14380 |27065 |14253 |avg |5m |
+ROW |14468 |27149 |14293 |max |#3 |
+ROW |14469 |27150 |14294 |min |5m |
+ROW |14470 |27151 |14295 |avg |5m |
+ROW |14508 |27192 |14311 |max |#3 |
+ROW |14509 |27193 |14312 |min |5m |
+ROW |14510 |27194 |14313 |avg |5m |
+ROW |14515 |27212 |14318 |avg |5m |
+ROW |14516 |27212 |14318 |max |5m |
+ROW |14517 |27212 |14319 |avg |5m |
+ROW |14518 |27212 |14319 |max |5m |
+ROW |14519 |27212 |14320 |avg |5m |
+ROW |14520 |27212 |14320 |min |5m |
+ROW |14522 |27214 |14322 |diff | |
+ROW |14523 |27214 |14322 |strlen | |
+ROW |14536 |27225 |14327 |max |#3 |
+ROW |14537 |27226 |14328 |min |5m |
+ROW |14538 |27227 |14329 |avg |5m |
+ROW |14545 |27237 |14336 |diff | |
+ROW |14546 |27237 |14336 |strlen | |
+ROW |14547 |27236 |14337 |diff | |
+ROW |14548 |27236 |14337 |strlen | |
+ROW |14552 |27247 |14339 |avg |5m |
+ROW |14553 |27247 |14339 |max |5m |
+ROW |14554 |27247 |14340 |avg |5m |
+ROW |14555 |27247 |14340 |min |5m |
+ROW |14570 |27261 |14347 |max |#3 |
+ROW |14571 |27262 |14348 |min |5m |
+ROW |14572 |27263 |14349 |avg |5m |
+ROW |14587 |27282 |14356 |max |#3 |
+ROW |14588 |27283 |14357 |min |5m |
+ROW |14589 |27284 |14358 |avg |5m |
+ROW |14594 |27296 |14363 |diff | |
+ROW |14595 |27296 |14363 |strlen | |
+ROW |14596 |27295 |14364 |diff | |
+ROW |14597 |27295 |14364 |strlen | |
+ROW |14598 |27297 |14365 |diff | |
+ROW |14599 |27297 |14365 |strlen | |
+ROW |14606 |27314 |14372 |avg |5m |
+ROW |14607 |27314 |14372 |max |5m |
+ROW |14608 |27314 |14373 |avg |5m |
+ROW |14609 |27314 |14373 |max |5m |
+ROW |14610 |27314 |14374 |avg |5m |
+ROW |14611 |27314 |14374 |min |5m |
+ROW |14620 |27318 |14380 |avg |5m |
+ROW |14621 |27318 |14380 |max |5m |
+ROW |14622 |27318 |14381 |avg |5m |
+ROW |14623 |27318 |14381 |max |5m |
+ROW |14624 |27318 |14382 |avg |5m |
+ROW |14625 |27318 |14382 |min |5m |
+ROW |14626 |27320 |14383 |diff | |
+ROW |14627 |27320 |14383 |strlen | |
+ROW |14641 |27333 |14389 |max |#3 |
+ROW |14642 |27334 |14390 |min |5m |
+ROW |14643 |27335 |14391 |avg |5m |
+ROW |14663 |27365 |14403 |max |#3 |
+ROW |14664 |27366 |14404 |min |5m |
+ROW |14665 |27367 |14405 |avg |5m |
+ROW |14669 |27378 |14409 |diff | |
+ROW |14670 |27378 |14409 |strlen | |
+ROW |14672 |27385 |14411 |diff | |
+ROW |14673 |27385 |14411 |strlen | |
+ROW |14676 |27382 |14413 |diff | |
+ROW |14677 |27382 |14413 |strlen | |
+ROW |14681 |27419 |14417 |diff | |
+ROW |14682 |27419 |14417 |strlen | |
+ROW |14698 |27428 |14428 |diff | |
+ROW |14699 |27428 |14428 |strlen | |
+ROW |14702 |27445 |14430 |diff | |
+ROW |14703 |27445 |14430 |strlen | |
+ROW |14747 |27462 |14451 |max |#3 |
+ROW |14748 |27463 |14452 |min |5m |
+ROW |14749 |27464 |14453 |avg |5m |
+ROW |14756 |27485 |14460 |avg |5m |
+ROW |14757 |27485 |14460 |max |5m |
+ROW |14758 |27485 |14461 |avg |5m |
+ROW |14759 |27485 |14461 |max |5m |
+ROW |14760 |27485 |14462 |avg |5m |
+ROW |14761 |27485 |14462 |min |5m |
+ROW |14762 |27483 |14463 |diff | |
+ROW |14763 |27483 |14463 |strlen | |
+ROW |14776 |27496 |14468 |max |#3 |
+ROW |14777 |27497 |14469 |min |5m |
+ROW |14778 |27498 |14470 |avg |5m |
+ROW |14782 |27509 |14474 |diff | |
+ROW |14783 |27509 |14474 |strlen | |
+ROW |14785 |27517 |14476 |avg |5m |
+ROW |14786 |27517 |14476 |max |5m |
+ROW |14787 |27517 |14477 |avg |5m |
+ROW |14788 |27517 |14477 |max |5m |
+ROW |14789 |27517 |14478 |avg |5m |
+ROW |14790 |27517 |14478 |min |5m |
+ROW |14806 |27532 |14486 |max |#3 |
+ROW |14807 |27533 |14487 |min |5m |
+ROW |14808 |27534 |14488 |avg |5m |
+ROW |14812 |27545 |14492 |diff | |
+ROW |14813 |27545 |14492 |strlen | |
+ROW |14814 |27544 |14493 |diff | |
+ROW |14815 |27544 |14493 |strlen | |
+ROW |14817 |27553 |14495 |avg |5m |
+ROW |14818 |27553 |14495 |max |5m |
+ROW |14819 |27553 |14496 |avg |5m |
+ROW |14820 |27553 |14496 |max |5m |
+ROW |14821 |27553 |14497 |avg |5m |
+ROW |14822 |27553 |14497 |min |5m |
+ROW |14838 |27568 |14505 |max |#3 |
+ROW |14839 |27569 |14506 |min |5m |
+ROW |14840 |27570 |14507 |avg |5m |
+ROW |14844 |27584 |14511 |avg |5m |
+ROW |14845 |27584 |14511 |max |5m |
+ROW |14849 |27584 |14513 |avg |5m |
+ROW |14850 |27584 |14513 |min |5m |
+ROW |14851 |27582 |14514 |diff | |
+ROW |14852 |27582 |14514 |strlen | |
+ROW |14853 |27579 |14515 |diff | |
+ROW |14854 |27579 |14515 |strlen | |
+ROW |14889 |27631 |14534 |max |#3 |
+ROW |14890 |27632 |14535 |min |5m |
+ROW |14891 |27633 |14536 |avg |5m |
+ROW |14907 |27654 |14544 |max |#3 |
+ROW |14908 |27655 |14545 |min |5m |
+ROW |14909 |27656 |14546 |avg |5m |
+ROW |14914 |27672 |14551 |avg |5m |
+ROW |14915 |27672 |14551 |max |5m |
+ROW |14916 |27672 |14552 |avg |5m |
+ROW |14917 |27672 |14552 |max |5m |
+ROW |14918 |27672 |14553 |avg |5m |
+ROW |14919 |27672 |14553 |min |5m |
+ROW |14922 |27678 |14556 |diff | |
+ROW |14923 |27678 |14556 |strlen | |
+ROW |14924 |27677 |14557 |diff | |
+ROW |14925 |27677 |14557 |strlen | |
+ROW |14972 |27734 |14582 |max |#3 |
+ROW |14973 |27735 |14583 |min |5m |
+ROW |14974 |27736 |14584 |avg |5m |
+ROW |14979 |27751 |14589 |avg |5m |
+ROW |14980 |27751 |14589 |max |5m |
+ROW |14981 |27751 |14590 |avg |5m |
+ROW |14982 |27751 |14590 |max |5m |
+ROW |14983 |27751 |14591 |avg |5m |
+ROW |14984 |27751 |14591 |min |5m |
+ROW |14985 |27750 |14592 |diff | |
+ROW |14986 |27750 |14592 |strlen | |
+ROW |15000 |27766 |14598 |max |#3 |
+ROW |15001 |27767 |14599 |min |5m |
+ROW |15002 |27768 |14600 |avg |5m |
+ROW |15005 |27777 |14603 |diff | |
+ROW |15006 |27777 |14603 |strlen | |
+ROW |15013 |27784 |14606 |avg |5m |
+ROW |15014 |27784 |14606 |min |5m |
+ROW |15015 |27785 |14607 |diff | |
+ROW |15016 |27785 |14607 |strlen | |
+ROW |15032 |27800 |14615 |max |#3 |
+ROW |15033 |27801 |14616 |min |5m |
+ROW |15034 |27802 |14617 |avg |5m |
+ROW |15038 |27813 |14621 |diff | |
+ROW |15039 |27813 |14621 |strlen | |
+ROW |15042 |27821 |14624 |avg |5m |
+ROW |15043 |27821 |14624 |max |5m |
+ROW |15044 |27821 |14625 |avg |5m |
+ROW |15045 |27821 |14625 |max |5m |
+ROW |15046 |27821 |14626 |avg |5m |
+ROW |15047 |27821 |14626 |min |5m |
+ROW |15094 |27882 |14652 |max |#3 |
+ROW |15095 |27883 |14653 |min |5m |
+ROW |15096 |27884 |14654 |avg |5m |
+ROW |15106 |27894 |14661 |diff | |
+ROW |15107 |27894 |14661 |strlen | |
+ROW |15108 |27895 |14662 |diff | |
+ROW |15109 |27895 |14662 |strlen | |
+ROW |15111 |27905 |14664 |avg |5m |
+ROW |15112 |27905 |14664 |max |5m |
+ROW |15113 |27905 |14665 |avg |5m |
+ROW |15114 |27905 |14665 |max |5m |
+ROW |15115 |27905 |14666 |avg |5m |
+ROW |15116 |27905 |14666 |min |5m |
+ROW |15131 |27919 |14673 |max |#3 |
+ROW |15132 |27920 |14674 |min |5m |
+ROW |15133 |27921 |14675 |avg |5m |
+ROW |15138 |27931 |14680 |diff | |
+ROW |15139 |27931 |14680 |strlen | |
+ROW |15146 |27941 |14683 |avg |5m |
+ROW |15147 |27941 |14683 |min |5m |
+ROW |15163 |27956 |14691 |max |#3 |
+ROW |15164 |27957 |14692 |min |5m |
+ROW |15165 |27958 |14693 |avg |5m |
+ROW |15170 |27970 |14698 |diff | |
+ROW |15171 |27970 |14698 |strlen | |
+ROW |15172 |27967 |14699 |diff | |
+ROW |15173 |27967 |14699 |strlen | |
+ROW |15186 |27986 |14704 |max |#3 |
+ROW |15187 |27987 |14705 |min |5m |
+ROW |15188 |27988 |14706 |avg |5m |
+ROW |15191 |27999 |14709 |diff | |
+ROW |15192 |27999 |14709 |strlen | |
+ROW |15193 |27998 |14710 |diff | |
+ROW |15194 |27998 |14710 |strlen | |
+ROW |15209 |28015 |14717 |max |#3 |
+ROW |15210 |28016 |14718 |min |5m |
+ROW |15211 |28017 |14719 |avg |5m |
+ROW |15216 |28027 |14724 |diff | |
+ROW |15217 |28027 |14724 |strlen | |
+ROW |15678 |28130 |14906 |max |#3 |
+ROW |15679 |28131 |14907 |min |5m |
+ROW |15680 |28132 |14908 |avg |5m |
+ROW |15684 |28142 |14912 |diff | |
+ROW |15685 |28142 |14912 |strlen | |
+ROW |15686 |28141 |14913 |diff | |
+ROW |15687 |28141 |14913 |strlen | |
+ROW |15688 |28150 |14914 |avg |5m |
+ROW |15689 |28150 |14914 |max |5m |
+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 |15726 |28204 |14937 |diff | |
+ROW |15727 |28204 |14937 |strlen | |
+ROW |15731 |27032 |14941 |last | |
+ROW |15732 |27191 |14942 |last | |
+ROW |15733 |27332 |14943 |last | |
+ROW |15734 |27461 |14944 |last | |
+ROW |15735 |27531 |14945 |last | |
+ROW |15736 |27567 |14946 |last | |
+ROW |15737 |27630 |14947 |last | |
+ROW |15738 |27653 |14948 |last | |
+ROW |15739 |27733 |14949 |last | |
+ROW |15740 |27799 |14950 |last | |
+ROW |15741 |27955 |14951 |last | |
+ROW |15743 |28129 |14953 |last | |
+ROW |16445 |28210 |15208 |diff | |
+ROW |16446 |28210 |15208 |strlen | |
+ROW |16447 |28208 |15209 |diff | |
+ROW |16448 |28208 |15209 |strlen | |
+ROW |16472 |28233 |15220 |max |#3 |
+ROW |16473 |28234 |15221 |min |5m |
+ROW |16474 |28235 |15222 |avg |5m |
+ROW |16818 |27213 |15330 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16819 |27479 |15331 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16820 |27479 |15332 |count |#1,{$PSU_OK_STATUS},ne |
+ROW |16821 |27480 |15333 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16822 |27480 |15334 |count |#1,{$FAN_OK_STATUS},ne |
+ROW |16829 |27786 |15337 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16830 |27786 |15338 |count |#1,{$PSU_WARN_STATUS},eq |
+ROW |16831 |27787 |15339 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16832 |27554 |15340 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16833 |27555 |15341 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16840 |27422 |15344 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
+ROW |16841 |27422 |15344 |count |#1,{$PSU_CRIT_STATUS:"shutdown"},eq |
+ROW |16842 |27422 |15345 |count |#1,{$PSU_WARN_STATUS:"warning"},eq |
+ROW |16843 |27422 |15345 |count |#1,{$PSU_WARN_STATUS:"notFunctioning"},eq |
+ROW |16844 |27423 |15346 |count |#1,{$FAN_CRIT_STATUS:"critical"},eq |
+ROW |16845 |27423 |15346 |count |#1,{$FAN_CRIT_STATUS:"shutdown"},eq |
+ROW |16846 |27423 |15347 |count |#1,{$FAN_WARN_STATUS:"warning"},eq |
+ROW |16847 |27423 |15347 |count |#1,{$FAN_WARN_STATUS:"notFunctioning"},eq |
+ROW |16866 |27431 |15354 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
+ROW |16867 |27431 |15354 |count |#1,{$PSU_CRIT_STATUS:"shutdown"},eq |
+ROW |16868 |27448 |15355 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
+ROW |16869 |27448 |15355 |count |#1,{$PSU_CRIT_STATUS:"shutdown"},eq |
+ROW |16870 |28216 |15356 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
+ROW |16871 |28216 |15356 |count |#1,{$PSU_CRIT_STATUS:"shutdown"},eq |
+ROW |16872 |27431 |15357 |count |#1,{$PSU_WARN_STATUS:"warning"},eq |
+ROW |16873 |27431 |15357 |count |#1,{$PSU_WARN_STATUS:"notFunctioning"},eq |
+ROW |16874 |27448 |15358 |count |#1,{$PSU_WARN_STATUS:"warning"},eq |
+ROW |16875 |27448 |15358 |count |#1,{$PSU_WARN_STATUS:"notFunctioning"},eq |
+ROW |16876 |28216 |15359 |count |#1,{$PSU_WARN_STATUS:"warning"},eq |
+ROW |16877 |28216 |15359 |count |#1,{$PSU_WARN_STATUS:"notFunctioning"},eq |
+ROW |16878 |27432 |15360 |count |#1,{$FAN_CRIT_STATUS:"critical"},eq |
+ROW |16879 |27432 |15360 |count |#1,{$FAN_CRIT_STATUS:"shutdown"},eq |
+ROW |16880 |27449 |15361 |count |#1,{$FAN_CRIT_STATUS:"critical"},eq |
+ROW |16881 |27449 |15361 |count |#1,{$FAN_CRIT_STATUS:"shutdown"},eq |
+ROW |16882 |28215 |15362 |count |#1,{$FAN_CRIT_STATUS:"critical"},eq |
+ROW |16883 |28215 |15362 |count |#1,{$FAN_CRIT_STATUS:"shutdown"},eq |
+ROW |16884 |27432 |15363 |count |#1,{$FAN_WARN_STATUS:"warning"},eq |
+ROW |16885 |27432 |15363 |count |#1,{$FAN_WARN_STATUS:"notFunctioning"},eq |
+ROW |16886 |27449 |15364 |count |#1,{$FAN_WARN_STATUS:"warning"},eq |
+ROW |16887 |27449 |15364 |count |#1,{$FAN_WARN_STATUS:"notFunctioning"},eq |
+ROW |16888 |28215 |15365 |count |#1,{$FAN_WARN_STATUS:"warning"},eq |
+ROW |16889 |28215 |15365 |count |#1,{$FAN_WARN_STATUS:"notFunctioning"},eq |
+ROW |16890 |27518 |15366 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16891 |27519 |15367 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16895 |27593 |15369 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16896 |27595 |15370 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16897 |27673 |15371 |count |#1,{$FAN_CRIT_STATUS:"fanError"},eq |
+ROW |16898 |27673 |15371 |count |#1,{$FAN_CRIT_STATUS:"hardwareFaulty"},eq |
+ROW |16899 |27674 |15372 |count |#1,{$PSU_CRIT_STATUS:"psuError"},eq |
+ROW |16900 |27674 |15372 |count |#1,{$PSU_CRIT_STATUS:"rpsError"},eq |
+ROW |16901 |27674 |15372 |count |#1,{$PSU_CRIT_STATUS:"hardwareFaulty"},eq |
+ROW |16902 |28154 |15373 |count |#1,{$FAN_CRIT_STATUS:"bad"},eq |
+ROW |16903 |28154 |15374 |count |#1,{$FAN_WARN_STATUS:"warning"},eq |
+ROW |16904 |28155 |15375 |count |#1,{$PSU_CRIT_STATUS:"bad"},eq |
+ROW |16905 |28155 |15376 |count |#1,{$PSU_WARN_STATUS:"warning"},eq |
+ROW |16906 |27822 |15377 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16907 |27823 |15378 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16908 |27312 |15379 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |16909 |27312 |15380 |count |#1,{$PSU_OK_STATUS},ne |
+ROW |16910 |27313 |15381 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16911 |27313 |15382 |count |#1,{$FAN_OK_STATUS},ne |
+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 |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 |
+ROW |16927 |27250 |15394 |count |#1,{$FAN_OK_STATUS},ne |
+ROW |16928 |27755 |15395 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |16935 |27942 |15398 |count |#1,{$FAN_CRIT_STATUS:"failed"},eq |
+ROW |16936 |27943 |15399 |count |#1,{$PSU_CRIT_STATUS:"failed"},eq |
+ROW |17243 |28013 |15493 |last | |
+ROW |17244 |28013 |15493 |diff | |
+ROW |17657 |28251 |15640 |max |10m |
+ROW |17658 |28250 |15641 |avg |10m |
+ROW |17692 |27101 |15671 |change | |
+ROW |17693 |27101 |15671 |last | |
+ROW |17694 |27100 |15671 |last | |
+ROW |17695 |27107 |15671 |last | |
+ROW |17696 |27101 |15671 |prev | |
+ROW |17697 |27187 |15672 |change | |
+ROW |17698 |27187 |15672 |last | |
+ROW |17699 |27189 |15672 |last | |
+ROW |17700 |27188 |15672 |last | |
+ROW |17701 |27187 |15672 |prev | |
+ROW |17702 |27222 |15673 |change | |
+ROW |17703 |27222 |15673 |last | |
+ROW |17704 |27224 |15673 |last | |
+ROW |17705 |27223 |15673 |last | |
+ROW |17706 |27222 |15673 |prev | |
+ROW |17707 |27258 |15674 |change | |
+ROW |17708 |27258 |15674 |last | |
+ROW |17709 |27260 |15674 |last | |
+ROW |17710 |27259 |15674 |last | |
+ROW |17711 |27258 |15674 |prev | |
+ROW |17712 |27279 |15675 |change | |
+ROW |17713 |27279 |15675 |last | |
+ROW |17714 |27281 |15675 |last | |
+ROW |17715 |27280 |15675 |last | |
+ROW |17716 |27279 |15675 |prev | |
+ROW |17717 |27328 |15676 |change | |
+ROW |17718 |27328 |15676 |last | |
+ROW |17719 |27330 |15676 |last | |
+ROW |17720 |27329 |15676 |last | |
+ROW |17721 |27328 |15676 |prev | |
+ROW |17722 |27457 |15677 |change | |
+ROW |17723 |27457 |15677 |last | |
+ROW |17724 |27459 |15677 |last | |
+ROW |17725 |27458 |15677 |last | |
+ROW |17726 |27457 |15677 |prev | |
+ROW |17727 |27493 |15678 |change | |
+ROW |17728 |27493 |15678 |last | |
+ROW |17729 |27495 |15678 |last | |
+ROW |17730 |27494 |15678 |last | |
+ROW |17731 |27493 |15678 |prev | |
+ROW |17732 |27527 |15679 |change | |
+ROW |17733 |27527 |15679 |last | |
+ROW |17734 |27529 |15679 |last | |
+ROW |17735 |27528 |15679 |last | |
+ROW |17736 |27527 |15679 |prev | |
+ROW |17737 |27563 |15680 |change | |
+ROW |17738 |27563 |15680 |last | |
+ROW |17739 |27565 |15680 |last | |
+ROW |17740 |27564 |15680 |last | |
+ROW |17741 |27563 |15680 |prev | |
+ROW |17742 |27649 |15681 |change | |
+ROW |17743 |27649 |15681 |last | |
+ROW |17744 |27651 |15681 |last | |
+ROW |17745 |27650 |15681 |last | |
+ROW |17746 |27649 |15681 |prev | |
+ROW |17747 |27729 |15682 |change | |
+ROW |17748 |27729 |15682 |last | |
+ROW |17749 |27731 |15682 |last | |
+ROW |17750 |27730 |15682 |last | |
+ROW |17751 |27729 |15682 |prev | |
+ROW |17752 |27763 |15683 |change | |
+ROW |17753 |27763 |15683 |last | |
+ROW |17754 |27765 |15683 |last | |
+ROW |17755 |27764 |15683 |last | |
+ROW |17756 |27763 |15683 |prev | |
+ROW |17757 |27795 |15684 |change | |
+ROW |17758 |27795 |15684 |last | |
+ROW |17759 |27797 |15684 |last | |
+ROW |17760 |27796 |15684 |last | |
+ROW |17761 |27795 |15684 |prev | |
+ROW |17762 |27879 |15685 |change | |
+ROW |17763 |27879 |15685 |last | |
+ROW |17764 |27881 |15685 |last | |
+ROW |17765 |27880 |15685 |last | |
+ROW |17766 |27879 |15685 |prev | |
+ROW |17767 |27916 |15686 |change | |
+ROW |17768 |27916 |15686 |last | |
+ROW |17769 |27918 |15686 |last | |
+ROW |17770 |27917 |15686 |last | |
+ROW |17771 |27916 |15686 |prev | |
+ROW |17772 |27951 |15687 |change | |
+ROW |17773 |27951 |15687 |last | |
+ROW |17774 |27953 |15687 |last | |
+ROW |17775 |27952 |15687 |last | |
+ROW |17776 |27951 |15687 |prev | |
+ROW |17782 |28125 |15689 |change | |
+ROW |17783 |28125 |15689 |last | |
+ROW |17784 |28127 |15689 |last | |
+ROW |17785 |28126 |15689 |last | |
+ROW |17786 |28125 |15689 |prev | |
+ROW |17792 |28230 |15691 |change | |
+ROW |17793 |28230 |15691 |last | |
+ROW |17794 |28232 |15691 |last | |
+ROW |17795 |28231 |15691 |last | |
+ROW |17796 |28230 |15691 |prev | |
+ROW |17807 |28012 |15694 |change | |
+ROW |17808 |28012 |15694 |last | |
+ROW |17809 |28014 |15694 |last | |
+ROW |17810 |28013 |15694 |last | |
+ROW |17811 |28012 |15694 |prev | |
+ROW |17812 |27081 |15695 |change | |
+ROW |17813 |27081 |15695 |last | |
+ROW |17814 |27080 |15695 |last | |
+ROW |17815 |27087 |15695 |last | |
+ROW |17816 |27081 |15695 |prev | |
+ROW |17817 |27626 |15696 |change | |
+ROW |17818 |27626 |15696 |last | |
+ROW |17819 |27628 |15696 |last | |
+ROW |17820 |27627 |15696 |last | |
+ROW |17821 |27626 |15696 |prev | |
+ROW |17822 |27983 |15697 |change | |
+ROW |17823 |27983 |15697 |last | |
+ROW |17824 |27985 |15697 |last | |
+ROW |17825 |27984 |15697 |last | |
+ROW |17826 |27983 |15697 |prev | |
+ROW |17827 |27121 |15698 |change | |
+ROW |17828 |27121 |15698 |last | |
+ROW |17829 |27120 |15698 |last | |
+ROW |17830 |27127 |15698 |last | |
+ROW |17831 |27121 |15698 |prev | |
+ROW |17837 |28281 |15700 |last | |
+ROW |17838 |28282 |15701 |max |#3 |
+ROW |17839 |28283 |15702 |min |5m |
+ROW |17840 |28284 |15703 |avg |5m |
+ROW |17848 |28300 |15708 |change | |
+ROW |17849 |28300 |15708 |last | |
+ROW |17850 |28302 |15708 |last | |
+ROW |17851 |28301 |15708 |last | |
+ROW |17852 |28300 |15708 |prev | |
+ROW |17866 |28326 |15717 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |17867 |28328 |15718 |diff | |
+ROW |17868 |28328 |15718 |strlen | |
+ROW |17869 |28329 |15719 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |17870 |27238 |15720 |count |#1,{$HEALTH_CRIT_STATUS},eq |
+ROW |17871 |27238 |15721 |count |#1,{$HEALTH_WARN_STATUS:"offline"},eq |
+ROW |17872 |27238 |15721 |count |#1,{$HEALTH_WARN_STATUS:"testing"},eq |
+ROW |17873 |27814 |15722 |count |#1,{$HEALTH_CRIT_STATUS},eq |
+ROW |17874 |28330 |15723 |max |#3 |
+ROW |17875 |28331 |15724 |min |5m |
+ROW |17876 |28332 |15725 |avg |5m |
+ROW |17879 |28341 |15728 |count |#1,{$HEALTH_DISASTER_STATUS},eq |
+ROW |17880 |28341 |15729 |count |#1,{$HEALTH_CRIT_STATUS},eq |
+ROW |17881 |28341 |15730 |count |#1,{$HEALTH_WARN_STATUS},eq |
+ROW |17882 |28344 |15731 |diff | |
+ROW |17883 |28344 |15731 |strlen | |
+ROW |17884 |28345 |15732 |diff | |
+ROW |17885 |28345 |15732 |strlen | |
+ROW |17892 |28354 |15735 |avg |5m |
+ROW |17893 |28354 |15735 |min |5m |
+ROW |17900 |28356 |15738 |avg |5m |
+ROW |17901 |28356 |15738 |min |5m |
+ROW |17902 |28358 |15739 |count |#1,{$PSU_CRIT_STATUS:"critical"},eq |
+ROW |17903 |28358 |15739 |count |#1,{$PSU_CRIT_STATUS:"nonRecoverable"},eq |
+ROW |17904 |28358 |15740 |count |#1,{$PSU_WARN_STATUS:"nonCritical"},eq |
+ROW |17905 |28359 |15741 |count |#1,{$FAN_CRIT_STATUS:"criticalUpper"},eq |
+ROW |17906 |28359 |15741 |count |#1,{$FAN_CRIT_STATUS:"nonRecoverableUpper"},eq |
+ROW |17907 |28359 |15741 |count |#1,{$FAN_CRIT_STATUS:"criticalLower"},eq |
+ROW |17908 |28359 |15741 |count |#1,{$FAN_CRIT_STATUS:"nonRecoverableLower"},eq |
+ROW |17909 |28359 |15741 |count |#1,{$FAN_CRIT_STATUS:"failed"},eq |
+ROW |17910 |28359 |15742 |count |#1,{$FAN_WARN_STATUS:"nonCriticalUpper"},eq |
+ROW |17911 |28359 |15742 |count |#1,{$FAN_WARN_STATUS:"nonCriticalLower"},eq |
+ROW |17912 |28361 |15743 |count |#1,{$DISK_FAIL_STATUS:"critical"},eq |
+ROW |17913 |28361 |15743 |count |#1,{$DISK_FAIL_STATUS:"nonRecoverable"},eq |
+ROW |17914 |28361 |15744 |count |#1,{$DISK_WARN_STATUS:"nonCritical"},eq |
+ROW |17915 |28362 |15745 |diff | |
+ROW |17916 |28362 |15745 |strlen | |
+ROW |17917 |28363 |15746 |count |#1,{$DISK_SMART_FAIL_STATUS},eq |
+ROW |17918 |28373 |15747 |count |#1,{$VDISK_CRIT_STATUS:"failed"},eq |
+ROW |17919 |28373 |15748 |count |#1,{$VDISK_WARN_STATUS:"degraded"},eq |
+ROW |17920 |28374 |15749 |count |#1,{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"},eq |
+ROW |17921 |28374 |15750 |count |#1,{$DISK_ARRAY_CRIT_STATUS:"critical"},eq |
+ROW |17922 |28374 |15751 |count |#1,{$DISK_ARRAY_WARN_STATUS:"nonCritical"},eq |
+ROW |17923 |28376 |15752 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS},eq |
+ROW |17924 |28376 |15753 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS},ne |
+ROW |17925 |28376 |15754 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS},eq |
+ROW |17926 |28377 |15755 |max |#3 |
+ROW |17927 |28378 |15756 |min |5m |
+ROW |17928 |28379 |15757 |avg |5m |
+ROW |17933 |28391 |15762 |diff | |
+ROW |17934 |28391 |15762 |strlen | |
+ROW |17971 |28411 |15781 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |17972 |28411 |15782 |count |#1,{$PSU_WARN_STATUS},eq |
+ROW |17973 |28412 |15783 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |17974 |28412 |15784 |count |#1,{$FAN_WARN_STATUS},eq |
+ROW |17975 |28413 |15785 |count |#1,{$DISK_ARRAY_CRIT_STATUS},eq |
+ROW |17976 |28413 |15786 |count |#1,{$DISK_ARRAY_WARN_STATUS},eq |
+ROW |17977 |28415 |15787 |count |#1,{$DISK_ARRAY_CACHE_CRIT_STATUS:"cacheModCriticalFailure"},eq |
+ROW |17983 |28416 |15790 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"failed"},eq |
+ROW |17984 |28416 |15790 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS:"capacitorFailed"},eq |
+ROW |17987 |28417 |15792 |count |#1,{$DISK_FAIL_STATUS},eq |
+ROW |17988 |28417 |15793 |count |#1,{$DISK_WARN_STATUS},eq |
+ROW |17989 |28418 |15794 |count |#1,{$DISK_SMART_FAIL_STATUS:"replaceDrive"},eq |
+ROW |17990 |28418 |15794 |count |#1,{$DISK_SMART_FAIL_STATUS:"replaceDriveSSDWearOut"},eq |
+ROW |17991 |28419 |15795 |diff | |
+ROW |17992 |28419 |15795 |strlen | |
+ROW |17993 |28423 |15796 |count |#1,{$VDISK_CRIT_STATUS},eq |
+ROW |17994 |28423 |15797 |count |#1,{$VDISK_OK_STATUS},ne |
+ROW |18026 |28454 |15819 |max |#3 |
+ROW |18027 |28455 |15820 |min |5m |
+ROW |18028 |28456 |15821 |avg |5m |
+ROW |18031 |28465 |15824 |count |#1,{$HEALTH_DISASTER_STATUS},eq |
+ROW |18032 |28465 |15825 |count |#1,{$HEALTH_CRIT_STATUS},eq |
+ROW |18033 |28465 |15826 |count |#1,{$HEALTH_WARN_STATUS},eq |
+ROW |18034 |28467 |15827 |diff | |
+ROW |18035 |28467 |15827 |strlen | |
+ROW |18036 |28474 |15828 |avg |5m |
+ROW |18037 |28474 |15828 |max |5m |
+ROW |18038 |28474 |15829 |avg |5m |
+ROW |18039 |28474 |15829 |max |5m |
+ROW |18040 |28474 |15830 |avg |5m |
+ROW |18041 |28474 |15830 |min |5m |
+ROW |18042 |28475 |15831 |avg |5m |
+ROW |18043 |28475 |15831 |max |5m |
+ROW |18044 |28475 |15832 |avg |5m |
+ROW |18045 |28475 |15832 |max |5m |
+ROW |18046 |28475 |15833 |avg |5m |
+ROW |18047 |28475 |15833 |min |5m |
+ROW |18048 |28476 |15834 |avg |5m |
+ROW |18049 |28476 |15834 |max |5m |
+ROW |18050 |28476 |15835 |avg |5m |
+ROW |18051 |28476 |15835 |max |5m |
+ROW |18052 |28476 |15836 |avg |5m |
+ROW |18053 |28476 |15836 |min |5m |
+ROW |18054 |28477 |15837 |count |#1,{$PSU_OK_STATUS},ne |
+ROW |18055 |28478 |15838 |count |#1,{$FAN_OK_STATUS},ne |
+ROW |18056 |28480 |15839 |count |#1,{$DISK_OK_STATUS},ne |
+ROW |18057 |28482 |15840 |max |#3 |
+ROW |18058 |28483 |15841 |min |5m |
+ROW |18059 |28484 |15842 |avg |5m |
+ROW |18062 |28495 |15845 |avg |5m |
+ROW |18063 |28495 |15845 |max |5m |
+ROW |18064 |28495 |15846 |avg |5m |
+ROW |18065 |28495 |15846 |max |5m |
+ROW |18066 |28495 |15847 |avg |5m |
+ROW |18067 |28495 |15847 |min |5m |
+ROW |18076 |28535 |15853 |avg |10m |
+ROW |18077 |28536 |15854 |avg |10m |
+ROW |18078 |28537 |15855 |avg |10m |
+ROW |18079 |28538 |15856 |avg |10m |
+ROW |18080 |28543 |15857 |max |10m |
+ROW |18081 |28549 |15858 |max |10m |
+ROW |18082 |28542 |15859 |max |10m |
+ROW |18083 |28551 |15860 |max |10m |
+ROW |18084 |28548 |15861 |max |10m |
+ROW |18085 |28544 |15862 |max |10m |
+ROW |18086 |28541 |15863 |min |10m |
+ROW |18087 |28561 |15864 |avg |10m |
+ROW |18088 |28563 |15865 |avg |10m |
+ROW |18089 |28564 |15866 |avg |10m |
+ROW |18090 |28565 |15867 |avg |10m |
+ROW |18091 |28566 |15868 |avg |10m |
+ROW |18092 |28567 |15869 |avg |10m |
+ROW |18093 |28568 |15870 |avg |30m |
+ROW |18094 |28569 |15871 |avg |10m |
+ROW |18095 |28570 |15872 |avg |10m |
+ROW |18096 |28562 |15873 |avg |10m |
+ROW |18097 |28571 |15874 |avg |10m |
+ROW |18098 |28573 |15875 |avg |10m |
+ROW |18099 |28574 |15876 |avg |10m |
+ROW |18100 |28575 |15877 |avg |10m |
+ROW |18101 |28576 |15878 |avg |10m |
+ROW |18102 |28577 |15879 |avg |10m |
+ROW |18103 |28578 |15880 |avg |10m |
+ROW |18104 |28579 |15881 |avg |10m |
+ROW |18105 |28580 |15882 |avg |10m |
+ROW |18106 |28572 |15883 |avg |10m |
+ROW |18107 |28581 |15884 |avg |10m |
+ROW |18108 |28552 |15885 |avg |10m |
+ROW |18109 |28547 |15886 |last | |
+ROW |18110 |28559 |15887 |avg |10m |
+ROW |18111 |28582 |15888 |avg |10m |
+ROW |18112 |28583 |15889 |avg |10m |
+ROW |18113 |28599 |15890 |max |10m |
+ROW |18114 |28597 |15891 |max |10m |
+ROW |18115 |28596 |15892 |max |10m |
+ROW |18116 |28598 |15893 |max |10m |
+ROW |18117 |28587 |15894 |min |10m |
+ROW |18118 |28600 |15895 |avg |10m |
+ROW |18119 |28601 |15896 |avg |10m |
+ROW |18120 |28615 |15897 |avg |10m |
+ROW |18121 |28614 |15898 |avg |10m |
+ROW |18122 |28613 |15899 |avg |10m |
+ROW |18123 |28612 |15900 |avg |30m |
+ROW |18124 |28611 |15901 |avg |10m |
+ROW |18125 |28610 |15902 |avg |10m |
+ROW |18126 |28609 |15903 |avg |10m |
+ROW |18127 |28608 |15904 |avg |10m |
+ROW |18128 |28607 |15905 |avg |10m |
+ROW |18129 |28606 |15906 |avg |10m |
+ROW |18130 |28605 |15907 |avg |10m |
+ROW |18131 |28604 |15908 |avg |10m |
+ROW |18132 |28603 |15909 |avg |10m |
+ROW |18133 |28602 |15910 |avg |10m |
+ROW |18134 |28616 |15911 |avg |10m |
+ROW |18135 |28588 |15912 |avg |10m |
+ROW |18136 |28618 |15913 |avg |10m |
+ROW |18137 |28619 |15914 |avg |10m |
+ROW |18169 |28743 |15943 |last | |
+ROW |18170 |28748 |15944 |min |5m |
+ROW |18174 |28746 |15947 |last | |
+ROW |18175 |28775 |15948 |nodata |30m |
+ROW |18176 |28776 |15949 |last | |
+ROW |18177 |28777 |15950 |min |5m |
+ROW |18178 |28791 |15951 |last | |
+ROW |18179 |28790 |15952 |diff | |
+ROW |18180 |28790 |15952 |strlen | |
+ROW |18183 |28810 |15954 |last | |
+ROW |18184 |28805 |15955 |min |5m |
+ROW |18185 |28816 |15956 |min |5m |
+ROW |18186 |28809 |15957 |last | |
+ROW |18187 |28820 |15958 |diff | |
+ROW |18188 |28820 |15958 |strlen | |
+ROW |18191 |28822 |15960 |last | |
+ROW |18192 |28823 |15961 |min |5m |
+ROW |18193 |28827 |15962 |min |5m |
+ROW |18194 |28833 |15963 |diff | |
+ROW |18195 |28833 |15963 |strlen | |
+ROW |18223 |28956 |15989 |last | |
+ROW |18224 |28957 |15990 |max |#3 |
+ROW |18225 |28958 |15991 |min |5m |
+ROW |18226 |28959 |15992 |avg |5m |
+ROW |18234 |28975 |15997 |change | |
+ROW |18235 |28975 |15997 |last | |
+ROW |18236 |28977 |15997 |last | |
+ROW |18237 |28976 |15997 |last | |
+ROW |18238 |28975 |15997 |prev | |
+ROW |18255 |29048 |16007 |min |5m |
+ROW |18256 |29029 |16008 |last | |
+ROW |18257 |29028 |16008 |last | |
+ROW |18258 |29027 |16008 |last | |
+ROW |18259 |29029 |16008 |timeleft |1h,,100 |
+ROW |18260 |29029 |16009 |last | |
+ROW |18261 |29028 |16009 |last | |
+ROW |18262 |29027 |16009 |last | |
+ROW |18263 |29029 |16009 |timeleft |1h,,100 |
+ROW |18264 |29030 |16010 |min |5m |
+ROW |18265 |29030 |16011 |min |5m |
+ROW |18266 |29049 |16012 |min |5m |
+ROW |18267 |29046 |16013 |last | |
+ROW |18268 |29045 |16013 |last | |
+ROW |18269 |29044 |16013 |last | |
+ROW |18270 |29046 |16013 |timeleft |1h,,100 |
+ROW |18271 |29046 |16014 |last | |
+ROW |18272 |29045 |16014 |last | |
+ROW |18273 |29044 |16014 |last | |
+ROW |18274 |29046 |16014 |timeleft |1h,,100 |
+ROW |18275 |29047 |16015 |min |5m |
+ROW |18276 |29047 |16016 |min |5m |
+ROW |18277 |29050 |16017 |max |#3 |
+ROW |18278 |29051 |16018 |min |5m |
+ROW |18279 |29052 |16019 |avg |5m |
+ROW |18291 |29084 |16028 |change | |
+ROW |18292 |29084 |16028 |last | |
+ROW |18293 |29086 |16028 |last | |
+ROW |18294 |29085 |16028 |last | |
+ROW |18295 |29084 |16028 |prev | |
+ROW |18300 |29198 |16031 |min |5m |
+ROW |18306 |29110 |16035 |last | |
+ROW |18307 |29112 |16036 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18310 |29116 |16038 |last | |
+ROW |18311 |29117 |16039 |last | |
+ROW |18312 |29118 |16040 |last | |
+ROW |18313 |29117 |16040 |last | |
+ROW |18314 |29120 |16041 |diff | |
+ROW |18315 |29121 |16042 |diff | |
+ROW |18316 |29121 |16042 |strlen | |
+ROW |18321 |29199 |16045 |min |5m |
+ROW |18322 |29200 |16046 |min |5m |
+ROW |18333 |29147 |16053 |last | |
+ROW |18334 |29184 |16054 |last | |
+ROW |18335 |29149 |16055 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18336 |29186 |16056 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18341 |29153 |16059 |last | |
+ROW |18342 |29190 |16060 |last | |
+ROW |18343 |29154 |16061 |last | |
+ROW |18344 |29191 |16062 |last | |
+ROW |18345 |29155 |16063 |last | |
+ROW |18346 |29154 |16063 |last | |
+ROW |18347 |29192 |16064 |last | |
+ROW |18348 |29191 |16064 |last | |
+ROW |18349 |29157 |16065 |diff | |
+ROW |18350 |29194 |16066 |diff | |
+ROW |18351 |29158 |16067 |diff | |
+ROW |18352 |29158 |16067 |strlen | |
+ROW |18353 |29195 |16068 |diff | |
+ROW |18354 |29195 |16068 |strlen | |
+ROW |18355 |29212 |16069 |last | |
+ROW |18356 |29211 |16069 |last | |
+ROW |18357 |29210 |16069 |last | |
+ROW |18358 |29212 |16069 |timeleft |1h,,100 |
+ROW |18359 |29212 |16070 |last | |
+ROW |18360 |29211 |16070 |last | |
+ROW |18361 |29210 |16070 |last | |
+ROW |18362 |29212 |16070 |timeleft |1h,,100 |
+ROW |18363 |29213 |16071 |min |5m |
+ROW |18364 |29213 |16072 |min |5m |
+ROW |18372 |29223 |16076 |change | |
+ROW |18373 |29223 |16076 |last | |
+ROW |18374 |29222 |16076 |last | |
+ROW |18375 |29223 |16076 |prev | |
+ROW |18376 |29226 |16077 |last | |
+ROW |18377 |29225 |16077 |last | |
+ROW |18378 |29224 |16077 |last | |
+ROW |18379 |29226 |16077 |timeleft |1h,,100 |
+ROW |18380 |29240 |16078 |last | |
+ROW |18381 |29239 |16078 |last | |
+ROW |18382 |29238 |16078 |last | |
+ROW |18383 |29240 |16078 |timeleft |1h,,100 |
+ROW |18384 |29226 |16079 |last | |
+ROW |18385 |29225 |16079 |last | |
+ROW |18386 |29224 |16079 |last | |
+ROW |18387 |29226 |16079 |timeleft |1h,,100 |
+ROW |18388 |29240 |16080 |last | |
+ROW |18389 |29239 |16080 |last | |
+ROW |18390 |29238 |16080 |last | |
+ROW |18391 |29240 |16080 |timeleft |1h,,100 |
+ROW |18392 |29227 |16081 |min |5m |
+ROW |18393 |29241 |16082 |min |5m |
+ROW |18394 |29227 |16083 |min |5m |
+ROW |18395 |29241 |16084 |min |5m |
+ROW |18410 |29237 |16091 |change | |
+ROW |18411 |29237 |16091 |last | |
+ROW |18412 |29236 |16091 |last | |
+ROW |18413 |29237 |16091 |prev | |
+ROW |18414 |29251 |16092 |change | |
+ROW |18415 |29251 |16092 |last | |
+ROW |18416 |29250 |16092 |last | |
+ROW |18417 |29251 |16092 |prev | |
+ROW |18501 |29395 |16138 |nodata |30m |
+ROW |18502 |29398 |16139 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18505 |29424 |16141 |last | |
+ROW |18506 |29423 |16142 |last | |
+ROW |18507 |29424 |16142 |last | |
+ROW |18508 |29428 |16143 |diff | |
+ROW |18509 |29428 |16143 |strlen | |
+ROW |18510 |29421 |16144 |last | |
+ROW |18513 |29427 |16146 |min |5m |
+ROW |18526 |29442 |16152 |change | |
+ROW |18527 |29442 |16152 |last | |
+ROW |18528 |29443 |16152 |last | |
+ROW |18529 |29444 |16152 |last | |
+ROW |18530 |29442 |16152 |prev | |
+ROW |18531 |29443 |16153 |change | |
+ROW |18532 |29443 |16153 |last | |
+ROW |18533 |29444 |16153 |last | |
+ROW |18534 |29443 |16153 |prev | |
+ROW |18537 |29433 |16155 |last | |
+ROW |18538 |29446 |16155 |last | |
+ROW |18539 |29432 |16155 |last | |
+ROW |18540 |29433 |16155 |timeleft |1h,,100 |
+ROW |18541 |29433 |16156 |last | |
+ROW |18542 |29446 |16156 |last | |
+ROW |18543 |29432 |16156 |last | |
+ROW |18544 |29433 |16156 |timeleft |1h,,100 |
+ROW |18545 |29447 |16157 |min |5m |
+ROW |18546 |29447 |16158 |min |5m |
+ROW |18548 |29454 |16160 |min |5m |
+ROW |18549 |29455 |16161 |min |5m |
+ROW |18550 |29457 |16162 |min |5m |
+ROW |18555 |29467 |16166 |max |5m |
+ROW |18556 |29469 |16167 |min |5m |
+ROW |18557 |29472 |16168 |last | |
+ROW |18558 |29473 |16169 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18561 |29480 |16171 |min |5m |
+ROW |18562 |29481 |16172 |min |5m |
+ROW |18563 |29483 |16173 |min |5m |
+ROW |18568 |29493 |16177 |max |5m |
+ROW |18569 |29495 |16178 |min |5m |
+ROW |18570 |29498 |16179 |last | |
+ROW |18571 |29499 |16180 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |18574 |29514 |16182 |last | |
+ROW |18575 |29513 |16182 |last | |
+ROW |18576 |29512 |16182 |last | |
+ROW |18577 |29514 |16182 |timeleft |1h,,100 |
+ROW |18578 |29514 |16183 |last | |
+ROW |18579 |29513 |16183 |last | |
+ROW |18580 |29512 |16183 |last | |
+ROW |18581 |29514 |16183 |timeleft |1h,,100 |
+ROW |18597 |29523 |16189 |last | |
+ROW |18598 |29522 |16189 |last | |
+ROW |18599 |29521 |16189 |last | |
+ROW |18600 |29523 |16189 |timeleft |1h,,100 |
+ROW |18601 |29523 |16190 |last | |
+ROW |18602 |29522 |16190 |last | |
+ROW |18603 |29521 |16190 |last | |
+ROW |18604 |29523 |16190 |timeleft |1h,,100 |
+ROW |18620 |29544 |16196 |max |{$AGENT.TIMEOUT} |
+ROW |18621 |29547 |16197 |nodata |{$AGENT.NODATA_TIMEOUT} |
+ROW |18622 |29548 |16198 |max |{$AGENT.TIMEOUT} |
+ROW |18623 |29557 |16199 |max |{$AGENT.TIMEOUT} |
+ROW |18624 |29549 |16200 |max |{$AGENT.TIMEOUT} |
+ROW |18625 |29550 |16201 |max |{$AGENT.TIMEOUT} |
+ROW |18626 |29551 |16202 |max |{$AGENT.TIMEOUT} |
+ROW |18627 |29552 |16203 |max |{$AGENT.TIMEOUT} |
+ROW |18628 |29553 |16204 |max |{$AGENT.TIMEOUT} |
+ROW |18629 |29554 |16205 |max |{$AGENT.TIMEOUT} |
+ROW |18630 |29555 |16206 |max |{$AGENT.TIMEOUT} |
+ROW |18711 |29696 |16250 |min |5m |
+ROW |18712 |29695 |16251 |max |5m |
+ROW |18715 |29692 |16254 |last | |
+ROW |18716 |29659 |16255 |last | |
+ROW |18717 |29655 |16256 |last | |
+ROW |18718 |29660 |16257 |min |5m |
+ROW |18719 |29720 |16258 |min |5m |
+ROW |18720 |29738 |16259 |nodata |30m |
+ROW |18726 |29771 |16264 |min |5m |
+ROW |18727 |29775 |16265 |max |5m |
+ROW |18730 |29772 |16268 |last | |
+ROW |18731 |29742 |16269 |last | |
+ROW |18732 |29743 |16270 |min |5m |
+ROW |18733 |29803 |16271 |min |5m |
+ROW |18734 |29821 |16272 |avg |10m |
+ROW |18735 |29822 |16273 |avg |10m |
+ROW |18736 |29823 |16274 |avg |10m |
+ROW |18742 |29834 |16279 |last | |
+ROW |18751 |28025 |16285 |max |{$SNMP.TIMEOUT} |
+ROW |18753 |29844 |16287 |last | |
+ROW |18756 |27154 |16289 |max |{$SNMP.TIMEOUT} |
+ROW |18757 |29849 |16290 |last | |
+ROW |18758 |29854 |16291 |last | |
+ROW |18759 |29859 |16292 |last | |
+ROW |18760 |29864 |16293 |last | |
+ROW |18761 |29869 |16294 |last | |
+ROW |18762 |29874 |16295 |last | |
+ROW |18763 |29879 |16296 |last | |
+ROW |18764 |29884 |16297 |last | |
+ROW |18765 |29889 |16298 |last | |
+ROW |18766 |29894 |16299 |last | |
+ROW |18767 |29899 |16300 |last | |
+ROW |18768 |29904 |16301 |last | |
+ROW |18769 |29909 |16302 |last | |
+ROW |18770 |29914 |16303 |last | |
+ROW |18771 |29919 |16304 |last | |
+ROW |18772 |29924 |16305 |last | |
+ROW |18773 |29929 |16306 |last | |
+ROW |18774 |29934 |16307 |last | |
+ROW |18775 |29939 |16308 |last | |
+ROW |18776 |29944 |16309 |last | |
+ROW |18778 |29954 |16311 |last | |
+ROW |18779 |29959 |16312 |last | |
+ROW |18780 |29964 |16313 |last | |
+ROW |18781 |29969 |16314 |last | |
+ROW |18782 |29974 |16315 |last | |
+ROW |18783 |29979 |16316 |last | |
+ROW |18784 |29984 |16317 |last | |
+ROW |18785 |29989 |16318 |last | |
+ROW |18844 |27202 |16348 |max |{$SNMP.TIMEOUT} |
+ROW |18845 |27235 |16349 |max |{$SNMP.TIMEOUT} |
+ROW |18846 |27271 |16350 |max |{$SNMP.TIMEOUT} |
+ROW |18847 |27292 |16351 |max |{$SNMP.TIMEOUT} |
+ROW |18848 |27343 |16352 |max |{$SNMP.TIMEOUT} |
+ROW |18849 |27375 |16353 |max |{$SNMP.TIMEOUT} |
+ROW |18850 |27472 |16354 |max |{$SNMP.TIMEOUT} |
+ROW |18851 |27506 |16355 |max |{$SNMP.TIMEOUT} |
+ROW |18852 |27542 |16356 |max |{$SNMP.TIMEOUT} |
+ROW |18853 |27578 |16357 |max |{$SNMP.TIMEOUT} |
+ROW |18854 |27641 |16358 |max |{$SNMP.TIMEOUT} |
+ROW |18855 |27664 |16359 |max |{$SNMP.TIMEOUT} |
+ROW |18856 |27744 |16360 |max |{$SNMP.TIMEOUT} |
+ROW |18857 |27776 |16361 |max |{$SNMP.TIMEOUT} |
+ROW |18858 |27810 |16362 |max |{$SNMP.TIMEOUT} |
+ROW |18859 |27892 |16363 |max |{$SNMP.TIMEOUT} |
+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 |18865 |28243 |16369 |max |{$SNMP.TIMEOUT} |
+ROW |18866 |28292 |16370 |max |{$SNMP.TIMEOUT} |
+ROW |18867 |28340 |16371 |max |{$SNMP.TIMEOUT} |
+ROW |18868 |28387 |16372 |max |{$SNMP.TIMEOUT} |
+ROW |18869 |28464 |16373 |max |{$SNMP.TIMEOUT} |
+ROW |18870 |28492 |16374 |max |{$SNMP.TIMEOUT} |
+ROW |18871 |28967 |16375 |max |{$SNMP.TIMEOUT} |
+ROW |18872 |29060 |16376 |max |{$SNMP.TIMEOUT} |
+ROW |19090 |29994 |16439 |count |#1,{$HEALTH_CRIT_STATUS},eq |
+ROW |19091 |29994 |16440 |count |#1,{$HEALTH_WARN_STATUS},eq |
+ROW |19093 |29998 |16442 |nodata |30m |
+ROW |19094 |29654 |16443 |nodata |30m |
+ROW |19096 |30025 |16445 |diff | |
+ROW |19097 |30025 |16445 |strlen | |
+ROW |19098 |29693 |16446 |last | |
+ROW |19099 |29688 |16447 |last | |
+ROW |19100 |29741 |16448 |nodata |30m |
+ROW |19102 |30045 |16450 |diff | |
+ROW |19103 |30045 |16450 |strlen | |
+ROW |19104 |29774 |16451 |last | |
+ROW |19105 |29773 |16452 |last | |
+ROW |19106 |30046 |16453 |max |#3 |
+ROW |19107 |30047 |16454 |min |5m |
+ROW |19108 |30048 |16455 |avg |5m |
+ROW |19111 |30055 |16457 |last | |
+ROW |19112 |30056 |16458 |max |{$SNMP.TIMEOUT} |
+ROW |19113 |30066 |16459 |avg |5m |
+ROW |19114 |30066 |16459 |max |5m |
+ROW |19115 |30066 |16460 |avg |5m |
+ROW |19116 |30066 |16460 |max |5m |
+ROW |19117 |30066 |16461 |avg |5m |
+ROW |19118 |30066 |16461 |min |5m |
+ROW |19119 |30067 |16462 |avg |5m |
+ROW |19120 |30067 |16462 |max |5m |
+ROW |19121 |30067 |16463 |avg |5m |
+ROW |19122 |30067 |16463 |max |5m |
+ROW |19123 |30067 |16464 |avg |5m |
+ROW |19124 |30067 |16464 |min |5m |
+ROW |19125 |30068 |16465 |avg |5m |
+ROW |19126 |30068 |16465 |max |5m |
+ROW |19127 |30068 |16466 |avg |5m |
+ROW |19128 |30068 |16466 |max |5m |
+ROW |19129 |30068 |16467 |avg |5m |
+ROW |19130 |30068 |16467 |min |5m |
+ROW |19131 |30069 |16468 |avg |5m |
+ROW |19132 |30069 |16468 |max |5m |
+ROW |19133 |30069 |16469 |avg |5m |
+ROW |19134 |30069 |16469 |max |5m |
+ROW |19135 |30069 |16470 |avg |5m |
+ROW |19136 |30069 |16470 |min |5m |
+ROW |19137 |30070 |16471 |avg |5m |
+ROW |19138 |30070 |16471 |max |5m |
+ROW |19139 |30070 |16472 |avg |5m |
+ROW |19140 |30070 |16472 |max |5m |
+ROW |19141 |30070 |16473 |avg |5m |
+ROW |19142 |30070 |16473 |min |5m |
+ROW |19143 |30071 |16474 |count |#1,{$PSU_CRIT_STATUS:"inoperable"},eq |
+ROW |19144 |30071 |16475 |count |#1,{$PSU_WARN_STATUS:"degraded"},eq |
+ROW |19145 |30072 |16476 |count |#1,{$HEALTH_CRIT_STATUS:"computeFailed"},eq |
+ROW |19146 |30072 |16476 |count |#1,{$HEALTH_CRIT_STATUS:"configFailure"},eq |
+ROW |19147 |30072 |16476 |count |#1,{$HEALTH_CRIT_STATUS:"unconfigFailure"},eq |
+ROW |19148 |30072 |16476 |count |#1,{$HEALTH_CRIT_STATUS:"inoperable"},eq |
+ROW |19149 |30072 |16477 |count |#1,{$HEALTH_WARN_STATUS:"testFailed"},eq |
+ROW |19150 |30072 |16477 |count |#1,{$HEALTH_WARN_STATUS:"thermalProblem"},eq |
+ROW |19151 |30072 |16477 |count |#1,{$HEALTH_WARN_STATUS:"powerProblem"},eq |
+ROW |19152 |30072 |16477 |count |#1,{$HEALTH_WARN_STATUS:"voltageProblem"},eq |
+ROW |19153 |30072 |16477 |count |#1,{$HEALTH_WARN_STATUS:"diagnosticsFailed"},eq |
+ROW |19154 |30074 |16478 |diff | |
+ROW |19155 |30074 |16478 |strlen | |
+ROW |19156 |30075 |16479 |count |#1,{$FAN_CRIT_STATUS:"inoperable"},eq |
+ROW |19157 |30075 |16480 |count |#1,{$FAN_WARN_STATUS:"degraded"},eq |
+ROW |19158 |30076 |16481 |count |#1,{$DISK_FAIL_STATUS:"failed"},eq |
+ROW |19159 |30076 |16482 |count |#1,{$DISK_CRIT_STATUS:"bad"},eq |
+ROW |19160 |30076 |16482 |count |#1,{$DISK_CRIT_STATUS:"predictiveFailure"},eq |
+ROW |19161 |30080 |16483 |count |#1,{$VDISK_OK_STATUS:"equipped"},ne |
+ROW |19162 |30083 |16484 |count |#1,{$DISK_ARRAY_CRIT_STATUS:"inoperable"},eq |
+ROW |19163 |30083 |16485 |count |#1,{$DISK_ARRAY_WARN_STATUS:"degraded"},eq |
+ROW |19164 |30083 |16486 |count |#1,{$DISK_ARRAY_OK_STATUS:"operable"},ne |
+ROW |19165 |30085 |16487 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS},eq |
+ROW |19166 |30085 |16488 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS},ne |
+ROW |19171 |27208 |16491 |min |5m |
+ROW |19172 |30086 |16492 |diff | |
+ROW |19173 |30086 |16492 |strlen | |
+ROW |19175 |30091 |16494 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |19176 |30092 |16495 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |19177 |27240 |16496 |min |5m |
+ROW |19179 |27294 |16498 |min |5m |
+ROW |19181 |27299 |16500 |min |5m |
+ROW |19182 |27301 |16501 |min |5m |
+ROW |19185 |27315 |16504 |avg |5m |
+ROW |19186 |27315 |16504 |max |5m |
+ROW |19187 |27315 |16505 |avg |5m |
+ROW |19188 |27315 |16505 |max |5m |
+ROW |19189 |27315 |16506 |avg |5m |
+ROW |19190 |27315 |16506 |min |5m |
+ROW |19191 |30097 |16507 |diff | |
+ROW |19192 |30097 |16507 |strlen | |
+ROW |19193 |27376 |16508 |min |5m |
+ROW |19194 |30098 |16509 |diff | |
+ROW |19195 |30098 |16509 |strlen | |
+ROW |19196 |30099 |16510 |diff | |
+ROW |19197 |30099 |16510 |strlen | |
+ROW |19198 |30100 |16511 |diff | |
+ROW |19199 |30100 |16511 |strlen | |
+ROW |19200 |27380 |16512 |min |5m |
+ROW |19202 |28246 |16514 |min |5m |
+ROW |19203 |27417 |16515 |min |5m |
+ROW |19207 |28247 |16519 |min |5m |
+ROW |19208 |27427 |16520 |min |5m |
+ROW |19209 |27478 |16521 |min |5m |
+ROW |19211 |27481 |16523 |diff | |
+ROW |19212 |27481 |16523 |strlen | |
+ROW |19213 |27511 |16524 |min |5m |
+ROW |19214 |30106 |16525 |diff | |
+ROW |19215 |30106 |16525 |strlen | |
+ROW |19217 |27547 |16527 |min |5m |
+ROW |19219 |27586 |16529 |min |5m |
+ROW |19220 |30109 |16530 |diff | |
+ROW |19221 |30109 |16530 |strlen | |
+ROW |19223 |27675 |16532 |diff | |
+ROW |19224 |27675 |16532 |strlen | |
+ROW |19225 |27671 |16533 |min |5m |
+ROW |19227 |28143 |16535 |min |5m |
+ROW |19229 |27753 |16537 |min |5m |
+ROW |19230 |27749 |16538 |diff | |
+ROW |19231 |27749 |16538 |strlen | |
+ROW |19233 |30117 |16540 |diff | |
+ROW |19234 |30117 |16540 |strlen | |
+ROW |19235 |28894 |16541 |min |5m |
+ROW |19237 |30119 |16543 |diff | |
+ROW |19238 |30119 |16543 |strlen | |
+ROW |19240 |27904 |16545 |min |5m |
+ROW |19241 |27906 |16546 |last | |
+ROW |19242 |27907 |16546 |last | |
+ROW |19243 |27908 |16546 |last | |
+ROW |19244 |27906 |16546 |timeleft |1h,,100 |
+ROW |19245 |27906 |16547 |last | |
+ROW |19246 |27907 |16547 |last | |
+ROW |19247 |27908 |16547 |last | |
+ROW |19248 |27906 |16547 |timeleft |1h,,100 |
+ROW |19249 |27936 |16548 |min |5m |
+ROW |19250 |30121 |16549 |diff | |
+ROW |19251 |30121 |16549 |strlen | |
+ROW |19253 |30124 |16551 |avg |5m |
+ROW |19254 |30124 |16551 |max |5m |
+ROW |19255 |30124 |16552 |avg |5m |
+ROW |19256 |30124 |16552 |max |5m |
+ROW |19257 |30124 |16553 |avg |5m |
+ROW |19258 |30124 |16553 |min |5m |
+ROW |19259 |27975 |16554 |min |5m |
+ROW |19260 |30125 |16555 |diff | |
+ROW |19261 |30125 |16555 |strlen | |
+ROW |19263 |30129 |16557 |count |#1,{$FAN_CRIT_STATUS},eq |
+ROW |19264 |30130 |16558 |count |#1,{$PSU_CRIT_STATUS},eq |
+ROW |19265 |28003 |16559 |min |5m |
+ROW |19267 |28031 |16561 |min |5m |
+ROW |19269 |29096 |16563 |min |5m |
+ROW |19270 |29087 |16563 |last | |
+ROW |19271 |29101 |16563 |last | |
+ROW |19272 |29100 |16563 |last | |
+ROW |19273 |29133 |16564 |min |5m |
+ROW |19274 |29124 |16564 |last | |
+ROW |19275 |29138 |16564 |last | |
+ROW |19276 |29137 |16564 |last | |
+ROW |19277 |29170 |16565 |min |5m |
+ROW |19278 |29161 |16565 |last | |
+ROW |19279 |29175 |16565 |last | |
+ROW |19280 |29174 |16565 |last | |
+ROW |19299 |29420 |16573 |min |5m |
+ROW |19300 |29417 |16573 |last | |
+ROW |19301 |29419 |16573 |last | |
+ROW |19302 |29418 |16573 |last | |
+ROW |19305 |28987 |16575 |min |5m |
+ROW |19306 |28990 |16575 |last | |
+ROW |19307 |28988 |16575 |last | |
+ROW |19308 |28989 |16575 |last | |
+ROW |19309 |29002 |16576 |min |5m |
+ROW |19310 |29005 |16576 |last | |
+ROW |19311 |29003 |16576 |last | |
+ROW |19312 |29004 |16576 |last | |
+ROW |19313 |30141 |16577 |diff | |
+ROW |19314 |30141 |16577 |strlen | |
+ROW |19316 |29113 |16579 |diff | |
+ROW |19317 |29113 |16579 |strlen | |
+ROW |19318 |29150 |16580 |diff | |
+ROW |19319 |29150 |16580 |strlen | |
+ROW |19320 |29187 |16581 |diff | |
+ROW |19321 |29187 |16581 |strlen | |
+ROW |19326 |29414 |16584 |diff | |
+ROW |19327 |29414 |16584 |strlen | |
+ROW |19328 |29474 |16585 |diff | |
+ROW |19329 |29474 |16585 |strlen | |
+ROW |19330 |29500 |16586 |diff | |
+ROW |19331 |29500 |16586 |strlen | |
+ROW |19340 |28022 |16591 |diff | |
+ROW |19341 |28022 |16591 |strlen | |
+ROW |19344 |27152 |16593 |diff | |
+ROW |19345 |27152 |16593 |strlen | |
+ROW |19346 |27199 |16594 |diff | |
+ROW |19347 |27199 |16594 |strlen | |
+ROW |19348 |27232 |16595 |diff | |
+ROW |19349 |27232 |16595 |strlen | |
+ROW |19350 |27268 |16596 |diff | |
+ROW |19351 |27268 |16596 |strlen | |
+ROW |19352 |27289 |16597 |diff | |
+ROW |19353 |27289 |16597 |strlen | |
+ROW |19354 |27340 |16598 |diff | |
+ROW |19355 |27340 |16598 |strlen | |
+ROW |19356 |27372 |16599 |diff | |
+ROW |19357 |27372 |16599 |strlen | |
+ROW |19358 |27469 |16600 |diff | |
+ROW |19359 |27469 |16600 |strlen | |
+ROW |19360 |27503 |16601 |diff | |
+ROW |19361 |27503 |16601 |strlen | |
+ROW |19362 |27539 |16602 |diff | |
+ROW |19363 |27539 |16602 |strlen | |
+ROW |19364 |27575 |16603 |diff | |
+ROW |19365 |27575 |16603 |strlen | |
+ROW |19366 |27638 |16604 |diff | |
+ROW |19367 |27638 |16604 |strlen | |
+ROW |19368 |27661 |16605 |diff | |
+ROW |19369 |27661 |16605 |strlen | |
+ROW |19370 |27741 |16606 |diff | |
+ROW |19371 |27741 |16606 |strlen | |
+ROW |19372 |27773 |16607 |diff | |
+ROW |19373 |27773 |16607 |strlen | |
+ROW |19374 |27807 |16608 |diff | |
+ROW |19375 |27807 |16608 |strlen | |
+ROW |19376 |27889 |16609 |diff | |
+ROW |19377 |27889 |16609 |strlen | |
+ROW |19378 |27926 |16610 |diff | |
+ROW |19379 |27926 |16610 |strlen | |
+ROW |19380 |27963 |16611 |diff | |
+ROW |19381 |27963 |16611 |strlen | |
+ROW |19382 |27993 |16612 |diff | |
+ROW |19383 |27993 |16612 |strlen | |
+ROW |19384 |28137 |16613 |diff | |
+ROW |19385 |28137 |16613 |strlen | |
+ROW |19388 |28240 |16615 |diff | |
+ROW |19389 |28240 |16615 |strlen | |
+ROW |19390 |28289 |16616 |diff | |
+ROW |19391 |28289 |16616 |strlen | |
+ROW |19392 |28337 |16617 |diff | |
+ROW |19393 |28337 |16617 |strlen | |
+ROW |19394 |28384 |16618 |diff | |
+ROW |19395 |28384 |16618 |strlen | |
+ROW |19396 |28461 |16619 |diff | |
+ROW |19397 |28461 |16619 |strlen | |
+ROW |19398 |28489 |16620 |diff | |
+ROW |19399 |28489 |16620 |strlen | |
+ROW |19400 |28964 |16621 |diff | |
+ROW |19401 |28964 |16621 |strlen | |
+ROW |19402 |29057 |16622 |diff | |
+ROW |19403 |29057 |16622 |strlen | |
+ROW |19404 |30053 |16623 |diff | |
+ROW |19405 |30053 |16623 |strlen | |
+ROW |19406 |30142 |16624 |min |5m |
+ROW |19407 |30143 |16625 |min |5m |
+ROW |19409 |30145 |16627 |min |5m |
+ROW |19410 |30146 |16628 |min |5m |
+ROW |19412 |30160 |16630 |last | |
+ROW |19413 |30161 |16630 |last | |
+ROW |19414 |30162 |16630 |last | |
+ROW |19415 |30160 |16630 |timeleft |1h,,100 |
+ROW |19416 |30160 |16631 |last | |
+ROW |19417 |30161 |16631 |last | |
+ROW |19418 |30162 |16631 |last | |
+ROW |19419 |30160 |16631 |timeleft |1h,,100 |
+ROW |19424 |30166 |16636 |last | |
+ROW |19425 |30167 |16636 |last | |
+ROW |19426 |30168 |16636 |last | |
+ROW |19427 |30166 |16636 |timeleft |1h,,100 |
+ROW |19432 |30178 |16638 |last | |
+ROW |19433 |30179 |16638 |last | |
+ROW |19434 |30180 |16638 |last | |
+ROW |19435 |30178 |16638 |timeleft |1h,,100 |
+ROW |19436 |30184 |16639 |last | |
+ROW |19437 |30185 |16639 |last | |
+ROW |19438 |30186 |16639 |last | |
+ROW |19439 |30184 |16639 |timeleft |1h,,100 |
+ROW |19440 |30166 |16640 |last | |
+ROW |19441 |30167 |16640 |last | |
+ROW |19442 |30168 |16640 |last | |
+ROW |19443 |30166 |16640 |timeleft |1h,,100 |
+ROW |19448 |30178 |16642 |last | |
+ROW |19449 |30179 |16642 |last | |
+ROW |19450 |30180 |16642 |last | |
+ROW |19451 |30178 |16642 |timeleft |1h,,100 |
+ROW |19452 |30184 |16643 |last | |
+ROW |19453 |30185 |16643 |last | |
+ROW |19454 |30186 |16643 |last | |
+ROW |19455 |30184 |16643 |timeleft |1h,,100 |
+ROW |19456 |30191 |16644 |last | |
+ROW |19457 |30192 |16645 |diff | |
+ROW |19458 |30192 |16645 |strlen | |
+ROW |19459 |30187 |16646 |min |5m |
+ROW |19460 |30188 |16647 |last | |
+ROW |19461 |30199 |16648 |min |5m |
+ROW |19462 |30200 |16649 |min |5m |
+ROW |19463 |30201 |16650 |min |5m |
+ROW |19464 |30202 |16651 |min |5m |
+ROW |19465 |30203 |16652 |max |#5 |
+ROW |19466 |30208 |16653 |min |5m |
+ROW |19467 |30209 |16654 |min |5m |
+ROW |19468 |30196 |16655 |min |5m |
+ROW |19469 |30221 |16656 |min |5m |
+ROW |19470 |30224 |16657 |min |5m |
+ROW |19471 |30225 |16658 |min |5m |
+ROW |19472 |30226 |16659 |min |5m |
+ROW |19473 |30227 |16660 |max |#5 |
+ROW |19474 |30234 |16661 |last | |
+ROW |19475 |30235 |16662 |diff | |
+ROW |19476 |30235 |16662 |strlen | |
+ROW |19479 |30242 |16665 |min |5m |
+ROW |19480 |30243 |16666 |min |5m |
+ROW |19481 |30244 |16667 |min |5m |
+ROW |19482 |30245 |16668 |min |5m |
+ROW |19483 |30246 |16669 |max |#5 |
+ROW |19484 |30251 |16670 |min |5m |
+ROW |19485 |30252 |16671 |min |5m |
+ROW |19486 |30239 |16672 |min |5m |
+ROW |19487 |30264 |16673 |min |5m |
+ROW |19488 |30267 |16674 |min |5m |
+ROW |19489 |30268 |16675 |min |5m |
+ROW |19490 |30269 |16676 |min |5m |
+ROW |19491 |30270 |16677 |max |#5 |
+ROW |19492 |28804 |16678 |str |"HTTP/1.1 200" |
+ROW |19493 |28804 |16678 |nodata |30m |
+ROW |19494 |28821 |16679 |str |"HTTP/1.1 200" |
+ROW |19495 |28821 |16679 |nodata |30m |
+ROW |19497 |30322 |16681 |min |5m |
+ROW |19498 |30312 |16681 |last | |
+ROW |19499 |30275 |16682 |diff | |
+ROW |19500 |30275 |16682 |strlen | |
+ROW |19501 |30276 |16683 |nodata |30m |
+ROW |19502 |30317 |16684 |min |15m |
+ROW |19503 |30326 |16685 |last | |
+ROW |19504 |30333 |16686 |last | |
+ROW |19505 |30273 |16687 |last | |
+ROW |19506 |30306 |16688 |diff | |
+ROW |19507 |30286 |16689 |diff | |
+ROW |19508 |30286 |16689 |strlen | |
+ROW |19509 |30283 |16690 |diff | |
+ROW |19510 |30283 |16690 |strlen | |
+ROW |19511 |30281 |16691 |last | |
+ROW |19512 |30274 |16692 |min |5m |
+ROW |19513 |30298 |16693 |last | |
+ROW |19514 |30347 |16694 |last | |
+ROW |19517 |30398 |16696 |min |5m |
+ROW |19548 |29434 |16710 |min |15m |
+ROW |19549 |29435 |16710 |min |15m |
+ROW |19552 |30425 |16713 |min |#3 |
+ROW |19553 |30426 |16714 |min |#3 |
+ROW |19558 |30470 |16719 |min |5m |
+ROW |19560 |30454 |16721 |last | |
+ROW |19562 |30432 |16723 |last | |
+ROW |19563 |30445 |16724 |min |5m |
+ROW |19564 |30450 |16725 |last | |
+ROW |19565 |30431 |16726 |diff | |
+ROW |19566 |30431 |16726 |strlen | |
+ROW |19567 |30476 |16727 |min |5m |
+ROW |19568 |30477 |16728 |count |#1,"No",eq |
+ROW |19569 |30477 |16729 |count |#1,"Yes",ne |
+ROW |19570 |30478 |16730 |count |#1,"No",eq |
+ROW |19572 |30481 |16732 |last | |
+ROW |19573 |30480 |16733 |diff | |
+ROW |19574 |30480 |16733 |strlen | |
+ROW |19575 |30505 |16734 |min |5m |
+ROW |19577 |30514 |16736 |last | |
+ROW |19578 |30495 |16737 |min |5m |
+ROW |19579 |30519 |16738 |last | |
+ROW |19580 |30524 |16739 |min |5m |
+ROW |19581 |30525 |16740 |count |#1,"No",eq |
+ROW |19582 |30525 |16741 |count |#1,"Yes",ne |
+ROW |19583 |30526 |16742 |count |#1,"No",eq |
+ROW |19584 |30537 |16743 |nodata |30m |
+ROW |19585 |30530 |16744 |last | |
+ROW |19586 |30547 |16745 |diff | |
+ROW |19587 |30547 |16745 |strlen | |
+ROW |19588 |30599 |16746 |last | |
+ROW |19589 |30604 |16746 |last | |
+ROW |19590 |30598 |16747 |diff | |
+ROW |19591 |30598 |16747 |strlen | |
+ROW |19592 |30614 |16748 |min |5m |
+ROW |19593 |30634 |16748 |last | |
+ROW |19594 |30633 |16749 |min |5m |
+ROW |19595 |30632 |16749 |last | |
+ROW |19596 |30631 |16750 |min |5m |
+ROW |19597 |30628 |16751 |min |5m |
+ROW |19598 |30627 |16752 |nodata |30m |
+ROW |19599 |30611 |16753 |last | |
+ROW |19600 |30615 |16754 |last | |
+ROW |19601 |30636 |16755 |diff | |
+ROW |19602 |30636 |16755 |strlen | |
+ROW |19603 |30676 |16756 |min |5m |
+ROW |19605 |30660 |16758 |last | |
+ROW |19606 |30638 |16759 |last | |
+ROW |19607 |30651 |16760 |min |5m |
+ROW |19608 |30656 |16761 |last | |
+ROW |19609 |30637 |16762 |diff | |
+ROW |19610 |30637 |16762 |strlen | |
+ROW |19611 |30682 |16763 |min |5m |
+ROW |19612 |30683 |16764 |count |#1,"No",eq |
+ROW |19613 |30683 |16765 |count |#1,"Yes",ne |
+ROW |19614 |30684 |16766 |count |#1,"No",eq |
+ROW |19615 |30688 |16767 |diff | |
+ROW |19616 |30689 |16768 |min |5m |
+ROW |19617 |30689 |16769 |min |5m |
+ROW |19618 |30689 |16770 |min |5m |
+ROW |19619 |30689 |16771 |min |5m |
+ROW |19620 |30689 |16772 |min |5m |
+ROW |19621 |30689 |16773 |min |5m |
+ROW |19622 |30697 |16774 |last | |
+ROW |19623 |30698 |16774 |last | |
+ROW |19624 |30709 |16774 |last | |
+ROW |19625 |30710 |16775 |min |10m |
+ROW |19626 |30708 |16776 |change | |
+ROW |19627 |30708 |16777 |change | |
+ROW |19628 |30705 |16778 |last | |
+ROW |19629 |30705 |16779 |last | |
+ROW |19630 |30705 |16780 |last | |
+ROW |19631 |30712 |16781 |min |10m |
+ROW |19632 |30699 |16782 |last | |
+ROW |19633 |30696 |16783 |last | |
+ROW |19634 |30692 |16784 |min |5m |
+ROW |19635 |30690 |16785 |last | |
+ROW |19636 |30715 |16786 |min |5m |
+ROW |19637 |30716 |16787 |min |5m |
+ROW |19638 |30717 |16788 |min |5m |
+ROW |19639 |30714 |16789 |min |5m |
+ROW |19640 |30724 |16790 |min |1h |
+ROW |19641 |30724 |16791 |min |1h |
+ROW |19642 |30725 |16792 |last | |
+ROW |19643 |30729 |16793 |min |5m |
+ROW |19644 |30733 |16794 |min |5m |
+ROW |19645 |30758 |16795 |min |5m |
+ROW |19646 |30765 |16796 |min |5m |
+ROW |19647 |30766 |16797 |min |5m |
+ROW |19648 |30767 |16798 |min |5m |
+ROW |19649 |30768 |16799 |min |5m |
+ROW |19650 |30769 |16800 |max |#5 |
+ROW |19651 |30774 |16801 |min |5m |
+ROW |19652 |30775 |16802 |min |5m |
+ROW |19653 |30762 |16803 |min |5m |
+ROW |19654 |30782 |16804 |min |5m |
+ROW |19655 |30783 |16805 |min |5m |
+ROW |19656 |30784 |16806 |min |5m |
+ROW |19657 |30785 |16807 |min |5m |
+ROW |19658 |30786 |16808 |max |#5 |
+ROW |19659 |30789 |16809 |min |5m |
+ROW |19660 |30790 |16810 |last | |
+ROW |19661 |30797 |16811 |min |5m |
+ROW |19662 |30798 |16812 |min |5m |
+ROW |19663 |30799 |16813 |min |5m |
+ROW |19664 |30800 |16814 |min |5m |
+ROW |19665 |30801 |16815 |max |#5 |
+ROW |19666 |30806 |16816 |min |5m |
+ROW |19667 |30807 |16817 |min |5m |
+ROW |19668 |30794 |16818 |min |5m |
+ROW |19669 |30814 |16819 |min |5m |
+ROW |19670 |30815 |16820 |min |5m |
+ROW |19671 |30816 |16821 |min |5m |
+ROW |19672 |30817 |16822 |min |5m |
+ROW |19673 |30818 |16823 |max |#5 |
+ROW |19674 |30854 |16824 |min |5m |
+ROW |19675 |30858 |16825 |min |5m |
+ROW |19676 |30864 |16826 |min |5m |
+ROW |19677 |30862 |16827 |min |5m |
+ROW |19679 |30827 |16829 |last | |
+ROW |19680 |30837 |16830 |min |5m |
+ROW |19681 |30829 |16831 |diff | |
+ROW |19682 |30829 |16831 |strlen | |
+ROW |19683 |30846 |16832 |last | |
+ROW |19684 |30846 |16833 |nodata |30m |
+ROW |19685 |30822 |16834 |diff | |
+ROW |19686 |30822 |16834 |strlen | |
+ROW |19687 |30843 |16835 |min |5m |
+ROW |19688 |30880 |16836 |max |5m |
+ROW |19689 |30891 |16836 |last | |
+ROW |19690 |30883 |16837 |min |5m |
+ROW |19691 |30884 |16838 |min |5m |
+ROW |19692 |30885 |16839 |min |5m |
+ROW |19693 |30890 |16840 |min |5m |
+ROW |19694 |27107 |16841 |last | |
+ROW |19695 |27107 |16841 |diff | |
+ROW |19696 |27188 |16842 |last | |
+ROW |19697 |27188 |16842 |diff | |
+ROW |19698 |27223 |16843 |last | |
+ROW |19699 |27223 |16843 |diff | |
+ROW |19700 |27259 |16844 |last | |
+ROW |19701 |27259 |16844 |diff | |
+ROW |19702 |27280 |16845 |last | |
+ROW |19703 |27280 |16845 |diff | |
+ROW |19704 |27329 |16846 |last | |
+ROW |19705 |27329 |16846 |diff | |
+ROW |19706 |27458 |16847 |last | |
+ROW |19707 |27458 |16847 |diff | |
+ROW |19708 |27494 |16848 |last | |
+ROW |19709 |27494 |16848 |diff | |
+ROW |19710 |27528 |16849 |last | |
+ROW |19711 |27528 |16849 |diff | |
+ROW |19712 |27564 |16850 |last | |
+ROW |19713 |27564 |16850 |diff | |
+ROW |19714 |27650 |16851 |last | |
+ROW |19715 |27650 |16851 |diff | |
+ROW |19716 |27730 |16852 |last | |
+ROW |19717 |27730 |16852 |diff | |
+ROW |19718 |27764 |16853 |last | |
+ROW |19719 |27764 |16853 |diff | |
+ROW |19720 |27796 |16854 |last | |
+ROW |19721 |27796 |16854 |diff | |
+ROW |19722 |27880 |16855 |last | |
+ROW |19723 |27880 |16855 |diff | |
+ROW |19724 |27917 |16856 |last | |
+ROW |19725 |27917 |16856 |diff | |
+ROW |19726 |27952 |16857 |last | |
+ROW |19727 |27952 |16857 |diff | |
+ROW |19728 |28126 |16858 |last | |
+ROW |19729 |28126 |16858 |diff | |
+ROW |19732 |28231 |16860 |last | |
+ROW |19733 |28231 |16860 |diff | |
+ROW |19734 |28301 |16861 |last | |
+ROW |19735 |28301 |16861 |diff | |
+ROW |19736 |28976 |16862 |last | |
+ROW |19737 |28976 |16862 |diff | |
+ROW |19738 |27087 |16863 |last | |
+ROW |19739 |27087 |16863 |diff | |
+ROW |19740 |27627 |16864 |last | |
+ROW |19741 |27627 |16864 |diff | |
+ROW |19742 |27984 |16865 |last | |
+ROW |19743 |27984 |16865 |diff | |
+ROW |19744 |27127 |16866 |last | |
+ROW |19745 |27127 |16866 |diff | |
+ROW |19746 |29085 |16867 |last | |
+ROW |19747 |29085 |16867 |diff | |
+ROW |19748 |28013 |16868 |last | |
+ROW |19749 |28013 |16868 |diff | |
+ROW |19756 |27421 |16871 |avg |5m |
+ROW |19757 |27421 |16871 |min |5m |
+ROW |19776 |27430 |16878 |avg |5m |
+ROW |19777 |27430 |16878 |min |5m |
+ROW |19778 |27447 |16879 |avg |5m |
+ROW |19779 |27447 |16879 |min |5m |
+ROW |19780 |28218 |16880 |avg |5m |
+ROW |19781 |28218 |16880 |min |5m |
+ROW |19786 |29444 |16883 |last | |
+ROW |19787 |29444 |16883 |diff | |
+ROW |19792 |30912 |16886 |last | |
+ROW |19793 |30911 |16887 |diff | |
+ROW |19794 |30911 |16887 |strlen | |
+ROW |19795 |30896 |16888 |nodata |30m |
+ROW |19796 |30927 |16889 |min |5m |
+ROW |19797 |30944 |16889 |last | |
+ROW |19798 |30943 |16890 |diff | |
+ROW |19799 |30943 |16890 |strlen | |
+ROW |19800 |30945 |16891 |last | |
+ROW |19801 |30924 |16892 |last | |
+ROW |19802 |30954 |16893 |min |5m |
+ROW |19803 |30956 |16894 |nodata |30m |
+ROW |19804 |30960 |16895 |delta |15m |
+ROW |19805 |30930 |16896 |min |5m |
+ROW |19806 |30931 |16897 |min |5m |
+ROW |19807 |30937 |16898 |diff | |
+ROW |19808 |30937 |16898 |strlen | |
+ROW |19809 |30939 |16899 |last | |
+ROW |19810 |30923 |16900 |last | |
+ROW |19811 |30963 |16901 |min |5m |
+ROW |19812 |30968 |16902 |last | |
+ROW |19813 |30975 |16903 |last | |
+ROW |19814 |30984 |16904 |last | |
+ROW |19815 |31004 |16905 |last | |
+ROW |19816 |31006 |16906 |last | |
+ROW |19817 |31007 |16907 |last | |
+ROW |19818 |31008 |16908 |diff | |
+ROW |19819 |31009 |16909 |min |{$IIS.QUEUE.MAX.TIME} |
+ROW |19820 |31010 |16910 |last | |
+ROW |19821 |31017 |16911 |last | |
+ROW |19822 |31026 |16912 |last | |
+ROW |19823 |31046 |16913 |last | |
+ROW |19824 |31048 |16914 |last | |
+ROW |19825 |31049 |16915 |last | |
+ROW |19826 |31050 |16916 |diff | |
+ROW |19827 |31051 |16917 |min |{$IIS.QUEUE.MAX.TIME} |
+ROW |19828 |31052 |16918 |diff | |
+ROW |19829 |31052 |16918 |strlen | |
+ROW |19830 |31053 |16919 |diff | |
+ROW |19831 |31053 |16919 |strlen | |
+ROW |19832 |30821 |16920 |last | |
+ROW |19833 |31054 |16920 |last | |
+ROW |19834 |31054 |16921 |last | |
+ROW |19841 |31092 |16925 |last | |
+ROW |19842 |31095 |16925 |last | |
+ROW |19845 |31056 |16927 |min |5m |
+ROW |19846 |31096 |16928 |max |5m |
+ROW |19847 |31096 |16929 |max |5m |
+ROW |19848 |31106 |16930 |min |5m |
+ROW |19849 |31114 |16931 |min |5m |
+ROW |19850 |31115 |16932 |min |5m |
+ROW |19851 |31116 |16933 |min |5m |
+ROW |19852 |31118 |16934 |min |5m |
+ROW |19853 |31062 |16935 |min |5m |
+ROW |19854 |31064 |16936 |max |15m |
+ROW |19855 |31066 |16937 |min |5m |
+ROW |19856 |31068 |16938 |min |5m |
+ROW |19857 |31082 |16939 |last | |
+ROW |19858 |31082 |16940 |nodata |30m |
+ROW |19859 |31085 |16941 |diff | |
+ROW |19860 |31085 |16941 |strlen | |
+ROW |19863 |31088 |16944 |max |5m |
+ROW |19865 |31133 |16946 |last | |
+ROW |19866 |31135 |16947 |last | |
+ROW |19867 |31136 |16948 |last | |
+ROW |19868 |31136 |16949 |last | |
+ROW |19869 |31142 |16950 |min |5m |
+ROW |19870 |31143 |16951 |min |5m |
+ROW |19873 |31148 |16954 |min |5m |
+ROW |19874 |31149 |16955 |last | |
+ROW |19875 |31152 |16956 |last | |
+ROW |19876 |31153 |16957 |last | |
+ROW |19877 |31153 |16958 |last | |
+ROW |19878 |31157 |16959 |last | |
+ROW |19879 |31157 |16960 |last | |
+ROW |19880 |31157 |16961 |last | |
+ROW |19881 |31158 |16962 |last | |
+ROW |19888 |31161 |16965 |last | |
+ROW |19889 |31166 |16965 |last | |
+ROW |19890 |31164 |16966 |last | |
+ROW |19891 |31164 |16967 |last | |
+ROW |19892 |31164 |16968 |last | |
+ROW |19893 |31165 |16969 |last | |
+ROW |19894 |31167 |16970 |last | |
+ROW |19895 |31167 |16971 |last | |
+ROW |19896 |31169 |16972 |min |5m |
+ROW |19897 |31170 |16973 |min |5m |
+ROW |19898 |31171 |16974 |min |5m |
+ROW |19899 |30450 |16975 |nodata |30m |
+ROW |19900 |31173 |16976 |min |5m |
+ROW |19901 |31174 |16977 |min |5m |
+ROW |19902 |31175 |16978 |min |5m |
+ROW |19903 |30656 |16979 |nodata |30m |
+ROW |19904 |31177 |16980 |min |5m |
+ROW |19905 |31179 |16981 |min |5m |
+ROW |19906 |31178 |16982 |min |5m |
+ROW |19907 |30519 |16983 |nodata |30m |
+ROW |19908 |31183 |16984 |max |#3 |
+ROW |19909 |31184 |16984 |max |#3 |
+ROW |19910 |31192 |16985 |min |5m |
+ROW |19911 |31193 |16985 |last | |
+ROW |19912 |31200 |16986 |min |5m |
+ROW |19913 |31202 |16986 |last | |
+ROW |19914 |31233 |16987 |min |5m |
+ROW |19915 |31234 |16987 |last | |
+ROW |19916 |31216 |16988 |min |5m |
+ROW |19917 |31237 |16988 |last | |
+ROW |19918 |31244 |16989 |diff | |
+ROW |19919 |31244 |16989 |strlen | |
+ROW |19920 |31245 |16990 |diff | |
+ROW |19921 |31245 |16990 |strlen | |
+ROW |19922 |31194 |16991 |max |5m |
+ROW |19924 |31190 |16993 |min |5m |
+ROW |19925 |31203 |16994 |min |5m |
+ROW |19926 |31211 |16995 |max |5m |
+ROW |19927 |31217 |16996 |last | |
+ROW |19928 |31217 |16997 |nodata |5m |
+ROW |19929 |31218 |16998 |last | |
+ROW |19930 |31189 |16999 |diff | |
+ROW |19931 |31189 |16999 |strlen | |
+ROW |19932 |31184 |17000 |max |#3 |
+ROW |19933 |31260 |17001 |last | |
+ROW |19934 |31263 |17002 |min |5m |
+ROW |19935 |31263 |17003 |min |5m |
+ROW |19936 |31264 |17004 |last | |
+ROW |19937 |31265 |17004 |last | |
+ROW |19938 |31266 |17005 |last | |
+ROW |19939 |31266 |17006 |diff | |
+ROW |19940 |31267 |17007 |diff | |
+ROW |19941 |31268 |17008 |last | |
+ROW |19942 |31268 |17009 |diff | |
+ROW |19943 |31272 |17010 |last | |
+ROW |19944 |31272 |17011 |diff | |
+ROW |19947 |31329 |17014 |min |5m |
+ROW |19949 |31282 |17016 |last | |
+ROW |19950 |31287 |17017 |last | |
+ROW |19951 |31357 |17018 |min |5m |
+ROW |19952 |31356 |17019 |min |5m |
+ROW |19956 |31370 |17023 |min |15m |
+ROW |19957 |31371 |17023 |min |15m |
+ROW |19958 |29222 |17024 |last | |
+ROW |19959 |29222 |17024 |diff | |
+ROW |19960 |31373 |17025 |min |15m |
+ROW |19961 |31374 |17025 |min |15m |
+ROW |19962 |29236 |17026 |last | |
+ROW |19963 |29236 |17026 |diff | |
+ROW |19964 |31376 |17027 |min |15m |
+ROW |19965 |31377 |17027 |min |15m |
+ROW |19966 |29250 |17028 |last | |
+ROW |19967 |29250 |17028 |diff | |
+ROW |19978 |29459 |17035 |min |5m |
+ROW |19979 |31419 |17035 |last | |
+ROW |19982 |29485 |17037 |min |5m |
+ROW |19983 |31423 |17037 |last | |
+ROW |19998 |31454 |17042 |last | |
+ROW |19999 |31454 |17042 |diff | |
+ROW |20000 |31439 |17043 |min |15m |
+ROW |20013 |31457 |17047 |last | |
+ROW |20014 |31457 |17047 |diff | |
+ROW |20015 |31443 |17048 |min |15m |
+ROW |20054 |31532 |17063 |last | |
+ROW |20055 |31538 |17063 |last | |
+ROW |20056 |31536 |17064 |last | |
+ROW |20057 |31534 |17064 |last | |
+ROW |20058 |31528 |17065 |last | |
+ROW |20059 |31542 |17065 |last | |
+ROW |20060 |31546 |17066 |min |{$JMX.HEAP.MEM.USAGE.TIME} |
+ROW |20061 |31545 |17066 |last | |
+ROW |20062 |31549 |17067 |min |{$JMX.NONHEAP.MEM.USAGE.TIME} |
+ROW |20063 |31548 |17067 |last | |
+ROW |20064 |31541 |17068 |min |{$JMX.MP.USAGE.TIME:"CMS Old Gen"} |
+ROW |20065 |31552 |17068 |last | |
+ROW |20066 |31525 |17069 |min |{$JMX.MP.USAGE.TIME:"CMS Perm Gen"} |
+ROW |20067 |31513 |17069 |last | |
+ROW |20068 |31503 |17070 |min |{$JMX.MP.USAGE.TIME:"Code Cache"} |
+ROW |20069 |31502 |17070 |last | |
+ROW |20070 |31506 |17071 |min |{$JMX.MP.USAGE.TIME:"Perm Gen"} |
+ROW |20071 |31505 |17071 |last | |
+ROW |20072 |31509 |17072 |min |{$JMX.MP.USAGE.TIME:"PS Old Gen"} |
+ROW |20073 |31508 |17072 |last | |
+ROW |20074 |31500 |17073 |min |{$JMX.MP.USAGE.TIME:"PS Perm Gen"} |
+ROW |20075 |31511 |17073 |last | |
+ROW |20076 |31515 |17074 |min |{$JMX.MP.USAGE.TIME:"Tenured Gen"} |
+ROW |20077 |31514 |17074 |last | |
+ROW |20078 |31517 |17075 |min |{$JMX.FILE.DESCRIPTORS.TIME} |
+ROW |20079 |31516 |17075 |last | |
+ROW |20080 |31530 |17076 |str |Client |
+ROW |20081 |31518 |17077 |min |{$JMX.CPU.LOAD.TIME} |
+ROW |20082 |31519 |17078 |nodata |5m |
+ROW |20083 |31520 |17079 |str |Server |
+ROW |20084 |31070 |17080 |last | |
+ROW |20085 |31066 |17080 |last | |
+ROW |20086 |31554 |17081 |min |15m |
+ROW |20087 |31556 |17082 |min |15m |
+ROW |20088 |31555 |17083 |min |15m |
+ROW |20089 |31057 |17084 |last | |
+ROW |20090 |31560 |17085 |avg |5m |
+ROW |20091 |31560 |17085 |max |5m |
+ROW |20092 |31560 |17086 |avg |5m |
+ROW |20093 |31560 |17086 |max |5m |
+ROW |20094 |31560 |17087 |avg |5m |
+ROW |20095 |31560 |17087 |min |5m |
+ROW |20096 |31569 |17088 |last | |
+ROW |20097 |31573 |17089 |min |15m |
+ROW |20098 |31587 |17090 |last | |
+ROW |20099 |31587 |17090 |nodata |3m |
+ROW |20100 |31586 |17091 |diff | |
+ROW |20101 |31577 |17092 |min |#3 |
+ROW |20102 |31579 |17093 |nodata |30m |
+ROW |20103 |31579 |17094 |last | |
+ROW |20104 |31578 |17095 |diff | |
+ROW |20105 |31578 |17095 |strlen | |
+ROW |20106 |31572 |17096 |last | |
+ROW |20107 |31593 |17097 |min |15m |
+ROW |20108 |31603 |17098 |last | |
+ROW |20109 |31603 |17098 |nodata |3m |
+ROW |20110 |31605 |17099 |diff | |
+ROW |20111 |31600 |17100 |min |#3 |
+ROW |20112 |31598 |17101 |nodata |30m |
+ROW |20113 |31598 |17102 |last | |
+ROW |20114 |31611 |17103 |diff | |
+ROW |20115 |31611 |17103 |strlen | |
+ROW |20128 |22942 |17113 |last | |
+ROW |20129 |22952 |17114 |last | |
+ROW |20130 |22949 |17115 |last | |
+ROW |20131 |22875 |17116 |last | |
+ROW |20132 |22876 |17117 |last | |
+ROW |20133 |22902 |17118 |last | |
+ROW |20134 |22896 |17119 |last | |
+ROW |20135 |22912 |17120 |last | |
+ROW |20136 |22909 |17121 |last | |
+ROW |20137 |22982 |17122 |last | |
+ROW |20138 |22992 |17123 |last | |
+ROW |20139 |22989 |17124 |last | |
+ROW |20140 |23035 |17125 |last | |
+ROW |20141 |23036 |17126 |last | |
+ROW |20142 |23062 |17127 |last | |
+ROW |20143 |23072 |17128 |last | |
+ROW |20144 |23069 |17129 |last | |
+ROW |20145 |22835 |17130 |last | |
+ROW |20146 |22836 |17131 |last | |
+ROW |20147 |22862 |17132 |last | |
+ROW |20148 |22856 |17133 |last | |
+ROW |20149 |22872 |17134 |last | |
+ROW |20150 |22869 |17135 |last | |
+ROW |20151 |22996 |17136 |last | |
+ROW |20152 |23022 |17137 |last | |
+ROW |20153 |23016 |17138 |last | |
+ROW |20154 |23032 |17139 |last | |
+ROW |20155 |23029 |17140 |last | |
+ROW |20156 |26932 |17141 |last | |
+ROW |20157 |26932 |17142 |last | |
+ROW |20158 |26930 |17143 |last | |
+ROW |20159 |26930 |17144 |last | |
+ROW |20160 |26931 |17145 |last | |
+ROW |20161 |26931 |17146 |last | |
+ROW |20162 |26929 |17147 |last | |
+ROW |20163 |26929 |17148 |last | |
+ROW |20164 |26928 |17149 |last | |
+ROW |20165 |26928 |17150 |last | |
+ROW |20166 |26925 |17151 |last | |
+ROW |20167 |26943 |17152 |last | |
+ROW |20168 |26943 |17153 |last | |
+ROW |20169 |26939 |17154 |last | |
+ROW |20170 |26939 |17155 |last | |
+ROW |20171 |26940 |17156 |last | |
+ROW |20172 |26940 |17157 |last | |
+ROW |20173 |26941 |17158 |last | |
+ROW |20174 |26941 |17159 |last | |
+ROW |20175 |26942 |17160 |last | |
+ROW |20176 |26942 |17161 |last | |
+ROW |20177 |26938 |17162 |last | |
+ROW |20178 |26938 |17163 |last | |
+ROW |20179 |26937 |17164 |last | |
+ROW |20180 |26937 |17165 |last | |
+ROW |20181 |26933 |17166 |last | |
+ROW |20182 |26933 |17167 |last | |
+ROW |20183 |26934 |17168 |last | |
+ROW |20184 |26935 |17169 |last | |
+ROW |20185 |26935 |17170 |last | |
+ROW |20186 |26936 |17171 |last | |
+ROW |20187 |26936 |17172 |last | |
+ROW |20188 |31687 |17173 |min |5m |
+ROW |20189 |31710 |17173 |last | |
+ROW |20190 |31705 |17174 |min |5m |
+ROW |20191 |31708 |17174 |last | |
+ROW |20192 |31685 |17175 |min |5m |
+ROW |20193 |31738 |17175 |last | |
+ROW |20194 |31723 |17176 |min |5m |
+ROW |20195 |31757 |17176 |last | |
+ROW |20196 |31748 |17177 |diff | |
+ROW |20197 |31748 |17177 |strlen | |
+ROW |20198 |31749 |17178 |diff | |
+ROW |20199 |31749 |17178 |strlen | |
+ROW |20200 |31684 |17179 |last | |
+ROW |20201 |31695 |17180 |max |5m |
+ROW |20203 |31709 |17182 |min |5m |
+ROW |20204 |31712 |17183 |min |5m |
+ROW |20205 |31718 |17184 |max |5m |
+ROW |20206 |31724 |17185 |nodata |30m |
+ROW |20207 |31724 |17186 |last | |
+ROW |20208 |31696 |17187 |last | |
+ROW |20209 |31760 |17188 |diff | |
+ROW |20210 |31760 |17188 |strlen | |
+ROW |20211 |31768 |17189 |last | |
+ROW |20212 |31769 |17190 |last | |
+ROW |20213 |31770 |17190 |last | |
+ROW |20214 |31771 |17191 |last | |
+ROW |20215 |31771 |17192 |diff | |
+ROW |20216 |31772 |17193 |diff | |
+ROW |20217 |31775 |17194 |min |5m |
+ROW |20218 |31775 |17195 |min |5m |
+ROW |20219 |31776 |17196 |last | |
+ROW |20220 |31776 |17197 |diff | |
+ROW |20221 |31780 |17198 |last | |
+ROW |20222 |31780 |17199 |diff | |
+ROW |20285 |31788 |17222 |last | |
+ROW |20286 |31788 |17223 |nodata |30m |
+ROW |20287 |31787 |17224 |last | |
+ROW |20288 |31786 |17225 |diff | |
+ROW |20289 |31786 |17225 |strlen | |
+ROW |20290 |31783 |17226 |min |5m |
+ROW |20291 |31782 |17227 |last | |
+ROW |20293 |31808 |17229 |last | |
+ROW |20295 |31810 |17231 |last | |
+ROW |20298 |31815 |17234 |last | |
+ROW |20311 |31819 |17239 |max |{$AGENT.TIMEOUT} |
+ROW |20312 |31838 |17240 |last | |
+ROW |20313 |31837 |17240 |last | |
+ROW |20318 |31829 |17243 |min |5m |
+ROW |20319 |31832 |17243 |last | |
+ROW |20320 |31833 |17243 |last | |
+ROW |20321 |31834 |17243 |last | |
+ROW |20322 |31892 |17244 |min |5m |
+ROW |20323 |31836 |17245 |last | |
+ROW |20324 |31837 |17246 |last | |
+ROW |20325 |31841 |17247 |diff | |
+ROW |20326 |31841 |17247 |strlen | |
+ROW |20327 |31842 |17248 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |20328 |31844 |17249 |diff | |
+ROW |20329 |31844 |17249 |strlen | |
+ROW |20330 |31847 |17250 |last | |
+ROW |20331 |31849 |17251 |diff | |
+ROW |20333 |31874 |17253 |last | |
+ROW |20334 |31873 |17253 |last | |
+ROW |20339 |31865 |17256 |min |5m |
+ROW |20340 |31868 |17256 |last | |
+ROW |20341 |31869 |17256 |last | |
+ROW |20342 |31870 |17256 |last | |
+ROW |20343 |31894 |17257 |min |5m |
+ROW |20344 |31872 |17258 |last | |
+ROW |20345 |31873 |17259 |last | |
+ROW |20346 |31877 |17260 |diff | |
+ROW |20347 |31877 |17260 |strlen | |
+ROW |20348 |31878 |17261 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |20349 |31880 |17262 |diff | |
+ROW |20350 |31880 |17262 |strlen | |
+ROW |20351 |31883 |17263 |last | |
+ROW |20352 |31885 |17264 |diff | |
+ROW |20354 |31902 |17266 |min |15m |
+ROW |20355 |31903 |17266 |min |15m |
+ROW |20356 |31906 |17267 |last | |
+ROW |20357 |31907 |17267 |last | |
+ROW |20358 |31908 |17267 |last | |
+ROW |20359 |31906 |17267 |timeleft |1h,,100 |
+ROW |20360 |31906 |17268 |last | |
+ROW |20361 |31907 |17268 |last | |
+ROW |20362 |31908 |17268 |last | |
+ROW |20363 |31906 |17268 |timeleft |1h,,100 |
+ROW |20364 |31905 |17269 |min |5m |
+ROW |20365 |31905 |17270 |min |5m |
+ROW |20366 |31916 |17271 |change | |
+ROW |20367 |31916 |17271 |last | |
+ROW |20368 |31915 |17271 |last | |
+ROW |20369 |31916 |17271 |prev | |
+ROW |20374 |31915 |17273 |last | |
+ROW |20375 |31915 |17273 |diff | |
+ROW |20376 |31917 |17274 |min |15m |
+ROW |20377 |31918 |17274 |min |15m |
+ROW |20378 |31921 |17275 |last | |
+ROW |20379 |31922 |17275 |last | |
+ROW |20380 |31923 |17275 |last | |
+ROW |20381 |31921 |17275 |timeleft |1h,,100 |
+ROW |20382 |31921 |17276 |last | |
+ROW |20383 |31922 |17276 |last | |
+ROW |20384 |31923 |17276 |last | |
+ROW |20385 |31921 |17276 |timeleft |1h,,100 |
+ROW |20386 |31920 |17277 |min |5m |
+ROW |20387 |31920 |17278 |min |5m |
+ROW |20388 |31931 |17279 |change | |
+ROW |20389 |31931 |17279 |last | |
+ROW |20390 |31930 |17279 |last | |
+ROW |20391 |31931 |17279 |prev | |
+ROW |20396 |31930 |17281 |last | |
+ROW |20397 |31930 |17281 |diff | |
+ROW |20398 |31947 |17282 |max |{$AGENT.TIMEOUT} |
+ROW |20399 |31953 |17283 |min |5m |
+ROW |20400 |31955 |17283 |last | |
+ROW |20403 |31949 |17285 |min |5m |
+ROW |20404 |31950 |17286 |min |5m |
+ROW |20405 |31954 |17287 |min |5m |
+ROW |20406 |31958 |17288 |diff | |
+ROW |20407 |31958 |17288 |strlen | |
+ROW |20408 |31959 |17289 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |20409 |31962 |17290 |last | |
+ROW |20410 |31964 |17291 |max |5m |
+ROW |20411 |31966 |17292 |min |5m |
+ROW |20413 |31980 |17294 |min |5m |
+ROW |20414 |31982 |17294 |last | |
+ROW |20417 |31976 |17296 |min |5m |
+ROW |20418 |31977 |17297 |min |5m |
+ROW |20419 |31981 |17298 |min |5m |
+ROW |20420 |31985 |17299 |diff | |
+ROW |20421 |31985 |17299 |strlen | |
+ROW |20422 |31986 |17300 |fuzzytime|{$SYSTEM.FUZZYTIME.MAX} |
+ROW |20423 |31989 |17301 |last | |
+ROW |20424 |31991 |17302 |max |5m |
+ROW |20425 |31993 |17303 |min |5m |
+ROW |20427 |32012 |17305 |last | |
+ROW |20428 |32013 |17305 |last | |
+ROW |20429 |32014 |17305 |last | |
+ROW |20430 |32012 |17305 |timeleft |1h,,100 |
+ROW |20431 |32012 |17306 |last | |
+ROW |20432 |32013 |17306 |last | |
+ROW |20433 |32014 |17306 |last | |
+ROW |20434 |32012 |17306 |timeleft |1h,,100 |
+ROW |20447 |32041 |17310 |last | |
+ROW |20448 |32041 |17310 |diff | |
+ROW |20449 |32021 |17311 |min |15m |
+ROW |20450 |32025 |17312 |min |#3 |
+ROW |20451 |32026 |17313 |last | |
+ROW |20452 |32027 |17313 |last | |
+ROW |20453 |32028 |17313 |last | |
+ROW |20454 |32026 |17313 |timeleft |1h,,100 |
+ROW |20455 |32026 |17314 |last | |
+ROW |20456 |32027 |17314 |last | |
+ROW |20457 |32028 |17314 |last | |
+ROW |20458 |32026 |17314 |timeleft |1h,,100 |
+ROW |20471 |32044 |17318 |last | |
+ROW |20472 |32044 |17318 |diff | |
+ROW |20473 |32035 |17319 |min |15m |
+ROW |20474 |32039 |17320 |min |#3 |
+ROW |20478 |27247 |17322 |avg |5m |
+ROW |20479 |27246 |17322 |last |0 |
+ROW |20480 |27247 |17322 |max |5m |
+ROW |20508 |27784 |17332 |avg |5m |
+ROW |20509 |27783 |17332 |last |0 |
+ROW |20510 |27784 |17332 |max |5m |
+ROW |20511 |27784 |17333 |avg |5m |
+ROW |20512 |27783 |17333 |last |0 |
+ROW |20513 |27784 |17333 |max |5m |
+ROW |20541 |32165 |17353 |diff | |
+ROW |20542 |32165 |17353 |strlen | |
+ROW |20543 |32166 |17354 |last | |
+ROW |20544 |32166 |17355 |last | |
+ROW |20545 |32120 |17356 |last | |
+ROW |20546 |32170 |17357 |min |15m |
+ROW |20547 |32153 |17357 |last | |
+ROW |20548 |32170 |17358 |min |15m |
+ROW |20549 |32160 |17358 |last | |
+ROW |20550 |32175 |17359 |last | |
+ROW |20566 |32272 |17368 |last | |
+ROW |20567 |32259 |17368 |last | |
+ROW |20568 |32261 |17368 |last | |
+ROW |20569 |32272 |17369 |last | |
+ROW |20570 |32260 |17369 |last | |
+ROW |20571 |32261 |17369 |last | |
+ROW |20572 |32239 |17370 |last | |
+ROW |20573 |32274 |17371 |last | |
+ROW |20574 |32263 |17372 |last | |
+ROW |20575 |32292 |17373 |diff | |
+ROW |20576 |32292 |17373 |strlen | |
+ROW |20595 |32392 |17390 |last | |
+ROW |20596 |32375 |17391 |nodata |30m |
+ROW |20597 |32374 |17392 |max |5m |
+ROW |20598 |32373 |17393 |diff | |
+ROW |20599 |32373 |17393 |strlen | |
+ROW |20600 |32402 |17394 |min |5m |
+ROW |20601 |32366 |17395 |min |5m |
+ROW |20602 |32367 |17396 |last | |
+ROW |20603 |32370 |17397 |min |5m |
+ROW |20604 |32372 |17398 |max |5m |
+ROW |20605 |32377 |17399 |last | |
+ROW |20606 |32378 |17400 |diff | |
+ROW |20607 |32378 |17400 |strlen | |
+ROW |20608 |32408 |17401 |min |5m |
+ROW |20609 |32422 |17402 |min |5m |
+ROW |20610 |32434 |17403 |last | |
+ROW |20611 |32409 |17404 |min |5m |
+ROW |20612 |32417 |17405 |min |5m |
+ROW |20613 |32436 |17406 |max |5m |
+ROW |20614 |32437 |17407 |max |5m |
+ROW |20615 |32438 |17408 |max |5m |
+ROW |20616 |32439 |17409 |max |5m |
+ROW |20617 |32442 |17410 |diff | |
+ROW |20618 |32442 |17410 |strlen | |
+ROW |20619 |32444 |17411 |min |{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"} |
+ROW |20620 |32444 |17412 |min |{$ACTIVEMQ.MEM.TIME:"{#JMXBROKERNAME}"} |
+ROW |20621 |32446 |17413 |min |{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"} |
+ROW |20622 |32446 |17414 |min |{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERNAME}"} |
+ROW |20623 |32448 |17415 |min |{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"} |
+ROW |20624 |32448 |17416 |min |{$ACTIVEMQ.TEMP.TIME:"{#JMXBROKERNAME}"} |
+ROW |20625 |32449 |17417 |max |{$ACTIVEMQ.BROKER.CONSUMERS.MIN.TIME:"{#JMXBROKERNAME}"} |
+ROW |20627 |32452 |17419 |max |{$ACTIVEMQ.BROKER.PRODUCERS.MIN.TIME:"{#JMXBROKERNAME}"} |
+ROW |20628 |32453 |17420 |last | |
+ROW |20629 |32456 |17421 |max |{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |20630 |32454 |17421 |last | |
+ROW |20631 |32456 |17421 |min |{$ACTIVEMQ.DESTINATION.CONSUMERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |20634 |32461 |17423 |max |{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |20635 |32455 |17423 |last | |
+ROW |20636 |32461 |17423 |min |{$ACTIVEMQ.DESTINATION.PRODUCERS.MIN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |20638 |32460 |17425 |last | |
+ROW |20639 |32460 |17426 |last | |
+ROW |20641 |32486 |17428 |max |5m |
+ROW |20642 |32486 |17429 |max |5m |
+ROW |20643 |32487 |17430 |min |5m |
+ROW |20644 |32487 |17431 |min |5m |
+ROW |20645 |32491 |17432 |min |5m |
+ROW |20646 |32491 |17433 |max |5m |
+ROW |20647 |32493 |17434 |last | |
+ROW |20648 |32537 |17435 |avg |{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
+ROW |20649 |32534 |17435 |avg |{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
+ROW |20650 |32529 |17436 |min |{$MS.EXCHANGE.DB.FAULTS.TIME} |
+ROW |20651 |32530 |17437 |avg |{$MS.EXCHANGE.LOG.STALLS.TIME} |
+ROW |20652 |32533 |17438 |min |{$MS.EXCHANGE.DB.ACTIVE.READ.TIME} |
+ROW |20653 |32534 |17439 |min |{$MS.EXCHANGE.DB.PASSIVE.READ.TIME} |
+ROW |20654 |32536 |17440 |min |{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} |
+ROW |20655 |32540 |17441 |min |{$MS.EXCHANGE.RPC.TIME} |
+ROW |20656 |32542 |17442 |min |{$MS.EXCHANGE.RPC.COUNT.TIME} |
+ROW |20657 |32543 |17443 |min |{$MS.EXCHANGE.LDAP.TIME} |
+ROW |20658 |32544 |17444 |min |{$MS.EXCHANGE.LDAP.TIME} |
+ROW |20659 |32567 |17445 |avg |{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
+ROW |20660 |32564 |17445 |avg |{$MS.EXCHANGE.DB.PASSIVE.WRITE.TIME} |
+ROW |20661 |32559 |17446 |min |{$MS.EXCHANGE.DB.FAULTS.TIME} |
+ROW |20662 |32560 |17447 |avg |{$MS.EXCHANGE.LOG.STALLS.TIME} |
+ROW |20663 |32563 |17448 |min |{$MS.EXCHANGE.DB.ACTIVE.READ.TIME} |
+ROW |20664 |32564 |17449 |min |{$MS.EXCHANGE.DB.PASSIVE.READ.TIME} |
+ROW |20665 |32566 |17450 |min |{$MS.EXCHANGE.DB.ACTIVE.WRITE.TIME} |
+ROW |20666 |32570 |17451 |min |{$MS.EXCHANGE.RPC.TIME} |
+ROW |20667 |32572 |17452 |min |{$MS.EXCHANGE.RPC.COUNT.TIME} |
+ROW |20668 |32573 |17453 |min |{$MS.EXCHANGE.LDAP.TIME} |
+ROW |20669 |32574 |17454 |min |{$MS.EXCHANGE.LDAP.TIME} |
+ROW |20670 |32584 |17455 |min |5m |
+ROW |20671 |32579 |17455 |last | |
+ROW |20672 |32607 |17456 |diff | |
+ROW |20673 |32607 |17456 |strlen | |
+ROW |20674 |32610 |17457 |min |5m |
+ROW |20675 |32576 |17458 |last | |
+ROW |20676 |32577 |17459 |last | |
+ROW |20677 |32599 |17460 |min |5m |
+ROW |20678 |32588 |17461 |min |5m |
+ROW |20679 |32597 |17462 |min |5m |
+ROW |20680 |32593 |17463 |nodata |30m |
+ROW |20683 |32626 |17465 |min |15m |
+ROW |20684 |32631 |17466 |min |5m |
+ROW |20685 |32633 |17466 |last | |
+ROW |20686 |32632 |17467 |min |5m |
+ROW |20687 |32642 |17468 |min |15m |
+ROW |20688 |32656 |17469 |min |5m |
+ROW |20689 |32663 |17470 |max |15m |
+ROW |20690 |32667 |17471 |nodata |30m |
+ROW |20691 |32667 |17472 |last | |
+ROW |20692 |32657 |17473 |min |15m |
+ROW |20693 |32655 |17474 |max |5m |
+ROW |20694 |32649 |17475 |min |15m |
+ROW |20695 |32647 |17476 |nodata |30m |
+ROW |20696 |32647 |17477 |last | |
+ROW |20697 |32638 |17478 |min |5m |
+ROW |20698 |32637 |17479 |min |5m |
+ROW |20699 |32636 |17480 |last | |
+ROW |20700 |32640 |17481 |last | |
+ROW |20701 |32678 |17482 |last | |
+ROW |20702 |32680 |17483 |nodata |30m |
+ROW |20703 |32680 |17484 |last | |
+ROW |20704 |32689 |17485 |last | |
+ROW |20705 |32690 |17486 |nodata |30m |
+ROW |20706 |32690 |17487 |last | |
+ROW |20707 |32724 |17488 |last | |
+ROW |20708 |32727 |17489 |last | |
+ROW |20709 |32732 |17490 |last | |
+ROW |20710 |32696 |17491 |nodata |15m |
+ROW |20711 |32696 |17492 |max |15m |
+ROW |20712 |32697 |17493 |last | |
+ROW |20713 |32698 |17494 |diff | |
+ROW |20714 |32698 |17494 |strlen | |
+ROW |20715 |32694 |17495 |max |15m |
+ROW |20716 |32714 |17496 |last | |
+ROW |20717 |32715 |17497 |last | |
+ROW |20718 |32717 |17498 |regexp |"CONNECTED" |
+ROW |20719 |28511 |17499 |diff | |
+ROW |20720 |28511 |17499 |strlen | |
+ROW |20721 |32766 |17500 |str |off |
+ROW |20722 |32778 |17501 |min |{$TOMCAT.THREADS.MAX.TIME:"{#JMXNAME}"} |
+ROW |20723 |32779 |17501 |last | |
+ROW |20724 |32804 |17502 |min |5m |
+ROW |20725 |32805 |17502 |last | |
+ROW |20726 |32794 |17503 |strlen | |
+ROW |20727 |32793 |17504 |last | |
+ROW |20728 |32789 |17505 |last | |
+ROW |20729 |32788 |17506 |diff | |
+ROW |20730 |32788 |17506 |strlen | |
+ROW |20731 |32840 |17507 |delta |1h |
+ROW |20732 |32848 |17508 |delta |1h |
+ROW |20733 |32860 |17509 |delta |1h |
+ROW |20734 |32802 |17510 |last | |
+ROW |20735 |32872 |17511 |last | |
+ROW |20736 |32873 |17511 |last | |
+ROW |20737 |32872 |17512 |last | |
+ROW |20738 |32873 |17512 |last | |
+ROW |20739 |32871 |17513 |strlen | |
+ROW |20741 |32909 |17515 |last | |
+ROW |20742 |32914 |17516 |last | |
+ROW |20743 |32914 |17517 |last | |
+ROW |20744 |32913 |17518 |last | |
+ROW |20745 |32913 |17519 |last | |
+ROW |20746 |32912 |17520 |last | |
+ROW |20747 |32970 |17521 |min |5m |
+ROW |20748 |32980 |17521 |last | |
+ROW |20749 |32966 |17522 |min |5m |
+ROW |20750 |32975 |17523 |diff | |
+ROW |20751 |32975 |17523 |strlen | |
+ROW |20752 |32977 |17524 |nodata |10m |
+ROW |20753 |32977 |17525 |last | |
+ROW |20754 |32978 |17526 |diff | |
+ROW |20755 |32978 |17526 |strlen | |
+ROW |20756 |33009 |17527 |last | |
+ROW |20757 |33008 |17527 |last | |
+ROW |20758 |33007 |17528 |min |5m |
+ROW |20759 |33012 |17529 |avg |10m |
+ROW |20760 |33013 |17530 |avg |10m |
+ROW |20761 |33016 |17531 |avg |10m |
+ROW |20762 |33017 |17532 |avg |10m |
+ROW |20763 |33018 |17533 |avg |10m |
+ROW |20764 |33019 |17534 |avg |10m |
+ROW |20765 |33022 |17535 |avg |10m |
+ROW |20766 |33023 |17536 |avg |10m |
+ROW |20767 |33026 |17537 |avg |10m |
+ROW |20768 |33027 |17538 |avg |10m |
+ROW |20769 |33062 |17539 |diff | |
+ROW |20770 |33062 |17539 |strlen | |
+ROW |20771 |33091 |17540 |min |15m |
+ROW |20772 |33091 |17541 |min |15m |
+ROW |20773 |33079 |17542 |min |5m |
+ROW |20774 |33061 |17543 |nodata |15m |
+ROW |20775 |33059 |17544 |last | |
+ROW |20776 |33169 |17545 |min |5m |
+ROW |20777 |33169 |17546 |min |5m |
+ROW |20778 |31781 |17547 |min |5m |
+ROW |20779 |31781 |17548 |min |5m |
+ROW |20780 |33171 |17549 |min |5m |
+ROW |20781 |33171 |17550 |min |5m |
+ROW |20782 |31273 |17551 |min |5m |
+ROW |20783 |31273 |17552 |min |5m |
+ROW |20784 |33174 |17553 |last | |
+ROW |20785 |28325 |17554 |min |5m |
+ROW |20786 |28325 |17555 |min |5m |
+ROW |20787 |28325 |17556 |max |5m |
+ROW |20788 |28325 |17557 |max |5m |
+ROW |20789 |28323 |17558 |min |5m |
+ROW |20790 |28323 |17559 |min |5m |
+ROW |20791 |28323 |17560 |max |5m |
+ROW |20792 |28323 |17561 |max |5m |
+ROW |20793 |33183 |17562 |min |5m |
+ROW |20794 |33183 |17563 |min |5m |
+ROW |20795 |33183 |17564 |max |5m |
+ROW |20796 |33183 |17565 |max |5m |
+ROW |20797 |27421 |17566 |avg |5m |
+ROW |20798 |27420 |17566 |last | |
+ROW |20799 |27421 |17566 |max |5m |
+ROW |20800 |27421 |17567 |avg |5m |
+ROW |20801 |27420 |17567 |last | |
+ROW |20802 |27421 |17567 |max |5m |
+ROW |20803 |27430 |17568 |avg |5m |
+ROW |20804 |27429 |17568 |last | |
+ROW |20805 |27430 |17568 |max |5m |
+ROW |20806 |27447 |17569 |avg |5m |
+ROW |20807 |27446 |17569 |last | |
+ROW |20808 |27447 |17569 |max |5m |
+ROW |20809 |28218 |17570 |avg |5m |
+ROW |20810 |28217 |17570 |last | |
+ROW |20811 |28218 |17570 |max |5m |
+ROW |20812 |27430 |17571 |avg |5m |
+ROW |20813 |27429 |17571 |last | |
+ROW |20814 |27430 |17571 |max |5m |
+ROW |20815 |27447 |17572 |avg |5m |
+ROW |20816 |27446 |17572 |last | |
+ROW |20817 |27447 |17572 |max |5m |
+ROW |20818 |28218 |17573 |avg |5m |
+ROW |20819 |28217 |17573 |last | |
+ROW |20820 |28218 |17573 |max |5m |
+ROW |20821 |27584 |17574 |avg |5m |
+ROW |20822 |27585 |17574 |last | |
+ROW |20823 |27584 |17574 |max |5m |
+ROW |20824 |33199 |17575 |last | |
+ROW |20825 |33199 |17576 |last | |
+ROW |20826 |33185 |17577 |last | |
+ROW |20827 |33185 |17578 |last | |
+ROW |20828 |33192 |17579 |count |#3,"arrayCurrentOffset","like" |
+ROW |20829 |33192 |17580 |count |#3,"batterySenseDisconnected","like" |
+ROW |20830 |33192 |17581 |count |#3,"batterySenseOutOfRange","like" |
+ROW |20831 |33192 |17582 |count |#3,"controllerReset","like" |
+ROW |20832 |33192 |17583 |count |#3,"currentLimit","like" |
+ROW |20833 |33192 |17584 |count |#3,"currentMeasurementError","like" |
+ROW |20834 |33192 |17585 |count |#3,"eepromAccessFailure","like" |
+ROW |20835 |33192 |17586 |count |#3,"fp10SupplyOutOfRange","like" |
+ROW |20836 |33192 |17587 |count |#3,"heatsinkTempLimit","like" |
+ROW |20837 |33192 |17588 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |20838 |33192 |17589 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |20839 |33192 |17590 |count |#3,"hightInputVoltageLimit","like" |
+ROW |20840 |33192 |17591 |count |#3,"inductorTempLimit","like" |
+ROW |20841 |33192 |17592 |count |#3,"inductorTempSensorOpen","like" |
+ROW |20842 |33192 |17593 |count |#3,"inductorTempSensorShorted","like" |
+ROW |20843 |33192 |17594 |count |#3,"loadCurrentOffset","like" |
+ROW |20844 |33192 |17595 |count |#3,"loadLvd","like" |
+ROW |20845 |33192 |17596 |count |#3,"logTimeout","like" |
+ROW |20846 |33192 |17597 |count |#3,"mosfetOpen","like" |
+ROW |20847 |33192 |17598 |count |#3,"p12SupplyOutOfRange","like" |
+ROW |20848 |33192 |17599 |count |#3,"p33SupplyOutOfRange","like" |
+ROW |20849 |33192 |17600 |count |#3,"rtsDisconnected","like" |
+ROW |20850 |33192 |17601 |count |#3,"rtsShorted","like" |
+ROW |20851 |33192 |17602 |count |#3,"tb5v","like" |
+ROW |20852 |33192 |17603 |count |#3,"uncalibrated","like" |
+ROW |20853 |33191 |17604 |count |#3,"arrayHvd","like" |
+ROW |20854 |33191 |17605 |count |#3,"batteryHvd","like" |
+ROW |20855 |33191 |17606 |count |#3,"batteryLowVoltageDisconnect","like" |
+ROW |20856 |33191 |17607 |count |#3,"customSettingsEdit","like" |
+ROW |20857 |33191 |17608 |count |#3,"dipSwitchChanged","like" |
+ROW |20858 |33191 |17609 |count |#3,"localTempSensorDamaged","like" |
+ROW |20859 |33191 |17610 |count |#3,"mosfetSShorted","like" |
+ROW |20860 |33191 |17611 |count |#3,"overcurrent","like" |
+ROW |20861 |33191 |17612 |count |#3,"rtsNoLongerValid","like" |
+ROW |20862 |33191 |17613 |count |#3,"rtsShorted","like" |
+ROW |20863 |33191 |17614 |count |#3,"slaveTimeout","like" |
+ROW |20864 |33191 |17615 |count |#3,"software","like" |
+ROW |20865 |33190 |17616 |count |#3,"customSettingsEdit","like" |
+ROW |20866 |33190 |17617 |count |#3,"dipSwitchChanged","like" |
+ROW |20867 |33190 |17618 |count |#3,"externalShortCircuit","like" |
+ROW |20868 |33190 |17619 |count |#3,"highTempDisconnect","like" |
+ROW |20869 |33190 |17620 |count |#3,"loadHvd","like" |
+ROW |20870 |33190 |17621 |count |#3,"mosfetShorted","like" |
+ROW |20871 |33190 |17622 |count |#3,"overcurrent","like" |
+ROW |20872 |33190 |17623 |count |#3,"software","like" |
+ROW |20873 |33189 |17624 |last | |
+ROW |20874 |33189 |17625 |nodata |5m |
+ROW |20875 |33186 |17626 |min |5m |
+ROW |20876 |33186 |17627 |max |5m |
+ROW |20877 |33186 |17628 |min |5m |
+ROW |20878 |33186 |17629 |max |5m |
+ROW |20879 |33206 |17630 |min |5m |
+ROW |20880 |33206 |17631 |max |5m |
+ROW |20881 |33206 |17632 |min |5m |
+ROW |20882 |33206 |17633 |max |5m |
+ROW |20883 |33222 |17634 |last | |
+ROW |20884 |33222 |17635 |last | |
+ROW |20885 |33217 |17636 |last | |
+ROW |20886 |33217 |17637 |last | |
+ROW |20887 |33208 |17638 |count |#3,"arrayCurrentOffset","like" |
+ROW |20888 |33208 |17639 |count |#3,"batterySenseDisconnected","like" |
+ROW |20889 |33208 |17640 |count |#3,"batterySenseOutOfRange","like" |
+ROW |20890 |33208 |17641 |count |#3,"batteryTempOutOfRange","like" |
+ROW |20891 |33208 |17642 |count |#3,"controllerReset","like" |
+ROW |20892 |33208 |17643 |count |#3,"currentLimit","like" |
+ROW |20893 |33208 |17644 |count |#3,"currentMeasurementError","like" |
+ROW |20894 |33208 |17645 |count |#3,"eepromAccessFailure","like" |
+ROW |20895 |33208 |17646 |count |#3,"fp10SupplyOutOfRange","like" |
+ROW |20896 |33208 |17647 |count |#3,"heatsinkTempLimit","like" |
+ROW |20897 |33208 |17648 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |20898 |33208 |17649 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |20899 |33208 |17650 |count |#3,"hightInputVoltageLimit","like" |
+ROW |20900 |33208 |17651 |count |#3,"loadCurrentOffset","like" |
+ROW |20901 |33208 |17652 |count |#3,"loadLvd","like" |
+ROW |20902 |33208 |17653 |count |#3,"logTimeout","like" |
+ROW |20903 |33208 |17654 |count |#3,"mosfetOpen","like" |
+ROW |20904 |33208 |17655 |count |#3,"p12SupplyOutOfRange","like" |
+ROW |20905 |33208 |17656 |count |#3,"p33SupplyOutOfRange","like" |
+ROW |20906 |33208 |17657 |count |#3,"rtsDisconnected","like" |
+ROW |20907 |33208 |17658 |count |#3,"rtsShorted","like" |
+ROW |20908 |33208 |17659 |count |#3,"uncalibrated","like" |
+ROW |20909 |33214 |17660 |count |#3,"arrayHvd","like" |
+ROW |20910 |33214 |17661 |count |#3,"batteryHvd","like" |
+ROW |20911 |33214 |17662 |count |#3,"batteryLowVoltageDisconnect","like" |
+ROW |20912 |33214 |17663 |count |#3,"customSettingsEdit","like" |
+ROW |20913 |33214 |17664 |count |#3,"dipSwitchChanged","like" |
+ROW |20914 |33214 |17665 |count |#3,"localTempSensorDamaged","like" |
+ROW |20915 |33214 |17666 |count |#3,"mosfetSShorted","like" |
+ROW |20916 |33214 |17667 |count |#3,"overcurrent","like" |
+ROW |20917 |33214 |17668 |count |#3,"p3Fault","like" |
+ROW |20918 |33214 |17669 |count |#3,"rtsNoLongerValid","like" |
+ROW |20919 |33214 |17670 |count |#3,"rtsShorted","like" |
+ROW |20920 |33214 |17671 |count |#3,"slaveTimeout","like" |
+ROW |20921 |33214 |17672 |count |#3,"software","like" |
+ROW |20922 |33213 |17673 |count |#3,"customSettingsEdit","like" |
+ROW |20923 |33213 |17674 |count |#3,"dipSwitchChanged","like" |
+ROW |20924 |33213 |17675 |count |#3,"externalShortCircuit","like" |
+ROW |20925 |33213 |17676 |count |#3,"highTempDisconnect","like" |
+ROW |20926 |33213 |17677 |count |#3,"loadHvd","like" |
+ROW |20927 |33213 |17678 |count |#3,"mosfetShorted","like" |
+ROW |20928 |33213 |17679 |count |#3,"overcurrent","like" |
+ROW |20929 |33213 |17680 |count |#3,"p3Fault","like" |
+ROW |20930 |33213 |17681 |count |#3,"software","like" |
+ROW |20931 |33212 |17682 |last | |
+ROW |20932 |33212 |17683 |nodata |5m |
+ROW |20933 |33209 |17684 |min |5m |
+ROW |20934 |33209 |17685 |max |5m |
+ROW |20935 |33209 |17686 |min |5m |
+ROW |20936 |33209 |17687 |max |5m |
+ROW |20937 |33226 |17688 |min |5m |
+ROW |20938 |33226 |17689 |max |5m |
+ROW |20939 |33226 |17690 |min |5m |
+ROW |20940 |33226 |17691 |max |5m |
+ROW |20941 |33242 |17692 |last | |
+ROW |20942 |33242 |17693 |last | |
+ROW |20943 |33228 |17694 |last | |
+ROW |20944 |33228 |17695 |last | |
+ROW |20945 |33235 |17696 |count |#3,"currentLimit","like" |
+ROW |20946 |33235 |17697 |count |#3,"currentOffset","like" |
+ROW |20947 |33235 |17698 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |20948 |33235 |17699 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |20949 |33235 |17700 |count |#3,"highVaCurrentLimit","like" |
+ROW |20950 |33235 |17701 |count |#3,"mosfetSOpen","like" |
+ROW |20951 |33235 |17702 |count |#3,"p12VoltageReferenceOff","like" |
+ROW |20952 |33235 |17703 |count |#3,"rtsDisconnected","like" |
+ROW |20953 |33235 |17704 |count |#3,"rtsMiswire","like" |
+ROW |20954 |33235 |17705 |count |#3,"rtsShorted","like" |
+ROW |20955 |33235 |17706 |count |#3,"sspptHot","like" |
+ROW |20956 |33235 |17707 |count |#3,"systemMiswire","like" |
+ROW |20957 |33235 |17708 |count |#3,"uncalibrated","like" |
+ROW |20958 |33234 |17709 |count |#3,"arrayHvd","like" |
+ROW |20959 |33234 |17710 |count |#3,"batteryHvd","like" |
+ROW |20960 |33234 |17711 |count |#3,"customSettingsEdit","like" |
+ROW |20961 |33234 |17712 |count |#3,"localTempSensorDamaged","like" |
+ROW |20962 |33234 |17713 |count |#3,"mosfetSShorted","like" |
+ROW |20963 |33234 |17714 |count |#3,"overcurrent","like" |
+ROW |20964 |33234 |17715 |count |#3,"rtsNoLongerValid","like" |
+ROW |20965 |33234 |17716 |count |#3,"rtsShorted","like" |
+ROW |20966 |33234 |17717 |count |#3,"softwareFault","like" |
+ROW |20967 |33233 |17718 |count |#3,"customSettingsEdit","like" |
+ROW |20968 |33233 |17719 |count |#3,"externalShortCircuit","like" |
+ROW |20969 |33233 |17720 |count |#3,"highTempDisconnect","like" |
+ROW |20970 |33233 |17721 |count |#3,"loadHvd","like" |
+ROW |20971 |33233 |17722 |count |#3,"mosfetShorted","like" |
+ROW |20972 |33233 |17723 |count |#3,"overcurrent","like" |
+ROW |20973 |33233 |17724 |count |#3,"software","like" |
+ROW |20974 |33233 |17725 |count |#3,"unknownLoadFault","like" |
+ROW |20975 |33232 |17726 |last | |
+ROW |20976 |33232 |17727 |nodata |5m |
+ROW |20977 |33229 |17728 |min |5m |
+ROW |20978 |33229 |17729 |max |5m |
+ROW |20979 |33229 |17730 |min |5m |
+ROW |20980 |33229 |17731 |max |5m |
+ROW |20981 |33249 |17732 |min |5m |
+ROW |20982 |33249 |17733 |max |5m |
+ROW |20983 |33249 |17734 |min |5m |
+ROW |20984 |33249 |17735 |max |5m |
+ROW |20985 |33252 |17736 |last | |
+ROW |20986 |33252 |17737 |last | |
+ROW |20987 |33253 |17738 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |20988 |33253 |17739 |count |#3,"heatsinkTempSensorShort","like" |
+ROW |20989 |33253 |17740 |count |#3,"suresineHot","like" |
+ROW |20990 |33253 |17741 |count |#3,"unknownAlarm","like" |
+ROW |20991 |33254 |17742 |count |#3,"customSettingsEdit","like" |
+ROW |20992 |33254 |17743 |count |#3,"dipSwitchChanged","like" |
+ROW |20993 |33254 |17744 |count |#3,"highVoltageDisconnect","like" |
+ROW |20994 |33254 |17745 |count |#3,"overcurrent","like" |
+ROW |20995 |33254 |17746 |count |#3,"reset","like" |
+ROW |20996 |33254 |17747 |count |#3,"software","like" |
+ROW |20997 |33254 |17748 |count |#3,"suresineHot","like" |
+ROW |20998 |33254 |17749 |count |#3,"unknownFault","like" |
+ROW |20999 |33255 |17750 |last | |
+ROW |21000 |33255 |17751 |nodata |5m |
+ROW |21001 |33258 |17752 |min |5m |
+ROW |21002 |33258 |17753 |max |5m |
+ROW |21003 |33258 |17754 |min |5m |
+ROW |21004 |33258 |17755 |max |5m |
+ROW |21005 |33267 |17756 |last | |
+ROW |21006 |33267 |17757 |last | |
+ROW |21007 |33265 |17758 |count |#3,"alarm21Internal","like" |
+ROW |21008 |33265 |17759 |count |#3,"arrayCurrentOffset","like" |
+ROW |21009 |33265 |17760 |count |#3,"batterySense","like" |
+ROW |21010 |33265 |17761 |count |#3,"batterySenseDisconnected","like" |
+ROW |21011 |33265 |17762 |count |#3,"controllerWasReset","like" |
+ROW |21012 |33265 |17763 |count |#3,"currentLimit","like" |
+ROW |21013 |33265 |17764 |count |#3,"currentOffset","like" |
+ROW |21014 |33265 |17765 |count |#3,"derateLimit","like" |
+ROW |21015 |33265 |17766 |count |#3,"ee-i2cRetryLimit","like" |
+ROW |21016 |33265 |17767 |count |#3,"ethernetAlarm","like" |
+ROW |21017 |33265 |17768 |count |#3,"extflashFault","like" |
+ROW |21018 |33265 |17769 |count |#3,"fp12VoltageOutOfRange","like" |
+ROW |21019 |33265 |17770 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |21020 |33265 |17771 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |21021 |33265 |17772 |count |#3,"highArrayVCurrentLimit","like" |
+ROW |21022 |33265 |17773 |count |#3,"highTemperatureCurrentLimit","like" |
+ROW |21023 |33265 |17774 |count |#3,"highVoltageDisconnect","like" |
+ROW |21024 |33265 |17775 |count |#3,"lvd","like" |
+ROW |21025 |33265 |17776 |count |#3,"maxAdcValueReached","like" |
+ROW |21026 |33265 |17777 |count |#3,"mosfetSOpen","like" |
+ROW |21027 |33265 |17778 |count |#3,"p3VoltageOutOfRange","like" |
+ROW |21028 |33265 |17779 |count |#3,"p12VoltageOutOfRange","like" |
+ROW |21029 |33265 |17780 |count |#3,"rtsDisconnected","like" |
+ROW |21030 |33265 |17781 |count |#3,"rtsMiswire","like" |
+ROW |21031 |33265 |17782 |count |#3,"rtsShorted","like" |
+ROW |21032 |33265 |17783 |count |#3,"slaveControlFault","like" |
+ROW |21033 |33265 |17784 |count |#3,"software","like" |
+ROW |21034 |33265 |17785 |count |#3,"systemMiswire","like" |
+ROW |21035 |33265 |17786 |count |#3,"uncalibrated","like" |
+ROW |21036 |33264 |17787 |count |#3,"arrayHvd","like" |
+ROW |21037 |33264 |17788 |count |#3,"batteryHvd","like" |
+ROW |21038 |33264 |17789 |count |#3,"batteryLvd","like" |
+ROW |21039 |33264 |17790 |count |#3,"blockbusBoot","like" |
+ROW |21040 |33264 |17791 |count |#3,"chargeSlaveControlTimeout","like" |
+ROW |21041 |33264 |17792 |count |#3,"controllerWasReset","like" |
+ROW |21042 |33264 |17793 |count |#3,"currentSensorReferenceOutOfRange","like" |
+ROW |21043 |33264 |17794 |count |#3,"customSettingsEdit","like" |
+ROW |21044 |33264 |17795 |count |#3,"dipSwitchChange","like" |
+ROW |21045 |33264 |17796 |count |#3,"eepromRetryLimit","like" |
+ROW |21046 |33264 |17797 |count |#3,"fault16Software","like" |
+ROW |21047 |33264 |17798 |count |#3,"fault17Software","like" |
+ROW |21048 |33264 |17799 |count |#3,"fault18Software","like" |
+ROW |21049 |33264 |17800 |count |#3,"fault19Software","like" |
+ROW |21050 |33264 |17801 |count |#3,"fault20Software","like" |
+ROW |21051 |33264 |17802 |count |#3,"fault21Software","like" |
+ROW |21052 |33264 |17803 |count |#3,"fetShort","like" |
+ROW |21053 |33264 |17804 |count |#3,"fpgaVersion","like" |
+ROW |21054 |33264 |17805 |count |#3,"hscomm","like" |
+ROW |21055 |33264 |17806 |count |#3,"hscommMaster","like" |
+ROW |21056 |33264 |17807 |count |#3,"ia-refSlaveModeTimeout","like" |
+ROW |21057 |33264 |17808 |count |#3,"overcurrent","like" |
+ROW |21058 |33264 |17809 |count |#3,"powerboardCommunicationFault","like" |
+ROW |21059 |33264 |17810 |count |#3,"rs232SerialToMeterBridge","like" |
+ROW |21060 |33264 |17811 |count |#3,"rtsDisconnected","like" |
+ROW |21061 |33264 |17812 |count |#3,"rtsShorted","like" |
+ROW |21062 |33264 |17813 |count |#3,"slave","like" |
+ROW |21063 |33264 |17814 |count |#3,"softwareFault","like" |
+ROW |21064 |33263 |17815 |last | |
+ROW |21065 |33263 |17816 |nodata |5m |
+ROW |21066 |33261 |17817 |min |5m |
+ROW |21067 |33261 |17818 |max |5m |
+ROW |21068 |33261 |17819 |min |5m |
+ROW |21069 |33261 |17820 |max |5m |
+ROW |21070 |33277 |17821 |min |5m |
+ROW |21071 |33277 |17822 |max |5m |
+ROW |21072 |33277 |17823 |min |5m |
+ROW |21073 |33277 |17824 |max |5m |
+ROW |21074 |33286 |17825 |last | |
+ROW |21075 |33286 |17826 |last | |
+ROW |21076 |33284 |17827 |count |#3,"batterySense","like" |
+ROW |21077 |33284 |17828 |count |#3,"batterySenseDisconnected","like" |
+ROW |21078 |33284 |17829 |count |#3,"controllerWasReset","like" |
+ROW |21079 |33284 |17830 |count |#3,"currentLimit","like" |
+ROW |21080 |33284 |17831 |count |#3,"currentOffset","like" |
+ROW |21081 |33284 |17832 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |21082 |33284 |17833 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |21083 |33284 |17834 |count |#3,"highArrayVCurrentLimit","like" |
+ROW |21084 |33284 |17835 |count |#3,"highTemperatureCurrentLimit","like" |
+ROW |21085 |33284 |17836 |count |#3,"highVoltageDisconnect","like" |
+ROW |21086 |33284 |17837 |count |#3,"maxAdcValueReached","like" |
+ROW |21087 |33284 |17838 |count |#3,"mosfetSOpen","like" |
+ROW |21088 |33284 |17839 |count |#3,"p12VoltageReferenceOff","like" |
+ROW |21089 |33284 |17840 |count |#3,"rtsDisconnected","like" |
+ROW |21090 |33284 |17841 |count |#3,"rtsMiswire","like" |
+ROW |21091 |33284 |17842 |count |#3,"rtsShorted","like" |
+ROW |21092 |33284 |17843 |count |#3,"systemMiswire","like" |
+ROW |21093 |33284 |17844 |count |#3,"uncalibrated","like" |
+ROW |21094 |33283 |17845 |count |#3,"arrayHvd","like" |
+ROW |21095 |33283 |17846 |count |#3,"batteryHvd","like" |
+ROW |21096 |33283 |17847 |count |#3,"customSettingsEdit","like" |
+ROW |21097 |33283 |17848 |count |#3,"dipSwitchChange","like" |
+ROW |21098 |33283 |17849 |count |#3,"eepromRetryLimit","like" |
+ROW |21099 |33283 |17850 |count |#3,"fetShort","like" |
+ROW |21100 |33283 |17851 |count |#3,"overcurrent","like" |
+ROW |21101 |33283 |17852 |count |#3,"rtsDisconnected","like" |
+ROW |21102 |33283 |17853 |count |#3,"rtsShorted","like" |
+ROW |21103 |33283 |17854 |count |#3,"slaveControlTimeout","like" |
+ROW |21104 |33283 |17855 |count |#3,"softwareFault","like" |
+ROW |21105 |33282 |17856 |last | |
+ROW |21106 |33282 |17857 |nodata |5m |
+ROW |21107 |33280 |17858 |min |5m |
+ROW |21108 |33280 |17859 |max |5m |
+ROW |21109 |33280 |17860 |min |5m |
+ROW |21110 |33280 |17861 |max |5m |
+ROW |21111 |33296 |17862 |min |5m |
+ROW |21112 |33296 |17863 |max |5m |
+ROW |21113 |33296 |17864 |min |5m |
+ROW |21114 |33296 |17865 |max |5m |
+ROW |21115 |33301 |17866 |count |#3,"batterySense","like" |
+ROW |21116 |33301 |17867 |count |#3,"batterySenseDisconnected","like" |
+ROW |21117 |33301 |17868 |count |#3,"currentLimit","like" |
+ROW |21118 |33301 |17869 |count |#3,"currentOffset","like" |
+ROW |21119 |33301 |17870 |count |#3,"diversionLoadNearMax","like" |
+ROW |21120 |33301 |17871 |count |#3,"heatsinkTempSensorOpen","like" |
+ROW |21121 |33301 |17872 |count |#3,"heatsinkTempSensorShorted","like" |
+ROW |21122 |33301 |17873 |count |#3,"highVoltageDisconnect","like" |
+ROW |21123 |33301 |17874 |count |#3,"loadDisconnectState","like" |
+ROW |21124 |33301 |17875 |count |#3,"mosfetSOpen","like" |
+ROW |21125 |33301 |17876 |count |#3,"p12VoltageReferenceOff","like" |
+ROW |21126 |33301 |17877 |count |#3,"rtsDisconnected","like" |
+ROW |21127 |33301 |17878 |count |#3,"rtsMiswire","like" |
+ROW |21128 |33301 |17879 |count |#3,"rtsShorted","like" |
+ROW |21129 |33301 |17880 |count |#3,"systemMiswire","like" |
+ROW |21130 |33301 |17881 |count |#3,"tristarHot","like" |
+ROW |21131 |33301 |17882 |count |#3,"uncalibrated","like" |
+ROW |21132 |33302 |17883 |count |#3,"customSettingsEdit","like" |
+ROW |21133 |33302 |17884 |count |#3,"dipSwitchChange","like" |
+ROW |21134 |33302 |17885 |count |#3,"externalShort","like" |
+ROW |21135 |33302 |17886 |count |#3,"highVoltageDisconnect","like" |
+ROW |21136 |33302 |17887 |count |#3,"mosfetSShorted","like" |
+ROW |21137 |33302 |17888 |count |#3,"overcurrent","like" |
+ROW |21138 |33302 |17889 |count |#3,"reset","like" |
+ROW |21139 |33302 |17890 |count |#3,"rtsDisconnected","like" |
+ROW |21140 |33302 |17891 |count |#3,"rtsShorted","like" |
+ROW |21141 |33302 |17892 |count |#3,"softwareFault","like" |
+ROW |21142 |33302 |17893 |count |#3,"systemMiswire","like" |
+ROW |21143 |33302 |17894 |count |#3,"tristarHot","like" |
+ROW |21144 |33303 |17895 |last | |
+ROW |21145 |33303 |17896 |nodata |5m |
+ROW |21146 |33304 |17897 |min |5m |
+ROW |21147 |33304 |17898 |max |5m |
+ROW |21148 |33304 |17899 |min |5m |
+ROW |21149 |33304 |17900 |max |5m |
+ROW |21150 |33312 |17901 |min |5m |
+ROW |21151 |33312 |17902 |max |5m |
+ROW |21152 |33312 |17903 |min |5m |
+ROW |21153 |33312 |17904 |max |5m |
+ROW |21154 |33315 |17905 |last | |
+ROW |21155 |33315 |17906 |last | |
+ROW |21156 |33318 |17907 |last | |
+ROW |21157 |33318 |17908 |last | |
+ROW |21158 |27941 |17909 |avg |5m |
+ROW |21159 |27940 |17909 |last | |
+ROW |21160 |27941 |17909 |max |5m |
+ROW |21161 |27941 |17910 |avg |5m |
+ROW |21162 |27940 |17910 |last | |
+ROW |21163 |27941 |17910 |max |5m |
+ROW |21164 |31453 |17911 |change | |
+ROW |21165 |31453 |17911 |last | |
+ROW |21166 |31454 |17911 |last | |
+ROW |21167 |33322 |17912 |min |15m |
+ROW |21168 |33323 |17913 |min |15m |
+ROW |21169 |31456 |17914 |change | |
+ROW |21170 |31456 |17914 |last | |
+ROW |21171 |31457 |17914 |last | |
+ROW |21172 |33326 |17915 |min |15m |
+ROW |21173 |33327 |17916 |min |15m |
+ROW |21174 |32040 |17917 |change | |
+ROW |21175 |32040 |17917 |last | |
+ROW |21176 |32041 |17917 |last | |
+ROW |21177 |33330 |17918 |min |15m |
+ROW |21178 |33331 |17919 |min |15m |
+ROW |21179 |32043 |17920 |change | |
+ROW |21180 |32043 |17920 |last | |
+ROW |21181 |32044 |17920 |last | |
+ROW |21182 |33334 |17921 |min |15m |
+ROW |21183 |33335 |17922 |min |15m |
+ROW |21184 |33337 |17923 |max |#3 |
+ROW |21185 |33338 |17924 |min |5m |
+ROW |21186 |33339 |17925 |avg |5m |
+ROW |21187 |33344 |17926 |diff | |
+ROW |21188 |33344 |17926 |strlen | |
+ROW |21189 |33346 |17927 |last | |
+ROW |21190 |33347 |17928 |max |{$SNMP.TIMEOUT} |
+ROW |21191 |33348 |17929 |last | |
+ROW |21192 |33349 |17929 |diff | |
+ROW |21193 |33359 |17930 |last | |
+ROW |21194 |33360 |17930 |last | |
+ROW |21195 |33357 |17931 |last | |
+ROW |21196 |33358 |17931 |last | |
+ROW |21197 |33361 |17932 |last | |
+ROW |21198 |33362 |17933 |last | |
+ROW |21199 |33365 |17934 |last | |
+ROW |21200 |33367 |17935 |last | |
+ROW |21201 |33368 |17936 |min |5m |
+ROW |21202 |33369 |17937 |min |{$FAS3220.FS.TIME:"{#FSNAME}"} |
+ROW |21203 |33374 |17938 |max |{$FAS3220.FS.TIME:"{#FSNAME}"} |
+ROW |21204 |33375 |17939 |last | |
+ROW |21205 |33376 |17940 |last | |
+ROW |21206 |33376 |17941 |last | |
+ROW |21211 |33385 |17943 |last | |
+ROW |21212 |33388 |17943 |last | |
+ROW |21213 |33384 |17944 |last | |
+ROW |21214 |33383 |17944 |strlen | |
+ROW |21215 |28356 |17945 |avg |5m |
+ROW |21216 |28357 |17945 |last | |
+ROW |21217 |28356 |17945 |max |5m |
+ROW |21218 |28356 |17946 |avg |5m |
+ROW |21219 |28357 |17946 |last | |
+ROW |21220 |28356 |17946 |max |5m |
+ROW |21221 |28354 |17947 |avg |5m |
+ROW |21222 |28355 |17947 |last | |
+ROW |21223 |28354 |17947 |max |5m |
+ROW |21224 |28354 |17948 |avg |5m |
+ROW |21225 |28355 |17948 |last | |
+ROW |21226 |28354 |17948 |max |5m |
+ROW |21227 |31807 |17949 |min |10m |
+ROW |21228 |31809 |17950 |min |10m |
+ROW |21229 |31812 |17951 |min |10m |
+ROW |21230 |31814 |17952 |min |10m |
+ROW |21231 |33444 |17953 |last | |
+ROW |21232 |33443 |17953 |strlen | |
+ROW |21233 |33409 |17954 |last | |
+ROW |21234 |33426 |17954 |strlen | |
+ROW |21235 |33416 |17955 |last | |
+ROW |21236 |33415 |17955 |strlen | |
+ROW |21237 |33414 |17956 |last | |
+ROW |21238 |33413 |17956 |strlen | |
+ROW |21239 |33447 |17957 |min |5m |
+ROW |21240 |33397 |17958 |last | |
+ROW |21241 |33392 |17959 |last | |
+ROW |21242 |33417 |17960 |last | |
+ROW |21243 |33464 |17961 |diff | |
+ROW |21244 |33464 |17961 |strlen | |
+ROW |21245 |33475 |17962 |last | |
+ROW |21246 |33473 |17962 |strlen | |
+ROW |21247 |33476 |17963 |last | |
+ROW |21248 |33473 |17963 |strlen | |
+ROW |21249 |33480 |17964 |last | |
+ROW |21250 |33506 |17965 |last | |
+ROW |21251 |33504 |17965 |last | |
+ROW |21252 |33505 |17965 |last | |
+ROW |21253 |33506 |17966 |last | |
+ROW |21254 |33504 |17966 |last | |
+ROW |21255 |33505 |17966 |last | |
+ROW |21256 |33518 |17967 |min |5m |
+ROW |21257 |33508 |17968 |diff | |
+ROW |21258 |33508 |17968 |strlen | |
+ROW |21260 |33499 |17970 |diff | |
+ROW |21261 |33499 |17970 |strlen | |
+ROW |21262 |33519 |17971 |last | |
+ROW |21263 |33524 |17972 |diff | |
+ROW |21264 |33525 |17972 |diff | |
+ROW |21265 |33526 |17972 |diff | |
+ROW |21266 |33523 |17973 |last | |
+ROW |21267 |33523 |17974 |last | |
+ROW |21268 |33539 |17975 |last | |
+ROW |21269 |33540 |17975 |last | |
+ROW |21270 |33528 |17976 |diff | |
+ROW |21271 |33527 |17976 |diff | |
+ROW |21272 |33538 |17976 |diff | |
+ROW |21273 |33540 |17976 |diff | |
+ROW |21274 |33539 |17976 |diff | |
+ROW |21275 |33562 |17977 |min |5m |
+ROW |21276 |33553 |17977 |last | |
+ROW |21277 |33562 |17978 |min |5m |
+ROW |21278 |33553 |17978 |last | |
+ROW |21279 |33558 |17979 |min |5m |
+ROW |21280 |33557 |17979 |last | |
+ROW |21281 |33558 |17980 |min |5m |
+ROW |21282 |33557 |17980 |last | |
+ROW |21283 |33555 |17981 |min |5m |
+ROW |21284 |33560 |17982 |min |5m |
+ROW |21285 |33565 |17983 |min |5m |
+ROW |21286 |33565 |17984 |min |5m |
+ROW |21287 |33567 |17985 |min |15m |
+ROW |21288 |33568 |17986 |min |15m |
+ROW |21289 |33577 |17987 |last | |
+ROW |21290 |33574 |17987 |last | |
+ROW |21291 |33577 |17988 |change | |
+ROW |21292 |33577 |17989 |change | |
+ROW |21293 |33578 |17990 |diff | |
+ROW |21294 |33578 |17990 |strlen | |
+ROW |21295 |33580 |17991 |nodata |10m |
+ROW |21296 |33580 |17992 |last | |
+ROW |21297 |33585 |17993 |diff | |
+ROW |21298 |33585 |17993 |strlen | |
+ROW |21301 |33599 |17995 |diff | |
+ROW |21302 |33599 |17995 |strlen | |
+ROW |21303 |33600 |17996 |max |30m |
+ROW |21304 |33605 |17997 |max |30m |
+ROW |21305 |33610 |17998 |min |5m |
+ROW |21306 |33616 |17999 |last | |
+ROW |21307 |33619 |17999 |last | |
+ROW |21308 |33618 |18000 |min |5m |
+ROW |21309 |33617 |18000 |max |5m |
+ROW |21310 |33618 |18001 |min |5m |
+ROW |21311 |33617 |18001 |max |5m |
+ROW |21312 |30318 |18002 |last | |
+ROW |21313 |30369 |18002 |min |5m |
+ROW |21314 |28416 |18003 |count |#1,{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS:"degraded"},eq |
+ROW |21315 |28415 |18004 |count |#1,{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModDegradedFailsafeSpeed"},eq|
+ROW |21316 |28415 |18004 |count |#1,{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheReadCacheNotMapped"},eq |
+ROW |21317 |28415 |18004 |count |#1,{$DISK_ARRAY_CACHE_WARN_STATUS:"cacheModFlashMemNotAttached"},eq |
+ROW |21318 |28415 |18005 |count |#1,{$DISK_ARRAY_CACHE_OK_STATUS:"enabled"},ne |
+ROW |21319 |28415 |18005 |last | |
+ROW |21320 |33621 |18006 |last | |
+ROW |21321 |33621 |18007 |last | |
+ROW |21322 |33621 |18008 |last | |
+ROW |21323 |33622 |18009 |last | |
+ROW |21324 |33622 |18010 |last | |
+ROW |21325 |33622 |18011 |last | |
+ROW |21326 |33623 |18012 |last | |
+ROW |21327 |33623 |18013 |last | |
+ROW |21328 |33623 |18014 |last | |
+ROW |21329 |33624 |18015 |last | |
+ROW |21330 |33624 |18016 |last | |
+ROW |21331 |33624 |18017 |last | |
+ROW |21332 |33626 |18018 |last | |
+ROW |21333 |33626 |18019 |last | |
+ROW |21334 |33626 |18020 |last | |
+ROW |21335 |33627 |18021 |last | |
+ROW |21336 |33627 |18022 |last | |
+ROW |21337 |33627 |18023 |last | |
+ROW |21338 |33628 |18024 |last | |
+ROW |21339 |33628 |18025 |last | |
+ROW |21340 |33628 |18026 |last | |
+ROW |21341 |33632 |18027 |last | |
+ROW |21342 |33633 |18028 |last | |
+ROW |21343 |33631 |18029 |last | |
+ROW |21344 |33636 |18030 |diff | |
+ROW |21345 |33641 |18031 |last | |
+ROW |21346 |33655 |18032 |diff | |
+ROW |21347 |33655 |18032 |last | |
+ROW |21348 |33501 |18033 |min |5m |
+ROW |21349 |33598 |18034 |min |5m |
+ROW |21350 |33605 |18034 |max |5m |
+ROW |21351 |30159 |18035 |min |5m |
+ROW |21352 |30165 |18036 |min |5m |
+ROW |21354 |30177 |18038 |min |5m |
+ROW |21355 |30183 |18039 |min |5m |
+ROW |21552 |33659 |18096 |last | |
+ROW |21553 |33664 |18097 |last | |
+ROW |21554 |33665 |18098 |diff | |
+ROW |21555 |33665 |18098 |strlen | |
+ROW |21556 |33666 |18099 |avg |5m |
+ROW |21557 |33666 |18100 |avg |5m |
+ROW |21558 |33667 |18101 |last | |
+ROW |21559 |33671 |18102 |last | |
+ROW |21560 |33676 |18103 |last | |
+ROW |21561 |33677 |18104 |diff | |
+ROW |21562 |33677 |18104 |strlen | |
+ROW |21563 |33678 |18105 |avg |5m |
+ROW |21564 |33678 |18106 |avg |5m |
+ROW |21565 |33679 |18107 |last | |
+ROW |21566 |30089 |18108 |min |5m |
+ROW |21567 |30093 |18109 |min |5m |
+ROW |21568 |30094 |18110 |min |5m |
+ROW |21569 |30095 |18111 |min |5m |
+ROW |21570 |30096 |18112 |min |5m |
+ROW |21571 |30101 |18113 |min |5m |
+ROW |21572 |30102 |18114 |min |5m |
+ROW |21573 |30103 |18115 |min |5m |
+ROW |21574 |30104 |18116 |min |5m |
+ROW |21575 |30105 |18117 |min |5m |
+ROW |21576 |30107 |18118 |min |5m |
+ROW |21577 |30108 |18119 |min |5m |
+ROW |21578 |30111 |18120 |min |5m |
+ROW |21579 |30112 |18121 |min |5m |
+ROW |21580 |30115 |18122 |min |5m |
+ROW |21581 |30116 |18123 |min |5m |
+ROW |21582 |30118 |18124 |min |5m |
+ROW |21583 |30120 |18125 |min |5m |
+ROW |21584 |30123 |18126 |min |5m |
+ROW |21585 |30126 |18127 |min |5m |
+ROW |21586 |30131 |18128 |min |5m |
+ROW |21587 |30136 |18129 |min |5m |
+ROW |21588 |29108 |18130 |min |5m |
+ROW |21589 |29106 |18130 |last | |
+ROW |21592 |31364 |18132 |min |5m |
+ROW |21593 |29145 |18133 |min |5m |
+ROW |21594 |29143 |18133 |last | |
+ROW |21597 |31365 |18135 |min |5m |
+ROW |21598 |29182 |18136 |min |5m |
+ROW |21599 |29180 |18136 |last | |
+ROW |21602 |31366 |18138 |min |5m |
+ROW |21615 |31851 |18142 |min |5m |
+ROW |21616 |31852 |18142 |last | |
+ROW |21619 |31893 |18144 |min |5m |
+ROW |21620 |31887 |18145 |min |5m |
+ROW |21621 |31888 |18145 |last | |
+ROW |21624 |31895 |18147 |min |5m |
+ROW |21633 |29397 |18150 |min |5m |
+ROW |21634 |29401 |18150 |last | |
+ROW |21637 |29396 |18152 |min |5m |
+ROW |21645 |28986 |18155 |min |5m |
+ROW |21646 |28984 |18155 |last | |
+ROW |21647 |28983 |18156 |min |5m |
+ROW |21648 |28982 |18156 |last | |
+ROW |21649 |28978 |18157 |min |5m |
+ROW |21650 |29001 |18158 |min |5m |
+ROW |21651 |28999 |18158 |last | |
+ROW |21652 |28998 |18159 |min |5m |
+ROW |21653 |28997 |18159 |last | |
+ROW |21654 |28993 |18160 |min |5m |
+ROW |21655 |31427 |18161 |min |5m |
+ROW |21656 |29466 |18161 |last | |
+ROW |21657 |29462 |18162 |min |5m |
+ROW |21658 |31428 |18163 |min |5m |
+ROW |21659 |29492 |18163 |last | |
+ROW |21660 |29488 |18164 |min |5m |
+ROW |21675 |32002 |18169 |min |5m |
+ROW |21676 |31970 |18169 |last | |
+ROW |21677 |31973 |18170 |min |5m |
+ROW |21678 |32003 |18171 |min |5m |
+ROW |21679 |31997 |18171 |last | |
+ROW |21680 |32000 |18172 |min |5m |
+ROW |21695 |33680 |18177 |max |#3 |
+ROW |21696 |33681 |18178 |min |5m |
+ROW |21697 |33682 |18179 |avg |5m |
+ROW |21698 |33687 |18180 |diff | |
+ROW |21699 |33687 |18180 |strlen | |
+ROW |21700 |33689 |18181 |last | |
+ROW |21701 |33690 |18182 |max |{$SNMP.TIMEOUT} |
+ROW |21702 |33694 |18183 |diff | |
+ROW |21703 |33694 |18183 |strlen | |
+ROW |21704 |33703 |18184 |last | |
+ROW |21705 |33704 |18185 |last | |
+ROW |21706 |33705 |18186 |min |5m |
+ROW |21707 |33706 |18187 |last | |
+ROW |21708 |33707 |18188 |min |{$HUAWEI.5300.MEM.MAX.TIME} |
+ROW |21709 |33708 |18189 |diff | |
+ROW |21710 |33709 |18190 |last | |
+ROW |21711 |33711 |18191 |last | |
+ROW |21712 |33712 |18192 |last | |
+ROW |21713 |33713 |18193 |min |{$HUAWEI.5300.DISK.TEMP.MAX.TIME} |
+ROW |21714 |33714 |18194 |last | |
+ROW |21715 |33715 |18195 |last | |
+ROW |21716 |33716 |18196 |min |{$HUAWEI.5300.TEMP.MAX.TIME} |
+ROW |21717 |33717 |18197 |last | |
+ROW |21718 |33718 |18198 |last | |
+ROW |21719 |33719 |18199 |min |{$HUAWEI.5300.LUN.IO.TIME.MAX.TIME} |
+ROW |21720 |33729 |18200 |last | |
+ROW |21721 |33730 |18201 |min |5m |
+ROW |21722 |33731 |18202 |min |{$HUAWEI.5300.NODE.IO.DELAY.MAX.TIME} |
+ROW |21723 |33739 |18203 |min |{$HUAWEI.5300.POOL.CAPACITY.THRESH.TIME} |
+ROW |21724 |33740 |18204 |last | |
+ROW |21725 |33741 |18205 |last | |
+ROW |21726 |33378 |18206 |min |5m |
+ROW |21727 |33381 |18206 |min |5m |
+ROW |21728 |33378 |18206 |max |5m |
+ROW |21729 |33381 |18206 |max |5m |
+ROW |21730 |33747 |18207 |last | |
+ROW |21731 |33748 |18208 |last | |
+ROW |21732 |33749 |18209 |last | |
+ROW |21733 |33750 |18210 |last | |
+ROW |21734 |33751 |18211 |last | |
+ROW |21735 |33752 |18212 |last | |
+ROW |21736 |33753 |18213 |last | |
+ROW |21737 |33757 |18214 |last | |
+ROW |21738 |33758 |18215 |last | |
+ROW |21739 |33759 |18216 |last | |
+ROW |21740 |33760 |18217 |last | |
+ROW |21741 |33761 |18218 |last | |
+ROW |21742 |33762 |18219 |last | |
+ROW |21743 |33763 |18220 |last | |
+ROW |21744 |33801 |18221 |min |5m |
+ROW |21745 |33800 |18221 |last | |
+ROW |21746 |33801 |18221 |last | |
+ROW |21747 |33798 |18222 |min |5m |
+ROW |21748 |33786 |18223 |min |5m |
+ROW |21749 |33766 |18224 |last | |
+ROW |21750 |33784 |18225 |nodata |10m |
+ROW |21751 |33784 |18226 |last | |
+ROW |21752 |33807 |18227 |diff | |
+ROW |21753 |33807 |18227 |strlen | |
+ROW |21754 |33868 |18228 |last | |
+ROW |21755 |33850 |18228 |strlen | |
+ROW |21756 |33863 |18229 |min |5m |
+ROW |21757 |33852 |18230 |change | |
+ROW |21758 |33875 |18231 |max |5m |
+ROW |21759 |33872 |18232 |max |5m |
+ROW |21760 |33918 |18233 |max |5m |
+ROW |21761 |33908 |18234 |min |5m |
+ROW |21762 |33907 |18235 |min |5m |
+ROW |21763 |33888 |18236 |last | |
+ROW |21764 |33901 |18237 |nodata |10m |
+ROW |21765 |33901 |18238 |last | |
+ROW |21766 |33919 |18239 |diff | |
+ROW |21767 |33919 |18239 |strlen | |
+ROW |21768 |33942 |18240 |last |#1 |
+ROW |21769 |33942 |18240 |last |#2 |
+ROW |21770 |33942 |18240 |last |#3 |
+ROW |21771 |33943 |18241 |last |#1 |
+ROW |21772 |33943 |18241 |last |#2 |
+ROW |21773 |33943 |18241 |last |#3 |
+ROW |21774 |27084 |18242 |avg |15m |
+ROW |21775 |27081 |18242 |last | |
+ROW |21776 |27085 |18242 |avg |15m |
+ROW |21777 |27086 |18243 |min |5m |
+ROW |21778 |27083 |18243 |min |5m |
+ROW |21779 |27086 |18243 |max |5m |
+ROW |21780 |27083 |18243 |max |5m |
+ROW |21781 |27622 |18244 |avg |15m |
+ROW |21782 |27626 |18244 |last | |
+ROW |21783 |27625 |18244 |avg |15m |
+ROW |21784 |27979 |18245 |avg |15m |
+ROW |21785 |27983 |18245 |last | |
+ROW |21786 |27982 |18245 |avg |15m |
+ROW |21787 |28008 |18246 |avg |15m |
+ROW |21788 |28012 |18246 |last | |
+ROW |21789 |28011 |18246 |avg |15m |
+ROW |21790 |27621 |18247 |min |5m |
+ROW |21791 |27624 |18247 |min |5m |
+ROW |21792 |27621 |18247 |max |5m |
+ROW |21793 |27624 |18247 |max |5m |
+ROW |21794 |27978 |18248 |min |5m |
+ROW |21795 |27981 |18248 |min |5m |
+ROW |21796 |27978 |18248 |max |5m |
+ROW |21797 |27981 |18248 |max |5m |
+ROW |21798 |28007 |18249 |min |5m |
+ROW |21799 |28010 |18249 |min |5m |
+ROW |21800 |28007 |18249 |max |5m |
+ROW |21801 |28010 |18249 |max |5m |
+ROW |21802 |27104 |18250 |avg |15m |
+ROW |21803 |27101 |18250 |last | |
+ROW |21804 |27105 |18250 |avg |15m |
+ROW |21805 |27106 |18251 |min |5m |
+ROW |21806 |27103 |18251 |min |5m |
+ROW |21807 |27106 |18251 |max |5m |
+ROW |21808 |27103 |18251 |max |5m |
+ROW |21809 |27183 |18252 |avg |15m |
+ROW |21810 |27187 |18252 |last | |
+ROW |21811 |27186 |18252 |avg |15m |
+ROW |21812 |27218 |18253 |avg |15m |
+ROW |21813 |27222 |18253 |last | |
+ROW |21814 |27221 |18253 |avg |15m |
+ROW |21815 |27254 |18254 |avg |15m |
+ROW |21816 |27258 |18254 |last | |
+ROW |21817 |27257 |18254 |avg |15m |
+ROW |21818 |27275 |18255 |avg |15m |
+ROW |21819 |27279 |18255 |last | |
+ROW |21820 |27278 |18255 |avg |15m |
+ROW |21821 |27324 |18256 |avg |15m |
+ROW |21822 |27328 |18256 |last | |
+ROW |21823 |27327 |18256 |avg |15m |
+ROW |21824 |27453 |18257 |avg |15m |
+ROW |21825 |27457 |18257 |last | |
+ROW |21826 |27456 |18257 |avg |15m |
+ROW |21827 |27489 |18258 |avg |15m |
+ROW |21828 |27493 |18258 |last | |
+ROW |21829 |27492 |18258 |avg |15m |
+ROW |21830 |27523 |18259 |avg |15m |
+ROW |21831 |27527 |18259 |last | |
+ROW |21832 |27526 |18259 |avg |15m |
+ROW |21833 |27559 |18260 |avg |15m |
+ROW |21834 |27563 |18260 |last | |
+ROW |21835 |27562 |18260 |avg |15m |
+ROW |21836 |27645 |18261 |avg |15m |
+ROW |21837 |27649 |18261 |last | |
+ROW |21838 |27648 |18261 |avg |15m |
+ROW |21839 |27725 |18262 |avg |15m |
+ROW |21840 |27729 |18262 |last | |
+ROW |21841 |27728 |18262 |avg |15m |
+ROW |21842 |27759 |18263 |avg |15m |
+ROW |21843 |27763 |18263 |last | |
+ROW |21844 |27762 |18263 |avg |15m |
+ROW |21845 |27791 |18264 |avg |15m |
+ROW |21846 |27795 |18264 |last | |
+ROW |21847 |27794 |18264 |avg |15m |
+ROW |21848 |27875 |18265 |avg |15m |
+ROW |21849 |27879 |18265 |last | |
+ROW |21850 |27878 |18265 |avg |15m |
+ROW |21851 |27912 |18266 |avg |15m |
+ROW |21852 |27916 |18266 |last | |
+ROW |21853 |27915 |18266 |avg |15m |
+ROW |21854 |27947 |18267 |avg |15m |
+ROW |21855 |27951 |18267 |last | |
+ROW |21856 |27950 |18267 |avg |15m |
+ROW |21857 |28121 |18268 |avg |15m |
+ROW |21858 |28125 |18268 |last | |
+ROW |21859 |28124 |18268 |avg |15m |
+ROW |21863 |28226 |18270 |avg |15m |
+ROW |21864 |28230 |18270 |last | |
+ROW |21865 |28229 |18270 |avg |15m |
+ROW |21866 |28296 |18271 |avg |15m |
+ROW |21867 |28300 |18271 |last | |
+ROW |21868 |28299 |18271 |avg |15m |
+ROW |21869 |28971 |18272 |avg |15m |
+ROW |21870 |28975 |18272 |last | |
+ROW |21871 |28974 |18272 |avg |15m |
+ROW |21872 |27182 |18273 |min |5m |
+ROW |21873 |27185 |18273 |min |5m |
+ROW |21874 |27182 |18273 |max |5m |
+ROW |21875 |27185 |18273 |max |5m |
+ROW |21876 |27217 |18274 |min |5m |
+ROW |21877 |27220 |18274 |min |5m |
+ROW |21878 |27217 |18274 |max |5m |
+ROW |21879 |27220 |18274 |max |5m |
+ROW |21880 |27253 |18275 |min |5m |
+ROW |21881 |27256 |18275 |min |5m |
+ROW |21882 |27253 |18275 |max |5m |
+ROW |21883 |27256 |18275 |max |5m |
+ROW |21884 |27274 |18276 |min |5m |
+ROW |21885 |27277 |18276 |min |5m |
+ROW |21886 |27274 |18276 |max |5m |
+ROW |21887 |27277 |18276 |max |5m |
+ROW |21888 |27323 |18277 |min |5m |
+ROW |21889 |27326 |18277 |min |5m |
+ROW |21890 |27323 |18277 |max |5m |
+ROW |21891 |27326 |18277 |max |5m |
+ROW |21892 |27452 |18278 |min |5m |
+ROW |21893 |27455 |18278 |min |5m |
+ROW |21894 |27452 |18278 |max |5m |
+ROW |21895 |27455 |18278 |max |5m |
+ROW |21896 |27488 |18279 |min |5m |
+ROW |21897 |27491 |18279 |min |5m |
+ROW |21898 |27488 |18279 |max |5m |
+ROW |21899 |27491 |18279 |max |5m |
+ROW |21900 |27522 |18280 |min |5m |
+ROW |21901 |27525 |18280 |min |5m |
+ROW |21902 |27522 |18280 |max |5m |
+ROW |21903 |27525 |18280 |max |5m |
+ROW |21904 |27558 |18281 |min |5m |
+ROW |21905 |27561 |18281 |min |5m |
+ROW |21906 |27558 |18281 |max |5m |
+ROW |21907 |27561 |18281 |max |5m |
+ROW |21908 |27644 |18282 |min |5m |
+ROW |21909 |27647 |18282 |min |5m |
+ROW |21910 |27644 |18282 |max |5m |
+ROW |21911 |27647 |18282 |max |5m |
+ROW |21912 |27724 |18283 |min |5m |
+ROW |21913 |27727 |18283 |min |5m |
+ROW |21914 |27724 |18283 |max |5m |
+ROW |21915 |27727 |18283 |max |5m |
+ROW |21916 |27758 |18284 |min |5m |
+ROW |21917 |27761 |18284 |min |5m |
+ROW |21918 |27758 |18284 |max |5m |
+ROW |21919 |27761 |18284 |max |5m |
+ROW |21920 |27790 |18285 |min |5m |
+ROW |21921 |27793 |18285 |min |5m |
+ROW |21922 |27790 |18285 |max |5m |
+ROW |21923 |27793 |18285 |max |5m |
+ROW |21924 |27874 |18286 |min |5m |
+ROW |21925 |27877 |18286 |min |5m |
+ROW |21926 |27874 |18286 |max |5m |
+ROW |21927 |27877 |18286 |max |5m |
+ROW |21928 |27911 |18287 |min |5m |
+ROW |21929 |27914 |18287 |min |5m |
+ROW |21930 |27911 |18287 |max |5m |
+ROW |21931 |27914 |18287 |max |5m |
+ROW |21932 |27946 |18288 |min |5m |
+ROW |21933 |27949 |18288 |min |5m |
+ROW |21934 |27946 |18288 |max |5m |
+ROW |21935 |27949 |18288 |max |5m |
+ROW |21936 |28120 |18289 |min |5m |
+ROW |21937 |28123 |18289 |min |5m |
+ROW |21938 |28120 |18289 |max |5m |
+ROW |21939 |28123 |18289 |max |5m |
+ROW |21944 |28225 |18291 |min |5m |
+ROW |21945 |28228 |18291 |min |5m |
+ROW |21946 |28225 |18291 |max |5m |
+ROW |21947 |28228 |18291 |max |5m |
+ROW |21948 |28295 |18292 |min |5m |
+ROW |21949 |28298 |18292 |min |5m |
+ROW |21950 |28295 |18292 |max |5m |
+ROW |21951 |28298 |18292 |max |5m |
+ROW |21952 |28970 |18293 |min |5m |
+ROW |21953 |28973 |18293 |min |5m |
+ROW |21954 |28970 |18293 |max |5m |
+ROW |21955 |28973 |18293 |max |5m |
+ROW |21956 |27124 |18294 |avg |15m |
+ROW |21957 |27121 |18294 |last | |
+ROW |21958 |27125 |18294 |avg |15m |
+ROW |21959 |27126 |18295 |min |5m |
+ROW |21960 |27123 |18295 |min |5m |
+ROW |21961 |27126 |18295 |max |5m |
+ROW |21962 |27123 |18295 |max |5m |
+ROW |21963 |29080 |18296 |avg |15m |
+ROW |21964 |29084 |18296 |last | |
+ROW |21965 |29083 |18296 |avg |15m |
+ROW |21966 |29079 |18297 |min |5m |
+ROW |21967 |29082 |18297 |min |5m |
+ROW |21968 |29079 |18297 |max |5m |
+ROW |21969 |29082 |18297 |max |5m |
+ROW |21970 |33944 |18298 |max |#3 |
+ROW |21971 |33945 |18299 |min |5m |
+ROW |21972 |33946 |18300 |avg |5m |
+ROW |21973 |33951 |18301 |diff | |
+ROW |21974 |33951 |18301 |strlen | |
+ROW |21975 |33953 |18302 |diff | |
+ROW |21976 |33953 |18302 |strlen | |
+ROW |21977 |33955 |18303 |diff | |
+ROW |21978 |33955 |18303 |strlen | |
+ROW |21979 |33956 |18304 |last | |
+ROW |21980 |33957 |18305 |max |{$SNMP.TIMEOUT} |
+ROW |21981 |33966 |18306 |min |5m |
+ROW |21982 |33967 |18307 |diff | |
+ROW |21983 |33967 |18307 |strlen | |
+ROW |21984 |33968 |18308 |last | |
+ROW |21985 |33968 |18309 |last | |
+ROW |21986 |33971 |18310 |min |5m |
+ROW |21987 |33978 |18311 |change | |
+ROW |21988 |33978 |18311 |last | |
+ROW |21989 |33980 |18311 |last | |
+ROW |21990 |33979 |18311 |last | |
+ROW |21991 |33978 |18311 |prev | |
+ROW |21992 |33974 |18312 |avg |15m |
+ROW |21993 |33978 |18312 |last | |
+ROW |21994 |33977 |18313 |avg |15m |
+ROW |21995 |33978 |18313 |last | |
+ROW |21996 |33973 |18314 |min |5m |
+ROW |21997 |33973 |18314 |max |5m |
+ROW |21998 |33976 |18315 |min |5m |
+ROW |21999 |33976 |18315 |max |5m |
+ROW |22000 |33979 |18316 |last | |
+ROW |22001 |33981 |18317 |last | |
+ROW |22002 |33982 |18318 |last | |
+ROW |22003 |33982 |18318 |last |4 |
+ROW |22004 |33982 |18319 |last | |
+ROW |22005 |33983 |18320 |last | |
+ROW |22006 |33983 |18321 |last | |
+ROW |22007 |33984 |18322 |avg |5m |
+ROW |22008 |33984 |18322 |max |5m |
+ROW |22009 |33984 |18323 |avg |5m |
+ROW |22010 |33984 |18323 |max |5m |
+ROW |22011 |33984 |18324 |avg |5m |
+ROW |22012 |33984 |18324 |min |5m |
+ROW |22013 |33985 |18325 |max |#3 |
+ROW |22014 |33986 |18326 |min |5m |
+ROW |22015 |33987 |18327 |avg |5m |
+ROW |22016 |33992 |18328 |diff | |
+ROW |22017 |33992 |18328 |strlen | |
+ROW |22018 |33994 |18329 |diff | |
+ROW |22019 |33994 |18329 |strlen | |
+ROW |22020 |33996 |18330 |diff | |
+ROW |22021 |33996 |18330 |strlen | |
+ROW |22022 |33997 |18331 |last | |
+ROW |22023 |33998 |18332 |max |{$SNMP.TIMEOUT} |
+ROW |22024 |34007 |18333 |min |5m |
+ROW |22025 |34008 |18334 |diff | |
+ROW |22026 |34008 |18334 |strlen | |
+ROW |22027 |34009 |18335 |last | |
+ROW |22028 |34009 |18336 |last | |
+ROW |22029 |34012 |18337 |min |5m |
+ROW |22030 |34019 |18338 |change | |
+ROW |22031 |34019 |18338 |last | |
+ROW |22032 |34021 |18338 |last | |
+ROW |22033 |34020 |18338 |last | |
+ROW |22034 |34019 |18338 |prev | |
+ROW |22035 |34015 |18339 |avg |15m |
+ROW |22036 |34019 |18339 |last | |
+ROW |22037 |34018 |18340 |avg |15m |
+ROW |22038 |34019 |18340 |last | |
+ROW |22039 |34014 |18341 |min |5m |
+ROW |22040 |34014 |18341 |max |5m |
+ROW |22041 |34017 |18342 |min |5m |
+ROW |22042 |34017 |18342 |max |5m |
+ROW |22043 |34020 |18343 |last | |
+ROW |22044 |34022 |18344 |last | |
+ROW |22045 |34023 |18345 |last | |
+ROW |22046 |34023 |18345 |last |4 |
+ROW |22047 |34023 |18346 |last | |
+ROW |22048 |34024 |18347 |last | |
+ROW |22049 |34024 |18348 |last | |
+ROW |22050 |34025 |18349 |avg |5m |
+ROW |22051 |34025 |18349 |max |5m |
+ROW |22052 |34025 |18350 |avg |5m |
+ROW |22053 |34025 |18350 |max |5m |
+ROW |22054 |34025 |18351 |avg |5m |
+ROW |22055 |34025 |18351 |min |5m |
+ROW |22056 |34026 |18352 |max |#3 |
+ROW |22057 |34027 |18353 |min |5m |
+ROW |22058 |34028 |18354 |avg |5m |
+ROW |22059 |34033 |18355 |diff | |
+ROW |22060 |34033 |18355 |strlen | |
+ROW |22061 |34035 |18356 |diff | |
+ROW |22062 |34035 |18356 |strlen | |
+ROW |22063 |34037 |18357 |diff | |
+ROW |22064 |34037 |18357 |strlen | |
+ROW |22065 |34038 |18358 |last | |
+ROW |22066 |34039 |18359 |max |{$SNMP.TIMEOUT} |
+ROW |22067 |34048 |18360 |min |5m |
+ROW |22068 |34049 |18361 |diff | |
+ROW |22069 |34049 |18361 |strlen | |
+ROW |22070 |34050 |18362 |last | |
+ROW |22071 |34050 |18363 |last | |
+ROW |22072 |34053 |18364 |min |5m |
+ROW |22073 |34060 |18365 |change | |
+ROW |22074 |34060 |18365 |last | |
+ROW |22075 |34062 |18365 |last | |
+ROW |22076 |34061 |18365 |last | |
+ROW |22077 |34060 |18365 |prev | |
+ROW |22078 |34056 |18366 |avg |15m |
+ROW |22079 |34060 |18366 |last | |
+ROW |22080 |34059 |18367 |avg |15m |
+ROW |22081 |34060 |18367 |last | |
+ROW |22082 |34055 |18368 |min |5m |
+ROW |22083 |34055 |18368 |max |5m |
+ROW |22084 |34058 |18369 |min |5m |
+ROW |22085 |34058 |18369 |max |5m |
+ROW |22086 |34061 |18370 |last | |
+ROW |22087 |34063 |18371 |last | |
+ROW |22088 |34064 |18372 |last | |
+ROW |22089 |34064 |18372 |last |4 |
+ROW |22090 |34064 |18373 |last | |
+ROW |22091 |34065 |18374 |last | |
+ROW |22092 |34065 |18375 |last | |
+ROW |22093 |34066 |18376 |avg |5m |
+ROW |22094 |34066 |18376 |max |5m |
+ROW |22095 |34066 |18377 |avg |5m |
+ROW |22096 |34066 |18377 |max |5m |
+ROW |22097 |34066 |18378 |avg |5m |
+ROW |22098 |34066 |18378 |min |5m |
+ROW |22099 |34067 |18379 |max |#3 |
+ROW |22100 |34068 |18380 |min |5m |
+ROW |22101 |34069 |18381 |avg |5m |
+ROW |22102 |34074 |18382 |diff | |
+ROW |22103 |34074 |18382 |strlen | |
+ROW |22104 |34076 |18383 |diff | |
+ROW |22105 |34076 |18383 |strlen | |
+ROW |22106 |34078 |18384 |diff | |
+ROW |22107 |34078 |18384 |strlen | |
+ROW |22108 |34079 |18385 |last | |
+ROW |22109 |34080 |18386 |max |{$SNMP.TIMEOUT} |
+ROW |22110 |34089 |18387 |min |5m |
+ROW |22111 |34090 |18388 |diff | |
+ROW |22112 |34090 |18388 |strlen | |
+ROW |22113 |34091 |18389 |last | |
+ROW |22114 |34091 |18390 |last | |
+ROW |22115 |34094 |18391 |min |5m |
+ROW |22116 |34101 |18392 |change | |
+ROW |22117 |34101 |18392 |last | |
+ROW |22118 |34103 |18392 |last | |
+ROW |22119 |34102 |18392 |last | |
+ROW |22120 |34101 |18392 |prev | |
+ROW |22121 |34097 |18393 |avg |15m |
+ROW |22122 |34101 |18393 |last | |
+ROW |22123 |34100 |18394 |avg |15m |
+ROW |22124 |34101 |18394 |last | |
+ROW |22125 |34096 |18395 |min |5m |
+ROW |22126 |34096 |18395 |max |5m |
+ROW |22127 |34099 |18396 |min |5m |
+ROW |22128 |34099 |18396 |max |5m |
+ROW |22129 |34102 |18397 |last | |
+ROW |22130 |34104 |18398 |last | |
+ROW |22131 |34105 |18399 |last | |
+ROW |22132 |34105 |18399 |last |4 |
+ROW |22133 |34105 |18400 |last | |
+ROW |22134 |34106 |18401 |last | |
+ROW |22135 |34106 |18402 |last | |
+ROW |22136 |34107 |18403 |avg |5m |
+ROW |22137 |34107 |18403 |max |5m |
+ROW |22138 |34107 |18404 |avg |5m |
+ROW |22139 |34107 |18404 |max |5m |
+ROW |22140 |34107 |18405 |avg |5m |
+ROW |22141 |34107 |18405 |min |5m |
+ROW |22142 |34108 |18406 |max |#3 |
+ROW |22143 |34109 |18407 |min |5m |
+ROW |22144 |34110 |18408 |avg |5m |
+ROW |22145 |34115 |18409 |diff | |
+ROW |22146 |34115 |18409 |strlen | |
+ROW |22147 |34117 |18410 |diff | |
+ROW |22148 |34117 |18410 |strlen | |
+ROW |22149 |34119 |18411 |diff | |
+ROW |22150 |34119 |18411 |strlen | |
+ROW |22151 |34120 |18412 |last | |
+ROW |22152 |34121 |18413 |max |{$SNMP.TIMEOUT} |
+ROW |22153 |34130 |18414 |min |5m |
+ROW |22154 |34131 |18415 |diff | |
+ROW |22155 |34131 |18415 |strlen | |
+ROW |22156 |34132 |18416 |last | |
+ROW |22157 |34132 |18417 |last | |
+ROW |22158 |34135 |18418 |min |5m |
+ROW |22159 |34142 |18419 |change | |
+ROW |22160 |34142 |18419 |last | |
+ROW |22161 |34144 |18419 |last | |
+ROW |22162 |34143 |18419 |last | |
+ROW |22163 |34142 |18419 |prev | |
+ROW |22164 |34138 |18420 |avg |15m |
+ROW |22165 |34142 |18420 |last | |
+ROW |22166 |34141 |18421 |avg |15m |
+ROW |22167 |34142 |18421 |last | |
+ROW |22168 |34137 |18422 |min |5m |
+ROW |22169 |34137 |18422 |max |5m |
+ROW |22170 |34140 |18423 |min |5m |
+ROW |22171 |34140 |18423 |max |5m |
+ROW |22172 |34143 |18424 |last | |
+ROW |22173 |34145 |18425 |last | |
+ROW |22174 |34146 |18426 |last | |
+ROW |22175 |34146 |18426 |last |4 |
+ROW |22176 |34146 |18427 |last | |
+ROW |22177 |34147 |18428 |last | |
+ROW |22178 |34147 |18429 |last | |
+ROW |22179 |34148 |18430 |avg |5m |
+ROW |22180 |34148 |18430 |max |5m |
+ROW |22181 |34148 |18431 |avg |5m |
+ROW |22182 |34148 |18431 |max |5m |
+ROW |22183 |34148 |18432 |avg |5m |
+ROW |22184 |34148 |18432 |min |5m |
+ROW |22185 |34149 |18433 |max |#3 |
+ROW |22186 |34150 |18434 |min |5m |
+ROW |22187 |34151 |18435 |avg |5m |
+ROW |22188 |34154 |18436 |min |5m |
+ROW |22189 |34157 |18437 |diff | |
+ROW |22190 |34157 |18437 |strlen | |
+ROW |22191 |34159 |18438 |last | |
+ROW |22192 |34160 |18439 |max |{$SNMP.TIMEOUT} |
+ROW |22193 |28202 |18440 |count |#1,{$FAN.STATUS.CRIT},eq |
+ROW |22194 |34170 |18441 |change | |
+ROW |22195 |34170 |18441 |last | |
+ROW |22196 |34172 |18441 |last | |
+ROW |22197 |34171 |18441 |last | |
+ROW |22198 |34170 |18441 |prev | |
+ROW |22199 |34166 |18442 |avg |15m |
+ROW |22200 |34170 |18442 |last | |
+ROW |22201 |34169 |18442 |avg |15m |
+ROW |22202 |34165 |18443 |min |5m |
+ROW |22203 |34168 |18443 |min |5m |
+ROW |22204 |34165 |18443 |max |5m |
+ROW |22205 |34168 |18443 |max |5m |
+ROW |22206 |34171 |18444 |last | |
+ROW |22207 |34171 |18444 |diff | |
+ROW |22208 |28206 |18445 |count |#1,{$PSU.STATUS.CRIT},eq |
+ROW |22209 |28201 |18446 |avg |5m |
+ROW |22210 |28200 |18446 |last | |
+ROW |22211 |28201 |18446 |max |5m |
+ROW |22212 |28201 |18447 |avg |5m |
+ROW |22213 |28201 |18447 |max |5m |
+ROW |22214 |28201 |18448 |avg |5m |
+ROW |22215 |28201 |18448 |min |5m |
+ROW |22216 |34173 |18449 |last | |
+ROW |22217 |34174 |18449 |last | |
+ROW |22218 |34175 |18449 |last | |
+ROW |22219 |34173 |18449 |timeleft |1h,,100 |
+ROW |22220 |34173 |18450 |last | |
+ROW |22221 |34174 |18450 |last | |
+ROW |22222 |34175 |18450 |last | |
+ROW |22223 |34173 |18450 |timeleft |1h,,100 |
+ROW |22224 |34178 |18451 |min |5m |
+ROW |22225 |29105 |18452 |min |5m |
+ROW |22226 |29104 |18452 |last | |
+ROW |22227 |29142 |18453 |min |5m |
+ROW |22228 |29141 |18453 |last | |
+ROW |22229 |29179 |18454 |min |5m |
+ROW |22230 |29178 |18454 |last | |
+ROW |22231 |29219 |18455 |min |5m |
+ROW |22232 |29218 |18455 |min |5m |
+ROW |22233 |29219 |18455 |max |5m |
+ROW |22234 |29218 |18455 |max |5m |
+ROW |22235 |29233 |18456 |min |5m |
+ROW |22236 |29232 |18456 |min |5m |
+ROW |22237 |29233 |18456 |max |5m |
+ROW |22238 |29232 |18456 |max |5m |
+ROW |22239 |29247 |18457 |min |5m |
+ROW |22240 |29246 |18457 |min |5m |
+ROW |22241 |29247 |18457 |max |5m |
+ROW |22242 |29246 |18457 |max |5m |
+ROW |22243 |31853 |18458 |min |5m |
+ROW |22244 |31855 |18458 |last | |
+ROW |22245 |31889 |18459 |min |5m |
+ROW |22246 |31891 |18459 |last | |
+ROW |22247 |31910 |18460 |min |5m |
+ROW |22248 |31913 |18460 |min |5m |
+ROW |22249 |31910 |18460 |max |5m |
+ROW |22250 |31913 |18460 |max |5m |
+ROW |22251 |31925 |18461 |min |5m |
+ROW |22252 |31928 |18461 |min |5m |
+ROW |22253 |31925 |18461 |max |5m |
+ROW |22254 |31928 |18461 |max |5m |
+ROW |22255 |29402 |18462 |min |5m |
+ROW |22256 |29403 |18462 |last | |
+ROW |22257 |29436 |18463 |avg |15m |
+ROW |22258 |29442 |18463 |last | |
+ROW |22259 |29437 |18463 |avg |15m |
+ROW |22260 |29439 |18464 |min |5m |
+ROW |22261 |29438 |18464 |min |5m |
+ROW |22262 |29439 |18464 |max |5m |
+ROW |22263 |29438 |18464 |max |5m |
+ROW |22264 |31435 |18465 |avg |15m |
+ROW |22265 |31453 |18465 |last | |
+ROW |22266 |31438 |18465 |avg |15m |
+ROW |22267 |31434 |18466 |min |5m |
+ROW |22268 |31437 |18466 |min |5m |
+ROW |22269 |31434 |18466 |max |5m |
+ROW |22270 |31437 |18466 |max |5m |
+ROW |22271 |31449 |18467 |avg |15m |
+ROW |22272 |31456 |18467 |last | |
+ROW |22273 |31452 |18467 |avg |15m |
+ROW |22274 |31448 |18468 |min |5m |
+ROW |22275 |31451 |18468 |min |5m |
+ROW |22276 |31448 |18468 |max |5m |
+ROW |22277 |31451 |18468 |max |5m |
+ROW |22278 |32017 |18469 |avg |15m |
+ROW |22279 |32040 |18469 |last | |
+ROW |22280 |32020 |18469 |avg |15m |
+ROW |22281 |32016 |18470 |min |5m |
+ROW |22282 |32019 |18470 |min |5m |
+ROW |22283 |32016 |18470 |max |5m |
+ROW |22284 |32019 |18470 |max |5m |
+ROW |22285 |32031 |18471 |avg |15m |
+ROW |22286 |32043 |18471 |last | |
+ROW |22287 |32034 |18471 |avg |15m |
+ROW |22288 |32030 |18472 |min |5m |
+ROW |22289 |32033 |18472 |min |5m |
+ROW |22290 |32030 |18472 |max |5m |
+ROW |22291 |32033 |18472 |max |5m |
+ROW |22292 |34204 |18473 |last | |
+ROW |22293 |34202 |18474 |last | |
+ROW |22294 |34202 |18475 |last | |
+ROW |22295 |34201 |18476 |min |{$TIME.PERIOD} |
+ROW |22299 |34195 |18480 |min |{$TIME.PERIOD} |
+ROW |22300 |34195 |18480 |max |{$TIME.PERIOD} |
+ROW |22301 |34194 |18481 |min |{$TIME.PERIOD} |
+ROW |22302 |34194 |18481 |max |{$TIME.PERIOD} |
+ROW |22303 |34180 |18482 |min |{$TIME.PERIOD} |
+ROW |22304 |34191 |18483 |last | |
+ROW |22305 |34191 |18484 |last | |
+ROW |22306 |34191 |18485 |last | |
+ROW |22307 |34191 |18486 |last | |
+ROW |22308 |34191 |18487 |last | |
+ROW |22309 |34191 |18488 |last | |
+ROW |22310 |34191 |18489 |last | |
+ROW |22311 |34191 |18490 |last | |
+ROW |22312 |34191 |18491 |last | |
+ROW |22313 |34191 |18492 |last | |
+ROW |22314 |34191 |18493 |last | |
+ROW |22317 |34181 |18495 |last | |
+ROW |22318 |34206 |18496 |max |{$SNMP.TIMEOUT} |
+ROW |22319 |34214 |18497 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22321 |34216 |18499 |min |{$TIME.PERIOD} |
+ROW |22322 |34219 |18500 |last | |
+ROW |22323 |34219 |18501 |last | |
+ROW |22324 |34219 |18502 |last | |
+ROW |22325 |34222 |18503 |last | |
+ROW |22326 |34222 |18504 |last | |
+ROW |22327 |34222 |18505 |last | |
+ROW |22328 |34225 |18506 |min |{$TIME.PERIOD} |
+ROW |22329 |34225 |18506 |max |{$TIME.PERIOD} |
+ROW |22330 |34240 |18507 |last | |
+ROW |22331 |34248 |18508 |diff | |
+ROW |22332 |34248 |18508 |strlen | |
+ROW |22333 |34273 |18509 |diff | |
+ROW |22334 |34273 |18509 |last | |
+ROW |22335 |34274 |18510 |diff | |
+ROW |22336 |34274 |18510 |last | |
+ROW |22337 |34275 |18511 |diff | |
+ROW |22338 |34275 |18511 |last | |
+ROW |22339 |34278 |18512 |diff | |
+ROW |22340 |34278 |18512 |last | |
+ROW |22341 |34279 |18513 |diff | |
+ROW |22342 |34279 |18513 |last | |
+ROW |22343 |34280 |18514 |diff | |
+ROW |22344 |34280 |18514 |strlen | |
+ROW |22345 |34281 |18515 |last | |
+ROW |22346 |34284 |18516 |last | |
+ROW |22347 |34285 |18517 |last | |
+ROW |22348 |34286 |18518 |diff | |
+ROW |22349 |34286 |18518 |last | |
+ROW |22350 |34288 |18519 |diff | |
+ROW |22351 |34288 |18519 |last | |
+ROW |22352 |34290 |18520 |diff | |
+ROW |22353 |34290 |18520 |last | |
+ROW |22354 |34310 |18521 |diff | |
+ROW |22355 |34310 |18521 |last | |
+ROW |22356 |32451 |18522 |avg |{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXBROKERNAME}"} |
+ROW |22357 |32458 |18523 |avg |{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |22358 |32457 |18523 |avg |{$ACTIVEMQ.MSG.RATE.WARN.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |22359 |32459 |18524 |last | |
+ROW |22360 |32462 |18525 |min |{$ACTIVEMQ.QUEUE.TIME:"{#JMXDESTINATIONNAME}"} |
+ROW |22361 |32621 |18526 |min |5m |
+ROW |22362 |32624 |18526 |last | |
+ROW |22363 |32262 |18527 |avg |5m |
+ROW |22364 |32251 |18527 |avg |5m |
+ROW |22365 |34314 |18528 |avg |10m |
+ROW |22366 |34315 |18529 |avg |10m |
+ROW |22367 |34317 |18530 |avg |10m |
+ROW |22368 |34316 |18531 |avg |10m |
+ROW |22369 |34319 |18532 |avg |10m |
+ROW |22370 |34318 |18533 |avg |10m |
+ROW |22371 |31086 |18534 |min |5m |
+ROW |22372 |31087 |18535 |min |5m |
+ROW |22373 |34326 |18536 |last | |
+ROW |22374 |34326 |18537 |last | |
+ROW |22375 |34329 |18538 |last | |
+ROW |22376 |34329 |18539 |last | |
+ROW |22377 |34327 |18540 |last | |
+ROW |22378 |34327 |18541 |last | |
+ROW |22379 |34334 |18542 |last | |
+ROW |22380 |34335 |18543 |last | |
+ROW |22381 |30434 |18544 |max |5m |
+ROW |22382 |30640 |18545 |max |5m |
+ROW |22383 |30483 |18546 |max |5m |
+ROW |22384 |31704 |18547 |min |5m |
+ROW |22385 |31199 |18548 |min |5m |
+ROW |22386 |34339 |18549 |last | |
+ROW |22387 |34340 |18550 |last | |
+ROW |22388 |34341 |18551 |diff | |
+ROW |22389 |34341 |18551 |strlen | |
+ROW |22390 |34351 |18552 |min |5m |
+ROW |22391 |34350 |18552 |last | |
+ROW |22392 |34352 |18553 |last | |
+ROW |22393 |34353 |18554 |last | |
+ROW |22394 |34354 |18555 |last | |
+ROW |22395 |34365 |18556 |min |5m |
+ROW |22396 |34365 |18557 |min |5m |
+ROW |22397 |34387 |18558 |min |5m |
+ROW |22398 |34388 |18558 |last | |
+ROW |22399 |34385 |18559 |min |5m |
+ROW |22400 |34397 |18560 |min |5m |
+ROW |22401 |34393 |18561 |min |5m |
+ROW |22402 |34392 |18562 |max |5m |
+ROW |22403 |34391 |18563 |min |5m |
+ROW |22404 |34381 |18564 |min |5m |
+ROW |22405 |34379 |18565 |last | |
+ROW |22406 |34376 |18566 |last | |
+ROW |22407 |34373 |18567 |min |5m |
+ROW |22408 |34371 |18568 |last | |
+ROW |22409 |34398 |18569 |diff | |
+ROW |22410 |34398 |18569 |strlen | |
+ROW |22411 |34410 |18570 |min |5m |
+ROW |22412 |34436 |18571 |min |5m |
+ROW |22413 |34422 |18572 |min |5m |
+ROW |22414 |34422 |18573 |min |5m |
+ROW |22415 |34439 |18574 |last | |
+ROW |22416 |34450 |18575 |min |5m |
+ROW |22417 |34451 |18576 |last | |
+ROW |22418 |34473 |18577 |last | |
+ROW |22419 |34471 |18578 |last | |
+ROW |22420 |34471 |18579 |last | |
+ROW |22421 |34470 |18580 |min |{$TIME.PERIOD} |
+ROW |22422 |34467 |18581 |min |{$TIME.PERIOD} |
+ROW |22423 |34467 |18581 |max |{$TIME.PERIOD} |
+ROW |22424 |34466 |18582 |min |{$TIME.PERIOD} |
+ROW |22425 |34466 |18582 |max |{$TIME.PERIOD} |
+ROW |22426 |34463 |18583 |min |{$TIME.PERIOD} |
+ROW |22427 |34452 |18584 |last | |
+ROW |22428 |34452 |18585 |last | |
+ROW |22429 |34452 |18586 |last | |
+ROW |22430 |34452 |18587 |last | |
+ROW |22431 |34452 |18588 |last | |
+ROW |22432 |34452 |18589 |last | |
+ROW |22433 |34452 |18590 |last | |
+ROW |22434 |34452 |18591 |last | |
+ROW |22435 |34452 |18592 |last | |
+ROW |22436 |34452 |18593 |last | |
+ROW |22437 |34452 |18594 |last | |
+ROW |22438 |34456 |18595 |diff | |
+ROW |22439 |34456 |18595 |strlen | |
+ROW |22440 |34453 |18596 |last | |
+ROW |22441 |34475 |18597 |max |{$SNMP.TIMEOUT} |
+ROW |22442 |34484 |18598 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22443 |34485 |18599 |regexp |"^(0{16})$" |
+ROW |22444 |34486 |18600 |min |{$TIME.PERIOD} |
+ROW |22445 |34489 |18601 |last | |
+ROW |22446 |34489 |18602 |last | |
+ROW |22447 |34489 |18603 |last | |
+ROW |22448 |34492 |18604 |last | |
+ROW |22449 |34492 |18605 |last | |
+ROW |22450 |34492 |18606 |last | |
+ROW |22451 |34495 |18607 |min |{$TIME.PERIOD} |
+ROW |22452 |34495 |18607 |max |{$TIME.PERIOD} |
+ROW |22453 |34498 |18608 |min |{$TIME.PERIOD} |
+ROW |22454 |34498 |18608 |max |{$TIME.PERIOD} |
+ROW |22455 |34499 |18609 |last | |
+ROW |22456 |34521 |18610 |last | |
+ROW |22457 |34519 |18611 |last | |
+ROW |22458 |34519 |18612 |last | |
+ROW |22459 |34518 |18613 |min |{$TIME.PERIOD} |
+ROW |22460 |34515 |18614 |min |{$TIME.PERIOD} |
+ROW |22461 |34515 |18614 |max |{$TIME.PERIOD} |
+ROW |22462 |34514 |18615 |min |{$TIME.PERIOD} |
+ROW |22463 |34514 |18615 |max |{$TIME.PERIOD} |
+ROW |22464 |34511 |18616 |min |{$TIME.PERIOD} |
+ROW |22465 |34500 |18617 |last | |
+ROW |22466 |34500 |18618 |last | |
+ROW |22467 |34500 |18619 |last | |
+ROW |22468 |34500 |18620 |last | |
+ROW |22469 |34500 |18621 |last | |
+ROW |22470 |34500 |18622 |last | |
+ROW |22471 |34500 |18623 |last | |
+ROW |22472 |34500 |18624 |last | |
+ROW |22473 |34500 |18625 |last | |
+ROW |22474 |34500 |18626 |last | |
+ROW |22475 |34500 |18627 |last | |
+ROW |22476 |34504 |18628 |diff | |
+ROW |22477 |34504 |18628 |strlen | |
+ROW |22478 |34501 |18629 |last | |
+ROW |22479 |34523 |18630 |max |{$SNMP.TIMEOUT} |
+ROW |22480 |34532 |18631 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22481 |34533 |18632 |regexp |"^(0{16})$" |
+ROW |22482 |34534 |18633 |min |{$TIME.PERIOD} |
+ROW |22483 |34537 |18634 |last | |
+ROW |22484 |34537 |18635 |last | |
+ROW |22485 |34537 |18636 |last | |
+ROW |22486 |34540 |18637 |last | |
+ROW |22487 |34540 |18638 |last | |
+ROW |22488 |34540 |18639 |last | |
+ROW |22489 |34543 |18640 |min |{$TIME.PERIOD} |
+ROW |22490 |34543 |18640 |max |{$TIME.PERIOD} |
+ROW |22491 |34546 |18641 |min |{$TIME.PERIOD} |
+ROW |22492 |34546 |18641 |max |{$TIME.PERIOD} |
+ROW |22493 |34547 |18642 |last | |
+ROW |22494 |34569 |18643 |last | |
+ROW |22495 |34567 |18644 |last | |
+ROW |22496 |34567 |18645 |last | |
+ROW |22497 |34566 |18646 |min |{$TIME.PERIOD} |
+ROW |22498 |34563 |18647 |min |{$TIME.PERIOD} |
+ROW |22499 |34563 |18647 |max |{$TIME.PERIOD} |
+ROW |22500 |34562 |18648 |min |{$TIME.PERIOD} |
+ROW |22501 |34562 |18648 |max |{$TIME.PERIOD} |
+ROW |22502 |34559 |18649 |min |{$TIME.PERIOD} |
+ROW |22503 |34548 |18650 |last | |
+ROW |22504 |34548 |18651 |last | |
+ROW |22505 |34548 |18652 |last | |
+ROW |22506 |34548 |18653 |last | |
+ROW |22507 |34548 |18654 |last | |
+ROW |22508 |34548 |18655 |last | |
+ROW |22509 |34548 |18656 |last | |
+ROW |22510 |34548 |18657 |last | |
+ROW |22511 |34548 |18658 |last | |
+ROW |22512 |34548 |18659 |last | |
+ROW |22513 |34548 |18660 |last | |
+ROW |22514 |34552 |18661 |diff | |
+ROW |22515 |34552 |18661 |strlen | |
+ROW |22516 |34549 |18662 |last | |
+ROW |22517 |34571 |18663 |max |{$SNMP.TIMEOUT} |
+ROW |22518 |34580 |18664 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22519 |34581 |18665 |regexp |"^(0{16})$" |
+ROW |22520 |34582 |18666 |min |{$TIME.PERIOD} |
+ROW |22521 |34585 |18667 |last | |
+ROW |22522 |34585 |18668 |last | |
+ROW |22523 |34585 |18669 |last | |
+ROW |22524 |34588 |18670 |last | |
+ROW |22525 |34588 |18671 |last | |
+ROW |22526 |34588 |18672 |last | |
+ROW |22527 |34591 |18673 |min |{$TIME.PERIOD} |
+ROW |22528 |34591 |18673 |max |{$TIME.PERIOD} |
+ROW |22529 |34594 |18674 |min |{$TIME.PERIOD} |
+ROW |22530 |34594 |18674 |max |{$TIME.PERIOD} |
+ROW |22531 |34595 |18675 |last | |
+ROW |22532 |34617 |18676 |last | |
+ROW |22533 |34615 |18677 |last | |
+ROW |22534 |34615 |18678 |last | |
+ROW |22535 |34614 |18679 |min |{$TIME.PERIOD} |
+ROW |22536 |34611 |18680 |min |{$TIME.PERIOD} |
+ROW |22537 |34611 |18680 |max |{$TIME.PERIOD} |
+ROW |22538 |34610 |18681 |min |{$TIME.PERIOD} |
+ROW |22539 |34610 |18681 |max |{$TIME.PERIOD} |
+ROW |22540 |34607 |18682 |min |{$TIME.PERIOD} |
+ROW |22541 |34596 |18683 |last | |
+ROW |22542 |34596 |18684 |last | |
+ROW |22543 |34596 |18685 |last | |
+ROW |22544 |34596 |18686 |last | |
+ROW |22545 |34596 |18687 |last | |
+ROW |22546 |34596 |18688 |last | |
+ROW |22547 |34596 |18689 |last | |
+ROW |22548 |34596 |18690 |last | |
+ROW |22549 |34596 |18691 |last | |
+ROW |22550 |34596 |18692 |last | |
+ROW |22551 |34596 |18693 |last | |
+ROW |22552 |34600 |18694 |diff | |
+ROW |22553 |34600 |18694 |strlen | |
+ROW |22554 |34597 |18695 |last | |
+ROW |22555 |34619 |18696 |max |{$SNMP.TIMEOUT} |
+ROW |22556 |34628 |18697 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22557 |34629 |18698 |regexp |"^(0{16})$" |
+ROW |22558 |34630 |18699 |min |{$TIME.PERIOD} |
+ROW |22559 |34633 |18700 |last | |
+ROW |22560 |34633 |18701 |last | |
+ROW |22561 |34633 |18702 |last | |
+ROW |22562 |34636 |18703 |last | |
+ROW |22563 |34636 |18704 |last | |
+ROW |22564 |34636 |18705 |last | |
+ROW |22565 |34639 |18706 |min |{$TIME.PERIOD} |
+ROW |22566 |34639 |18706 |max |{$TIME.PERIOD} |
+ROW |22567 |34642 |18707 |min |{$TIME.PERIOD} |
+ROW |22568 |34642 |18707 |max |{$TIME.PERIOD} |
+ROW |22569 |34643 |18708 |last | |
+ROW |22570 |34665 |18709 |last | |
+ROW |22571 |34663 |18710 |last | |
+ROW |22572 |34663 |18711 |last | |
+ROW |22573 |34662 |18712 |min |{$TIME.PERIOD} |
+ROW |22574 |34659 |18713 |min |{$TIME.PERIOD} |
+ROW |22575 |34659 |18713 |max |{$TIME.PERIOD} |
+ROW |22576 |34658 |18714 |min |{$TIME.PERIOD} |
+ROW |22577 |34658 |18714 |max |{$TIME.PERIOD} |
+ROW |22578 |34655 |18715 |min |{$TIME.PERIOD} |
+ROW |22579 |34644 |18716 |last | |
+ROW |22580 |34644 |18717 |last | |
+ROW |22581 |34644 |18718 |last | |
+ROW |22582 |34644 |18719 |last | |
+ROW |22583 |34644 |18720 |last | |
+ROW |22584 |34644 |18721 |last | |
+ROW |22585 |34644 |18722 |last | |
+ROW |22586 |34644 |18723 |last | |
+ROW |22587 |34644 |18724 |last | |
+ROW |22588 |34644 |18725 |last | |
+ROW |22589 |34644 |18726 |last | |
+ROW |22590 |34648 |18727 |diff | |
+ROW |22591 |34648 |18727 |strlen | |
+ROW |22592 |34645 |18728 |last | |
+ROW |22593 |34667 |18729 |max |{$SNMP.TIMEOUT} |
+ROW |22594 |34676 |18730 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22595 |34677 |18731 |regexp |"^(0{16})$" |
+ROW |22596 |34678 |18732 |min |{$TIME.PERIOD} |
+ROW |22597 |34681 |18733 |last | |
+ROW |22598 |34681 |18734 |last | |
+ROW |22599 |34681 |18735 |last | |
+ROW |22600 |34684 |18736 |last | |
+ROW |22601 |34684 |18737 |last | |
+ROW |22602 |34684 |18738 |last | |
+ROW |22603 |34687 |18739 |min |{$TIME.PERIOD} |
+ROW |22604 |34687 |18739 |max |{$TIME.PERIOD} |
+ROW |22605 |34690 |18740 |min |{$TIME.PERIOD} |
+ROW |22606 |34690 |18740 |max |{$TIME.PERIOD} |
+ROW |22607 |34691 |18741 |last | |
+ROW |22608 |34713 |18742 |last | |
+ROW |22609 |34711 |18743 |last | |
+ROW |22610 |34711 |18744 |last | |
+ROW |22611 |34710 |18745 |min |{$TIME.PERIOD} |
+ROW |22612 |34707 |18746 |min |{$TIME.PERIOD} |
+ROW |22613 |34707 |18746 |max |{$TIME.PERIOD} |
+ROW |22614 |34706 |18747 |min |{$TIME.PERIOD} |
+ROW |22615 |34706 |18747 |max |{$TIME.PERIOD} |
+ROW |22616 |34703 |18748 |min |{$TIME.PERIOD} |
+ROW |22617 |34692 |18749 |last | |
+ROW |22618 |34692 |18750 |last | |
+ROW |22619 |34692 |18751 |last | |
+ROW |22620 |34692 |18752 |last | |
+ROW |22621 |34692 |18753 |last | |
+ROW |22622 |34692 |18754 |last | |
+ROW |22623 |34692 |18755 |last | |
+ROW |22624 |34692 |18756 |last | |
+ROW |22625 |34692 |18757 |last | |
+ROW |22626 |34692 |18758 |last | |
+ROW |22627 |34692 |18759 |last | |
+ROW |22628 |34696 |18760 |diff | |
+ROW |22629 |34696 |18760 |strlen | |
+ROW |22630 |34693 |18761 |last | |
+ROW |22631 |34715 |18762 |max |{$SNMP.TIMEOUT} |
+ROW |22632 |34724 |18763 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22633 |34725 |18764 |regexp |"^(0{16})$" |
+ROW |22634 |34726 |18765 |min |{$TIME.PERIOD} |
+ROW |22635 |34729 |18766 |last | |
+ROW |22636 |34729 |18767 |last | |
+ROW |22637 |34729 |18768 |last | |
+ROW |22638 |34732 |18769 |last | |
+ROW |22639 |34732 |18770 |last | |
+ROW |22640 |34732 |18771 |last | |
+ROW |22641 |34735 |18772 |min |{$TIME.PERIOD} |
+ROW |22642 |34735 |18772 |max |{$TIME.PERIOD} |
+ROW |22643 |34738 |18773 |min |{$TIME.PERIOD} |
+ROW |22644 |34738 |18773 |max |{$TIME.PERIOD} |
+ROW |22645 |34739 |18774 |last | |
+ROW |22646 |34761 |18775 |last | |
+ROW |22647 |34759 |18776 |last | |
+ROW |22648 |34759 |18777 |last | |
+ROW |22649 |34758 |18778 |min |{$TIME.PERIOD} |
+ROW |22650 |34755 |18779 |min |{$TIME.PERIOD} |
+ROW |22651 |34755 |18779 |max |{$TIME.PERIOD} |
+ROW |22652 |34754 |18780 |min |{$TIME.PERIOD} |
+ROW |22653 |34754 |18780 |max |{$TIME.PERIOD} |
+ROW |22654 |34751 |18781 |min |{$TIME.PERIOD} |
+ROW |22655 |34740 |18782 |last | |
+ROW |22656 |34740 |18783 |last | |
+ROW |22657 |34740 |18784 |last | |
+ROW |22658 |34740 |18785 |last | |
+ROW |22659 |34740 |18786 |last | |
+ROW |22660 |34740 |18787 |last | |
+ROW |22661 |34740 |18788 |last | |
+ROW |22662 |34740 |18789 |last | |
+ROW |22663 |34740 |18790 |last | |
+ROW |22664 |34740 |18791 |last | |
+ROW |22665 |34740 |18792 |last | |
+ROW |22666 |34744 |18793 |diff | |
+ROW |22667 |34744 |18793 |strlen | |
+ROW |22668 |34741 |18794 |last | |
+ROW |22669 |34763 |18795 |max |{$SNMP.TIMEOUT} |
+ROW |22670 |34772 |18796 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22671 |34773 |18797 |regexp |"^(0{16})$" |
+ROW |22672 |34774 |18798 |min |{$TIME.PERIOD} |
+ROW |22673 |34777 |18799 |last | |
+ROW |22674 |34777 |18800 |last | |
+ROW |22675 |34777 |18801 |last | |
+ROW |22676 |34780 |18802 |last | |
+ROW |22677 |34780 |18803 |last | |
+ROW |22678 |34780 |18804 |last | |
+ROW |22679 |34783 |18805 |min |{$TIME.PERIOD} |
+ROW |22680 |34783 |18805 |max |{$TIME.PERIOD} |
+ROW |22681 |34786 |18806 |min |{$TIME.PERIOD} |
+ROW |22682 |34786 |18806 |max |{$TIME.PERIOD} |
+ROW |22683 |34787 |18807 |last | |
+ROW |22684 |34788 |18808 |diff | |
+ROW |22685 |34788 |18808 |strlen | |
+ROW |22686 |34215 |18809 |regexp |"^(0{16})$" |
+ROW |22687 |34792 |18810 |min |{$TIME.PERIOD} |
+ROW |22688 |34792 |18810 |max |{$TIME.PERIOD} |
+ROW |22689 |34793 |18811 |last | |
+ROW |22690 |34815 |18812 |last | |
+ROW |22691 |34813 |18813 |last | |
+ROW |22692 |34813 |18814 |last | |
+ROW |22693 |34812 |18815 |min |{$TIME.PERIOD} |
+ROW |22694 |34809 |18816 |min |{$TIME.PERIOD} |
+ROW |22695 |34809 |18816 |max |{$TIME.PERIOD} |
+ROW |22696 |34808 |18817 |min |{$TIME.PERIOD} |
+ROW |22697 |34808 |18817 |max |{$TIME.PERIOD} |
+ROW |22698 |34805 |18818 |min |{$TIME.PERIOD} |
+ROW |22699 |34794 |18819 |last | |
+ROW |22700 |34794 |18820 |last | |
+ROW |22701 |34794 |18821 |last | |
+ROW |22702 |34794 |18822 |last | |
+ROW |22703 |34794 |18823 |last | |
+ROW |22704 |34794 |18824 |last | |
+ROW |22705 |34794 |18825 |last | |
+ROW |22706 |34794 |18826 |last | |
+ROW |22707 |34794 |18827 |last | |
+ROW |22708 |34794 |18828 |last | |
+ROW |22709 |34794 |18829 |last | |
+ROW |22710 |34798 |18830 |diff | |
+ROW |22711 |34798 |18830 |strlen | |
+ROW |22712 |34795 |18831 |last | |
+ROW |22713 |34817 |18832 |max |{$SNMP.TIMEOUT} |
+ROW |22714 |34826 |18833 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22715 |34827 |18834 |regexp |"^(0{16})$" |
+ROW |22716 |34828 |18835 |min |{$TIME.PERIOD} |
+ROW |22717 |34831 |18836 |last | |
+ROW |22718 |34831 |18837 |last | |
+ROW |22719 |34831 |18838 |last | |
+ROW |22720 |34834 |18839 |last | |
+ROW |22721 |34834 |18840 |last | |
+ROW |22722 |34834 |18841 |last | |
+ROW |22723 |34837 |18842 |min |{$TIME.PERIOD} |
+ROW |22724 |34837 |18842 |max |{$TIME.PERIOD} |
+ROW |22725 |34840 |18843 |min |{$TIME.PERIOD} |
+ROW |22726 |34840 |18843 |max |{$TIME.PERIOD} |
+ROW |22727 |34841 |18844 |last | |
+ROW |22728 |34863 |18845 |last | |
+ROW |22729 |34861 |18846 |last | |
+ROW |22730 |34861 |18847 |last | |
+ROW |22731 |34860 |18848 |min |{$TIME.PERIOD} |
+ROW |22732 |34857 |18849 |min |{$TIME.PERIOD} |
+ROW |22733 |34857 |18849 |max |{$TIME.PERIOD} |
+ROW |22734 |34856 |18850 |min |{$TIME.PERIOD} |
+ROW |22735 |34856 |18850 |max |{$TIME.PERIOD} |
+ROW |22736 |34853 |18851 |min |{$TIME.PERIOD} |
+ROW |22737 |34842 |18852 |last | |
+ROW |22738 |34842 |18853 |last | |
+ROW |22739 |34842 |18854 |last | |
+ROW |22740 |34842 |18855 |last | |
+ROW |22741 |34842 |18856 |last | |
+ROW |22742 |34842 |18857 |last | |
+ROW |22743 |34842 |18858 |last | |
+ROW |22744 |34842 |18859 |last | |
+ROW |22745 |34842 |18860 |last | |
+ROW |22746 |34842 |18861 |last | |
+ROW |22747 |34842 |18862 |last | |
+ROW |22748 |34846 |18863 |diff | |
+ROW |22749 |34846 |18863 |strlen | |
+ROW |22750 |34843 |18864 |last | |
+ROW |22751 |34865 |18865 |max |{$SNMP.TIMEOUT} |
+ROW |22752 |34874 |18866 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22753 |34875 |18867 |regexp |"^(0{16})$" |
+ROW |22754 |34876 |18868 |min |{$TIME.PERIOD} |
+ROW |22755 |34879 |18869 |last | |
+ROW |22756 |34879 |18870 |last | |
+ROW |22757 |34879 |18871 |last | |
+ROW |22758 |34882 |18872 |last | |
+ROW |22759 |34882 |18873 |last | |
+ROW |22760 |34882 |18874 |last | |
+ROW |22761 |34885 |18875 |min |{$TIME.PERIOD} |
+ROW |22762 |34885 |18875 |max |{$TIME.PERIOD} |
+ROW |22763 |34888 |18876 |min |{$TIME.PERIOD} |
+ROW |22764 |34888 |18876 |max |{$TIME.PERIOD} |
+ROW |22765 |34889 |18877 |last | |
+ROW |22766 |34911 |18878 |last | |
+ROW |22767 |34909 |18879 |last | |
+ROW |22768 |34909 |18880 |last | |
+ROW |22769 |34908 |18881 |min |{$TIME.PERIOD} |
+ROW |22770 |34905 |18882 |min |{$TIME.PERIOD} |
+ROW |22771 |34905 |18882 |max |{$TIME.PERIOD} |
+ROW |22772 |34904 |18883 |min |{$TIME.PERIOD} |
+ROW |22773 |34904 |18883 |max |{$TIME.PERIOD} |
+ROW |22774 |34901 |18884 |min |{$TIME.PERIOD} |
+ROW |22775 |34890 |18885 |last | |
+ROW |22776 |34890 |18886 |last | |
+ROW |22777 |34890 |18887 |last | |
+ROW |22778 |34890 |18888 |last | |
+ROW |22779 |34890 |18889 |last | |
+ROW |22780 |34890 |18890 |last | |
+ROW |22781 |34890 |18891 |last | |
+ROW |22782 |34890 |18892 |last | |
+ROW |22783 |34890 |18893 |last | |
+ROW |22784 |34890 |18894 |last | |
+ROW |22785 |34890 |18895 |last | |
+ROW |22786 |34894 |18896 |diff | |
+ROW |22787 |34894 |18896 |strlen | |
+ROW |22788 |34891 |18897 |last | |
+ROW |22789 |34913 |18898 |max |{$SNMP.TIMEOUT} |
+ROW |22790 |34922 |18899 |regexp |"^(0)[0&pipe;1]{15}$" |
+ROW |22791 |34923 |18900 |regexp |"^(0{16})$" |
+ROW |22792 |34924 |18901 |min |{$TIME.PERIOD} |
+ROW |22793 |34927 |18902 |last | |
+ROW |22794 |34927 |18903 |last | |
+ROW |22795 |34927 |18904 |last | |
+ROW |22796 |34930 |18905 |last | |
+ROW |22797 |34930 |18906 |last | |
+ROW |22798 |34930 |18907 |last | |
+ROW |22799 |34933 |18908 |min |{$TIME.PERIOD} |
+ROW |22800 |34933 |18908 |max |{$TIME.PERIOD} |
+ROW |22801 |34936 |18909 |min |{$TIME.PERIOD} |
+ROW |22802 |34936 |18909 |max |{$TIME.PERIOD} |
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|
@@ -13811,7 +15017,6 @@ ROW |1167 |ClickHouse: Memory Utilization
ROW |1168 |ClickHouse: Queries rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1169 |ClickHouse: Syscalls in fly |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1170 |ClickHouse: Uptime |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
-ROW |1171 |ClickHouse: Zookeeper exeptions rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1172 |Apache: Current async connections{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1173 |Apache: Current async processes{#SINGLETON} |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1174 |Apache: Requests per second |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
@@ -14117,7 +15322,6 @@ ROW |1564 |Interface {#IFNAME}({#IFALIAS}): Network traffic
ROW |1565 |{#FSNAME}: Disk space usage |600 |340 |0 |100 |NULL |1 |1 |2 |1 |1 |0 |0 |0 |0 |NULL |NULL |2 |0 |
ROW |1566 |{#MEMNAME}: Memory utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |2 |0 |
ROW |1567 |CPU utilization |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |1 |1 |NULL |NULL |0 |0 |
-ROW |1568 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1569 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1570 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1571 |{#VOLUMENAME}: Volume latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
@@ -14125,6 +15329,44 @@ ROW |1572 |{#VOLUMENAME}: Volume size
ROW |1573 |Cluster IOPS |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1574 |Cluster latency |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
ROW |1575 |Cluster throughput |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1576 |ClickHouse: Zookeeper exceptions rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1577 |TiDB cluster: Storage Usage[{#SINGLETON}] |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |2 |0 |
+ROW |1578 |TiDB: File descriptors |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1579 |TiDB: Memory usage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1580 |TiDB: Server query rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1581 |TiKV: Scheduler priority commands rate |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1582 |TiKV: Snapshot state count |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1583 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1584 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1585 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1586 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1587 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1588 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1589 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1590 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1591 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1592 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1593 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1594 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1595 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1596 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1597 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1598 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1599 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1600 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1601 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1602 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1603 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1604 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1605 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1606 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1607 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1608 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1609 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1610 |Voltage |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1611 |Capacity of the UPS batteries |900 |200 |0 |100 |NULL |1 |1 |2 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1612 |Output |900 |200 |0 |100 |NULL |1 |1 |0 |1 |0 |0 |0 |0 |0 |NULL |NULL |0 |0 |
+ROW |1613 |Voltage |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|
@@ -14254,2095 +15496,2166 @@ ROW |1231 |{#DEVNAME}: Disk utilization and queue|900 |200 |0 |100
TABLE |graphs_items
FIELDS|gitemid|graphid|itemid|drawtype|sortorder|color |yaxisside|calc_fnc|type|
-ROW |52051 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52052 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
-ROW |52053 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52054 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
-ROW |52055 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52056 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
-ROW |52057 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
-ROW |52058 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52059 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52060 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
-ROW |52061 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52062 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
-ROW |52063 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52064 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
-ROW |52065 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
-ROW |52066 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
-ROW |52067 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52068 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52069 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
-ROW |52070 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52071 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52072 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
-ROW |52073 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
-ROW |52074 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
-ROW |52075 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52076 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52077 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52078 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
-ROW |52079 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
-ROW |52080 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
-ROW |52081 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
-ROW |52082 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52083 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
-ROW |52084 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52085 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
-ROW |52086 |836 |28800 |0 |2 |F63100|0 |2 |0 |
-ROW |52087 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
-ROW |52088 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52089 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52090 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52091 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
-ROW |52092 |840 |28782 |0 |2 |F63100|0 |2 |0 |
-ROW |52093 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
-ROW |52094 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52095 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52096 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52097 |840 |28785 |0 |7 |611F27|0 |2 |0 |
-ROW |52098 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
-ROW |52099 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
-ROW |52100 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
-ROW |52101 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52102 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
-ROW |52103 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52104 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
-ROW |52105 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52106 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
-ROW |52107 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52108 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
-ROW |52109 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52110 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
-ROW |52111 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
-ROW |52112 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52113 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
-ROW |52114 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52115 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
-ROW |52116 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
-ROW |52117 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
-ROW |52118 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52119 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
-ROW |52120 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
-ROW |52121 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
-ROW |52122 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52123 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52124 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52125 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
-ROW |52126 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
-ROW |52127 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52128 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
-ROW |52129 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
-ROW |52130 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52131 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
-ROW |52132 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52133 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
-ROW |52134 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
-ROW |52135 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
-ROW |52136 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |52137 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
-ROW |52138 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52139 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
-ROW |52140 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52141 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
-ROW |52142 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
-ROW |52143 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
-ROW |52144 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52145 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52146 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
-ROW |52147 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52148 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52149 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
-ROW |52150 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
-ROW |52151 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
-ROW |52152 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52153 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
-ROW |52154 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
-ROW |52155 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
-ROW |52156 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52157 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
-ROW |52158 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52159 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
-ROW |52160 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
-ROW |52161 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
-ROW |52162 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52163 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
-ROW |52164 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
-ROW |52165 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
-ROW |52166 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52167 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
-ROW |52168 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
-ROW |52169 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
-ROW |52170 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52171 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
-ROW |52172 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
-ROW |52173 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
-ROW |52174 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52175 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52176 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52177 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52178 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
-ROW |52179 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52180 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
-ROW |52181 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52182 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
-ROW |52183 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
-ROW |52184 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52185 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
-ROW |52186 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
-ROW |52187 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52188 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
-ROW |52189 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52190 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
-ROW |52191 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
-ROW |52192 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
-ROW |52193 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52194 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
-ROW |52195 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52196 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
-ROW |52197 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
-ROW |52198 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
-ROW |52199 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52200 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52201 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52202 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
-ROW |52203 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52204 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
-ROW |52205 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
-ROW |52206 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
-ROW |52207 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
-ROW |52208 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
-ROW |52209 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
-ROW |52210 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
-ROW |52211 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52212 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52213 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52214 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
-ROW |52215 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52216 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
-ROW |52217 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
-ROW |52218 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
-ROW |52219 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52220 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
-ROW |52221 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
-ROW |52222 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52223 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
-ROW |52224 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
-ROW |52225 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
-ROW |52226 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52227 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52228 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52229 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
-ROW |52230 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
-ROW |52231 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52232 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
-ROW |52233 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
-ROW |52234 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52235 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
-ROW |52236 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
-ROW |52237 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52238 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
-ROW |52239 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
-ROW |52240 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52241 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
-ROW |52242 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
-ROW |52243 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52244 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
-ROW |52245 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
-ROW |52246 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52247 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
-ROW |52248 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
-ROW |52249 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52250 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
-ROW |52251 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52252 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
-ROW |52253 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
-ROW |52254 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52255 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
-ROW |52256 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
-ROW |52257 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
-ROW |52258 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52259 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
-ROW |52260 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52261 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
-ROW |52262 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
-ROW |52263 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52264 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
-ROW |52265 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
-ROW |52266 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
-ROW |52267 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |52268 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
-ROW |52269 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52270 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
-ROW |52271 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
-ROW |52272 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
-ROW |52273 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52274 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
-ROW |52275 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
-ROW |52276 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
-ROW |52277 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
-ROW |52278 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52279 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
-ROW |52280 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52281 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
-ROW |52282 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52283 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
-ROW |52284 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52285 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
-ROW |52286 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52287 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
-ROW |52288 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52289 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
-ROW |52290 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
-ROW |52291 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
-ROW |52292 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52293 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52294 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
-ROW |52295 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52296 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
-ROW |52297 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52298 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
-ROW |52299 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52300 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
-ROW |52301 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52302 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
-ROW |52303 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52304 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
-ROW |52305 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52306 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
-ROW |52307 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52308 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
-ROW |52309 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52310 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
-ROW |52311 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52312 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
-ROW |52313 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52314 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
-ROW |52315 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
-ROW |52316 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
-ROW |52317 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52318 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52319 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
-ROW |52320 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52321 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
-ROW |52322 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52323 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
-ROW |52324 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52325 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
-ROW |52326 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52327 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
-ROW |52328 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52329 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
-ROW |52330 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52331 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
-ROW |52332 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52333 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
-ROW |52334 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
-ROW |52335 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
-ROW |52336 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52337 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52338 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52339 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
-ROW |52340 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52341 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
-ROW |52342 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52343 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
-ROW |52344 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52345 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
-ROW |52346 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
-ROW |52347 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
-ROW |52348 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52349 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52350 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52351 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
-ROW |52352 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52353 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
-ROW |52354 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52355 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
-ROW |52356 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52357 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
-ROW |52358 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
-ROW |52359 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52360 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
-ROW |52361 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
-ROW |52362 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
-ROW |52363 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52364 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52365 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
-ROW |52366 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52367 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
-ROW |52368 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52369 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
-ROW |52370 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52371 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
-ROW |52372 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
-ROW |52373 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
-ROW |52374 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52375 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
-ROW |52376 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52377 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
-ROW |52378 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52379 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
-ROW |52380 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
-ROW |52381 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
-ROW |52382 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |52383 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52384 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52385 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
-ROW |52386 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
-ROW |52387 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
-ROW |52388 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
-ROW |52389 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
-ROW |52390 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52391 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
-ROW |52392 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
-ROW |52393 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
-ROW |52394 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |52395 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52396 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52397 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
-ROW |52398 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
-ROW |52399 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
-ROW |52400 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52401 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
-ROW |52402 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
-ROW |52403 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52404 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
-ROW |52405 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
-ROW |52406 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52407 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
-ROW |52408 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
-ROW |52409 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52410 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
-ROW |52411 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52412 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
-ROW |52413 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52414 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52415 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
-ROW |52416 |841 |28812 |0 |2 |F63100|0 |2 |0 |
-ROW |52417 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
-ROW |52418 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52419 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
-ROW |52420 |842 |28816 |0 |2 |F63100|0 |2 |0 |
-ROW |52421 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52422 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
-ROW |52423 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52424 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52425 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
-ROW |52426 |845 |28832 |0 |2 |F63100|0 |2 |0 |
-ROW |52427 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
-ROW |52428 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52429 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
-ROW |52430 |846 |28827 |0 |2 |F63100|0 |2 |0 |
-ROW |52431 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52432 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52433 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
-ROW |52434 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
-ROW |52435 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
-ROW |52436 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52437 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
-ROW |52438 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
-ROW |52439 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52440 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
-ROW |52441 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
-ROW |52442 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
-ROW |52443 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52444 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
-ROW |52445 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
-ROW |52446 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52447 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
-ROW |52448 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
-ROW |52449 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
-ROW |52450 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52451 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52452 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52453 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
-ROW |52454 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52455 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
-ROW |52456 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
-ROW |52457 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
-ROW |52458 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52459 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52460 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52461 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
-ROW |52462 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52463 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
-ROW |52464 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
-ROW |52465 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52466 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
-ROW |52467 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52468 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52469 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
-ROW |52470 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52471 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
-ROW |52472 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52473 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
-ROW |52474 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
-ROW |52475 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52476 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
-ROW |52477 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
-ROW |52478 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
-ROW |52479 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52480 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52481 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52482 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
-ROW |52483 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52484 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
-ROW |52485 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
-ROW |52486 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
-ROW |52487 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52488 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52489 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52490 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
-ROW |52491 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52492 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52493 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52494 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
-ROW |52495 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52496 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52497 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
-ROW |52498 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
-ROW |52499 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
-ROW |52500 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52501 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52502 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52503 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
-ROW |52504 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52505 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
-ROW |52506 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
-ROW |52507 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
-ROW |52508 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52509 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52510 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52511 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
-ROW |52512 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52513 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
-ROW |52514 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
-ROW |52515 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52516 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
-ROW |52517 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52518 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52519 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
-ROW |52520 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52521 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
-ROW |52522 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
-ROW |52523 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52524 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
-ROW |52525 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
-ROW |52526 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
-ROW |52527 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52528 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52529 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52530 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
-ROW |52531 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52532 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
-ROW |52533 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
-ROW |52534 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
-ROW |52535 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52536 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52537 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52538 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
-ROW |52539 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52540 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52541 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52542 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
-ROW |52543 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52544 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52545 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
-ROW |52546 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52547 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
-ROW |52548 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
-ROW |52549 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52550 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
-ROW |52551 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
-ROW |52552 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52553 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
-ROW |52554 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52555 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
-ROW |52556 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
-ROW |52557 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52558 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
-ROW |52559 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
-ROW |52560 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52561 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
-ROW |52562 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52563 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
-ROW |52564 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
-ROW |52565 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
-ROW |52566 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52567 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52568 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
-ROW |52569 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
-ROW |52570 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
-ROW |52571 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
-ROW |52572 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
-ROW |52573 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
-ROW |52574 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52575 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
-ROW |52576 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52577 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
-ROW |52578 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
-ROW |52579 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
-ROW |52580 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52581 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
-ROW |52582 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
-ROW |52583 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52584 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
-ROW |52585 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
-ROW |52586 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52587 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52588 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
-ROW |52589 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52590 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
-ROW |52591 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
-ROW |52592 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52593 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52594 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52595 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52596 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
-ROW |52597 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
-ROW |52598 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52599 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
-ROW |52600 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52601 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
-ROW |52602 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52603 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
-ROW |52604 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
-ROW |52605 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52606 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
-ROW |52607 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52608 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
-ROW |52609 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52610 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52611 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
-ROW |52612 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
-ROW |52613 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
-ROW |52614 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
-ROW |52615 |804 |28602 |0 |1 |990099|0 |2 |0 |
-ROW |52616 |804 |28606 |0 |2 |990000|0 |2 |0 |
-ROW |52617 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
-ROW |52618 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
-ROW |52619 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
-ROW |52620 |804 |28611 |0 |6 |003300|0 |2 |0 |
-ROW |52621 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
-ROW |52622 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
-ROW |52623 |804 |28604 |0 |9 |000099|0 |2 |0 |
-ROW |52624 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
-ROW |52625 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
-ROW |52626 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
-ROW |52627 |805 |28600 |0 |2 |990099|0 |2 |0 |
-ROW |52628 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
-ROW |52629 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
-ROW |52630 |805 |28614 |0 |5 |960000|0 |2 |0 |
-ROW |52631 |805 |28601 |0 |6 |009600|0 |2 |0 |
-ROW |52632 |805 |28603 |0 |7 |009999|0 |2 |0 |
-ROW |52633 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
-ROW |52634 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
-ROW |52635 |806 |28595 |0 |0 |00C800|0 |2 |0 |
-ROW |52636 |806 |28586 |0 |1 |C80000|0 |2 |0 |
-ROW |52637 |1444 |33015 |0 |1 |C80000|0 |2 |0 |
-ROW |52638 |1444 |33014 |0 |2 |00C800|0 |2 |0 |
-ROW |52639 |797 |28546 |0 |0 |C80000|0 |2 |0 |
-ROW |52640 |797 |28545 |0 |1 |00C800|0 |2 |0 |
-ROW |52641 |798 |28551 |0 |0 |009900|0 |2 |0 |
-ROW |52642 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
-ROW |52643 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
-ROW |52644 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
-ROW |52645 |798 |28544 |0 |4 |999900|0 |2 |0 |
-ROW |52646 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
-ROW |52647 |799 |28581 |0 |1 |990099|0 |2 |0 |
-ROW |52648 |799 |28574 |0 |2 |990000|0 |2 |0 |
-ROW |52649 |799 |28571 |0 |3 |0000EE|0 |2 |0 |
-ROW |52650 |799 |28565 |0 |4 |FF33FF|0 |2 |0 |
-ROW |52651 |799 |28570 |0 |5 |009600|0 |2 |0 |
-ROW |52652 |799 |28569 |0 |6 |003300|0 |2 |0 |
-ROW |52653 |799 |28577 |0 |7 |CCCC00|0 |2 |0 |
-ROW |52654 |799 |28552 |0 |8 |33FFFF|0 |2 |0 |
-ROW |52655 |799 |28573 |0 |9 |DD0000|0 |2 |0 |
-ROW |52656 |799 |28579 |0 |10 |000099|0 |2 |0 |
-ROW |52657 |799 |28559 |0 |11 |00FF00|0 |2 |0 |
-ROW |52658 |799 |33017 |0 |12 |5A2B57|0 |2 |0 |
-ROW |52659 |800 |28572 |0 |1 |00EE00|0 |2 |0 |
-ROW |52660 |800 |28566 |0 |2 |0000EE|0 |2 |0 |
-ROW |52661 |800 |28568 |0 |3 |FFAA00|0 |2 |0 |
-ROW |52662 |800 |28561 |0 |4 |00EEEE|0 |2 |0 |
-ROW |52663 |800 |28564 |0 |5 |990099|0 |2 |0 |
-ROW |52664 |800 |28567 |0 |6 |EE0000|0 |2 |0 |
-ROW |52665 |800 |28578 |0 |7 |FF66FF|0 |2 |0 |
-ROW |52666 |800 |28580 |0 |8 |009999|0 |2 |0 |
-ROW |52667 |800 |28562 |0 |9 |BBBB00|0 |2 |0 |
-ROW |52668 |800 |28563 |0 |10 |AA0000|0 |2 |0 |
-ROW |52669 |800 |28575 |0 |11 |990000|0 |2 |0 |
-ROW |52670 |800 |28576 |0 |12 |008800|0 |2 |0 |
-ROW |52671 |800 |28582 |0 |13 |80B0E0|0 |2 |0 |
-ROW |52672 |800 |28583 |0 |14 |4080B0|0 |2 |0 |
-ROW |52673 |800 |29821 |0 |15 |8000FF|0 |2 |0 |
-ROW |52674 |800 |33016 |0 |16 |2B5429|0 |2 |0 |
-ROW |52675 |801 |28560 |0 |0 |008800|0 |2 |0 |
-ROW |52676 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
-ROW |52677 |802 |28550 |5 |0 |00C800|0 |2 |0 |
-ROW |52678 |802 |28540 |0 |1 |F63100|0 |2 |0 |
-ROW |52679 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
-ROW |52680 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
-ROW |52681 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
-ROW |52682 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
-ROW |52683 |530 |23345 |0 |1 |990099|0 |2 |0 |
-ROW |52684 |530 |23348 |0 |2 |990000|0 |2 |0 |
-ROW |52685 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
-ROW |52686 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
-ROW |52687 |530 |23356 |0 |5 |007700|0 |2 |0 |
-ROW |52688 |530 |23354 |0 |6 |003300|0 |2 |0 |
-ROW |52689 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
-ROW |52690 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
-ROW |52691 |530 |23344 |0 |9 |000099|0 |7 |0 |
-ROW |52692 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
-ROW |52693 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
-ROW |52694 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
-ROW |52695 |531 |23347 |0 |2 |990099|0 |2 |0 |
-ROW |52696 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
-ROW |52697 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
-ROW |52698 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
-ROW |52699 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
-ROW |52700 |531 |25369 |0 |7 |009999|0 |2 |0 |
-ROW |52701 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
-ROW |52702 |531 |28618 |0 |9 |990000|0 |2 |0 |
-ROW |52703 |531 |28619 |0 |10 |008800|0 |2 |0 |
-ROW |52704 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
-ROW |52705 |807 |28617 |0 |0 |008800|0 |2 |0 |
-ROW |52706 |532 |23340 |5 |0 |00C800|0 |2 |0 |
-ROW |52707 |532 |23358 |5 |1 |C80000|1 |2 |0 |
-ROW |52708 |1445 |33021 |0 |1 |C80000|0 |2 |0 |
-ROW |52709 |1445 |33020 |0 |2 |00C800|0 |2 |0 |
-ROW |52710 |1446 |33025 |0 |1 |C80000|0 |2 |0 |
-ROW |52711 |1446 |33024 |0 |2 |00C800|0 |2 |0 |
-ROW |52712 |527 |22199 |0 |0 |C80000|0 |2 |0 |
-ROW |52713 |527 |22196 |0 |1 |00C800|0 |2 |0 |
-ROW |52714 |528 |23628 |0 |0 |C80000|0 |2 |0 |
-ROW |52715 |528 |23625 |0 |1 |00C800|0 |2 |0 |
-ROW |52716 |410 |22185 |0 |0 |009900|0 |2 |0 |
-ROW |52717 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
-ROW |52718 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
-ROW |52719 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
-ROW |52720 |410 |22191 |0 |4 |999900|0 |2 |0 |
-ROW |52721 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
-ROW |52722 |520 |23276 |0 |0 |009900|0 |2 |0 |
-ROW |52723 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
-ROW |52724 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
-ROW |52725 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
-ROW |52726 |520 |23620 |0 |4 |999900|0 |2 |0 |
-ROW |52727 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
-ROW |52728 |404 |22404 |0 |1 |990099|0 |2 |0 |
-ROW |52729 |404 |22399 |0 |2 |990000|0 |2 |0 |
-ROW |52730 |404 |22416 |0 |3 |0000EE|0 |2 |0 |
-ROW |52731 |404 |22430 |0 |4 |FF33FF|0 |2 |0 |
-ROW |52732 |404 |22418 |0 |5 |009600|0 |2 |0 |
-ROW |52733 |404 |22402 |0 |6 |003300|0 |2 |0 |
-ROW |52734 |404 |22420 |0 |7 |CCCC00|0 |2 |0 |
-ROW |52735 |404 |22400 |0 |8 |33FFFF|0 |2 |0 |
-ROW |52736 |404 |22689 |0 |9 |DD0000|0 |2 |0 |
-ROW |52737 |404 |23171 |0 |10 |000099|0 |2 |0 |
-ROW |52738 |404 |22401 |0 |11 |00FF00|0 |2 |0 |
-ROW |52739 |404 |33023 |0 |12 |5A2B57|0 |2 |0 |
-ROW |52740 |518 |23269 |0 |1 |990099|0 |2 |0 |
-ROW |52741 |518 |23264 |0 |2 |990000|0 |2 |0 |
-ROW |52742 |518 |23261 |0 |3 |0000EE|0 |2 |0 |
-ROW |52743 |518 |23255 |0 |4 |FF33FF|0 |2 |0 |
-ROW |52744 |518 |23260 |0 |5 |009600|0 |2 |0 |
-ROW |52745 |518 |23259 |0 |6 |003300|0 |2 |0 |
-ROW |52746 |518 |23265 |0 |7 |CCCC00|0 |2 |0 |
-ROW |52747 |518 |23270 |0 |8 |33FFFF|0 |2 |0 |
-ROW |52748 |518 |23262 |0 |9 |DD0000|0 |2 |0 |
-ROW |52749 |518 |23267 |0 |10 |000099|0 |2 |0 |
-ROW |52750 |518 |23328 |0 |11 |00FF00|0 |2 |0 |
-ROW |52751 |518 |33027 |0 |12 |5A2B57|0 |2 |0 |
-ROW |52752 |406 |22426 |0 |1 |00EE00|0 |2 |0 |
-ROW |52753 |406 |22422 |0 |2 |0000EE|0 |2 |0 |
-ROW |52754 |406 |22408 |0 |3 |FFAA00|0 |2 |0 |
-ROW |52755 |406 |22424 |0 |4 |00EEEE|0 |2 |0 |
-ROW |52756 |406 |22412 |0 |5 |990099|0 |2 |0 |
-ROW |52757 |406 |22406 |0 |6 |EE0000|0 |2 |0 |
-ROW |52758 |406 |22414 |0 |7 |FF66FF|0 |2 |0 |
-ROW |52759 |406 |23663 |0 |8 |009999|0 |2 |0 |
-ROW |52760 |406 |25366 |0 |9 |BBBB00|0 |2 |0 |
-ROW |52761 |406 |25370 |0 |10 |AA0000|0 |2 |0 |
-ROW |52762 |406 |25665 |0 |11 |990000|0 |2 |0 |
-ROW |52763 |406 |25666 |0 |12 |008800|0 |2 |0 |
-ROW |52764 |406 |28535 |0 |13 |80B0E0|0 |2 |0 |
-ROW |52765 |406 |28537 |0 |14 |4080B0|0 |2 |0 |
-ROW |52766 |406 |29822 |0 |15 |8000FF|0 |2 |0 |
-ROW |52767 |406 |33022 |0 |16 |2B5429|0 |2 |0 |
-ROW |52768 |517 |23268 |0 |1 |00EE00|0 |2 |0 |
-ROW |52769 |517 |23256 |0 |2 |0000EE|0 |2 |0 |
-ROW |52770 |517 |23258 |0 |3 |FFAA00|0 |2 |0 |
-ROW |52771 |517 |23252 |0 |4 |00EEEE|0 |2 |0 |
-ROW |52772 |517 |23253 |0 |5 |990099|0 |2 |0 |
-ROW |52773 |517 |23257 |0 |6 |EE0000|0 |2 |0 |
-ROW |52774 |517 |23266 |0 |7 |FF66FF|0 |2 |0 |
-ROW |52775 |517 |23664 |0 |8 |009999|0 |2 |0 |
-ROW |52776 |517 |25367 |0 |9 |BBBB00|0 |2 |0 |
-ROW |52777 |517 |25371 |0 |10 |AA0000|0 |2 |0 |
-ROW |52778 |517 |25667 |0 |11 |990000|0 |2 |0 |
-ROW |52779 |517 |25668 |0 |12 |008800|0 |2 |0 |
-ROW |52780 |517 |28536 |0 |13 |80B0E0|0 |2 |0 |
-ROW |52781 |517 |28538 |0 |14 |4080B0|0 |2 |0 |
-ROW |52782 |517 |29823 |0 |15 |8000FF|0 |2 |0 |
-ROW |52783 |517 |33026 |0 |16 |2B5429|0 |2 |0 |
-ROW |52784 |788 |28248 |0 |0 |008800|0 |2 |0 |
-ROW |52785 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
-ROW |52786 |789 |28249 |0 |0 |008800|0 |2 |0 |
-ROW |52787 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
-ROW |52788 |392 |22187 |5 |0 |00C800|0 |2 |0 |
-ROW |52789 |392 |23251 |5 |1 |C80000|1 |2 |0 |
-ROW |52790 |519 |23277 |5 |0 |00C800|0 |2 |0 |
-ROW |52791 |519 |23272 |5 |1 |C80000|1 |2 |0 |
-ROW |52792 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
-ROW |52793 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
-ROW |52794 |473 |22950 |0 |0 |C80000|0 |2 |2 |
-ROW |52795 |473 |22948 |0 |1 |00C800|0 |2 |0 |
-ROW |52796 |471 |22924 |0 |0 |009900|0 |2 |0 |
-ROW |52797 |471 |22920 |0 |1 |000099|0 |2 |0 |
-ROW |52798 |469 |22922 |0 |0 |009900|0 |2 |0 |
-ROW |52799 |469 |22923 |0 |1 |000099|0 |2 |0 |
-ROW |52800 |469 |22921 |0 |2 |990000|0 |2 |0 |
-ROW |52801 |498 |23109 |0 |0 |009999|0 |2 |0 |
-ROW |52802 |498 |23112 |0 |1 |990099|0 |2 |0 |
-ROW |52803 |498 |23115 |0 |2 |999900|0 |2 |0 |
-ROW |52804 |498 |23113 |0 |3 |990000|0 |2 |0 |
-ROW |52805 |498 |23114 |0 |4 |000099|0 |2 |0 |
-ROW |52806 |498 |23110 |0 |5 |009900|0 |2 |0 |
-ROW |52807 |540 |22942 |5 |0 |00C800|0 |2 |0 |
-ROW |52808 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
-ROW |52809 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
-ROW |52810 |467 |22910 |0 |0 |C80000|0 |2 |2 |
-ROW |52811 |467 |22908 |0 |1 |00C800|0 |2 |0 |
-ROW |52812 |465 |22884 |0 |0 |009900|0 |2 |0 |
-ROW |52813 |465 |22880 |0 |1 |000099|0 |2 |0 |
-ROW |52814 |463 |22882 |0 |0 |009900|0 |2 |0 |
-ROW |52815 |463 |22883 |0 |1 |000099|0 |2 |0 |
-ROW |52816 |463 |22881 |0 |2 |990000|0 |2 |0 |
-ROW |52817 |462 |22886 |1 |0 |009999|0 |2 |0 |
-ROW |52818 |462 |22888 |1 |1 |990099|0 |2 |0 |
-ROW |52819 |462 |22891 |1 |2 |990000|0 |2 |0 |
-ROW |52820 |462 |22892 |1 |3 |000099|0 |2 |0 |
-ROW |52821 |462 |22885 |1 |4 |009900|0 |2 |0 |
-ROW |52822 |541 |22902 |5 |0 |00C800|0 |2 |0 |
-ROW |52823 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
-ROW |52824 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
-ROW |52825 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
-ROW |52826 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
-ROW |52827 |479 |22990 |0 |0 |C80000|0 |2 |2 |
-ROW |52828 |479 |22988 |0 |1 |00C800|0 |2 |0 |
-ROW |52829 |475 |22962 |0 |0 |009900|0 |2 |0 |
-ROW |52830 |475 |22963 |0 |1 |000099|0 |2 |0 |
-ROW |52831 |475 |22961 |0 |2 |990000|0 |2 |0 |
-ROW |52832 |474 |22968 |1 |0 |990099|0 |2 |0 |
-ROW |52833 |474 |22971 |1 |1 |990000|0 |2 |0 |
-ROW |52834 |474 |22972 |1 |2 |000099|0 |2 |0 |
-ROW |52835 |474 |22965 |1 |3 |009900|0 |2 |0 |
-ROW |52836 |542 |22982 |5 |0 |00C800|0 |2 |0 |
-ROW |52837 |491 |23070 |0 |0 |C80000|0 |2 |2 |
-ROW |52838 |491 |23068 |0 |1 |00C800|0 |2 |0 |
-ROW |52839 |487 |23042 |0 |0 |009900|0 |2 |0 |
-ROW |52840 |487 |23043 |0 |1 |000099|0 |2 |0 |
-ROW |52841 |487 |23041 |0 |2 |990000|0 |2 |0 |
-ROW |52842 |543 |23062 |5 |0 |00C800|0 |2 |0 |
-ROW |52843 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
-ROW |52844 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
-ROW |52845 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
-ROW |52846 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
-ROW |52847 |461 |22870 |0 |0 |C80000|0 |2 |2 |
-ROW |52848 |461 |22868 |0 |1 |00C800|0 |2 |0 |
-ROW |52849 |459 |22844 |0 |0 |009900|0 |2 |0 |
-ROW |52850 |459 |22840 |0 |1 |000099|0 |2 |0 |
-ROW |52851 |457 |22842 |0 |0 |009900|0 |2 |0 |
-ROW |52852 |457 |22843 |0 |1 |000099|0 |2 |0 |
-ROW |52853 |457 |22841 |0 |2 |990000|0 |2 |0 |
-ROW |52854 |456 |22846 |1 |0 |009999|0 |2 |0 |
-ROW |52855 |456 |22848 |1 |1 |990099|0 |2 |0 |
-ROW |52856 |456 |22851 |1 |2 |990000|0 |2 |0 |
-ROW |52857 |456 |22852 |1 |3 |000099|0 |2 |0 |
-ROW |52858 |456 |22845 |1 |4 |009900|0 |2 |0 |
-ROW |52859 |544 |22862 |5 |0 |00C800|0 |2 |0 |
-ROW |52860 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
-ROW |52861 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
-ROW |52862 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
-ROW |52863 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
-ROW |52864 |485 |23030 |0 |0 |C80000|0 |2 |2 |
-ROW |52865 |485 |23028 |0 |1 |00C800|0 |2 |0 |
-ROW |52866 |483 |23004 |0 |0 |009900|0 |2 |0 |
-ROW |52867 |483 |23000 |0 |1 |000099|0 |2 |0 |
-ROW |52868 |481 |23002 |0 |0 |009900|0 |2 |0 |
-ROW |52869 |481 |23003 |0 |1 |000099|0 |2 |0 |
-ROW |52870 |481 |23001 |0 |2 |990000|0 |2 |0 |
-ROW |52871 |480 |23007 |1 |0 |999900|0 |2 |0 |
-ROW |52872 |480 |23011 |1 |1 |990000|0 |2 |0 |
-ROW |52873 |480 |23012 |1 |2 |000099|0 |2 |0 |
-ROW |52874 |480 |23005 |1 |3 |009900|0 |2 |0 |
-ROW |52875 |545 |23022 |5 |0 |00C800|0 |2 |0 |
-ROW |52876 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
-ROW |52877 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
-ROW |52878 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
-ROW |52879 |651 |26927 |0 |1 |000000|1 |2 |0 |
-ROW |52880 |652 |26925 |2 |0 |880000|0 |2 |0 |
-ROW |52881 |652 |26932 |0 |1 |009900|0 |2 |0 |
-ROW |52882 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
-ROW |52883 |652 |26931 |0 |3 |000000|0 |2 |0 |
-ROW |52884 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
-ROW |52885 |652 |26926 |0 |5 |777700|0 |2 |0 |
-ROW |52886 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
-ROW |52887 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
-ROW |52888 |653 |26935 |0 |2 |000000|1 |2 |0 |
-ROW |52889 |653 |26936 |4 |3 |000000|1 |2 |0 |
-ROW |52890 |654 |26934 |2 |0 |880000|0 |2 |0 |
-ROW |52891 |654 |26939 |0 |1 |009900|0 |2 |0 |
-ROW |52892 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
-ROW |52893 |654 |26938 |0 |3 |000000|0 |2 |0 |
-ROW |52894 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
-ROW |52895 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52896 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
-ROW |52897 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
-ROW |52898 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
-ROW |52899 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52900 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
-ROW |52901 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52902 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
-ROW |52903 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52904 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
-ROW |52905 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52906 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
-ROW |52907 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
-ROW |52908 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
-ROW |52909 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52910 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52911 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52912 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
-ROW |52913 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52914 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
-ROW |52915 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52916 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
-ROW |52917 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52918 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
-ROW |52919 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
-ROW |52920 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
-ROW |52921 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52922 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
-ROW |52923 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52924 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
-ROW |52925 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52926 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
-ROW |52927 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
-ROW |52928 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
-ROW |52929 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52930 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52931 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
-ROW |52932 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52933 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
-ROW |52934 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
-ROW |52935 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
-ROW |52936 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |52937 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52938 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
-ROW |52939 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
-ROW |52940 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52941 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
-ROW |52942 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52943 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
-ROW |52944 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52945 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
-ROW |52946 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
-ROW |52947 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
-ROW |52948 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |52949 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
-ROW |52950 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
-ROW |52951 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
-ROW |52952 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52953 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
-ROW |52954 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
-ROW |52955 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52956 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
-ROW |52957 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52958 |1171 |30840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52959 |1171 |30845 |0 |1 |2774A4|0 |2 |0 |
-ROW |52960 |1171 |30842 |0 |2 |F63100|0 |2 |0 |
-ROW |52961 |1171 |30873 |2 |3 |A54F10|1 |2 |0 |
-ROW |52962 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52963 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
-ROW |52964 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
-ROW |52965 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
-ROW |52966 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52967 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
-ROW |52968 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
-ROW |52969 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
-ROW |52970 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52971 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
-ROW |52972 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
-ROW |52973 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52974 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
-ROW |52975 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52976 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
-ROW |52977 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52978 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
-ROW |52979 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52980 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
-ROW |52981 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52982 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
-ROW |52983 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
-ROW |52984 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
-ROW |52985 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52986 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
-ROW |52987 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
-ROW |52988 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52989 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
-ROW |52990 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52991 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
-ROW |52992 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
-ROW |52993 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52994 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
-ROW |52995 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52996 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
-ROW |52997 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
-ROW |52998 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
-ROW |52999 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53000 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
-ROW |53001 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
-ROW |53002 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
-ROW |53003 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53004 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53005 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
-ROW |53006 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53007 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
-ROW |53008 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
-ROW |53009 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
-ROW |53010 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53011 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53012 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
-ROW |53013 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53014 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
-ROW |53015 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53016 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
-ROW |53017 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
-ROW |53018 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
-ROW |53019 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53020 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53021 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
-ROW |53022 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
-ROW |53023 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53024 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
-ROW |53025 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53026 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
-ROW |53027 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
-ROW |53028 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53029 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
-ROW |53030 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
-ROW |53031 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53032 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
-ROW |53033 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
-ROW |53034 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
-ROW |53035 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53036 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
-ROW |53037 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
-ROW |53038 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
-ROW |53039 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53040 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
-ROW |53041 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53042 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
-ROW |53043 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
-ROW |53044 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
-ROW |53045 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53046 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53047 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53048 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
-ROW |53049 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
-ROW |53050 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53051 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
-ROW |53052 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
-ROW |53053 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
-ROW |53054 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53055 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
-ROW |53056 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
-ROW |53057 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
-ROW |53058 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53059 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53060 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
-ROW |53061 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
-ROW |53062 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
-ROW |53063 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53064 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
-ROW |53065 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
-ROW |53066 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53067 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
-ROW |53068 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53069 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
-ROW |53070 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
-ROW |53071 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
-ROW |53072 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
-ROW |53073 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
-ROW |53074 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53075 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
-ROW |53076 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53077 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
-ROW |53078 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
-ROW |53079 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53080 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53081 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
-ROW |53082 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53083 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
-ROW |53084 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
-ROW |53085 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
-ROW |53086 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53087 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53088 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53089 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
-ROW |53090 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
-ROW |53091 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
-ROW |53092 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53093 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
-ROW |53094 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53095 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
-ROW |53096 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53097 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
-ROW |53098 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53099 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
-ROW |53100 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
-ROW |53101 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
-ROW |53102 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53103 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53104 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
-ROW |53105 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
-ROW |53106 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
-ROW |53107 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53108 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53109 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
-ROW |53110 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53111 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
-ROW |53112 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53113 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
-ROW |53114 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53115 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53116 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
-ROW |53117 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
-ROW |53118 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
-ROW |53119 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53120 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53121 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53122 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53123 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53124 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
-ROW |53125 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
-ROW |53126 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
-ROW |53127 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53128 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
-ROW |53129 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53130 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
-ROW |53131 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53132 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
-ROW |53133 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
-ROW |53134 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
-ROW |53135 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53136 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
-ROW |53137 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53138 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
-ROW |53139 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
-ROW |53140 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
-ROW |53141 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53142 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
-ROW |53143 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
-ROW |53144 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
-ROW |53145 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53146 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
-ROW |53147 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
-ROW |53148 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
-ROW |53149 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53150 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
-ROW |53151 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
-ROW |53152 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53153 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
-ROW |53154 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
-ROW |53155 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
-ROW |53156 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53157 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
-ROW |53158 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53159 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
-ROW |53160 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
-ROW |53161 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
-ROW |53162 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53163 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
-ROW |53164 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
-ROW |53165 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
-ROW |53166 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53167 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
-ROW |53168 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
-ROW |53169 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
-ROW |53170 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53171 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
-ROW |53172 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
-ROW |53173 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53174 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
-ROW |53175 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
-ROW |53176 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
-ROW |53177 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53178 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
-ROW |53179 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53180 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
-ROW |53181 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
-ROW |53182 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
-ROW |53183 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53184 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
-ROW |53185 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
-ROW |53186 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
-ROW |53187 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53188 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
-ROW |53189 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
-ROW |53190 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
-ROW |53191 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53192 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
-ROW |53193 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
-ROW |53194 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53195 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
-ROW |53196 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
-ROW |53197 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
-ROW |53198 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53199 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
-ROW |53200 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53201 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
-ROW |53202 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
-ROW |53203 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53204 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
-ROW |53205 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53206 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
-ROW |53207 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
-ROW |53208 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53209 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
-ROW |53210 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53211 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
-ROW |53212 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53213 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
-ROW |53214 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53215 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
-ROW |53216 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
-ROW |53217 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
-ROW |53218 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53219 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53220 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
-ROW |53221 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
-ROW |53222 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
-ROW |53223 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53224 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53225 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53226 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
-ROW |53227 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53228 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
-ROW |53229 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
-ROW |53230 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53231 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
-ROW |53232 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53233 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
-ROW |53234 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
-ROW |53235 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53236 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
-ROW |53237 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53238 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
-ROW |53239 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53240 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
-ROW |53241 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53242 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
-ROW |53243 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
-ROW |53244 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
-ROW |53245 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53246 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53247 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
-ROW |53248 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
-ROW |53249 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
-ROW |53250 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53251 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53252 |1380 |32423 |0 |0 |66BB6A|0 |2 |0 |
-ROW |53253 |1380 |32421 |0 |1 |42A5F5|0 |2 |0 |
-ROW |53254 |1381 |32405 |0 |0 |66BB6A|0 |2 |0 |
-ROW |53255 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53256 |1382 |32408 |0 |1 |F63100|0 |2 |0 |
-ROW |53257 |1382 |32422 |0 |2 |2774A4|0 |2 |0 |
-ROW |53258 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
-ROW |53259 |1383 |32409 |0 |0 |EC407A|0 |2 |0 |
-ROW |53260 |1384 |32419 |0 |0 |4CAF50|1 |2 |0 |
-ROW |53261 |1384 |32416 |0 |1 |03A9F4|1 |2 |0 |
-ROW |53262 |1384 |32413 |0 |2 |9C27B0|1 |2 |0 |
-ROW |53263 |1384 |32418 |5 |3 |81C784|0 |2 |0 |
-ROW |53264 |1384 |32415 |5 |4 |90CAF9|0 |2 |0 |
-ROW |53265 |1384 |32412 |5 |5 |CE93D8|0 |2 |0 |
-ROW |53266 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53267 |1385 |32417 |0 |1 |F63100|0 |2 |0 |
-ROW |53268 |1385 |32414 |0 |2 |2774A4|0 |2 |0 |
-ROW |53269 |1386 |32433 |5 |0 |66BB6A|0 |2 |0 |
-ROW |53270 |1386 |32432 |0 |1 |42A5F5|1 |2 |0 |
-ROW |53271 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53272 |1387 |32430 |0 |1 |F63100|0 |2 |0 |
-ROW |53273 |1387 |32429 |0 |2 |2774A4|0 |2 |0 |
-ROW |53274 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
-ROW |53275 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53276 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53277 |1388 |32391 |0 |1 |F63100|1 |2 |0 |
-ROW |53278 |1388 |32387 |0 |2 |2774A4|1 |2 |0 |
-ROW |53279 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
-ROW |53280 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53281 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53282 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53283 |1389 |32392 |0 |1 |F63100|0 |2 |0 |
-ROW |53284 |1389 |32394 |0 |2 |2774A4|1 |2 |0 |
-ROW |53285 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
-ROW |53286 |1390 |32401 |5 |0 |C8E6C9|1 |2 |0 |
-ROW |53287 |1390 |32402 |0 |1 |6C59DC|0 |2 |0 |
-ROW |53288 |1390 |32397 |0 |2 |1A7C11|1 |2 |0 |
-ROW |53289 |1390 |32398 |0 |3 |F63100|1 |2 |0 |
-ROW |53290 |1390 |32399 |0 |4 |2774A4|1 |2 |0 |
-ROW |53291 |1390 |32400 |0 |5 |A54F10|1 |2 |0 |
-ROW |53292 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
-ROW |53293 |1391 |32367 |5 |0 |A5D6A7|0 |2 |0 |
-ROW |53294 |1391 |32366 |0 |1 |039BE5|1 |2 |0 |
-ROW |53295 |1392 |32370 |0 |0 |42A5F5|0 |2 |0 |
-ROW |53296 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53297 |1393 |32381 |0 |1 |F63100|1 |2 |0 |
-ROW |53298 |1393 |32383 |0 |2 |2774A4|1 |2 |0 |
-ROW |53299 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
-ROW |53300 |1394 |32377 |0 |0 |66BB6A|0 |2 |0 |
-ROW |53301 |1394 |32374 |0 |1 |03A9F4|1 |2 |0 |
-ROW |53302 |1395 |32403 |0 |0 |29B6F6|0 |2 |0 |
-ROW |53303 |1395 |32385 |0 |1 |AB47BC|1 |2 |0 |
-ROW |53304 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53305 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
-ROW |53306 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
-ROW |53307 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
-ROW |53308 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53309 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53310 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53311 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
-ROW |53312 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
-ROW |53313 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
-ROW |53314 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53315 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53316 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
-ROW |53317 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
-ROW |53318 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
-ROW |53319 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53320 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53321 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53322 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
-ROW |53323 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
-ROW |53324 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
-ROW |53325 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
-ROW |53326 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
-ROW |53327 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
-ROW |53328 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53329 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53330 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
-ROW |53331 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
-ROW |53332 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53333 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
-ROW |53334 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53335 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
-ROW |53336 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53337 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53338 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53339 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
-ROW |53340 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53341 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53342 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
-ROW |53343 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
-ROW |53344 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
-ROW |53345 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53346 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
-ROW |53347 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53348 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
-ROW |53349 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53350 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
-ROW |53351 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
-ROW |53352 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53353 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53354 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
-ROW |53355 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53356 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
-ROW |53357 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53358 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53359 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53360 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53361 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53363 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53364 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53365 |1065 |30161 |0 |0 |969696|0 |9 |2 |
-ROW |53366 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
-ROW |53367 |1066 |30167 |0 |0 |969696|0 |9 |2 |
-ROW |53368 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
-ROW |53371 |1068 |30179 |0 |0 |969696|0 |9 |2 |
-ROW |53372 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
-ROW |53373 |1069 |30185 |0 |0 |969696|0 |9 |2 |
-ROW |53374 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
-ROW |53375 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53376 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53378 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53379 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53380 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53381 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
-ROW |53382 |741 |27083 |0 |2 |F63100|1 |2 |0 |
-ROW |53383 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
-ROW |53384 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53385 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53386 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53387 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
-ROW |53388 |742 |27624 |0 |2 |F63100|1 |2 |0 |
-ROW |53389 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
-ROW |53390 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53391 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53392 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53393 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
-ROW |53394 |743 |27981 |0 |2 |F63100|1 |2 |0 |
-ROW |53395 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
-ROW |53396 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53397 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53398 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53399 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
-ROW |53400 |740 |28010 |0 |2 |F63100|1 |2 |0 |
-ROW |53401 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
-ROW |53402 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53403 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53404 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53405 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
-ROW |53406 |745 |27103 |0 |2 |F63100|1 |2 |0 |
-ROW |53407 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
-ROW |53408 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53409 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53410 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53411 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
-ROW |53412 |746 |27185 |0 |2 |F63100|1 |2 |0 |
-ROW |53413 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
-ROW |53414 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53415 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53416 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53417 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
-ROW |53418 |747 |27220 |0 |2 |F63100|1 |2 |0 |
-ROW |53419 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
-ROW |53420 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53421 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53422 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53423 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
-ROW |53424 |748 |27256 |0 |2 |F63100|1 |2 |0 |
-ROW |53425 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
-ROW |53426 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53427 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53428 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53429 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
-ROW |53430 |749 |27277 |0 |2 |F63100|1 |2 |0 |
-ROW |53431 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
-ROW |53432 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53433 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53434 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53435 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
-ROW |53436 |750 |27326 |0 |2 |F63100|1 |2 |0 |
-ROW |53437 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
-ROW |53438 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53439 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53440 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53441 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
-ROW |53442 |752 |27455 |0 |2 |F63100|1 |2 |0 |
-ROW |53443 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
-ROW |53444 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53445 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53446 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53447 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
-ROW |53448 |753 |27491 |0 |2 |F63100|1 |2 |0 |
-ROW |53449 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
-ROW |53450 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53451 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53452 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53453 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
-ROW |53454 |754 |27525 |0 |2 |F63100|1 |2 |0 |
-ROW |53455 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
-ROW |53456 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53457 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53458 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53459 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
-ROW |53460 |755 |27561 |0 |2 |F63100|1 |2 |0 |
-ROW |53461 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
-ROW |53462 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53463 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53464 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53465 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
-ROW |53466 |756 |27647 |0 |2 |F63100|1 |2 |0 |
-ROW |53467 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
-ROW |53468 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53469 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53470 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53471 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
-ROW |53472 |758 |27727 |0 |2 |F63100|1 |2 |0 |
-ROW |53473 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
-ROW |53474 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53475 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53476 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53477 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
-ROW |53478 |759 |27761 |0 |2 |F63100|1 |2 |0 |
-ROW |53479 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
-ROW |53480 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53481 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53482 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53483 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
-ROW |53484 |760 |27793 |0 |2 |F63100|1 |2 |0 |
-ROW |53485 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
-ROW |53486 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53487 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53488 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53489 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
-ROW |53490 |762 |27877 |0 |2 |F63100|1 |2 |0 |
-ROW |53491 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
-ROW |53492 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53493 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53494 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53495 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
-ROW |53496 |763 |27914 |0 |2 |F63100|1 |2 |0 |
-ROW |53497 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
-ROW |53498 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53499 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53500 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53501 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
-ROW |53502 |764 |27949 |0 |2 |F63100|1 |2 |0 |
-ROW |53503 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
-ROW |53504 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53505 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53506 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53507 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
-ROW |53508 |773 |28123 |0 |2 |F63100|1 |2 |0 |
-ROW |53509 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
-ROW |53510 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53511 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53518 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53519 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
-ROW |53520 |785 |28228 |0 |2 |F63100|1 |2 |0 |
-ROW |53521 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
-ROW |53522 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53523 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53524 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53525 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
-ROW |53526 |790 |28298 |0 |2 |F63100|1 |2 |0 |
-ROW |53527 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
-ROW |53528 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53529 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53530 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53531 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
-ROW |53532 |865 |28973 |0 |2 |F63100|1 |2 |0 |
-ROW |53533 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
-ROW |53534 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53535 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53536 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53537 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
-ROW |53538 |766 |27123 |0 |2 |F63100|1 |2 |0 |
-ROW |53539 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
-ROW |53540 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53541 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53542 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53543 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
-ROW |53544 |886 |29082 |0 |2 |F63100|1 |2 |0 |
-ROW |53545 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
-ROW |53546 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53547 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53548 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53549 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53550 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
-ROW |53551 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53552 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53553 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53554 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53555 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53556 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53557 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53558 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53559 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53560 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53561 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53562 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53563 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
-ROW |53564 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
-ROW |53565 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
-ROW |53566 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53567 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53568 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53569 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53570 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53571 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
-ROW |53572 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
-ROW |53573 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
-ROW |53574 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53575 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53576 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53577 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53578 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53579 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
-ROW |53580 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
-ROW |53581 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
-ROW |53582 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53583 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53584 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53585 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53586 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53587 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
-ROW |53588 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
-ROW |53589 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
-ROW |53590 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53591 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53592 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53593 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53594 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53595 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
-ROW |53596 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
-ROW |53597 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
-ROW |53598 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53599 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53600 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53601 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53602 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53603 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53604 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53605 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53606 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53607 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53608 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53609 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53610 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53611 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53612 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53613 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53614 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53615 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53616 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53617 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
-ROW |53618 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53619 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53620 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53621 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53622 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53623 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
-ROW |53624 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53625 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53626 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53627 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53628 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53629 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53630 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53631 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
-ROW |53632 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
-ROW |53633 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
-ROW |53634 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53635 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53636 |1565 |34174 |0 |0 |969696|0 |9 |2 |
-ROW |53637 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
-ROW |53638 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53639 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53640 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53641 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53642 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
-ROW |53643 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
-ROW |53644 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
-ROW |53645 |1052 |27907 |0 |0 |969696|0 |9 |2 |
-ROW |53646 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
-ROW |53647 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53648 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53649 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
-ROW |53650 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53651 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
-ROW |53652 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
-ROW |53653 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53654 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
-ROW |53655 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53656 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
-ROW |53657 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
-ROW |53658 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53659 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
-ROW |53660 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53661 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53662 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
-ROW |53663 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53664 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
-ROW |53665 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
-ROW |53666 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53667 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
-ROW |53668 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53669 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
-ROW |53670 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
-ROW |53671 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53672 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
-ROW |53673 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53674 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
-ROW |53675 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
-ROW |53676 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53677 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53678 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53679 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53680 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53681 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
-ROW |53682 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
-ROW |53683 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53684 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53685 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53686 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
-ROW |53687 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53688 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53689 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
-ROW |53690 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
-ROW |53691 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53692 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53693 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53694 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
-ROW |53695 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53696 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53697 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53698 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53699 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53700 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53701 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
-ROW |53702 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53703 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53704 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
-ROW |53705 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53706 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53707 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53708 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53709 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53710 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53711 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53712 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53713 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
-ROW |53714 |1224 |31373 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53715 |1224 |31374 |5 |1 |2774A4|0 |2 |0 |
-ROW |53716 |1225 |31376 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53717 |1225 |31377 |5 |1 |2774A4|0 |2 |0 |
-ROW |53718 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53719 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
-ROW |53720 |1227 |31386 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53721 |1227 |31389 |5 |1 |2774A4|0 |2 |0 |
-ROW |53722 |1228 |31392 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53723 |1228 |31395 |5 |1 |2774A4|0 |2 |0 |
-ROW |53724 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53725 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
-ROW |53726 |1230 |31385 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53727 |1230 |31388 |5 |1 |2774A4|0 |2 |0 |
-ROW |53728 |1231 |31391 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53729 |1231 |31394 |5 |1 |2774A4|0 |2 |0 |
-ROW |53730 |887 |29211 |0 |0 |969696|0 |9 |2 |
-ROW |53731 |887 |29210 |0 |1 |C80000|0 |9 |0 |
-ROW |53732 |888 |29225 |0 |0 |969696|0 |9 |2 |
-ROW |53733 |888 |29224 |0 |1 |C80000|0 |9 |0 |
-ROW |53734 |889 |29239 |0 |0 |969696|0 |9 |2 |
-ROW |53735 |889 |29238 |0 |1 |C80000|0 |9 |0 |
-ROW |53736 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53737 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
-ROW |53738 |899 |29218 |0 |2 |F63100|1 |2 |0 |
-ROW |53739 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
-ROW |53740 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53741 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53742 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53743 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
-ROW |53744 |900 |29232 |0 |2 |F63100|1 |2 |0 |
-ROW |53745 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
-ROW |53746 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53747 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53748 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53749 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
-ROW |53750 |901 |29246 |0 |2 |F63100|1 |2 |0 |
-ROW |53751 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
-ROW |53752 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53753 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53754 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53755 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
-ROW |53756 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53757 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
-ROW |53758 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53759 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
-ROW |53760 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53761 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
-ROW |53762 |908 |29095 |0 |2 |F63100|0 |2 |0 |
-ROW |53763 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
-ROW |53764 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53765 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53766 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53767 |908 |29091 |0 |7 |611F27|0 |2 |0 |
-ROW |53768 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
-ROW |53769 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53770 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
-ROW |53771 |909 |29132 |0 |2 |F63100|0 |2 |0 |
-ROW |53772 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
-ROW |53773 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53774 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53775 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53776 |909 |29128 |0 |7 |611F27|0 |2 |0 |
-ROW |53777 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
-ROW |53778 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53779 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
-ROW |53780 |910 |29169 |0 |2 |F63100|0 |2 |0 |
-ROW |53781 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
-ROW |53782 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53783 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53784 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53785 |910 |29165 |0 |7 |611F27|0 |2 |0 |
-ROW |53786 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
-ROW |53787 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53788 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53789 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53790 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53791 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
-ROW |53792 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53793 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
-ROW |53794 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53795 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
-ROW |53796 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53797 |915 |31365 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53798 |916 |31366 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53799 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53800 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
-ROW |53801 |923 |29117 |0 |2 |F63100|0 |2 |0 |
-ROW |53802 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53803 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
-ROW |53804 |924 |29154 |0 |2 |F63100|0 |2 |0 |
-ROW |53805 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53806 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
-ROW |53807 |925 |29191 |0 |2 |F63100|0 |2 |0 |
-ROW |53808 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53809 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
-ROW |53810 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53811 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
-ROW |53812 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53813 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
-ROW |53814 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53815 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
-ROW |53816 |902 |29100 |0 |2 |F63100|0 |2 |0 |
-ROW |53817 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
-ROW |53818 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53819 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
-ROW |53820 |903 |29137 |0 |2 |F63100|0 |2 |0 |
-ROW |53821 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
-ROW |53822 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53823 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
-ROW |53824 |904 |29174 |0 |2 |F63100|0 |2 |0 |
-ROW |53825 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
-ROW |53826 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53827 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
-ROW |53828 |1280 |31917 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53829 |1280 |31918 |5 |1 |2774A4|0 |2 |0 |
-ROW |53830 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53831 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
-ROW |53832 |1282 |31939 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53833 |1282 |31942 |5 |1 |2774A4|0 |2 |0 |
-ROW |53834 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53835 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
-ROW |53836 |1284 |31938 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53837 |1284 |31941 |5 |1 |2774A4|0 |2 |0 |
-ROW |53838 |1285 |31907 |0 |0 |969696|0 |9 |2 |
-ROW |53839 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
-ROW |53840 |1286 |31922 |0 |0 |969696|0 |9 |2 |
-ROW |53841 |1286 |31923 |0 |1 |C80000|0 |9 |0 |
-ROW |53842 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53843 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
-ROW |53844 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
-ROW |53845 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
-ROW |53846 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53847 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53848 |1288 |31926 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53849 |1288 |31929 |2 |1 |2774A4|0 |2 |0 |
-ROW |53850 |1288 |31928 |0 |2 |F63100|1 |2 |0 |
-ROW |53851 |1288 |31925 |0 |3 |A54F10|1 |2 |0 |
-ROW |53852 |1288 |31927 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53853 |1288 |31924 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53854 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53855 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
-ROW |53856 |1290 |31867 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53857 |1290 |31856 |0 |1 |2774A4|0 |2 |0 |
-ROW |53858 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53859 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
-ROW |53860 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
-ROW |53861 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
-ROW |53862 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53863 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53864 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53865 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
-ROW |53866 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
-ROW |53867 |1292 |31858 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53868 |1292 |31871 |0 |1 |2774A4|0 |2 |0 |
-ROW |53869 |1292 |31861 |0 |2 |F63100|0 |2 |0 |
-ROW |53870 |1292 |31862 |0 |3 |A54F10|0 |2 |0 |
-ROW |53871 |1292 |31859 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53872 |1292 |31863 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53873 |1292 |31860 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53874 |1292 |31864 |0 |7 |611F27|0 |2 |0 |
-ROW |53875 |1292 |31866 |0 |8 |F230E0|0 |2 |0 |
-ROW |53876 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53877 |1294 |31894 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53878 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53879 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
-ROW |53880 |1296 |31891 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53881 |1296 |31889 |5 |1 |2774A4|0 |2 |0 |
-ROW |53882 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53883 |1298 |31895 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53884 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53885 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
-ROW |53886 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
-ROW |53887 |1300 |31874 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53888 |1300 |31875 |0 |1 |2774A4|0 |2 |0 |
-ROW |53889 |1300 |31873 |0 |2 |F63100|0 |2 |0 |
-ROW |53890 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53891 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
-ROW |53892 |1302 |31886 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53893 |1302 |31888 |0 |1 |2774A4|0 |2 |0 |
-ROW |53894 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53895 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
-ROW |53896 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
-ROW |53897 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
-ROW |53898 |1304 |31865 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53899 |1304 |31869 |0 |1 |2774A4|0 |2 |0 |
-ROW |53900 |1304 |31870 |0 |2 |F63100|0 |2 |0 |
-ROW |53901 |1304 |31868 |0 |3 |A54F10|1 |2 |0 |
-ROW |53902 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53903 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
-ROW |53904 |952 |29438 |0 |2 |F63100|1 |2 |0 |
-ROW |53905 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
-ROW |53906 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53907 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53908 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53909 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
-ROW |53910 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53911 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
-ROW |53912 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
-ROW |53913 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
-ROW |53914 |953 |29446 |0 |0 |969696|0 |9 |2 |
-ROW |53915 |953 |29432 |0 |1 |C80000|0 |9 |0 |
-ROW |53916 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53917 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
-ROW |53918 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53919 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
-ROW |53920 |959 |29411 |0 |2 |F63100|0 |2 |0 |
-ROW |53921 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
-ROW |53922 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53923 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53924 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53925 |959 |29408 |0 |7 |611F27|0 |2 |0 |
-ROW |53926 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
-ROW |53927 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53928 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53929 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
-ROW |53930 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53931 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53932 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
-ROW |53933 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53934 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
-ROW |53935 |957 |29418 |0 |2 |F63100|0 |2 |0 |
-ROW |53936 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
-ROW |53937 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53938 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
-ROW |53939 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53940 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
-ROW |53941 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53942 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
-ROW |53943 |868 |29022 |0 |2 |F63100|0 |2 |0 |
-ROW |53944 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
-ROW |53945 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53946 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53947 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53948 |868 |29025 |0 |7 |611F27|0 |2 |0 |
-ROW |53949 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
-ROW |53950 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53951 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
-ROW |53952 |869 |29039 |0 |2 |F63100|0 |2 |0 |
-ROW |53953 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
-ROW |53954 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
-ROW |53955 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
-ROW |53956 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
-ROW |53957 |869 |29042 |0 |7 |611F27|0 |2 |0 |
-ROW |53958 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
-ROW |53959 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53960 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53961 |872 |29028 |0 |0 |969696|0 |9 |2 |
-ROW |53962 |872 |29027 |0 |1 |C80000|0 |9 |0 |
-ROW |53963 |873 |29045 |0 |0 |969696|0 |9 |2 |
-ROW |53964 |873 |29044 |0 |1 |C80000|0 |9 |0 |
-ROW |53965 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53966 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
-ROW |53967 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53968 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
-ROW |53969 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53970 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
-ROW |53971 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
-ROW |53972 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
-ROW |53973 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53974 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53975 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53976 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
-ROW |53977 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53978 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
-ROW |53979 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53980 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
-ROW |53981 |880 |28989 |0 |2 |F63100|0 |2 |0 |
-ROW |53982 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
-ROW |53983 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
-ROW |53984 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
-ROW |53985 |881 |29004 |0 |2 |F63100|0 |2 |0 |
-ROW |53986 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
-ROW |53987 |964 |29513 |0 |0 |969696|0 |9 |2 |
-ROW |53988 |964 |29512 |0 |1 |C80000|0 |9 |0 |
-ROW |53989 |965 |29522 |0 |0 |969696|0 |9 |2 |
-ROW |53990 |965 |29521 |0 |1 |C80000|0 |9 |0 |
-ROW |53991 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53992 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
-ROW |53993 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
-ROW |53994 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
-ROW |53995 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |53996 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
-ROW |53997 |1239 |31449 |5 |0 |1A7C11|0 |2 |0 |
-ROW |53998 |1239 |31452 |2 |1 |2774A4|0 |2 |0 |
-ROW |53999 |1239 |31451 |0 |2 |F63100|1 |2 |0 |
-ROW |54000 |1239 |31448 |0 |3 |A54F10|1 |2 |0 |
-ROW |54001 |1239 |31450 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |54002 |1239 |31447 |0 |5 |6C59DC|1 |2 |0 |
-ROW |54003 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54004 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
-ROW |54005 |1489 |33325 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54006 |1489 |33328 |0 |1 |2774A4|0 |2 |0 |
-ROW |54007 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54008 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
-ROW |54009 |1491 |33326 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54010 |1491 |33327 |5 |1 |2774A4|0 |2 |0 |
-ROW |54011 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54012 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
-ROW |54013 |1241 |31445 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54014 |1241 |31446 |5 |1 |2774A4|0 |2 |0 |
-ROW |54015 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
-ROW |54016 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
-ROW |54017 |1243 |31444 |0 |0 |1A7C11|1 |2 |0 |
-ROW |54018 |1243 |31443 |5 |1 |2774A4|0 |2 |0 |
-ROW |54019 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54020 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
-ROW |54021 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54022 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
-ROW |54023 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54024 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
-ROW |54025 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54026 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
-ROW |54027 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54028 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54029 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54030 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54031 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54032 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
-ROW |54033 |981 |31425 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54034 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
-ROW |54035 |1305 |32013 |0 |0 |969696|0 |9 |2 |
-ROW |54036 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
-ROW |54037 |1306 |32027 |0 |0 |969696|0 |9 |2 |
-ROW |54038 |1306 |32028 |0 |1 |C80000|0 |9 |0 |
-ROW |54039 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54040 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
-ROW |54041 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
-ROW |54042 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
-ROW |54043 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |54044 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
-ROW |54045 |1308 |32031 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54046 |1308 |32034 |2 |1 |2774A4|0 |2 |0 |
-ROW |54047 |1308 |32033 |0 |2 |F63100|1 |2 |0 |
-ROW |54048 |1308 |32030 |0 |3 |A54F10|1 |2 |0 |
-ROW |54049 |1308 |32032 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |54050 |1308 |32029 |0 |5 |6C59DC|1 |2 |0 |
-ROW |54051 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54052 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
-ROW |54053 |1493 |33333 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54054 |1493 |33336 |0 |1 |2774A4|0 |2 |0 |
-ROW |54055 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54056 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
-ROW |54057 |1495 |33334 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54058 |1495 |33335 |5 |1 |2774A4|0 |2 |0 |
-ROW |54059 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54060 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
-ROW |54061 |1310 |32037 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54062 |1310 |32038 |5 |1 |2774A4|0 |2 |0 |
-ROW |54063 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
-ROW |54064 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
-ROW |54065 |1312 |32036 |0 |0 |1A7C11|1 |2 |0 |
-ROW |54066 |1312 |32035 |5 |1 |2774A4|0 |2 |0 |
-ROW |54067 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54068 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
-ROW |54069 |1314 |31979 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54070 |1314 |31976 |0 |1 |2774A4|0 |2 |0 |
-ROW |54071 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54072 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
-ROW |54073 |1316 |31978 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54074 |1316 |31977 |0 |1 |2774A4|0 |2 |0 |
-ROW |54075 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54076 |1318 |31981 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54077 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54078 |1320 |32000 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54079 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54080 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
-ROW |54081 |1322 |31996 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54082 |1322 |31997 |0 |1 |2774A4|0 |2 |0 |
-ROW |54083 |1568 |34179 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54084 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54085 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
-ROW |54086 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54087 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
-ROW |54088 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54089 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54090 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
-ROW |54091 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
-ROW |54092 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54093 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
-ROW |54094 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
-ROW |54095 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54096 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
-ROW |54097 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
-ROW |54098 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54099 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54100 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
-ROW |54101 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
-ROW |54102 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54103 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
-ROW |54104 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
-ROW |54105 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54106 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
-ROW |54107 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
-ROW |54108 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54109 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
-ROW |54110 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54111 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
-ROW |54112 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
-ROW |54113 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
-ROW |54114 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54115 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
-ROW |54116 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54117 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
-ROW |54118 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
-ROW |54119 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
-ROW |54120 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54121 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
-ROW |54122 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
-ROW |54123 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
-ROW |54124 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54125 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
-ROW |54126 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
-ROW |54127 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
-ROW |54128 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54129 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
-ROW |54130 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
-ROW |54131 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
-ROW |54132 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
-ROW |54133 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
-ROW |54134 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
-ROW |54135 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
-ROW |54136 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
-ROW |54137 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54138 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54139 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
-ROW |54140 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
-ROW |54141 |1276 |33390 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54142 |1276 |31799 |0 |1 |2774A4|0 |2 |0 |
-ROW |54143 |1276 |31797 |0 |2 |F63100|0 |2 |0 |
-ROW |54144 |1277 |33389 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54145 |1277 |31795 |0 |1 |2774A4|0 |2 |0 |
-ROW |54146 |1278 |31793 |0 |0 |1A7C11|0 |2 |0 |
-ROW |54147 |1278 |31802 |0 |1 |2774A4|0 |2 |0 |
-ROW |54148 |1278 |31790 |0 |2 |F63100|0 |2 |0 |
-ROW |54149 |1278 |31791 |0 |3 |A54F10|0 |2 |0 |
+ROW |54150 |1397 |32451 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54151 |1397 |32450 |5 |1 |2774A4|0 |2 |0 |
+ROW |54152 |1398 |32452 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54153 |1398 |32449 |5 |1 |2774A4|0 |2 |0 |
+ROW |54154 |1399 |32444 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54155 |1399 |32446 |5 |1 |2774A4|0 |2 |0 |
+ROW |54156 |1399 |32448 |5 |2 |F63100|0 |2 |0 |
+ROW |54157 |1400 |32460 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54158 |1401 |32458 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54159 |1401 |32457 |5 |1 |2774A4|0 |2 |0 |
+ROW |54160 |1402 |32461 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54161 |1402 |32456 |5 |1 |2774A4|0 |2 |0 |
+ROW |54162 |1172 |30918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54163 |1172 |30919 |0 |1 |2774A4|0 |2 |0 |
+ROW |54164 |1172 |30920 |0 |2 |F63100|0 |2 |0 |
+ROW |54165 |1172 |30921 |2 |3 |A54F10|0 |2 |0 |
+ROW |54166 |1173 |30922 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54167 |835 |28744 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54168 |835 |28745 |0 |1 |2774A4|0 |2 |0 |
+ROW |54169 |1174 |30913 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54170 |1175 |30906 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54171 |1175 |30908 |0 |1 |2774A4|0 |2 |0 |
+ROW |54172 |1175 |30915 |0 |2 |F63100|0 |2 |0 |
+ROW |54173 |1175 |30897 |0 |3 |A54F10|0 |2 |0 |
+ROW |54174 |1175 |30901 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54175 |1175 |30899 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54176 |1175 |30907 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54177 |1175 |30905 |0 |7 |611F27|0 |2 |0 |
+ROW |54178 |1175 |30904 |0 |8 |F230E0|0 |2 |0 |
+ROW |54179 |1175 |30900 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54180 |1175 |30898 |0 |10 |40CDFF|0 |2 |0 |
+ROW |54181 |1176 |30910 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54182 |1176 |30909 |0 |1 |2774A4|0 |2 |0 |
+ROW |54183 |836 |28798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54184 |836 |28799 |0 |1 |2774A4|0 |2 |0 |
+ROW |54185 |836 |28800 |0 |2 |F63100|0 |2 |0 |
+ROW |54186 |836 |28801 |2 |3 |A54F10|0 |2 |0 |
+ROW |54187 |837 |28803 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54188 |838 |28793 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54189 |840 |28787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54190 |840 |28784 |0 |1 |2774A4|0 |2 |0 |
+ROW |54191 |840 |28782 |0 |2 |F63100|0 |2 |0 |
+ROW |54192 |840 |28781 |0 |3 |A54F10|0 |2 |0 |
+ROW |54193 |840 |28780 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54194 |840 |28778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54195 |840 |28786 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54196 |840 |28785 |0 |7 |611F27|0 |2 |0 |
+ROW |54197 |840 |28783 |0 |8 |F230E0|0 |2 |0 |
+ROW |54198 |840 |28779 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54199 |840 |28796 |0 |10 |40CDFF|0 |2 |0 |
+ROW |54200 |839 |28789 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54201 |839 |28788 |0 |1 |2774A4|0 |2 |0 |
+ROW |54202 |1339 |32172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54203 |1339 |32173 |0 |1 |2774A4|0 |2 |0 |
+ROW |54204 |1403 |32511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54205 |1403 |32514 |0 |1 |2774A4|0 |2 |0 |
+ROW |54206 |1404 |32512 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54207 |1404 |32515 |0 |1 |2774A4|0 |2 |0 |
+ROW |54208 |1405 |32507 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54209 |1405 |32508 |0 |1 |2774A4|0 |2 |0 |
+ROW |54210 |1405 |32513 |0 |2 |F63100|0 |2 |0 |
+ROW |54211 |1343 |32135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54212 |1343 |32142 |0 |1 |2774A4|0 |2 |0 |
+ROW |54213 |1344 |32167 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54214 |1344 |32136 |0 |1 |2774A4|0 |2 |0 |
+ROW |54215 |1345 |32141 |1 |0 |1A7C11|0 |2 |0 |
+ROW |54216 |1345 |32138 |1 |1 |2774A4|0 |2 |0 |
+ROW |54217 |1346 |32156 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54218 |1346 |32158 |0 |1 |2774A4|0 |2 |0 |
+ROW |54219 |1346 |32159 |0 |2 |F63100|0 |2 |0 |
+ROW |54220 |1346 |32154 |2 |3 |A54F10|0 |2 |0 |
+ROW |54221 |1346 |32155 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54222 |1346 |32146 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54223 |1347 |32150 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54224 |1347 |32151 |0 |1 |2774A4|0 |2 |0 |
+ROW |54225 |1347 |32152 |0 |2 |F63100|0 |2 |0 |
+ROW |54226 |1121 |30606 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54227 |1121 |30590 |5 |1 |2774A4|0 |2 |0 |
+ROW |54228 |1121 |30582 |5 |2 |F63100|0 |2 |0 |
+ROW |54229 |1122 |30580 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54230 |1122 |30578 |5 |1 |2774A4|0 |2 |0 |
+ROW |54231 |1123 |30586 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54232 |1123 |30608 |2 |1 |2774A4|0 |2 |0 |
+ROW |54233 |1123 |30585 |2 |2 |F63100|0 |2 |0 |
+ROW |54234 |1123 |30589 |2 |3 |A54F10|0 |2 |0 |
+ROW |54235 |1123 |30584 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |54236 |1123 |30588 |2 |5 |6C59DC|0 |2 |0 |
+ROW |54237 |1124 |30583 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54238 |1124 |30587 |2 |1 |2774A4|0 |2 |0 |
+ROW |54239 |1125 |30555 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54240 |1125 |30554 |2 |1 |2774A4|0 |2 |0 |
+ROW |54241 |1125 |30556 |2 |2 |F63100|0 |2 |0 |
+ROW |54242 |1125 |30557 |2 |3 |A54F10|0 |2 |0 |
+ROW |54243 |1126 |30565 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54244 |1127 |30567 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54245 |1127 |30568 |2 |1 |2774A4|0 |2 |0 |
+ROW |54246 |1128 |30536 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54247 |1129 |30566 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54248 |1129 |30549 |2 |1 |2774A4|0 |2 |0 |
+ROW |54249 |1129 |30553 |2 |2 |F63100|0 |2 |0 |
+ROW |54250 |1129 |30570 |2 |3 |A54F10|0 |2 |0 |
+ROW |54251 |1143 |30714 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54252 |1143 |30716 |0 |1 |2774A4|0 |2 |0 |
+ROW |54253 |1143 |30717 |0 |2 |F63100|0 |2 |0 |
+ROW |54254 |1143 |30715 |0 |3 |A54F10|0 |2 |0 |
+ROW |54255 |1144 |30753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54256 |1144 |30738 |0 |1 |2774A4|0 |2 |0 |
+ROW |54257 |1145 |30718 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54258 |1145 |30737 |0 |1 |2774A4|0 |2 |0 |
+ROW |54259 |1145 |30727 |0 |2 |F63100|0 |2 |0 |
+ROW |54260 |1145 |30729 |0 |3 |A54F10|0 |2 |0 |
+ROW |54261 |1146 |30730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54262 |1146 |30732 |0 |1 |2774A4|0 |2 |0 |
+ROW |54263 |1146 |30731 |0 |2 |F63100|0 |2 |0 |
+ROW |54264 |1146 |30733 |0 |3 |A54F10|0 |2 |0 |
+ROW |54265 |1147 |30734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54266 |1147 |30736 |0 |1 |2774A4|0 |2 |0 |
+ROW |54267 |1147 |30735 |0 |2 |F63100|0 |2 |0 |
+ROW |54268 |1147 |30758 |0 |3 |A54F10|0 |2 |0 |
+ROW |54269 |1148 |30711 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54270 |1148 |30706 |0 |1 |2774A4|0 |2 |0 |
+ROW |54271 |1148 |30710 |0 |2 |F63100|0 |2 |0 |
+ROW |54272 |1148 |30712 |0 |3 |A54F10|0 |2 |0 |
+ROW |54273 |1148 |30702 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54274 |1148 |30707 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54275 |1148 |30704 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54276 |1177 |30927 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54277 |1177 |30944 |2 |1 |2774A4|0 |2 |0 |
+ROW |54278 |1178 |30935 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54279 |1178 |30942 |0 |1 |2774A4|0 |2 |0 |
+ROW |54280 |1179 |30949 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54281 |1179 |30950 |0 |1 |2774A4|0 |2 |0 |
+ROW |54282 |1179 |30951 |0 |2 |F63100|0 |2 |0 |
+ROW |54283 |1180 |30952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54284 |1180 |30954 |0 |1 |2774A4|0 |2 |0 |
+ROW |54285 |1180 |30955 |0 |2 |F63100|0 |2 |0 |
+ROW |54286 |1181 |30936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54287 |1181 |30940 |5 |1 |2774A4|0 |2 |0 |
+ROW |54288 |1182 |30930 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54289 |1182 |30929 |0 |1 |2774A4|0 |2 |0 |
+ROW |54290 |1182 |30928 |0 |2 |F63100|0 |2 |0 |
+ROW |54291 |1182 |30931 |2 |3 |A54F10|1 |2 |0 |
+ROW |54292 |1183 |30934 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54293 |1183 |30941 |0 |1 |2774A4|0 |2 |0 |
+ROW |54294 |1406 |32532 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54295 |1406 |32535 |0 |1 |2774A4|1 |2 |0 |
+ROW |54296 |1406 |32533 |0 |2 |F63100|0 |2 |0 |
+ROW |54297 |1406 |32534 |0 |3 |A54F10|0 |2 |0 |
+ROW |54298 |1406 |32536 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54299 |1406 |32537 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54300 |1407 |32543 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54301 |1407 |32544 |0 |1 |2774A4|0 |2 |0 |
+ROW |54302 |1408 |32518 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54303 |1408 |32521 |0 |1 |2774A4|0 |2 |0 |
+ROW |54304 |1408 |32523 |0 |2 |F63100|0 |2 |0 |
+ROW |54305 |1408 |32524 |0 |3 |A54F10|0 |2 |0 |
+ROW |54306 |1409 |32562 |0 |0 |1A7C11|1 |2 |0 |
+ROW |54307 |1409 |32565 |0 |1 |2774A4|1 |2 |0 |
+ROW |54308 |1409 |32563 |0 |2 |F63100|0 |2 |0 |
+ROW |54309 |1409 |32564 |0 |3 |A54F10|0 |2 |0 |
+ROW |54310 |1409 |32566 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54311 |1409 |32567 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54312 |1410 |32573 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54313 |1410 |32574 |0 |1 |2774A4|0 |2 |0 |
+ROW |54314 |1411 |32548 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54315 |1411 |32551 |0 |1 |2774A4|0 |2 |0 |
+ROW |54316 |1411 |32553 |0 |2 |F63100|0 |2 |0 |
+ROW |54317 |1411 |32554 |0 |3 |A54F10|0 |2 |0 |
+ROW |54318 |1250 |31527 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54319 |1250 |31529 |0 |1 |2774A4|0 |2 |0 |
+ROW |54320 |1250 |31499 |0 |2 |F63100|0 |2 |0 |
+ROW |54321 |1251 |31532 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54322 |1251 |31534 |0 |1 |2774A4|0 |2 |0 |
+ROW |54323 |1251 |31538 |0 |2 |F63100|0 |2 |0 |
+ROW |54324 |1251 |31536 |0 |3 |A54F10|0 |2 |0 |
+ROW |54325 |1251 |31528 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54326 |1251 |31542 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54327 |1252 |31552 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54328 |1252 |31551 |0 |1 |2774A4|0 |2 |0 |
+ROW |54329 |1252 |31541 |0 |2 |F63100|0 |2 |0 |
+ROW |54330 |1253 |31513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54331 |1253 |31526 |0 |1 |2774A4|0 |2 |0 |
+ROW |54332 |1253 |31525 |0 |2 |F63100|0 |2 |0 |
+ROW |54333 |1254 |31502 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54334 |1254 |31501 |0 |1 |2774A4|0 |2 |0 |
+ROW |54335 |1254 |31503 |0 |2 |F63100|0 |2 |0 |
+ROW |54336 |1255 |31505 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54337 |1255 |31504 |0 |1 |2774A4|0 |2 |0 |
+ROW |54338 |1255 |31506 |0 |2 |F63100|0 |2 |0 |
+ROW |54339 |1256 |31508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54340 |1256 |31507 |0 |1 |2774A4|0 |2 |0 |
+ROW |54341 |1256 |31509 |0 |2 |F63100|0 |2 |0 |
+ROW |54342 |1257 |31511 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54343 |1257 |31510 |0 |1 |2774A4|0 |2 |0 |
+ROW |54344 |1257 |31500 |0 |2 |F63100|0 |2 |0 |
+ROW |54345 |1258 |31514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54346 |1258 |31512 |0 |1 |2774A4|0 |2 |0 |
+ROW |54347 |1258 |31515 |0 |2 |F63100|0 |2 |0 |
+ROW |54348 |1259 |31516 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54349 |1259 |31517 |0 |1 |2774A4|0 |2 |0 |
+ROW |54350 |1260 |31523 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54351 |1260 |31522 |0 |1 |2774A4|0 |2 |0 |
+ROW |54352 |1260 |31524 |0 |2 |F63100|0 |2 |0 |
+ROW |54353 |1412 |32601 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54354 |1412 |32602 |0 |1 |2774A4|0 |2 |0 |
+ROW |54355 |1412 |32603 |0 |2 |F63100|0 |2 |0 |
+ROW |54356 |1412 |32604 |0 |3 |A54F10|0 |2 |0 |
+ROW |54357 |1412 |32606 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54358 |1412 |32606 |2 |5 |6C59DC|0 |2 |0 |
+ROW |54359 |1413 |32608 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54360 |1413 |32610 |0 |1 |2774A4|0 |2 |0 |
+ROW |54361 |1413 |32611 |0 |2 |F63100|0 |2 |0 |
+ROW |54362 |1414 |32582 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54363 |1414 |32580 |2 |1 |2774A4|0 |2 |0 |
+ROW |54364 |1414 |32581 |2 |2 |F63100|0 |2 |0 |
+ROW |54365 |1414 |32597 |0 |3 |A54F10|1 |2 |0 |
+ROW |54366 |1414 |32599 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |54367 |1414 |32588 |0 |5 |6C59DC|1 |2 |0 |
+ROW |54368 |1415 |32583 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54369 |1415 |32584 |0 |1 |2774A4|0 |2 |0 |
+ROW |54370 |1415 |32585 |0 |2 |F63100|0 |2 |0 |
+ROW |54371 |1415 |32579 |2 |3 |A54F10|0 |2 |0 |
+ROW |54372 |1416 |32587 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54373 |1416 |32590 |0 |1 |2774A4|0 |2 |0 |
+ROW |54374 |1416 |32589 |0 |2 |F63100|0 |2 |0 |
+ROW |54375 |1417 |32673 |1 |0 |1A7C11|0 |2 |0 |
+ROW |54376 |1417 |32679 |1 |1 |2774A4|0 |2 |0 |
+ROW |54377 |1075 |30204 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54378 |1075 |30205 |0 |1 |2774A4|0 |2 |0 |
+ROW |54379 |1149 |30770 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54380 |1149 |30771 |0 |1 |2774A4|0 |2 |0 |
+ROW |54381 |1076 |30209 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54382 |1076 |30208 |0 |1 |2774A4|0 |2 |0 |
+ROW |54383 |1077 |30206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54384 |1077 |30207 |5 |1 |2774A4|0 |2 |0 |
+ROW |54385 |1078 |30216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54386 |1078 |30215 |0 |1 |2774A4|0 |2 |0 |
+ROW |54387 |1079 |30210 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54388 |1079 |30211 |0 |1 |2774A4|0 |2 |0 |
+ROW |54389 |1079 |30212 |0 |2 |F63100|0 |2 |0 |
+ROW |54390 |1079 |30213 |0 |3 |A54F10|0 |2 |0 |
+ROW |54391 |1079 |30214 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54392 |1150 |30775 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54393 |1150 |30774 |0 |1 |2774A4|0 |2 |0 |
+ROW |54394 |1151 |30772 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54395 |1151 |30773 |5 |1 |2774A4|0 |2 |0 |
+ROW |54396 |1152 |30777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54397 |1152 |30776 |0 |1 |2774A4|0 |2 |0 |
+ROW |54398 |1080 |30226 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54399 |1080 |30225 |0 |1 |2774A4|0 |2 |0 |
+ROW |54400 |1153 |30785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54401 |1153 |30784 |0 |1 |2774A4|0 |2 |0 |
+ROW |54402 |1081 |30247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54403 |1081 |30248 |0 |1 |2774A4|0 |2 |0 |
+ROW |54404 |1154 |30802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54405 |1154 |30803 |0 |1 |2774A4|0 |2 |0 |
+ROW |54406 |1082 |30252 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54407 |1082 |30251 |0 |1 |2774A4|0 |2 |0 |
+ROW |54408 |1083 |30249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54409 |1083 |30250 |5 |1 |2774A4|0 |2 |0 |
+ROW |54410 |1084 |30259 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54411 |1084 |30258 |0 |1 |2774A4|0 |2 |0 |
+ROW |54412 |1085 |30253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54413 |1085 |30254 |0 |1 |2774A4|0 |2 |0 |
+ROW |54414 |1085 |30255 |0 |2 |F63100|0 |2 |0 |
+ROW |54415 |1085 |30256 |0 |3 |A54F10|0 |2 |0 |
+ROW |54416 |1085 |30257 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54417 |1155 |30807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54418 |1155 |30806 |0 |1 |2774A4|0 |2 |0 |
+ROW |54419 |1156 |30804 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54420 |1156 |30805 |5 |1 |2774A4|0 |2 |0 |
+ROW |54421 |1157 |30809 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54422 |1157 |30808 |0 |1 |2774A4|0 |2 |0 |
+ROW |54423 |1086 |30269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54424 |1086 |30268 |0 |1 |2774A4|0 |2 |0 |
+ROW |54425 |1158 |30817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54426 |1158 |30816 |0 |1 |2774A4|0 |2 |0 |
+ROW |54427 |1184 |30982 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54428 |1184 |30980 |5 |1 |2774A4|0 |2 |0 |
+ROW |54429 |1185 |30983 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54430 |1185 |30981 |0 |1 |2774A4|0 |2 |0 |
+ROW |54431 |1186 |30976 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54432 |1186 |30985 |0 |1 |2774A4|0 |2 |0 |
+ROW |54433 |1186 |30997 |0 |2 |F63100|0 |2 |0 |
+ROW |54434 |1186 |30970 |0 |3 |A54F10|0 |2 |0 |
+ROW |54435 |1186 |30973 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54436 |1186 |30995 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54437 |1186 |30998 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54438 |1186 |30978 |0 |7 |611F27|0 |2 |0 |
+ROW |54439 |1187 |31024 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54440 |1187 |31022 |5 |1 |2774A4|0 |2 |0 |
+ROW |54441 |1188 |31025 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54442 |1188 |31023 |0 |1 |2774A4|0 |2 |0 |
+ROW |54443 |1189 |31018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54444 |1189 |31027 |0 |1 |2774A4|0 |2 |0 |
+ROW |54445 |1189 |31039 |0 |2 |F63100|0 |2 |0 |
+ROW |54446 |1189 |31012 |0 |3 |A54F10|0 |2 |0 |
+ROW |54447 |1189 |31015 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54448 |1189 |31037 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54449 |1189 |31040 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54450 |1189 |31020 |0 |7 |611F27|0 |2 |0 |
+ROW |54451 |1499 |33478 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54452 |1499 |33467 |0 |1 |2774A4|0 |2 |0 |
+ROW |54453 |1500 |33468 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54454 |1500 |33479 |0 |1 |2774A4|0 |2 |0 |
+ROW |54455 |1501 |33442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54456 |1501 |33441 |0 |1 |2774A4|0 |2 |0 |
+ROW |54457 |1501 |33440 |0 |2 |F63100|0 |2 |0 |
+ROW |54458 |1502 |33423 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54459 |1502 |33419 |0 |1 |2774A4|0 |2 |0 |
+ROW |54460 |1502 |33422 |0 |2 |F63100|0 |2 |0 |
+ROW |54461 |1502 |33421 |0 |3 |A54F10|0 |2 |0 |
+ROW |54462 |1502 |33412 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54463 |1418 |32700 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54464 |1418 |32699 |0 |1 |2774A4|0 |2 |0 |
+ROW |54465 |1419 |32710 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54466 |1419 |32709 |0 |1 |2774A4|0 |2 |0 |
+ROW |54467 |1420 |32693 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54468 |1420 |32724 |0 |1 |2774A4|0 |2 |0 |
+ROW |54469 |1421 |32730 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54470 |1421 |32731 |0 |1 |2774A4|0 |2 |0 |
+ROW |54471 |1421 |32728 |0 |2 |F63100|0 |2 |0 |
+ROW |54472 |1421 |32729 |0 |3 |A54F10|0 |2 |0 |
+ROW |54473 |1422 |32705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54474 |1422 |32706 |0 |1 |2774A4|0 |2 |0 |
+ROW |54475 |1423 |32702 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54476 |1423 |32703 |0 |1 |2774A4|0 |2 |0 |
+ROW |54477 |1424 |32708 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54478 |1424 |32722 |2 |1 |2774A4|0 |2 |0 |
+ROW |54479 |1424 |32695 |0 |2 |F63100|0 |2 |0 |
+ROW |54480 |1424 |32753 |0 |3 |A54F10|0 |2 |0 |
+ROW |54481 |1424 |32740 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |54482 |1424 |32723 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54483 |1424 |32747 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54484 |1424 |32748 |2 |7 |611F27|0 |2 |0 |
+ROW |54485 |1424 |32749 |0 |8 |F230E0|0 |2 |0 |
+ROW |54486 |1424 |32750 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54487 |1424 |32751 |2 |10 |40CDFF|0 |2 |0 |
+ROW |54488 |1424 |32752 |0 |11 |40FFA0|0 |2 |0 |
+ROW |54489 |1425 |32746 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54490 |1425 |32745 |2 |1 |2774A4|0 |2 |0 |
+ROW |54491 |1425 |32744 |0 |2 |F63100|0 |2 |0 |
+ROW |54492 |1425 |32743 |0 |3 |A54F10|0 |2 |0 |
+ROW |54493 |1425 |32743 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |54494 |1425 |32742 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54495 |1426 |32720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54496 |1426 |32721 |0 |1 |2774A4|0 |2 |0 |
+ROW |54497 |1426 |32719 |0 |2 |F63100|0 |2 |0 |
+ROW |54498 |1426 |32718 |0 |3 |A54F10|0 |2 |0 |
+ROW |54499 |1130 |30613 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54500 |1130 |30635 |0 |1 |2774A4|0 |2 |0 |
+ROW |54501 |1130 |30625 |0 |2 |F63100|0 |2 |0 |
+ROW |54502 |1131 |30632 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54503 |1131 |30633 |5 |1 |2774A4|0 |2 |0 |
+ROW |54504 |1131 |30629 |5 |2 |F63100|0 |2 |0 |
+ROW |54505 |1132 |30630 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54506 |1132 |30628 |2 |1 |2774A4|0 |2 |0 |
+ROW |54507 |1132 |30631 |2 |2 |F63100|0 |2 |0 |
+ROW |54508 |1133 |30619 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54509 |1133 |30618 |0 |1 |2774A4|0 |2 |0 |
+ROW |54510 |1134 |30623 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54511 |1134 |30622 |5 |1 |2774A4|0 |2 |0 |
+ROW |54512 |1135 |30615 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54513 |841 |28813 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54514 |841 |28811 |0 |1 |2774A4|0 |2 |0 |
+ROW |54515 |841 |28812 |0 |2 |F63100|0 |2 |0 |
+ROW |54516 |841 |28814 |0 |3 |A54F10|0 |2 |0 |
+ROW |54517 |842 |28817 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54518 |842 |28815 |0 |1 |2774A4|0 |2 |0 |
+ROW |54519 |842 |28816 |0 |2 |F63100|0 |2 |0 |
+ROW |54520 |844 |28808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54521 |844 |28807 |0 |1 |2774A4|0 |2 |0 |
+ROW |54522 |843 |28818 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54523 |845 |28829 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54524 |845 |28831 |0 |1 |2774A4|0 |2 |0 |
+ROW |54525 |845 |28832 |0 |2 |F63100|0 |2 |0 |
+ROW |54526 |845 |28830 |0 |3 |A54F10|0 |2 |0 |
+ROW |54527 |846 |28826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54528 |846 |28828 |0 |1 |2774A4|0 |2 |0 |
+ROW |54529 |846 |28827 |0 |2 |F63100|0 |2 |0 |
+ROW |54530 |847 |28825 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54531 |1262 |31592 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54532 |1262 |31584 |0 |1 |2774A4|0 |2 |0 |
+ROW |54533 |1262 |31582 |0 |2 |F63100|0 |2 |0 |
+ROW |54534 |1262 |31585 |0 |3 |A54F10|0 |2 |0 |
+ROW |54535 |1263 |31591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54536 |1263 |31583 |0 |1 |2774A4|0 |2 |0 |
+ROW |54537 |1263 |31590 |0 |2 |F63100|0 |2 |0 |
+ROW |54538 |1264 |31602 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54539 |1264 |31597 |0 |1 |2774A4|0 |2 |0 |
+ROW |54540 |1264 |31601 |0 |2 |F63100|0 |2 |0 |
+ROW |54541 |1264 |31604 |0 |3 |A54F10|0 |2 |0 |
+ROW |54542 |1265 |31609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54543 |1265 |31610 |0 |1 |2774A4|0 |2 |0 |
+ROW |54544 |1265 |31608 |0 |2 |F63100|0 |2 |0 |
+ROW |54545 |1001 |29729 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54546 |1001 |29728 |0 |1 |2774A4|0 |2 |0 |
+ROW |54547 |1001 |29727 |0 |2 |F63100|0 |2 |0 |
+ROW |54548 |1001 |29725 |0 |3 |A54F10|0 |2 |0 |
+ROW |54549 |1001 |29723 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54550 |1001 |29733 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54551 |1001 |29737 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54552 |1001 |29731 |0 |7 |611F27|0 |2 |0 |
+ROW |54553 |1000 |29720 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54554 |1000 |29730 |0 |1 |2774A4|0 |2 |0 |
+ROW |54555 |1000 |29721 |0 |2 |F63100|0 |2 |0 |
+ROW |54556 |1000 |29726 |0 |3 |A54F10|0 |2 |0 |
+ROW |54557 |1000 |29724 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54558 |1000 |29734 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54559 |1000 |29722 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54560 |1000 |29732 |0 |7 |611F27|0 |2 |0 |
+ROW |54561 |1027 |30022 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54562 |1027 |30021 |0 |1 |2774A4|0 |2 |0 |
+ROW |54563 |1027 |30019 |0 |2 |F63100|0 |2 |0 |
+ROW |54564 |1008 |29698 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54565 |1008 |29700 |2 |1 |FF0000|0 |2 |0 |
+ROW |54566 |1007 |29691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54567 |1013 |29657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54568 |1013 |29658 |0 |1 |2774A4|0 |2 |0 |
+ROW |54569 |1009 |29687 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54570 |1009 |29694 |2 |1 |FF0000|0 |2 |0 |
+ROW |54571 |1029 |30017 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54572 |1029 |30016 |0 |1 |2774A4|0 |2 |0 |
+ROW |54573 |1029 |30015 |0 |2 |F63100|0 |2 |0 |
+ROW |54574 |1031 |30007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54575 |1031 |30013 |0 |1 |2774A4|0 |2 |0 |
+ROW |54576 |1031 |30011 |0 |2 |F63100|0 |2 |0 |
+ROW |54577 |1031 |30009 |0 |3 |A54F10|0 |2 |0 |
+ROW |54578 |1031 |30005 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54579 |1031 |30003 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54580 |1031 |30023 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54581 |1031 |30001 |0 |7 |611F27|0 |2 |0 |
+ROW |54582 |1030 |30008 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54583 |1030 |30014 |0 |1 |2774A4|0 |2 |0 |
+ROW |54584 |1030 |30012 |0 |2 |F63100|0 |2 |0 |
+ROW |54585 |1030 |30010 |0 |3 |A54F10|0 |2 |0 |
+ROW |54586 |1030 |30006 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54587 |1030 |30004 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54588 |1030 |30000 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54589 |1030 |30002 |0 |7 |611F27|0 |2 |0 |
+ROW |54590 |1011 |29695 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54591 |1028 |30020 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54592 |1010 |29701 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54593 |1010 |29697 |0 |1 |2774A4|0 |2 |0 |
+ROW |54594 |1012 |29692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54595 |1015 |29812 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54596 |1015 |29811 |0 |1 |2774A4|0 |2 |0 |
+ROW |54597 |1015 |29810 |0 |2 |F63100|0 |2 |0 |
+ROW |54598 |1015 |29808 |0 |3 |A54F10|0 |2 |0 |
+ROW |54599 |1015 |29806 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54600 |1015 |29816 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54601 |1015 |29820 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54602 |1015 |29814 |0 |7 |611F27|0 |2 |0 |
+ROW |54603 |1014 |29803 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54604 |1014 |29813 |0 |1 |2774A4|0 |2 |0 |
+ROW |54605 |1014 |29804 |0 |2 |F63100|0 |2 |0 |
+ROW |54606 |1014 |29809 |0 |3 |A54F10|0 |2 |0 |
+ROW |54607 |1014 |29807 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54608 |1014 |29817 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54609 |1014 |29805 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54610 |1014 |29815 |0 |7 |611F27|0 |2 |0 |
+ROW |54611 |1016 |29768 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54612 |1016 |29767 |0 |1 |2774A4|0 |2 |0 |
+ROW |54613 |1016 |29765 |0 |2 |F63100|0 |2 |0 |
+ROW |54614 |1022 |29782 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54615 |1022 |29781 |2 |1 |FF0000|0 |2 |0 |
+ROW |54616 |1021 |29783 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54617 |1023 |29780 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54618 |1023 |29784 |2 |1 |FF0000|0 |2 |0 |
+ROW |54619 |1018 |29763 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54620 |1018 |29762 |0 |1 |2774A4|0 |2 |0 |
+ROW |54621 |1018 |29761 |0 |2 |F63100|0 |2 |0 |
+ROW |54622 |1020 |29753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54623 |1020 |29759 |0 |1 |2774A4|0 |2 |0 |
+ROW |54624 |1020 |29757 |0 |2 |F63100|0 |2 |0 |
+ROW |54625 |1020 |29755 |0 |3 |A54F10|0 |2 |0 |
+ROW |54626 |1020 |29751 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54627 |1020 |29749 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54628 |1020 |29769 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54629 |1020 |29747 |0 |7 |611F27|0 |2 |0 |
+ROW |54630 |1019 |29754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54631 |1019 |29760 |0 |1 |2774A4|0 |2 |0 |
+ROW |54632 |1019 |29758 |0 |2 |F63100|0 |2 |0 |
+ROW |54633 |1019 |29756 |0 |3 |A54F10|0 |2 |0 |
+ROW |54634 |1019 |29752 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54635 |1019 |29750 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54636 |1019 |29746 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54637 |1019 |29748 |0 |7 |611F27|0 |2 |0 |
+ROW |54638 |1025 |29775 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54639 |1017 |29766 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54640 |1024 |29776 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54641 |1024 |29777 |0 |1 |2774A4|0 |2 |0 |
+ROW |54642 |1026 |29772 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54643 |1356 |32276 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54644 |1356 |32275 |0 |1 |2774A4|0 |2 |0 |
+ROW |54645 |1357 |32281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54646 |1357 |32267 |0 |1 |2774A4|0 |2 |0 |
+ROW |54647 |1357 |32279 |0 |2 |F63100|0 |2 |0 |
+ROW |54648 |1358 |32268 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54649 |1358 |32274 |0 |1 |2774A4|0 |2 |0 |
+ROW |54650 |1358 |32271 |0 |2 |F63100|0 |2 |0 |
+ROW |54651 |1359 |32288 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54652 |1359 |32291 |0 |1 |2774A4|0 |2 |0 |
+ROW |54653 |1360 |32247 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54654 |1360 |32245 |0 |1 |2774A4|0 |2 |0 |
+ROW |54655 |1360 |32246 |0 |2 |F63100|0 |2 |0 |
+ROW |54656 |1361 |32248 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54657 |1361 |32249 |0 |1 |2774A4|0 |2 |0 |
+ROW |54658 |1361 |32250 |0 |2 |F63100|0 |2 |0 |
+ROW |54659 |1362 |32240 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54660 |1362 |32273 |0 |1 |2774A4|0 |2 |0 |
+ROW |54661 |1363 |32282 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54662 |1363 |32283 |0 |1 |2774A4|0 |2 |0 |
+ROW |54663 |1363 |32289 |0 |2 |F63100|0 |2 |0 |
+ROW |54664 |1363 |32290 |0 |3 |A54F10|0 |2 |0 |
+ROW |54665 |1363 |32286 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |54666 |1363 |32287 |0 |5 |6C59DC|0 |2 |0 |
+ROW |54667 |1363 |32241 |0 |6 |AC8C14|0 |2 |0 |
+ROW |54668 |1363 |32242 |0 |7 |611F27|0 |2 |0 |
+ROW |54669 |1363 |32243 |0 |8 |F230E0|0 |2 |0 |
+ROW |54670 |1363 |32244 |0 |9 |FFAD40|0 |2 |0 |
+ROW |54671 |1363 |32277 |0 |10 |40CDFF|0 |2 |0 |
+ROW |54672 |1363 |32278 |0 |11 |40FFA0|0 |2 |0 |
+ROW |54673 |1427 |32768 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54674 |1427 |32767 |5 |1 |2774A4|0 |2 |0 |
+ROW |54675 |1428 |32774 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54676 |1428 |32772 |5 |1 |2774A4|0 |2 |0 |
+ROW |54677 |1428 |32775 |5 |2 |F63100|0 |2 |0 |
+ROW |54678 |1428 |32773 |5 |3 |A54F10|0 |2 |0 |
+ROW |54679 |1429 |32779 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54680 |1429 |32777 |5 |1 |2774A4|0 |2 |0 |
+ROW |54681 |1429 |32778 |5 |2 |F63100|0 |2 |0 |
+ROW |54682 |1430 |32837 |2 |0 |1A7C11|0 |2 |0 |
+ROW |54683 |1430 |32836 |2 |1 |2774A4|0 |2 |0 |
+ROW |54684 |1430 |32835 |2 |2 |F63100|0 |2 |0 |
+ROW |54685 |1431 |32856 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54686 |1432 |32828 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54687 |1433 |32847 |5 |0 |34bdeb|0 |2 |0 |
+ROW |54688 |1434 |32797 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54689 |1434 |32796 |5 |1 |2774A4|0 |2 |0 |
+ROW |54690 |1434 |32801 |2 |2 |F63100|0 |2 |0 |
+ROW |54691 |1435 |32834 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54692 |1436 |32819 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54693 |1437 |32826 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54694 |1438 |33001 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54695 |1438 |33002 |0 |1 |2774A4|0 |2 |0 |
+ROW |54696 |1438 |33000 |2 |2 |F63100|0 |2 |0 |
+ROW |54697 |1439 |33005 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54698 |1439 |33004 |0 |1 |2774A4|0 |2 |0 |
+ROW |54699 |1440 |32980 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54700 |1440 |32970 |0 |1 |2774A4|0 |2 |0 |
+ROW |54701 |1441 |32967 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54702 |1441 |32968 |0 |1 |2774A4|0 |2 |0 |
+ROW |54703 |1441 |32995 |2 |2 |F63100|0 |2 |0 |
+ROW |54704 |1442 |32997 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54705 |1442 |32984 |0 |1 |2774A4|0 |2 |0 |
+ROW |54706 |1443 |32973 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54707 |1443 |32971 |0 |1 |2774A4|0 |2 |0 |
+ROW |54708 |1503 |33518 |5 |0 |1A7C11|0 |2 |0 |
+ROW |54709 |1504 |33501 |0 |0 |1A7C11|0 |2 |0 |
+ROW |54710 |803 |28599 |0 |0 |DD0000|0 |2 |0 |
+ROW |54711 |803 |28596 |0 |1 |00DDDD|0 |2 |0 |
+ROW |54712 |803 |28597 |0 |2 |3333FF|0 |2 |0 |
+ROW |54713 |803 |28598 |0 |3 |00FF00|0 |2 |0 |
+ROW |54714 |804 |28602 |0 |1 |990099|0 |2 |0 |
+ROW |54715 |804 |28606 |0 |2 |990000|0 |2 |0 |
+ROW |54716 |804 |28608 |0 |3 |0000EE|0 |2 |0 |
+ROW |54717 |804 |28615 |0 |4 |FF33FF|0 |2 |0 |
+ROW |54718 |804 |28610 |0 |5 |00EE00|0 |2 |0 |
+ROW |54719 |804 |28611 |0 |6 |003300|0 |2 |0 |
+ROW |54720 |804 |28616 |0 |7 |33FFFF|0 |2 |0 |
+ROW |54721 |804 |28607 |0 |8 |DD0000|0 |2 |0 |
+ROW |54722 |804 |28604 |0 |9 |000099|0 |2 |0 |
+ROW |54723 |804 |28588 |0 |10 |00FF00|0 |2 |0 |
+ROW |54724 |804 |33013 |0 |11 |BB2A02|0 |2 |0 |
+ROW |54725 |805 |28612 |0 |1 |FFAA00|0 |2 |0 |
+ROW |54726 |805 |28600 |0 |2 |990099|0 |2 |0 |
+ROW |54727 |805 |28613 |0 |3 |EE0000|0 |2 |0 |
+ROW |54728 |805 |28605 |0 |4 |FF66FF|0 |2 |0 |
+ROW |54729 |805 |28614 |0 |5 |960000|0 |2 |0 |
+ROW |54730 |805 |28601 |0 |6 |009600|0 |2 |0 |
+ROW |54731 |805 |28603 |0 |7 |009999|0 |2 |0 |
+ROW |54732 |805 |28609 |0 |8 |BBBB00|0 |2 |0 |
+ROW |54733 |805 |33012 |0 |9 |F230E0|0 |2 |0 |
+ROW |54734 |806 |28595 |0 |0 |00C800|0 |2 |0 |
+ROW |54735 |806 |28586 |0 |1 |C80000|0 |2 |0 |
+ROW |54736 |1444 |33015 |0 |1 |C80000|0 |2 |0 |
+ROW |54737 |1444 |33014 |0 |2 |00C800|0 |2 |0 |
+ROW |54738 |797 |28546 |0 |0 |C80000|0 |2 |0 |
+ROW |54739 |797 |28545 |0 |1 |00C800|0 |2 |0 |
+ROW |54740 |798 |28551 |0 |0 |009900|0 |2 |0 |
+ROW |54741 |798 |28543 |0 |1 |DD0000|0 |2 |0 |
+ROW |54742 |798 |28542 |0 |2 |00DDDD|0 |2 |0 |
+ROW |54743 |798 |28549 |0 |3 |3333FF|0 |2 |0 |
+ROW |54744 |798 |28544 |0 |4 |999900|0 |2 |0 |
+ROW |54745 |798 |28548 |0 |5 |00FF00|0 |2 |0 |
+ROW |54746 |799 |28581 |0 |1 |990099|0 |2 |0 |
+ROW |54747 |799 |28574 |0 |2 |990000|0 |2 |0 |
+ROW |54748 |799 |28571 |0 |3 |0000EE|0 |2 |0 |
+ROW |54749 |799 |28565 |0 |4 |FF33FF|0 |2 |0 |
+ROW |54750 |799 |28570 |0 |5 |009600|0 |2 |0 |
+ROW |54751 |799 |28569 |0 |6 |003300|0 |2 |0 |
+ROW |54752 |799 |28577 |0 |7 |CCCC00|0 |2 |0 |
+ROW |54753 |799 |28552 |0 |8 |33FFFF|0 |2 |0 |
+ROW |54754 |799 |28573 |0 |9 |DD0000|0 |2 |0 |
+ROW |54755 |799 |28579 |0 |10 |000099|0 |2 |0 |
+ROW |54756 |799 |28559 |0 |11 |00FF00|0 |2 |0 |
+ROW |54757 |799 |33017 |0 |12 |5A2B57|0 |2 |0 |
+ROW |54758 |800 |28572 |0 |1 |00EE00|0 |2 |0 |
+ROW |54759 |800 |28566 |0 |2 |0000EE|0 |2 |0 |
+ROW |54760 |800 |28568 |0 |3 |FFAA00|0 |2 |0 |
+ROW |54761 |800 |28561 |0 |4 |00EEEE|0 |2 |0 |
+ROW |54762 |800 |28564 |0 |5 |990099|0 |2 |0 |
+ROW |54763 |800 |28567 |0 |6 |EE0000|0 |2 |0 |
+ROW |54764 |800 |28578 |0 |7 |FF66FF|0 |2 |0 |
+ROW |54765 |800 |28580 |0 |8 |009999|0 |2 |0 |
+ROW |54766 |800 |28562 |0 |9 |BBBB00|0 |2 |0 |
+ROW |54767 |800 |28563 |0 |10 |AA0000|0 |2 |0 |
+ROW |54768 |800 |28575 |0 |11 |990000|0 |2 |0 |
+ROW |54769 |800 |28576 |0 |12 |008800|0 |2 |0 |
+ROW |54770 |800 |28582 |0 |13 |80B0E0|0 |2 |0 |
+ROW |54771 |800 |28583 |0 |14 |4080B0|0 |2 |0 |
+ROW |54772 |800 |29821 |0 |15 |8000FF|0 |2 |0 |
+ROW |54773 |800 |33016 |0 |16 |2B5429|0 |2 |0 |
+ROW |54774 |800 |34314 |0 |17 |8048B4|0 |2 |0 |
+ROW |54775 |800 |34315 |0 |18 |FD5434|0 |2 |0 |
+ROW |54776 |801 |28560 |0 |0 |008800|0 |2 |0 |
+ROW |54777 |801 |28584 |0 |1 |EE0000|0 |2 |0 |
+ROW |54778 |802 |28550 |5 |0 |00C800|0 |2 |0 |
+ROW |54779 |802 |28540 |0 |1 |F63100|0 |2 |0 |
+ROW |54780 |529 |23357 |0 |0 |DD0000|0 |2 |0 |
+ROW |54781 |529 |23341 |0 |1 |00DDDD|0 |2 |0 |
+ROW |54782 |529 |23342 |0 |2 |3333FF|0 |2 |0 |
+ROW |54783 |529 |28251 |0 |3 |00FF00|0 |2 |0 |
+ROW |54784 |530 |23345 |0 |1 |990099|0 |2 |0 |
+ROW |54785 |530 |23348 |0 |2 |990000|0 |2 |0 |
+ROW |54786 |530 |23355 |0 |3 |0000EE|0 |2 |0 |
+ROW |54787 |530 |23352 |0 |4 |FF33FF|0 |2 |0 |
+ROW |54788 |530 |23356 |0 |5 |007700|0 |2 |0 |
+ROW |54789 |530 |23354 |0 |6 |003300|0 |2 |0 |
+ROW |54790 |530 |23346 |0 |7 |33FFFF|0 |2 |0 |
+ROW |54791 |530 |23349 |0 |8 |DD0000|0 |2 |0 |
+ROW |54792 |530 |23344 |0 |9 |000099|0 |7 |0 |
+ROW |54793 |530 |28250 |0 |10 |00FF00|0 |2 |0 |
+ROW |54794 |530 |33019 |0 |11 |BB2A02|0 |2 |0 |
+ROW |54795 |531 |23353 |0 |1 |FFAA00|0 |2 |0 |
+ROW |54796 |531 |23347 |0 |2 |990099|0 |2 |0 |
+ROW |54797 |531 |23350 |0 |3 |EE0000|0 |2 |0 |
+ROW |54798 |531 |23343 |0 |4 |FF66FF|0 |2 |0 |
+ROW |54799 |531 |23351 |0 |5 |0000EE|0 |2 |0 |
+ROW |54800 |531 |23360 |0 |6 |00EE00|0 |2 |0 |
+ROW |54801 |531 |25369 |0 |7 |009999|0 |2 |0 |
+ROW |54802 |531 |25368 |0 |8 |BBBB00|0 |2 |0 |
+ROW |54803 |531 |28618 |0 |9 |990000|0 |2 |0 |
+ROW |54804 |531 |28619 |0 |10 |008800|0 |2 |0 |
+ROW |54805 |531 |33018 |0 |11 |BB2A02|0 |2 |0 |
+ROW |54806 |807 |28617 |0 |0 |008800|0 |2 |0 |
+ROW |54807 |532 |23340 |5 |0 |00C800|0 |2 |0 |
+ROW |54808 |532 |23358 |5 |1 |C80000|1 |2 |0 |
+ROW |54809 |1445 |33021 |0 |1 |C80000|0 |2 |0 |
+ROW |54810 |1445 |33020 |0 |2 |00C800|0 |2 |0 |
+ROW |54811 |1446 |33025 |0 |1 |C80000|0 |2 |0 |
+ROW |54812 |1446 |33024 |0 |2 |00C800|0 |2 |0 |
+ROW |54813 |527 |22199 |0 |0 |C80000|0 |2 |0 |
+ROW |54814 |527 |22196 |0 |1 |00C800|0 |2 |0 |
+ROW |54815 |528 |23628 |0 |0 |C80000|0 |2 |0 |
+ROW |54816 |528 |23625 |0 |1 |00C800|0 |2 |0 |
+ROW |54817 |410 |22185 |0 |0 |009900|0 |2 |0 |
+ROW |54818 |410 |22189 |0 |1 |DD0000|0 |2 |0 |
+ROW |54819 |410 |22396 |0 |2 |00DDDD|0 |2 |0 |
+ROW |54820 |410 |22183 |0 |3 |3333FF|0 |2 |0 |
+ROW |54821 |410 |22191 |0 |4 |999900|0 |2 |0 |
+ROW |54822 |410 |23634 |0 |5 |00FF00|0 |2 |0 |
+ROW |54823 |520 |23276 |0 |0 |009900|0 |2 |0 |
+ROW |54824 |520 |23273 |0 |1 |DD0000|0 |2 |0 |
+ROW |54825 |520 |23275 |0 |2 |00DDDD|0 |2 |0 |
+ROW |54826 |520 |23274 |0 |3 |3333FF|0 |2 |0 |
+ROW |54827 |520 |23620 |0 |4 |999900|0 |2 |0 |
+ROW |54828 |520 |23635 |0 |5 |00FF00|0 |2 |0 |
+ROW |54829 |404 |22404 |0 |1 |990099|0 |2 |0 |
+ROW |54830 |404 |22399 |0 |2 |990000|0 |2 |0 |
+ROW |54831 |404 |22416 |0 |3 |0000EE|0 |2 |0 |
+ROW |54832 |404 |22430 |0 |4 |FF33FF|0 |2 |0 |
+ROW |54833 |404 |22418 |0 |5 |009600|0 |2 |0 |
+ROW |54834 |404 |22402 |0 |6 |003300|0 |2 |0 |
+ROW |54835 |404 |22420 |0 |7 |CCCC00|0 |2 |0 |
+ROW |54836 |404 |22400 |0 |8 |33FFFF|0 |2 |0 |
+ROW |54837 |404 |22689 |0 |9 |DD0000|0 |2 |0 |
+ROW |54838 |404 |23171 |0 |10 |000099|0 |2 |0 |
+ROW |54839 |404 |22401 |0 |11 |00FF00|0 |2 |0 |
+ROW |54840 |404 |33023 |0 |12 |5A2B57|0 |2 |0 |
+ROW |54841 |518 |23269 |0 |1 |990099|0 |2 |0 |
+ROW |54842 |518 |23264 |0 |2 |990000|0 |2 |0 |
+ROW |54843 |518 |23261 |0 |3 |0000EE|0 |2 |0 |
+ROW |54844 |518 |23255 |0 |4 |FF33FF|0 |2 |0 |
+ROW |54845 |518 |23260 |0 |5 |009600|0 |2 |0 |
+ROW |54846 |518 |23259 |0 |6 |003300|0 |2 |0 |
+ROW |54847 |518 |23265 |0 |7 |CCCC00|0 |2 |0 |
+ROW |54848 |518 |23270 |0 |8 |33FFFF|0 |2 |0 |
+ROW |54849 |518 |23262 |0 |9 |DD0000|0 |2 |0 |
+ROW |54850 |518 |23267 |0 |10 |000099|0 |2 |0 |
+ROW |54851 |518 |23328 |0 |11 |00FF00|0 |2 |0 |
+ROW |54852 |518 |33027 |0 |12 |5A2B57|0 |2 |0 |
+ROW |54853 |406 |22426 |0 |1 |00EE00|0 |2 |0 |
+ROW |54854 |406 |22422 |0 |2 |0000EE|0 |2 |0 |
+ROW |54855 |406 |22408 |0 |3 |FFAA00|0 |2 |0 |
+ROW |54856 |406 |22424 |0 |4 |00EEEE|0 |2 |0 |
+ROW |54857 |406 |22412 |0 |5 |990099|0 |2 |0 |
+ROW |54858 |406 |22406 |0 |6 |EE0000|0 |2 |0 |
+ROW |54859 |406 |22414 |0 |7 |FF66FF|0 |2 |0 |
+ROW |54860 |406 |23663 |0 |8 |009999|0 |2 |0 |
+ROW |54861 |406 |25366 |0 |9 |BBBB00|0 |2 |0 |
+ROW |54862 |406 |25370 |0 |10 |AA0000|0 |2 |0 |
+ROW |54863 |406 |25665 |0 |11 |990000|0 |2 |0 |
+ROW |54864 |406 |25666 |0 |12 |008800|0 |2 |0 |
+ROW |54865 |406 |28535 |0 |13 |80B0E0|0 |2 |0 |
+ROW |54866 |406 |28537 |0 |14 |4080B0|0 |2 |0 |
+ROW |54867 |406 |29822 |0 |15 |8000FF|0 |2 |0 |
+ROW |54868 |406 |33022 |0 |16 |2B5429|0 |2 |0 |
+ROW |54869 |406 |34317 |0 |17 |8048B4|0 |2 |0 |
+ROW |54870 |406 |34316 |0 |18 |FD5434|0 |2 |0 |
+ROW |54871 |517 |23268 |0 |1 |00EE00|0 |2 |0 |
+ROW |54872 |517 |23256 |0 |2 |0000EE|0 |2 |0 |
+ROW |54873 |517 |23258 |0 |3 |FFAA00|0 |2 |0 |
+ROW |54874 |517 |23252 |0 |4 |00EEEE|0 |2 |0 |
+ROW |54875 |517 |23253 |0 |5 |990099|0 |2 |0 |
+ROW |54876 |517 |23257 |0 |6 |EE0000|0 |2 |0 |
+ROW |54877 |517 |23266 |0 |7 |FF66FF|0 |2 |0 |
+ROW |54878 |517 |23664 |0 |8 |009999|0 |2 |0 |
+ROW |54879 |517 |25367 |0 |9 |BBBB00|0 |2 |0 |
+ROW |54880 |517 |25371 |0 |10 |AA0000|0 |2 |0 |
+ROW |54881 |517 |25667 |0 |11 |990000|0 |2 |0 |
+ROW |54882 |517 |25668 |0 |12 |008800|0 |2 |0 |
+ROW |54883 |517 |28536 |0 |13 |80B0E0|0 |2 |0 |
+ROW |54884 |517 |28538 |0 |14 |4080B0|0 |2 |0 |
+ROW |54885 |517 |29823 |0 |15 |8000FF|0 |2 |0 |
+ROW |54886 |517 |33026 |0 |16 |2B5429|0 |2 |0 |
+ROW |54887 |517 |34319 |0 |17 |8048B4|0 |2 |0 |
+ROW |54888 |517 |34318 |0 |18 |FD5434|0 |2 |0 |
+ROW |54889 |788 |28248 |0 |0 |008800|0 |2 |0 |
+ROW |54890 |788 |28533 |0 |1 |EE0000|0 |2 |0 |
+ROW |54891 |789 |28249 |0 |0 |008800|0 |2 |0 |
+ROW |54892 |789 |28534 |0 |1 |EE0000|0 |2 |0 |
+ROW |54893 |392 |22187 |5 |0 |00C800|0 |2 |0 |
+ROW |54894 |392 |23251 |5 |1 |C80000|1 |2 |0 |
+ROW |54895 |519 |23277 |5 |0 |00C800|0 |2 |0 |
+ROW |54896 |519 |23272 |5 |1 |C80000|1 |2 |0 |
+ROW |54897 |472 |22945 |5 |0 |00AA00|0 |2 |0 |
+ROW |54898 |472 |22946 |5 |1 |3333FF|0 |2 |0 |
+ROW |54899 |473 |22950 |0 |0 |C80000|0 |2 |2 |
+ROW |54900 |473 |22948 |0 |1 |00C800|0 |2 |0 |
+ROW |54901 |471 |22924 |0 |0 |009900|0 |2 |0 |
+ROW |54902 |471 |22920 |0 |1 |000099|0 |2 |0 |
+ROW |54903 |469 |22922 |0 |0 |009900|0 |2 |0 |
+ROW |54904 |469 |22923 |0 |1 |000099|0 |2 |0 |
+ROW |54905 |469 |22921 |0 |2 |990000|0 |2 |0 |
+ROW |54906 |498 |23109 |0 |0 |009999|0 |2 |0 |
+ROW |54907 |498 |23112 |0 |1 |990099|0 |2 |0 |
+ROW |54908 |498 |23115 |0 |2 |999900|0 |2 |0 |
+ROW |54909 |498 |23113 |0 |3 |990000|0 |2 |0 |
+ROW |54910 |498 |23114 |0 |4 |000099|0 |2 |0 |
+ROW |54911 |498 |23110 |0 |5 |009900|0 |2 |0 |
+ROW |54912 |540 |22942 |5 |0 |00C800|0 |2 |0 |
+ROW |54913 |492 |23073 |5 |0 |00AA00|0 |2 |0 |
+ROW |54914 |492 |23074 |5 |1 |3333FF|0 |2 |0 |
+ROW |54915 |467 |22910 |0 |0 |C80000|0 |2 |2 |
+ROW |54916 |467 |22908 |0 |1 |00C800|0 |2 |0 |
+ROW |54917 |465 |22884 |0 |0 |009900|0 |2 |0 |
+ROW |54918 |465 |22880 |0 |1 |000099|0 |2 |0 |
+ROW |54919 |463 |22882 |0 |0 |009900|0 |2 |0 |
+ROW |54920 |463 |22883 |0 |1 |000099|0 |2 |0 |
+ROW |54921 |463 |22881 |0 |2 |990000|0 |2 |0 |
+ROW |54922 |462 |22886 |1 |0 |009999|0 |2 |0 |
+ROW |54923 |462 |22888 |1 |1 |990099|0 |2 |0 |
+ROW |54924 |462 |22891 |1 |2 |990000|0 |2 |0 |
+ROW |54925 |462 |22892 |1 |3 |000099|0 |2 |0 |
+ROW |54926 |462 |22885 |1 |4 |009900|0 |2 |0 |
+ROW |54927 |541 |22902 |5 |0 |00C800|0 |2 |0 |
+ROW |54928 |464 |22897 |0 |0 |AA0000|0 |2 |2 |
+ROW |54929 |464 |22895 |0 |1 |00AA00|0 |2 |0 |
+ROW |54930 |478 |22985 |5 |0 |00AA00|0 |2 |0 |
+ROW |54931 |478 |22986 |5 |1 |3333FF|0 |2 |0 |
+ROW |54932 |479 |22990 |0 |0 |C80000|0 |2 |2 |
+ROW |54933 |479 |22988 |0 |1 |00C800|0 |2 |0 |
+ROW |54934 |475 |22962 |0 |0 |009900|0 |2 |0 |
+ROW |54935 |475 |22963 |0 |1 |000099|0 |2 |0 |
+ROW |54936 |475 |22961 |0 |2 |990000|0 |2 |0 |
+ROW |54937 |474 |22968 |1 |0 |990099|0 |2 |0 |
+ROW |54938 |474 |22971 |1 |1 |990000|0 |2 |0 |
+ROW |54939 |474 |22972 |1 |2 |000099|0 |2 |0 |
+ROW |54940 |474 |22965 |1 |3 |009900|0 |2 |0 |
+ROW |54941 |542 |22982 |5 |0 |00C800|0 |2 |0 |
+ROW |54942 |491 |23070 |0 |0 |C80000|0 |2 |2 |
+ROW |54943 |491 |23068 |0 |1 |00C800|0 |2 |0 |
+ROW |54944 |487 |23042 |0 |0 |009900|0 |2 |0 |
+ROW |54945 |487 |23043 |0 |1 |000099|0 |2 |0 |
+ROW |54946 |487 |23041 |0 |2 |990000|0 |2 |0 |
+ROW |54947 |543 |23062 |5 |0 |00C800|0 |2 |0 |
+ROW |54948 |494 |23077 |5 |0 |00AA00|0 |2 |0 |
+ROW |54949 |494 |23078 |5 |1 |3333FF|0 |2 |0 |
+ROW |54950 |493 |23075 |5 |0 |00AA00|0 |2 |0 |
+ROW |54951 |493 |23076 |5 |1 |3333FF|0 |2 |0 |
+ROW |54952 |461 |22870 |0 |0 |C80000|0 |2 |2 |
+ROW |54953 |461 |22868 |0 |1 |00C800|0 |2 |0 |
+ROW |54954 |459 |22844 |0 |0 |009900|0 |2 |0 |
+ROW |54955 |459 |22840 |0 |1 |000099|0 |2 |0 |
+ROW |54956 |457 |22842 |0 |0 |009900|0 |2 |0 |
+ROW |54957 |457 |22843 |0 |1 |000099|0 |2 |0 |
+ROW |54958 |457 |22841 |0 |2 |990000|0 |2 |0 |
+ROW |54959 |456 |22846 |1 |0 |009999|0 |2 |0 |
+ROW |54960 |456 |22848 |1 |1 |990099|0 |2 |0 |
+ROW |54961 |456 |22851 |1 |2 |990000|0 |2 |0 |
+ROW |54962 |456 |22852 |1 |3 |000099|0 |2 |0 |
+ROW |54963 |456 |22845 |1 |4 |009900|0 |2 |0 |
+ROW |54964 |544 |22862 |5 |0 |00C800|0 |2 |0 |
+ROW |54965 |458 |22857 |0 |0 |AA0000|0 |2 |2 |
+ROW |54966 |458 |22855 |0 |1 |00AA00|0 |2 |0 |
+ROW |54967 |484 |23025 |5 |0 |00AA00|0 |2 |0 |
+ROW |54968 |484 |23026 |5 |1 |3333FF|0 |2 |0 |
+ROW |54969 |485 |23030 |0 |0 |C80000|0 |2 |2 |
+ROW |54970 |485 |23028 |0 |1 |00C800|0 |2 |0 |
+ROW |54971 |483 |23004 |0 |0 |009900|0 |2 |0 |
+ROW |54972 |483 |23000 |0 |1 |000099|0 |2 |0 |
+ROW |54973 |481 |23002 |0 |0 |009900|0 |2 |0 |
+ROW |54974 |481 |23003 |0 |1 |000099|0 |2 |0 |
+ROW |54975 |481 |23001 |0 |2 |990000|0 |2 |0 |
+ROW |54976 |480 |23007 |1 |0 |999900|0 |2 |0 |
+ROW |54977 |480 |23011 |1 |1 |990000|0 |2 |0 |
+ROW |54978 |480 |23012 |1 |2 |000099|0 |2 |0 |
+ROW |54979 |480 |23005 |1 |3 |009900|0 |2 |0 |
+ROW |54980 |545 |23022 |5 |0 |00C800|0 |2 |0 |
+ROW |54981 |482 |23017 |0 |0 |AA0000|0 |2 |2 |
+ROW |54982 |482 |23015 |0 |1 |00AA00|0 |2 |0 |
+ROW |54983 |651 |26928 |5 |0 |EE0000|0 |2 |0 |
+ROW |54984 |651 |26927 |0 |1 |000000|1 |2 |0 |
+ROW |54985 |652 |26925 |2 |0 |880000|0 |2 |0 |
+ROW |54986 |652 |26932 |0 |1 |009900|0 |2 |0 |
+ROW |54987 |652 |26930 |0 |2 |00CCCC|0 |2 |0 |
+ROW |54988 |652 |26931 |0 |3 |000000|0 |2 |0 |
+ROW |54989 |652 |26929 |0 |4 |3333FF|0 |2 |0 |
+ROW |54990 |652 |26926 |0 |5 |777700|0 |2 |0 |
+ROW |54991 |653 |26933 |2 |0 |EE0000|0 |2 |0 |
+ROW |54992 |653 |26943 |2 |1 |EE00EE|0 |2 |0 |
+ROW |54993 |653 |26935 |0 |2 |000000|1 |2 |0 |
+ROW |54994 |653 |26936 |4 |3 |000000|1 |2 |0 |
+ROW |54995 |654 |26934 |2 |0 |880000|0 |2 |0 |
+ROW |54996 |654 |26939 |0 |1 |009900|0 |2 |0 |
+ROW |54997 |654 |26942 |0 |2 |00CCCC|0 |2 |0 |
+ROW |54998 |654 |26938 |0 |3 |000000|0 |2 |0 |
+ROW |54999 |654 |26937 |0 |4 |3333FF|0 |2 |0 |
+ROW |55000 |1447 |33113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55001 |1447 |33112 |0 |1 |2774A4|0 |2 |0 |
+ROW |55002 |1447 |33099 |0 |2 |F63100|0 |2 |0 |
+ROW |55003 |1447 |33098 |0 |3 |A54F10|0 |2 |0 |
+ROW |55004 |1448 |33125 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55005 |1448 |33110 |0 |1 |2774A4|0 |2 |0 |
+ROW |55006 |1449 |33080 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55007 |1449 |33081 |2 |1 |2774A4|0 |2 |0 |
+ROW |55008 |1450 |33089 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55009 |1450 |33085 |2 |1 |2774A4|0 |2 |0 |
+ROW |55010 |1451 |33082 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55011 |1451 |33086 |2 |1 |2774A4|0 |2 |0 |
+ROW |55012 |1451 |33083 |0 |2 |F63100|0 |2 |0 |
+ROW |55013 |1451 |33084 |0 |3 |A54F10|0 |2 |0 |
+ROW |55014 |1451 |33087 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55015 |1451 |33088 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55016 |1452 |33093 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55017 |1452 |33092 |2 |1 |2774A4|0 |2 |0 |
+ROW |55018 |1453 |33077 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55019 |1453 |33063 |2 |1 |2774A4|0 |2 |0 |
+ROW |55020 |1454 |33094 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55021 |1454 |33059 |0 |1 |2774A4|0 |2 |0 |
+ROW |55022 |1455 |33066 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55023 |1455 |33071 |2 |1 |2774A4|0 |2 |0 |
+ROW |55024 |1455 |33067 |0 |2 |F63100|0 |2 |0 |
+ROW |55025 |1455 |33068 |0 |3 |A54F10|0 |2 |0 |
+ROW |55026 |1455 |33072 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55027 |1455 |33073 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55028 |1159 |30886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55029 |1159 |30887 |0 |1 |2774A4|0 |2 |0 |
+ROW |55030 |1160 |30888 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55031 |1160 |30882 |0 |1 |2774A4|0 |2 |0 |
+ROW |55032 |1160 |30890 |0 |2 |F63100|0 |2 |0 |
+ROW |55033 |1160 |30881 |0 |3 |A54F10|0 |2 |0 |
+ROW |55034 |1160 |30889 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55035 |1576 |34320 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55036 |1576 |30845 |0 |1 |2774A4|0 |2 |0 |
+ROW |55037 |1576 |30842 |0 |2 |F63100|0 |2 |0 |
+ROW |55038 |1576 |30873 |2 |3 |A54F10|1 |2 |0 |
+ROW |55039 |1161 |30847 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55040 |1161 |30872 |2 |1 |2774A4|0 |2 |0 |
+ROW |55041 |1162 |30853 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55042 |1162 |30849 |2 |1 |2774A4|0 |2 |0 |
+ROW |55043 |1162 |30852 |2 |2 |F63100|0 |2 |0 |
+ROW |55044 |1162 |30851 |2 |3 |A54F10|0 |2 |0 |
+ROW |55045 |1162 |30848 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |55046 |1163 |30856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55047 |1163 |30855 |0 |1 |2774A4|0 |2 |0 |
+ROW |55048 |1163 |30854 |2 |2 |F63100|1 |2 |0 |
+ROW |55049 |1164 |30859 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55050 |1164 |30870 |2 |1 |2774A4|0 |2 |0 |
+ROW |55051 |1165 |30860 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55052 |1165 |30871 |2 |1 |2774A4|0 |2 |0 |
+ROW |55053 |1166 |30868 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55054 |1166 |30869 |0 |1 |2774A4|0 |2 |0 |
+ROW |55055 |1166 |30867 |0 |2 |F63100|0 |2 |0 |
+ROW |55056 |1166 |30866 |0 |3 |A54F10|0 |2 |0 |
+ROW |55057 |1166 |30865 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55058 |1167 |30850 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55059 |1167 |30863 |5 |1 |2774A4|0 |2 |0 |
+ROW |55060 |1167 |30861 |5 |2 |F63100|0 |2 |0 |
+ROW |55061 |1168 |30833 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55062 |1168 |30841 |2 |1 |2774A4|0 |2 |0 |
+ROW |55063 |1168 |30857 |2 |2 |F63100|0 |2 |0 |
+ROW |55064 |1169 |30834 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55065 |1169 |30831 |2 |1 |2774A4|0 |2 |0 |
+ROW |55066 |1170 |30846 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55067 |1505 |33553 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55068 |1505 |33562 |0 |1 |2774A4|0 |2 |0 |
+ROW |55069 |1506 |33557 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55070 |1506 |33558 |0 |1 |2774A4|0 |2 |0 |
+ROW |55071 |1507 |33563 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55072 |1507 |33568 |0 |1 |2774A4|0 |2 |0 |
+ROW |55073 |1507 |33566 |0 |2 |F63100|0 |2 |0 |
+ROW |55074 |1507 |33564 |0 |3 |A54F10|0 |2 |0 |
+ROW |55075 |1508 |33570 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55076 |1508 |33572 |0 |1 |2774A4|0 |2 |0 |
+ROW |55077 |1508 |33571 |0 |2 |F63100|0 |2 |0 |
+ROW |55078 |1509 |33584 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55079 |1509 |33582 |0 |1 |2774A4|0 |2 |0 |
+ROW |55080 |1510 |33591 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55081 |1510 |33592 |0 |1 |2774A4|0 |2 |0 |
+ROW |55082 |1511 |33594 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55083 |1511 |33596 |0 |1 |2774A4|0 |2 |0 |
+ROW |55084 |1512 |33597 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55085 |1512 |33595 |0 |1 |2774A4|0 |2 |0 |
+ROW |55086 |1513 |33600 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55087 |1513 |33603 |0 |1 |2774A4|0 |2 |0 |
+ROW |55088 |1513 |33601 |0 |2 |F63100|0 |2 |0 |
+ROW |55089 |1513 |33602 |0 |3 |A54F10|0 |2 |0 |
+ROW |55090 |1514 |33609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55091 |1514 |33608 |0 |1 |2774A4|0 |2 |0 |
+ROW |55092 |1514 |33607 |0 |2 |F63100|0 |2 |0 |
+ROW |55093 |1515 |33612 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55094 |1515 |33613 |0 |1 |2774A4|0 |2 |0 |
+ROW |55095 |1516 |33611 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55096 |1516 |33614 |0 |1 |2774A4|0 |2 |0 |
+ROW |55097 |1516 |33615 |0 |2 |F63100|0 |2 |0 |
+ROW |55098 |1517 |33617 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55099 |1517 |33618 |0 |1 |2774A4|0 |2 |0 |
+ROW |55100 |1527 |33819 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55101 |1527 |33839 |0 |1 |2774A4|0 |2 |0 |
+ROW |55102 |1528 |33820 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55103 |1528 |33816 |0 |1 |2774A4|0 |2 |0 |
+ROW |55104 |1529 |33826 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55105 |1529 |33831 |0 |1 |2774A4|0 |2 |0 |
+ROW |55106 |1529 |33829 |0 |2 |F63100|0 |2 |0 |
+ROW |55107 |1529 |33821 |0 |3 |A54F10|0 |2 |0 |
+ROW |55108 |1529 |33825 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55109 |1529 |33833 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55110 |1529 |33823 |2 |6 |AC8C14|0 |2 |0 |
+ROW |55111 |1530 |33828 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55112 |1530 |33832 |0 |1 |2774A4|0 |2 |0 |
+ROW |55113 |1530 |33830 |0 |2 |F63100|0 |2 |0 |
+ROW |55114 |1530 |33822 |0 |3 |A54F10|0 |2 |0 |
+ROW |55115 |1530 |33815 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55116 |1530 |33834 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55117 |1530 |33824 |2 |6 |AC8C14|0 |2 |0 |
+ROW |55118 |1531 |33840 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55119 |1531 |33845 |0 |1 |2774A4|0 |2 |0 |
+ROW |55120 |1532 |33844 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55121 |1532 |33847 |0 |1 |2774A4|0 |2 |0 |
+ROW |55122 |1532 |33843 |0 |2 |F63100|0 |2 |0 |
+ROW |55123 |1532 |33841 |0 |3 |A54F10|0 |2 |0 |
+ROW |55124 |1533 |33863 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55125 |1534 |33792 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55126 |1534 |33791 |0 |1 |2774A4|0 |2 |0 |
+ROW |55127 |1534 |33793 |0 |2 |F63100|0 |2 |0 |
+ROW |55128 |1535 |33802 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55129 |1535 |33770 |0 |1 |2774A4|0 |2 |0 |
+ROW |55130 |1536 |33800 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55131 |1536 |33799 |0 |1 |2774A4|0 |2 |0 |
+ROW |55132 |1536 |33801 |0 |2 |F63100|0 |2 |0 |
+ROW |55133 |1537 |33798 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55134 |1537 |33806 |0 |1 |2774A4|0 |2 |0 |
+ROW |55135 |1537 |33774 |0 |2 |F63100|0 |2 |0 |
+ROW |55136 |1538 |33769 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55137 |1538 |33787 |0 |1 |2774A4|0 |2 |0 |
+ROW |55138 |1538 |33789 |0 |2 |F63100|0 |2 |0 |
+ROW |55139 |1538 |33790 |0 |3 |A54F10|0 |2 |0 |
+ROW |55140 |1539 |33785 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55141 |1539 |33772 |0 |1 |2774A4|0 |2 |0 |
+ROW |55142 |1539 |33773 |0 |2 |F63100|0 |2 |0 |
+ROW |55143 |1539 |33771 |0 |3 |A54F10|0 |2 |0 |
+ROW |55144 |1540 |33776 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55145 |1540 |33775 |0 |1 |2774A4|0 |2 |0 |
+ROW |55146 |1541 |33782 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55147 |1541 |33781 |0 |1 |2774A4|0 |2 |0 |
+ROW |55148 |1541 |33780 |0 |2 |F63100|0 |2 |0 |
+ROW |55149 |1541 |33783 |0 |3 |A54F10|0 |2 |0 |
+ROW |55150 |1541 |33777 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55151 |1541 |33778 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55152 |1542 |33804 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55153 |1542 |33803 |2 |1 |2774A4|0 |2 |0 |
+ROW |55154 |1542 |33805 |2 |2 |F63100|0 |2 |0 |
+ROW |55155 |1543 |33937 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55156 |1543 |33940 |0 |1 |2774A4|0 |2 |0 |
+ROW |55157 |1543 |33936 |0 |2 |F63100|0 |2 |0 |
+ROW |55158 |1543 |33934 |0 |3 |A54F10|0 |2 |0 |
+ROW |55159 |1544 |33915 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55160 |1544 |33911 |0 |1 |2774A4|0 |2 |0 |
+ROW |55161 |1544 |33912 |0 |2 |F63100|0 |2 |0 |
+ROW |55162 |1544 |33910 |0 |3 |A54F10|0 |2 |0 |
+ROW |55163 |1544 |33914 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55164 |1545 |33918 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55165 |1545 |33905 |0 |1 |2774A4|0 |2 |0 |
+ROW |55166 |1545 |33917 |0 |2 |F63100|0 |2 |0 |
+ROW |55167 |1545 |33916 |2 |3 |A54F10|1 |2 |0 |
+ROW |55168 |1546 |33908 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55169 |1546 |33909 |0 |1 |2774A4|0 |2 |0 |
+ROW |55170 |1546 |33902 |0 |2 |F63100|0 |2 |0 |
+ROW |55171 |1547 |33893 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55172 |1547 |33892 |0 |1 |2774A4|0 |2 |0 |
+ROW |55173 |1548 |33899 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55174 |1548 |33898 |2 |1 |2774A4|0 |2 |0 |
+ROW |55175 |1548 |33895 |2 |2 |F63100|0 |2 |0 |
+ROW |55176 |1548 |33900 |2 |3 |A54F10|0 |2 |0 |
+ROW |55177 |1548 |33896 |2 |4 |FC6EA3|0 |2 |0 |
+ROW |55178 |1548 |33891 |2 |5 |6C59DC|0 |2 |0 |
+ROW |55179 |1190 |31140 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55180 |1190 |31141 |0 |1 |2774A4|0 |2 |0 |
+ROW |55181 |1261 |31145 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55182 |1261 |31146 |0 |1 |2774A4|0 |2 |0 |
+ROW |55183 |1261 |31147 |0 |2 |F63100|0 |2 |0 |
+ROW |55184 |1191 |31138 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55185 |1192 |31157 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55186 |1192 |31158 |0 |1 |2774A4|0 |2 |0 |
+ROW |55187 |1193 |31092 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55188 |1193 |31108 |0 |1 |2774A4|0 |2 |0 |
+ROW |55189 |1193 |31110 |0 |2 |F63100|0 |2 |0 |
+ROW |55190 |1193 |31067 |0 |3 |A54F10|0 |2 |0 |
+ROW |55191 |1193 |31086 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55192 |1193 |31087 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55193 |1194 |31120 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55194 |1194 |31105 |0 |1 |2774A4|0 |2 |0 |
+ROW |55195 |1194 |31071 |0 |2 |F63100|0 |2 |0 |
+ROW |55196 |1194 |31081 |0 |3 |A54F10|0 |2 |0 |
+ROW |55197 |1195 |31098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55198 |1195 |31099 |0 |1 |2774A4|0 |2 |0 |
+ROW |55199 |1196 |31072 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55200 |1196 |31072 |0 |1 |2774A4|0 |2 |0 |
+ROW |55201 |1197 |31103 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55202 |1197 |31074 |0 |1 |2774A4|0 |2 |0 |
+ROW |55203 |1198 |31104 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55204 |1198 |31063 |0 |1 |2774A4|0 |2 |0 |
+ROW |55205 |1198 |31111 |0 |2 |F63100|0 |2 |0 |
+ROW |55206 |1198 |31112 |0 |3 |A54F10|0 |2 |0 |
+ROW |55207 |1198 |31084 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55208 |1199 |31115 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55209 |1199 |31116 |0 |1 |2774A4|0 |2 |0 |
+ROW |55210 |1199 |31062 |0 |2 |F63100|0 |2 |0 |
+ROW |55211 |1199 |31118 |0 |3 |A54F10|0 |2 |0 |
+ROW |55212 |1199 |31056 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55213 |1200 |31107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55214 |1200 |31090 |0 |1 |2774A4|0 |2 |0 |
+ROW |55215 |1201 |31097 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55216 |1201 |31096 |0 |1 |2774A4|0 |2 |0 |
+ROW |55217 |1202 |31089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55218 |1202 |31061 |0 |1 |2774A4|0 |2 |0 |
+ROW |55219 |1203 |31064 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55220 |1204 |31065 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55221 |1204 |31066 |0 |1 |2774A4|0 |2 |0 |
+ROW |55222 |1204 |31068 |0 |2 |F63100|0 |2 |0 |
+ROW |55223 |1204 |31070 |0 |3 |A54F10|0 |2 |0 |
+ROW |55224 |1204 |31101 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55225 |1204 |31106 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55226 |1204 |31114 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55227 |1205 |31069 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55228 |1206 |31076 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55229 |1206 |31078 |0 |1 |2774A4|0 |2 |0 |
+ROW |55230 |1206 |31109 |0 |2 |F63100|0 |2 |0 |
+ROW |55231 |1206 |31075 |0 |3 |A54F10|0 |2 |0 |
+ROW |55232 |1207 |31080 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55233 |1207 |31095 |0 |1 |2774A4|0 |2 |0 |
+ROW |55234 |1208 |31113 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55235 |1208 |31118 |0 |1 |2774A4|0 |2 |0 |
+ROW |55236 |1209 |31058 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55237 |1209 |31077 |0 |1 |2774A4|0 |2 |0 |
+ROW |55238 |1209 |31056 |0 |2 |F63100|0 |2 |0 |
+ROW |55239 |1209 |31117 |0 |3 |A54F10|0 |2 |0 |
+ROW |55240 |1109 |30453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55241 |1109 |30455 |5 |1 |2774A4|0 |2 |0 |
+ROW |55242 |1110 |30471 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55243 |1110 |30470 |0 |1 |2774A4|0 |2 |0 |
+ROW |55244 |1110 |30466 |0 |2 |F63100|0 |2 |0 |
+ROW |55245 |1110 |30441 |0 |3 |A54F10|0 |2 |0 |
+ROW |55246 |1111 |30463 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55247 |1111 |30452 |0 |1 |2774A4|0 |2 |0 |
+ROW |55248 |1111 |30451 |0 |2 |F63100|0 |2 |0 |
+ROW |55249 |1111 |30437 |0 |3 |A54F10|0 |2 |0 |
+ROW |55250 |1112 |30456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55251 |1112 |30457 |0 |1 |2774A4|0 |2 |0 |
+ROW |55252 |1112 |30458 |0 |2 |F63100|0 |2 |0 |
+ROW |55253 |1112 |30459 |0 |3 |A54F10|0 |2 |0 |
+ROW |55254 |1113 |30442 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55255 |1113 |30444 |0 |1 |2774A4|0 |2 |0 |
+ROW |55256 |1113 |30445 |0 |2 |F63100|0 |2 |0 |
+ROW |55257 |1114 |30446 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55258 |1114 |30447 |0 |1 |2774A4|0 |2 |0 |
+ROW |55259 |1114 |31168 |0 |2 |F63100|0 |2 |0 |
+ROW |55260 |1114 |30449 |0 |3 |A54F10|0 |2 |0 |
+ROW |55261 |1136 |30659 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55262 |1136 |30661 |5 |1 |2774A4|0 |2 |0 |
+ROW |55263 |1137 |30677 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55264 |1137 |30676 |0 |1 |2774A4|0 |2 |0 |
+ROW |55265 |1137 |30672 |0 |2 |F63100|0 |2 |0 |
+ROW |55266 |1137 |30647 |0 |3 |A54F10|0 |2 |0 |
+ROW |55267 |1138 |30669 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55268 |1138 |30658 |0 |1 |2774A4|0 |2 |0 |
+ROW |55269 |1138 |30657 |0 |2 |F63100|0 |2 |0 |
+ROW |55270 |1138 |30643 |0 |3 |A54F10|0 |2 |0 |
+ROW |55271 |1139 |30662 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55272 |1139 |30663 |0 |1 |2774A4|0 |2 |0 |
+ROW |55273 |1139 |30664 |0 |2 |F63100|0 |2 |0 |
+ROW |55274 |1139 |30665 |0 |3 |A54F10|0 |2 |0 |
+ROW |55275 |1140 |30648 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55276 |1140 |30650 |0 |1 |2774A4|0 |2 |0 |
+ROW |55277 |1140 |30651 |0 |2 |F63100|0 |2 |0 |
+ROW |55278 |1141 |30652 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55279 |1141 |30653 |0 |1 |2774A4|0 |2 |0 |
+ROW |55280 |1141 |31172 |0 |2 |F63100|0 |2 |0 |
+ROW |55281 |1141 |30655 |0 |3 |A54F10|0 |2 |0 |
+ROW |55282 |1115 |30506 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55283 |1115 |30507 |5 |1 |2774A4|0 |2 |0 |
+ROW |55284 |1116 |30504 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55285 |1116 |30505 |0 |1 |2774A4|0 |2 |0 |
+ROW |55286 |1116 |30518 |0 |2 |F63100|0 |2 |0 |
+ROW |55287 |1116 |30492 |0 |3 |A54F10|0 |2 |0 |
+ROW |55288 |1117 |30493 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55289 |1117 |30500 |0 |1 |2774A4|0 |2 |0 |
+ROW |55290 |1117 |30486 |0 |2 |F63100|0 |2 |0 |
+ROW |55291 |1117 |30488 |0 |3 |A54F10|0 |2 |0 |
+ROW |55292 |1118 |30508 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55293 |1118 |30509 |0 |1 |2774A4|0 |2 |0 |
+ROW |55294 |1118 |30503 |0 |2 |F63100|0 |2 |0 |
+ROW |55295 |1118 |30510 |0 |3 |A54F10|0 |2 |0 |
+ROW |55296 |1119 |30491 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55297 |1119 |30494 |0 |1 |2774A4|0 |2 |0 |
+ROW |55298 |1119 |30495 |0 |2 |F63100|0 |2 |0 |
+ROW |55299 |1120 |30496 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55300 |1120 |30497 |0 |1 |2774A4|0 |2 |0 |
+ROW |55301 |1120 |31176 |0 |2 |F63100|0 |2 |0 |
+ROW |55302 |1120 |30499 |0 |3 |A54F10|0 |2 |0 |
+ROW |55303 |1266 |31773 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55304 |1266 |31774 |0 |1 |2774A4|0 |2 |0 |
+ROW |55305 |1267 |31777 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55306 |1267 |31779 |0 |1 |2774A4|0 |2 |0 |
+ROW |55307 |1267 |33168 |0 |2 |F63100|0 |2 |0 |
+ROW |55308 |1268 |31685 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55309 |1268 |31738 |0 |1 |2774A4|0 |2 |0 |
+ROW |55310 |1269 |31723 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55311 |1269 |31757 |0 |1 |2774A4|0 |2 |0 |
+ROW |55312 |1269 |31721 |0 |2 |F63100|0 |2 |0 |
+ROW |55313 |1270 |31728 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55314 |1270 |31759 |0 |1 |2774A4|0 |2 |0 |
+ROW |55315 |1271 |31745 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55316 |1271 |31727 |0 |1 |2774A4|0 |2 |0 |
+ROW |55317 |1272 |31687 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55318 |1272 |31710 |0 |1 |2774A4|0 |2 |0 |
+ROW |55319 |1273 |31705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55320 |1273 |31703 |0 |1 |2774A4|0 |2 |0 |
+ROW |55321 |1273 |31706 |0 |2 |F63100|0 |2 |0 |
+ROW |55322 |1273 |31701 |0 |3 |A54F10|0 |2 |0 |
+ROW |55323 |1273 |31708 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55324 |1274 |31715 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55325 |1274 |31726 |0 |1 |2774A4|0 |2 |0 |
+ROW |55326 |1274 |31717 |0 |2 |F63100|0 |2 |0 |
+ROW |55327 |1274 |31716 |0 |3 |A54F10|0 |2 |0 |
+ROW |55328 |1274 |31714 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55329 |1274 |31713 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55330 |1210 |31261 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55331 |1210 |31262 |0 |1 |2774A4|0 |2 |0 |
+ROW |55332 |1211 |31269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55333 |1211 |31271 |0 |1 |2774A4|0 |2 |0 |
+ROW |55334 |1211 |33170 |0 |2 |F63100|0 |2 |0 |
+ROW |55335 |1212 |31233 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55336 |1212 |31234 |0 |1 |2774A4|0 |2 |0 |
+ROW |55337 |1213 |31216 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55338 |1213 |31237 |0 |1 |2774A4|0 |2 |0 |
+ROW |55339 |1213 |31214 |0 |2 |F63100|0 |2 |0 |
+ROW |55340 |1214 |31191 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55341 |1214 |31221 |0 |1 |2774A4|0 |2 |0 |
+ROW |55342 |1215 |31206 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55343 |1215 |31220 |0 |1 |2774A4|0 |2 |0 |
+ROW |55344 |1216 |31192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55345 |1216 |31193 |0 |1 |2774A4|0 |2 |0 |
+ROW |55346 |1217 |31200 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55347 |1217 |31197 |0 |1 |2774A4|0 |2 |0 |
+ROW |55348 |1217 |31201 |0 |2 |F63100|0 |2 |0 |
+ROW |55349 |1217 |31198 |0 |3 |A54F10|0 |2 |0 |
+ROW |55350 |1217 |31202 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55351 |1218 |31207 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55352 |1218 |31208 |0 |1 |2774A4|0 |2 |0 |
+ROW |55353 |1218 |31210 |0 |2 |F63100|0 |2 |0 |
+ROW |55354 |1218 |31209 |0 |3 |A54F10|0 |2 |0 |
+ROW |55355 |1218 |31219 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55356 |1218 |31205 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55357 |1380 |32423 |0 |0 |66BB6A|0 |2 |0 |
+ROW |55358 |1380 |32421 |0 |1 |42A5F5|0 |2 |0 |
+ROW |55359 |1381 |32405 |0 |0 |66BB6A|0 |2 |0 |
+ROW |55360 |1382 |32426 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55361 |1382 |32408 |0 |1 |F63100|0 |2 |0 |
+ROW |55362 |1382 |32422 |0 |2 |2774A4|0 |2 |0 |
+ROW |55363 |1382 |32425 |0 |3 |A54F10|0 |2 |0 |
+ROW |55364 |1383 |32409 |0 |0 |EC407A|0 |2 |0 |
+ROW |55365 |1384 |32419 |0 |0 |4CAF50|1 |2 |0 |
+ROW |55366 |1384 |32416 |0 |1 |03A9F4|1 |2 |0 |
+ROW |55367 |1384 |32413 |0 |2 |9C27B0|1 |2 |0 |
+ROW |55368 |1384 |32418 |5 |3 |81C784|0 |2 |0 |
+ROW |55369 |1384 |32415 |5 |4 |90CAF9|0 |2 |0 |
+ROW |55370 |1384 |32412 |5 |5 |CE93D8|0 |2 |0 |
+ROW |55371 |1385 |32420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55372 |1385 |32417 |0 |1 |F63100|0 |2 |0 |
+ROW |55373 |1385 |32414 |0 |2 |2774A4|0 |2 |0 |
+ROW |55374 |1386 |32433 |5 |0 |66BB6A|0 |2 |0 |
+ROW |55375 |1386 |32432 |0 |1 |42A5F5|1 |2 |0 |
+ROW |55376 |1387 |32431 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55377 |1387 |32430 |0 |1 |F63100|0 |2 |0 |
+ROW |55378 |1387 |32429 |0 |2 |2774A4|0 |2 |0 |
+ROW |55379 |1387 |32428 |0 |3 |A54F10|0 |2 |0 |
+ROW |55380 |1387 |32427 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55381 |1388 |32386 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55382 |1388 |32391 |0 |1 |F63100|1 |2 |0 |
+ROW |55383 |1388 |32387 |0 |2 |2774A4|1 |2 |0 |
+ROW |55384 |1388 |32390 |0 |3 |A54F10|1 |2 |0 |
+ROW |55385 |1388 |32395 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55386 |1388 |32389 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55387 |1389 |32393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55388 |1389 |32392 |0 |1 |F63100|0 |2 |0 |
+ROW |55389 |1389 |32394 |0 |2 |2774A4|1 |2 |0 |
+ROW |55390 |1389 |32388 |0 |3 |A54F10|1 |2 |0 |
+ROW |55391 |1390 |32401 |5 |0 |C8E6C9|1 |2 |0 |
+ROW |55392 |1390 |32402 |0 |1 |6C59DC|0 |2 |0 |
+ROW |55393 |1390 |32397 |0 |2 |1A7C11|1 |2 |0 |
+ROW |55394 |1390 |32398 |0 |3 |F63100|1 |2 |0 |
+ROW |55395 |1390 |32399 |0 |4 |2774A4|1 |2 |0 |
+ROW |55396 |1390 |32400 |0 |5 |A54F10|1 |2 |0 |
+ROW |55397 |1390 |32396 |0 |6 |AC8C14|1 |2 |0 |
+ROW |55398 |1391 |32367 |5 |0 |A5D6A7|0 |2 |0 |
+ROW |55399 |1391 |32366 |0 |1 |039BE5|1 |2 |0 |
+ROW |55400 |1392 |32370 |0 |0 |42A5F5|0 |2 |0 |
+ROW |55401 |1393 |32382 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55402 |1393 |32381 |0 |1 |F63100|1 |2 |0 |
+ROW |55403 |1393 |32383 |0 |2 |2774A4|1 |2 |0 |
+ROW |55404 |1393 |32384 |0 |3 |A54F10|1 |2 |0 |
+ROW |55405 |1394 |32377 |0 |0 |66BB6A|0 |2 |0 |
+ROW |55406 |1394 |32374 |0 |1 |03A9F4|1 |2 |0 |
+ROW |55407 |1395 |32403 |0 |0 |29B6F6|0 |2 |0 |
+ROW |55408 |1395 |32385 |0 |1 |AB47BC|1 |2 |0 |
+ROW |55409 |1219 |31363 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55410 |1219 |31346 |0 |1 |2774A4|0 |2 |0 |
+ROW |55411 |1219 |31345 |0 |2 |F63100|0 |2 |0 |
+ROW |55412 |1219 |31344 |0 |3 |A54F10|0 |2 |0 |
+ROW |55413 |1219 |31343 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55414 |1219 |31342 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55415 |1219 |31340 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55416 |1219 |31339 |0 |7 |611F27|0 |2 |0 |
+ROW |55417 |1219 |31341 |0 |8 |F230E0|0 |2 |0 |
+ROW |55418 |1219 |31341 |0 |9 |FFAD40|0 |2 |0 |
+ROW |55419 |1220 |31337 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55420 |1221 |31360 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55421 |1221 |31359 |0 |1 |2774A4|0 |2 |0 |
+ROW |55422 |1221 |31357 |0 |2 |F63100|0 |2 |0 |
+ROW |55423 |1221 |31356 |0 |3 |A54F10|0 |2 |0 |
+ROW |55424 |1221 |31354 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55425 |1221 |31353 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55426 |1221 |31352 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55427 |1221 |31350 |0 |7 |611F27|0 |2 |0 |
+ROW |55428 |1221 |31351 |0 |8 |F230E0|0 |2 |0 |
+ROW |55429 |1221 |31338 |0 |9 |FFAD40|0 |2 |0 |
+ROW |55430 |1221 |31349 |0 |10 |40CDFF|0 |2 |0 |
+ROW |55431 |1221 |31348 |0 |11 |40FFA0|0 |2 |0 |
+ROW |55432 |1221 |31347 |0 |12 |AE4500|0 |2 |0 |
+ROW |55433 |1222 |31336 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55434 |1456 |33178 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55435 |1456 |33179 |0 |1 |2774A4|0 |2 |0 |
+ROW |55436 |1456 |33180 |0 |2 |F63100|0 |2 |0 |
+ROW |55437 |1087 |30346 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55438 |1087 |30345 |0 |1 |2774A4|0 |2 |0 |
+ROW |55439 |1088 |30350 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55440 |1088 |30349 |5 |1 |2774A4|0 |2 |0 |
+ROW |55441 |1089 |30396 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55442 |1090 |30398 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55443 |1091 |30322 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55444 |1091 |30277 |5 |1 |2774A4|0 |2 |0 |
+ROW |55445 |1092 |30284 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55446 |1093 |30313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55447 |1093 |30314 |0 |1 |2774A4|0 |2 |0 |
+ROW |55448 |1093 |30315 |5 |2 |F63100|0 |2 |0 |
+ROW |55449 |1093 |30316 |0 |3 |A54F10|0 |2 |0 |
+ROW |55450 |1094 |30279 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55451 |1094 |30280 |2 |1 |2774A4|0 |2 |0 |
+ROW |55452 |1095 |30290 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55453 |1095 |30293 |0 |1 |2774A4|0 |2 |0 |
+ROW |55454 |1096 |30318 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55455 |1096 |30308 |2 |1 |2774A4|0 |2 |0 |
+ROW |55456 |1096 |30320 |2 |2 |F63100|0 |2 |0 |
+ROW |55457 |1097 |30317 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55458 |1098 |30289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55459 |1098 |30291 |5 |1 |2774A4|0 |2 |0 |
+ROW |55460 |1099 |30334 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55461 |1099 |30325 |2 |1 |2774A4|0 |2 |0 |
+ROW |55462 |1100 |30306 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55463 |1101 |30274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55464 |1102 |30281 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55465 |1577 |34351 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55466 |1577 |34350 |0 |1 |2774A4|0 |2 |0 |
+ROW |55467 |1578 |34387 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55468 |1578 |34388 |2 |1 |2774A4|0 |2 |0 |
+ROW |55469 |1579 |34393 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55470 |1579 |34386 |0 |1 |2774A4|0 |2 |0 |
+ROW |55471 |1580 |34370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55472 |1580 |34384 |0 |1 |2774A4|0 |2 |0 |
+ROW |55473 |1580 |34383 |0 |2 |F63100|0 |2 |0 |
+ROW |55474 |1581 |34438 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55475 |1581 |34413 |0 |1 |2774A4|0 |2 |0 |
+ROW |55476 |1581 |34427 |0 |2 |F63100|0 |2 |0 |
+ROW |55477 |1582 |34420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55478 |1582 |34419 |0 |1 |2774A4|0 |2 |0 |
+ROW |55479 |1582 |34418 |0 |2 |F63100|0 |2 |0 |
+ROW |55480 |1060 |30159 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55481 |1061 |30165 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55482 |1063 |30177 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55483 |1064 |30183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55484 |1065 |30161 |0 |0 |969696|0 |9 |2 |
+ROW |55485 |1065 |30162 |0 |1 |C80000|0 |9 |0 |
+ROW |55486 |1066 |30167 |0 |0 |969696|0 |9 |2 |
+ROW |55487 |1066 |30168 |0 |1 |C80000|0 |9 |0 |
+ROW |55488 |1068 |30179 |0 |0 |969696|0 |9 |2 |
+ROW |55489 |1068 |30180 |0 |1 |C80000|0 |9 |0 |
+ROW |55490 |1069 |30185 |0 |0 |969696|0 |9 |2 |
+ROW |55491 |1069 |30186 |0 |1 |C80000|0 |9 |0 |
+ROW |55492 |1070 |30142 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55493 |1071 |30143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55494 |1073 |30145 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55495 |1074 |30146 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55496 |741 |27084 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55497 |741 |27085 |2 |1 |2774A4|0 |2 |0 |
+ROW |55498 |741 |27083 |0 |2 |F63100|1 |2 |0 |
+ROW |55499 |741 |27086 |0 |3 |A54F10|1 |2 |0 |
+ROW |55500 |741 |27082 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55501 |741 |27079 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55502 |742 |27622 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55503 |742 |27625 |2 |1 |2774A4|0 |2 |0 |
+ROW |55504 |742 |27624 |0 |2 |F63100|1 |2 |0 |
+ROW |55505 |742 |27621 |0 |3 |A54F10|1 |2 |0 |
+ROW |55506 |742 |27623 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55507 |742 |27620 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55508 |743 |27979 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55509 |743 |27982 |2 |1 |2774A4|0 |2 |0 |
+ROW |55510 |743 |27981 |0 |2 |F63100|1 |2 |0 |
+ROW |55511 |743 |27978 |0 |3 |A54F10|1 |2 |0 |
+ROW |55512 |743 |27980 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55513 |743 |27977 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55514 |740 |28008 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55515 |740 |28011 |2 |1 |2774A4|0 |2 |0 |
+ROW |55516 |740 |28010 |0 |2 |F63100|1 |2 |0 |
+ROW |55517 |740 |28007 |0 |3 |A54F10|1 |2 |0 |
+ROW |55518 |740 |28009 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55519 |740 |28006 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55520 |745 |27104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55521 |745 |27105 |2 |1 |2774A4|0 |2 |0 |
+ROW |55522 |745 |27103 |0 |2 |F63100|1 |2 |0 |
+ROW |55523 |745 |27106 |0 |3 |A54F10|1 |2 |0 |
+ROW |55524 |745 |27102 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55525 |745 |27099 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55526 |746 |27183 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55527 |746 |27186 |2 |1 |2774A4|0 |2 |0 |
+ROW |55528 |746 |27185 |0 |2 |F63100|1 |2 |0 |
+ROW |55529 |746 |27182 |0 |3 |A54F10|1 |2 |0 |
+ROW |55530 |746 |27184 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55531 |746 |27181 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55532 |747 |27218 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55533 |747 |27221 |2 |1 |2774A4|0 |2 |0 |
+ROW |55534 |747 |27220 |0 |2 |F63100|1 |2 |0 |
+ROW |55535 |747 |27217 |0 |3 |A54F10|1 |2 |0 |
+ROW |55536 |747 |27219 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55537 |747 |27216 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55538 |748 |27254 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55539 |748 |27257 |2 |1 |2774A4|0 |2 |0 |
+ROW |55540 |748 |27256 |0 |2 |F63100|1 |2 |0 |
+ROW |55541 |748 |27253 |0 |3 |A54F10|1 |2 |0 |
+ROW |55542 |748 |27255 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55543 |748 |27252 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55544 |749 |27275 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55545 |749 |27278 |2 |1 |2774A4|0 |2 |0 |
+ROW |55546 |749 |27277 |0 |2 |F63100|1 |2 |0 |
+ROW |55547 |749 |27274 |0 |3 |A54F10|1 |2 |0 |
+ROW |55548 |749 |27276 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55549 |749 |27273 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55550 |750 |27324 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55551 |750 |27327 |2 |1 |2774A4|0 |2 |0 |
+ROW |55552 |750 |27326 |0 |2 |F63100|1 |2 |0 |
+ROW |55553 |750 |27323 |0 |3 |A54F10|1 |2 |0 |
+ROW |55554 |750 |27325 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55555 |750 |27322 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55556 |752 |27453 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55557 |752 |27456 |2 |1 |2774A4|0 |2 |0 |
+ROW |55558 |752 |27455 |0 |2 |F63100|1 |2 |0 |
+ROW |55559 |752 |27452 |0 |3 |A54F10|1 |2 |0 |
+ROW |55560 |752 |27454 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55561 |752 |27451 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55562 |753 |27489 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55563 |753 |27492 |2 |1 |2774A4|0 |2 |0 |
+ROW |55564 |753 |27491 |0 |2 |F63100|1 |2 |0 |
+ROW |55565 |753 |27488 |0 |3 |A54F10|1 |2 |0 |
+ROW |55566 |753 |27490 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55567 |753 |27487 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55568 |754 |27523 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55569 |754 |27526 |2 |1 |2774A4|0 |2 |0 |
+ROW |55570 |754 |27525 |0 |2 |F63100|1 |2 |0 |
+ROW |55571 |754 |27522 |0 |3 |A54F10|1 |2 |0 |
+ROW |55572 |754 |27524 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55573 |754 |27521 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55574 |755 |27559 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55575 |755 |27562 |2 |1 |2774A4|0 |2 |0 |
+ROW |55576 |755 |27561 |0 |2 |F63100|1 |2 |0 |
+ROW |55577 |755 |27558 |0 |3 |A54F10|1 |2 |0 |
+ROW |55578 |755 |27560 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55579 |755 |27557 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55580 |756 |27645 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55581 |756 |27648 |2 |1 |2774A4|0 |2 |0 |
+ROW |55582 |756 |27647 |0 |2 |F63100|1 |2 |0 |
+ROW |55583 |756 |27644 |0 |3 |A54F10|1 |2 |0 |
+ROW |55584 |756 |27646 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55585 |756 |27643 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55586 |758 |27725 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55587 |758 |27728 |2 |1 |2774A4|0 |2 |0 |
+ROW |55588 |758 |27727 |0 |2 |F63100|1 |2 |0 |
+ROW |55589 |758 |27724 |0 |3 |A54F10|1 |2 |0 |
+ROW |55590 |758 |27726 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55591 |758 |27723 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55592 |759 |27759 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55593 |759 |27762 |2 |1 |2774A4|0 |2 |0 |
+ROW |55594 |759 |27761 |0 |2 |F63100|1 |2 |0 |
+ROW |55595 |759 |27758 |0 |3 |A54F10|1 |2 |0 |
+ROW |55596 |759 |27760 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55597 |759 |27757 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55598 |760 |27791 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55599 |760 |27794 |2 |1 |2774A4|0 |2 |0 |
+ROW |55600 |760 |27793 |0 |2 |F63100|1 |2 |0 |
+ROW |55601 |760 |27790 |0 |3 |A54F10|1 |2 |0 |
+ROW |55602 |760 |27792 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55603 |760 |27789 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55604 |762 |27875 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55605 |762 |27878 |2 |1 |2774A4|0 |2 |0 |
+ROW |55606 |762 |27877 |0 |2 |F63100|1 |2 |0 |
+ROW |55607 |762 |27874 |0 |3 |A54F10|1 |2 |0 |
+ROW |55608 |762 |27876 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55609 |762 |27873 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55610 |763 |27912 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55611 |763 |27915 |2 |1 |2774A4|0 |2 |0 |
+ROW |55612 |763 |27914 |0 |2 |F63100|1 |2 |0 |
+ROW |55613 |763 |27911 |0 |3 |A54F10|1 |2 |0 |
+ROW |55614 |763 |27913 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55615 |763 |27910 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55616 |764 |27947 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55617 |764 |27950 |2 |1 |2774A4|0 |2 |0 |
+ROW |55618 |764 |27949 |0 |2 |F63100|1 |2 |0 |
+ROW |55619 |764 |27946 |0 |3 |A54F10|1 |2 |0 |
+ROW |55620 |764 |27948 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55621 |764 |27945 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55622 |773 |28121 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55623 |773 |28124 |2 |1 |2774A4|0 |2 |0 |
+ROW |55624 |773 |28123 |0 |2 |F63100|1 |2 |0 |
+ROW |55625 |773 |28120 |0 |3 |A54F10|1 |2 |0 |
+ROW |55626 |773 |28122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55627 |773 |28119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55628 |785 |28226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55629 |785 |28229 |2 |1 |2774A4|0 |2 |0 |
+ROW |55630 |785 |28228 |0 |2 |F63100|1 |2 |0 |
+ROW |55631 |785 |28225 |0 |3 |A54F10|1 |2 |0 |
+ROW |55632 |785 |28227 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55633 |785 |28224 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55634 |790 |28296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55635 |790 |28299 |2 |1 |2774A4|0 |2 |0 |
+ROW |55636 |790 |28298 |0 |2 |F63100|1 |2 |0 |
+ROW |55637 |790 |28295 |0 |3 |A54F10|1 |2 |0 |
+ROW |55638 |790 |28297 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55639 |790 |28294 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55640 |865 |28971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55641 |865 |28974 |2 |1 |2774A4|0 |2 |0 |
+ROW |55642 |865 |28973 |0 |2 |F63100|1 |2 |0 |
+ROW |55643 |865 |28970 |0 |3 |A54F10|1 |2 |0 |
+ROW |55644 |865 |28972 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55645 |865 |28969 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55646 |766 |27124 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55647 |766 |27125 |2 |1 |2774A4|0 |2 |0 |
+ROW |55648 |766 |27123 |0 |2 |F63100|1 |2 |0 |
+ROW |55649 |766 |27126 |0 |3 |A54F10|1 |2 |0 |
+ROW |55650 |766 |27122 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55651 |766 |27119 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55652 |886 |29080 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55653 |886 |29083 |2 |1 |2774A4|0 |2 |0 |
+ROW |55654 |886 |29082 |0 |2 |F63100|1 |2 |0 |
+ROW |55655 |886 |29079 |0 |3 |A54F10|1 |2 |0 |
+ROW |55656 |886 |29081 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55657 |886 |29078 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55658 |668 |27208 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55659 |1032 |30088 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55660 |1032 |30087 |5 |1 |2774A4|0 |2 |0 |
+ROW |55661 |1033 |30089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55662 |671 |27240 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55663 |1034 |30093 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55664 |675 |27294 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55665 |676 |27299 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55666 |677 |27301 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55667 |1035 |30094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55668 |1036 |30095 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55669 |1037 |30096 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55670 |1549 |33966 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55671 |1550 |33971 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55672 |1551 |33974 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55673 |1551 |33977 |2 |1 |2774A4|0 |2 |0 |
+ROW |55674 |1551 |33976 |0 |2 |F63100|1 |2 |0 |
+ROW |55675 |1551 |33973 |0 |3 |A54F10|1 |2 |0 |
+ROW |55676 |1551 |33975 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55677 |1551 |33972 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55678 |1552 |34007 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55679 |1553 |34012 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55680 |1554 |34015 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55681 |1554 |34018 |2 |1 |2774A4|0 |2 |0 |
+ROW |55682 |1554 |34017 |0 |2 |F63100|1 |2 |0 |
+ROW |55683 |1554 |34014 |0 |3 |A54F10|1 |2 |0 |
+ROW |55684 |1554 |34016 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55685 |1554 |34013 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55686 |1555 |34048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55687 |1556 |34053 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55688 |1557 |34056 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55689 |1557 |34059 |2 |1 |2774A4|0 |2 |0 |
+ROW |55690 |1557 |34058 |0 |2 |F63100|1 |2 |0 |
+ROW |55691 |1557 |34055 |0 |3 |A54F10|1 |2 |0 |
+ROW |55692 |1557 |34057 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55693 |1557 |34054 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55694 |1558 |34089 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55695 |1559 |34094 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55696 |1560 |34097 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55697 |1560 |34100 |2 |1 |2774A4|0 |2 |0 |
+ROW |55698 |1560 |34099 |0 |2 |F63100|1 |2 |0 |
+ROW |55699 |1560 |34096 |0 |3 |A54F10|1 |2 |0 |
+ROW |55700 |1560 |34098 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55701 |1560 |34095 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55702 |1561 |34130 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55703 |1562 |34135 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55704 |1563 |34138 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55705 |1563 |34141 |2 |1 |2774A4|0 |2 |0 |
+ROW |55706 |1563 |34140 |0 |2 |F63100|1 |2 |0 |
+ROW |55707 |1563 |34137 |0 |3 |A54F10|1 |2 |0 |
+ROW |55708 |1563 |34139 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55709 |1563 |34136 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55710 |1038 |30101 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55711 |1039 |30102 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55712 |1040 |30103 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55713 |1041 |30104 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55714 |786 |28246 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55715 |787 |28247 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55716 |687 |27417 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55717 |688 |27427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55718 |691 |27376 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55719 |692 |27380 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55720 |694 |27478 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55721 |1042 |30105 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55722 |1043 |30107 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55723 |698 |27511 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55724 |1044 |30108 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55725 |701 |27547 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55726 |1045 |27591 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55727 |1045 |30110 |5 |1 |2774A4|0 |2 |0 |
+ROW |55728 |1046 |30111 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55729 |704 |27586 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55730 |708 |27671 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55731 |1047 |30112 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55732 |1048 |30114 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55733 |1048 |30113 |5 |1 |2774A4|0 |2 |0 |
+ROW |55734 |1049 |30115 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55735 |775 |28143 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55736 |714 |27753 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55737 |1050 |30116 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55738 |856 |28894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55739 |1051 |30118 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55740 |1564 |34166 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55741 |1564 |34169 |2 |1 |2774A4|0 |2 |0 |
+ROW |55742 |1564 |34168 |0 |2 |F63100|1 |2 |0 |
+ROW |55743 |1564 |34165 |0 |3 |A54F10|1 |2 |0 |
+ROW |55744 |1564 |34167 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55745 |1564 |34164 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55746 |1565 |34174 |0 |0 |969696|0 |9 |2 |
+ROW |55747 |1565 |34175 |0 |1 |C80000|0 |9 |0 |
+ROW |55748 |1566 |34178 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55749 |1567 |34154 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55750 |724 |27904 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55751 |1396 |32439 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55752 |1396 |32437 |0 |1 |2774A4|0 |2 |0 |
+ROW |55753 |1396 |32436 |0 |2 |F63100|0 |2 |0 |
+ROW |55754 |1396 |32438 |0 |3 |A54F10|0 |2 |0 |
+ROW |55755 |1052 |27907 |0 |0 |969696|0 |9 |2 |
+ROW |55756 |1052 |27908 |0 |1 |C80000|0 |9 |0 |
+ROW |55757 |1053 |30120 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55758 |1457 |33206 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55759 |1457 |33193 |5 |1 |2774A4|0 |2 |0 |
+ROW |55760 |1458 |33195 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55761 |1458 |33203 |5 |1 |2774A4|0 |2 |0 |
+ROW |55762 |1458 |33202 |5 |2 |F63100|0 |2 |0 |
+ROW |55763 |1459 |33200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55764 |1459 |33194 |5 |1 |2774A4|0 |2 |0 |
+ROW |55765 |1460 |33187 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55766 |1460 |33186 |5 |1 |2774A4|0 |2 |0 |
+ROW |55767 |1460 |33204 |5 |2 |F63100|0 |2 |0 |
+ROW |55768 |1461 |33226 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55769 |1461 |33215 |5 |1 |2774A4|0 |2 |0 |
+ROW |55770 |1462 |33207 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55771 |1463 |33223 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55772 |1463 |33218 |5 |1 |2774A4|0 |2 |0 |
+ROW |55773 |1464 |33210 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55774 |1464 |33209 |5 |1 |2774A4|0 |2 |0 |
+ROW |55775 |1464 |33224 |5 |2 |F63100|0 |2 |0 |
+ROW |55776 |1465 |33249 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55777 |1465 |33236 |5 |1 |2774A4|0 |2 |0 |
+ROW |55778 |1466 |33238 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55779 |1466 |33246 |5 |1 |2774A4|0 |2 |0 |
+ROW |55780 |1466 |33245 |5 |2 |F63100|0 |2 |0 |
+ROW |55781 |1467 |33243 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55782 |1467 |33237 |5 |1 |2774A4|0 |2 |0 |
+ROW |55783 |1468 |33230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55784 |1468 |33229 |5 |1 |2774A4|0 |2 |0 |
+ROW |55785 |1468 |33247 |5 |2 |F63100|0 |2 |0 |
+ROW |55786 |1469 |33258 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55787 |1470 |33251 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55788 |1471 |33256 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55789 |1472 |33277 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55790 |1473 |33274 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55791 |1473 |33273 |5 |1 |2774A4|0 |2 |0 |
+ROW |55792 |1473 |33272 |5 |2 |F63100|0 |2 |0 |
+ROW |55793 |1474 |33270 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55794 |1475 |33269 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55795 |1476 |33261 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55796 |1476 |33275 |5 |1 |2774A4|0 |2 |0 |
+ROW |55797 |1477 |33296 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55798 |1478 |33293 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55799 |1478 |33292 |5 |1 |2774A4|0 |2 |0 |
+ROW |55800 |1478 |33291 |5 |2 |F63100|0 |2 |0 |
+ROW |55801 |1479 |33289 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55802 |1480 |33288 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55803 |1481 |33280 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55804 |1481 |33294 |5 |1 |2774A4|0 |2 |0 |
+ROW |55805 |1482 |33312 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55806 |1483 |33313 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55807 |1484 |33314 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55808 |1485 |33319 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55809 |1486 |33320 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55810 |1487 |33304 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55811 |1487 |33305 |5 |1 |2774A4|0 |2 |0 |
+ROW |55812 |727 |27936 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55813 |1054 |27935 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55814 |1054 |30122 |5 |1 |2774A4|0 |2 |0 |
+ROW |55815 |1055 |30123 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55816 |730 |27975 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55817 |1056 |30126 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55818 |733 |28003 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55819 |1057 |30131 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55820 |736 |28031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55821 |1058 |30136 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55822 |1223 |31370 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55823 |1223 |31371 |5 |1 |2774A4|0 |2 |0 |
+ROW |55824 |1224 |31373 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55825 |1224 |31374 |5 |1 |2774A4|0 |2 |0 |
+ROW |55826 |1225 |31376 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55827 |1225 |31377 |5 |1 |2774A4|0 |2 |0 |
+ROW |55828 |1226 |31380 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55829 |1226 |31383 |5 |1 |2774A4|0 |2 |0 |
+ROW |55830 |1227 |31386 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55831 |1227 |31389 |5 |1 |2774A4|0 |2 |0 |
+ROW |55832 |1228 |31392 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55833 |1228 |31395 |5 |1 |2774A4|0 |2 |0 |
+ROW |55834 |1229 |31379 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55835 |1229 |31382 |5 |1 |2774A4|0 |2 |0 |
+ROW |55836 |1230 |31385 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55837 |1230 |31388 |5 |1 |2774A4|0 |2 |0 |
+ROW |55838 |1231 |31391 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55839 |1231 |31394 |5 |1 |2774A4|0 |2 |0 |
+ROW |55840 |887 |29211 |0 |0 |969696|0 |9 |2 |
+ROW |55841 |887 |29210 |0 |1 |C80000|0 |9 |0 |
+ROW |55842 |888 |29225 |0 |0 |969696|0 |9 |2 |
+ROW |55843 |888 |29224 |0 |1 |C80000|0 |9 |0 |
+ROW |55844 |889 |29239 |0 |0 |969696|0 |9 |2 |
+ROW |55845 |889 |29238 |0 |1 |C80000|0 |9 |0 |
+ROW |55846 |899 |29216 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55847 |899 |29217 |2 |1 |2774A4|0 |2 |0 |
+ROW |55848 |899 |29218 |0 |2 |F63100|1 |2 |0 |
+ROW |55849 |899 |29219 |0 |3 |A54F10|1 |2 |0 |
+ROW |55850 |899 |29220 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55851 |899 |29221 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55852 |900 |29230 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55853 |900 |29231 |2 |1 |2774A4|0 |2 |0 |
+ROW |55854 |900 |29232 |0 |2 |F63100|1 |2 |0 |
+ROW |55855 |900 |29233 |0 |3 |A54F10|1 |2 |0 |
+ROW |55856 |900 |29234 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55857 |900 |29235 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55858 |901 |29244 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55859 |901 |29245 |2 |1 |2774A4|0 |2 |0 |
+ROW |55860 |901 |29246 |0 |2 |F63100|1 |2 |0 |
+ROW |55861 |901 |29247 |0 |3 |A54F10|1 |2 |0 |
+ROW |55862 |901 |29248 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55863 |901 |29249 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55864 |911 |29089 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55865 |911 |29102 |0 |1 |2774A4|0 |2 |0 |
+ROW |55866 |912 |29126 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55867 |912 |29139 |0 |1 |2774A4|0 |2 |0 |
+ROW |55868 |913 |29163 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55869 |913 |29176 |0 |1 |2774A4|0 |2 |0 |
+ROW |55870 |908 |29098 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55871 |908 |29097 |0 |1 |2774A4|0 |2 |0 |
+ROW |55872 |908 |29095 |0 |2 |F63100|0 |2 |0 |
+ROW |55873 |908 |29088 |0 |3 |A54F10|0 |2 |0 |
+ROW |55874 |908 |29094 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55875 |908 |29093 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55876 |908 |29092 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55877 |908 |29091 |0 |7 |611F27|0 |2 |0 |
+ROW |55878 |908 |29090 |0 |8 |F230E0|0 |2 |0 |
+ROW |55879 |909 |29135 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55880 |909 |29134 |0 |1 |2774A4|0 |2 |0 |
+ROW |55881 |909 |29132 |0 |2 |F63100|0 |2 |0 |
+ROW |55882 |909 |29125 |0 |3 |A54F10|0 |2 |0 |
+ROW |55883 |909 |29131 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55884 |909 |29130 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55885 |909 |29129 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55886 |909 |29128 |0 |7 |611F27|0 |2 |0 |
+ROW |55887 |909 |29127 |0 |8 |F230E0|0 |2 |0 |
+ROW |55888 |910 |29172 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55889 |910 |29171 |0 |1 |2774A4|0 |2 |0 |
+ROW |55890 |910 |29169 |0 |2 |F63100|0 |2 |0 |
+ROW |55891 |910 |29162 |0 |3 |A54F10|0 |2 |0 |
+ROW |55892 |910 |29168 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55893 |910 |29167 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55894 |910 |29166 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55895 |910 |29165 |0 |7 |611F27|0 |2 |0 |
+ROW |55896 |910 |29164 |0 |8 |F230E0|0 |2 |0 |
+ROW |55897 |905 |29198 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55898 |906 |29199 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55899 |907 |29200 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55900 |917 |29104 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55901 |917 |29105 |5 |1 |2774A4|0 |2 |0 |
+ROW |55902 |918 |29141 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55903 |918 |29142 |5 |1 |2774A4|0 |2 |0 |
+ROW |55904 |919 |29178 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55905 |919 |29179 |5 |1 |2774A4|0 |2 |0 |
+ROW |55906 |914 |31364 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55907 |915 |31365 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55908 |916 |31366 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55909 |923 |29118 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55910 |923 |29119 |0 |1 |2774A4|0 |2 |0 |
+ROW |55911 |923 |29117 |0 |2 |F63100|0 |2 |0 |
+ROW |55912 |924 |29155 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55913 |924 |29156 |0 |1 |2774A4|0 |2 |0 |
+ROW |55914 |924 |29154 |0 |2 |F63100|0 |2 |0 |
+ROW |55915 |925 |29192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55916 |925 |29193 |0 |1 |2774A4|0 |2 |0 |
+ROW |55917 |925 |29191 |0 |2 |F63100|0 |2 |0 |
+ROW |55918 |920 |29107 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55919 |920 |29106 |0 |1 |2774A4|0 |2 |0 |
+ROW |55920 |921 |29144 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55921 |921 |29143 |0 |1 |2774A4|0 |2 |0 |
+ROW |55922 |922 |29181 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55923 |922 |29180 |0 |1 |2774A4|0 |2 |0 |
+ROW |55924 |902 |29096 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55925 |902 |29101 |0 |1 |2774A4|0 |2 |0 |
+ROW |55926 |902 |29100 |0 |2 |F63100|0 |2 |0 |
+ROW |55927 |902 |29087 |0 |3 |A54F10|1 |2 |0 |
+ROW |55928 |903 |29133 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55929 |903 |29138 |0 |1 |2774A4|0 |2 |0 |
+ROW |55930 |903 |29137 |0 |2 |F63100|0 |2 |0 |
+ROW |55931 |903 |29124 |0 |3 |A54F10|1 |2 |0 |
+ROW |55932 |904 |29170 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55933 |904 |29175 |0 |1 |2774A4|0 |2 |0 |
+ROW |55934 |904 |29174 |0 |2 |F63100|0 |2 |0 |
+ROW |55935 |904 |29161 |0 |3 |A54F10|1 |2 |0 |
+ROW |55936 |1279 |31902 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55937 |1279 |31903 |5 |1 |2774A4|0 |2 |0 |
+ROW |55938 |1280 |31917 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55939 |1280 |31918 |5 |1 |2774A4|0 |2 |0 |
+ROW |55940 |1281 |31933 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55941 |1281 |31936 |5 |1 |2774A4|0 |2 |0 |
+ROW |55942 |1282 |31939 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55943 |1282 |31942 |5 |1 |2774A4|0 |2 |0 |
+ROW |55944 |1283 |31932 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55945 |1283 |31935 |5 |1 |2774A4|0 |2 |0 |
+ROW |55946 |1284 |31938 |0 |0 |1A7C11|1 |2 |0 |
+ROW |55947 |1284 |31941 |5 |1 |2774A4|0 |2 |0 |
+ROW |55948 |1285 |31907 |0 |0 |969696|0 |9 |2 |
+ROW |55949 |1285 |31908 |0 |1 |C80000|0 |9 |0 |
+ROW |55950 |1286 |31922 |0 |0 |969696|0 |9 |2 |
+ROW |55951 |1286 |31923 |0 |1 |C80000|0 |9 |0 |
+ROW |55952 |1287 |31911 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55953 |1287 |31914 |2 |1 |2774A4|0 |2 |0 |
+ROW |55954 |1287 |31913 |0 |2 |F63100|1 |2 |0 |
+ROW |55955 |1287 |31910 |0 |3 |A54F10|1 |2 |0 |
+ROW |55956 |1287 |31912 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55957 |1287 |31909 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55958 |1288 |31926 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55959 |1288 |31929 |2 |1 |2774A4|0 |2 |0 |
+ROW |55960 |1288 |31928 |0 |2 |F63100|1 |2 |0 |
+ROW |55961 |1288 |31925 |0 |3 |A54F10|1 |2 |0 |
+ROW |55962 |1288 |31927 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |55963 |1288 |31924 |0 |5 |6C59DC|1 |2 |0 |
+ROW |55964 |1289 |31831 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55965 |1289 |31820 |0 |1 |2774A4|0 |2 |0 |
+ROW |55966 |1290 |31867 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55967 |1290 |31856 |0 |1 |2774A4|0 |2 |0 |
+ROW |55968 |1291 |31822 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55969 |1291 |31835 |0 |1 |2774A4|0 |2 |0 |
+ROW |55970 |1291 |31825 |0 |2 |F63100|0 |2 |0 |
+ROW |55971 |1291 |31826 |0 |3 |A54F10|0 |2 |0 |
+ROW |55972 |1291 |31823 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55973 |1291 |31827 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55974 |1291 |31824 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55975 |1291 |31828 |0 |7 |611F27|0 |2 |0 |
+ROW |55976 |1291 |31830 |0 |8 |F230E0|0 |2 |0 |
+ROW |55977 |1292 |31858 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55978 |1292 |31871 |0 |1 |2774A4|0 |2 |0 |
+ROW |55979 |1292 |31861 |0 |2 |F63100|0 |2 |0 |
+ROW |55980 |1292 |31862 |0 |3 |A54F10|0 |2 |0 |
+ROW |55981 |1292 |31859 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |55982 |1292 |31863 |0 |5 |6C59DC|0 |2 |0 |
+ROW |55983 |1292 |31860 |0 |6 |AC8C14|0 |2 |0 |
+ROW |55984 |1292 |31864 |0 |7 |611F27|0 |2 |0 |
+ROW |55985 |1292 |31866 |0 |8 |F230E0|0 |2 |0 |
+ROW |55986 |1293 |31892 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55987 |1294 |31894 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55988 |1295 |31855 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55989 |1295 |31853 |5 |1 |2774A4|0 |2 |0 |
+ROW |55990 |1296 |31891 |2 |0 |1A7C11|0 |2 |0 |
+ROW |55991 |1296 |31889 |5 |1 |2774A4|0 |2 |0 |
+ROW |55992 |1297 |31893 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55993 |1298 |31895 |5 |0 |1A7C11|0 |2 |0 |
+ROW |55994 |1299 |31838 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55995 |1299 |31839 |0 |1 |2774A4|0 |2 |0 |
+ROW |55996 |1299 |31837 |0 |2 |F63100|0 |2 |0 |
+ROW |55997 |1300 |31874 |0 |0 |1A7C11|0 |2 |0 |
+ROW |55998 |1300 |31875 |0 |1 |2774A4|0 |2 |0 |
+ROW |55999 |1300 |31873 |0 |2 |F63100|0 |2 |0 |
+ROW |56000 |1301 |31850 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56001 |1301 |31852 |0 |1 |2774A4|0 |2 |0 |
+ROW |56002 |1302 |31886 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56003 |1302 |31888 |0 |1 |2774A4|0 |2 |0 |
+ROW |56004 |1303 |31829 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56005 |1303 |31833 |0 |1 |2774A4|0 |2 |0 |
+ROW |56006 |1303 |31834 |0 |2 |F63100|0 |2 |0 |
+ROW |56007 |1303 |31832 |0 |3 |A54F10|1 |2 |0 |
+ROW |56008 |1304 |31865 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56009 |1304 |31869 |0 |1 |2774A4|0 |2 |0 |
+ROW |56010 |1304 |31870 |0 |2 |F63100|0 |2 |0 |
+ROW |56011 |1304 |31868 |0 |3 |A54F10|1 |2 |0 |
+ROW |56012 |952 |29436 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56013 |952 |29437 |2 |1 |2774A4|0 |2 |0 |
+ROW |56014 |952 |29438 |0 |2 |F63100|1 |2 |0 |
+ROW |56015 |952 |29439 |0 |3 |A54F10|1 |2 |0 |
+ROW |56016 |952 |29441 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56017 |952 |29440 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56018 |955 |29434 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56019 |955 |29435 |5 |1 |2774A4|0 |2 |0 |
+ROW |56020 |954 |29448 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56021 |954 |29449 |5 |1 |2774A4|0 |2 |0 |
+ROW |56022 |956 |29452 |0 |0 |1A7C11|1 |2 |0 |
+ROW |56023 |956 |29453 |5 |1 |2774A4|0 |2 |0 |
+ROW |56024 |953 |29446 |0 |0 |969696|0 |9 |2 |
+ROW |56025 |953 |29432 |0 |1 |C80000|0 |9 |0 |
+ROW |56026 |960 |29405 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56027 |960 |29406 |0 |1 |2774A4|0 |2 |0 |
+ROW |56028 |959 |29426 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56029 |959 |29413 |0 |1 |2774A4|0 |2 |0 |
+ROW |56030 |959 |29411 |0 |2 |F63100|0 |2 |0 |
+ROW |56031 |959 |29410 |0 |3 |A54F10|0 |2 |0 |
+ROW |56032 |959 |29399 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |56033 |959 |29409 |0 |5 |6C59DC|0 |2 |0 |
+ROW |56034 |959 |29412 |0 |6 |AC8C14|0 |2 |0 |
+ROW |56035 |959 |29408 |0 |7 |611F27|0 |2 |0 |
+ROW |56036 |959 |29407 |0 |8 |F230E0|0 |2 |0 |
+ROW |56037 |958 |29427 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56038 |962 |29403 |2 |0 |1A7C11|0 |2 |0 |
+ROW |56039 |962 |29402 |5 |1 |2774A4|0 |2 |0 |
+ROW |56040 |961 |29396 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56041 |963 |29400 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56042 |963 |29401 |0 |1 |2774A4|0 |2 |0 |
+ROW |56043 |957 |29420 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56044 |957 |29419 |0 |1 |2774A4|0 |2 |0 |
+ROW |56045 |957 |29418 |0 |2 |F63100|0 |2 |0 |
+ROW |56046 |957 |29417 |0 |3 |A54F10|1 |2 |0 |
+ROW |56047 |866 |29014 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56048 |866 |29015 |5 |1 |2774A4|0 |2 |0 |
+ROW |56049 |867 |29031 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56050 |867 |29032 |5 |1 |2774A4|0 |2 |0 |
+ROW |56051 |868 |29018 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56052 |868 |29019 |0 |1 |2774A4|0 |2 |0 |
+ROW |56053 |868 |29022 |0 |2 |F63100|0 |2 |0 |
+ROW |56054 |868 |29023 |0 |3 |A54F10|0 |2 |0 |
+ROW |56055 |868 |29020 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |56056 |868 |29024 |0 |5 |6C59DC|0 |2 |0 |
+ROW |56057 |868 |29021 |0 |6 |AC8C14|0 |2 |0 |
+ROW |56058 |868 |29025 |0 |7 |611F27|0 |2 |0 |
+ROW |56059 |868 |29026 |0 |8 |F230E0|0 |2 |0 |
+ROW |56060 |869 |29035 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56061 |869 |29036 |0 |1 |2774A4|0 |2 |0 |
+ROW |56062 |869 |29039 |0 |2 |F63100|0 |2 |0 |
+ROW |56063 |869 |29040 |0 |3 |A54F10|0 |2 |0 |
+ROW |56064 |869 |29037 |0 |4 |FC6EA3|0 |2 |0 |
+ROW |56065 |869 |29041 |0 |5 |6C59DC|0 |2 |0 |
+ROW |56066 |869 |29038 |0 |6 |AC8C14|0 |2 |0 |
+ROW |56067 |869 |29042 |0 |7 |611F27|0 |2 |0 |
+ROW |56068 |869 |29043 |0 |8 |F230E0|0 |2 |0 |
+ROW |56069 |870 |29048 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56070 |871 |29049 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56071 |872 |29028 |0 |0 |969696|0 |9 |2 |
+ROW |56072 |872 |29027 |0 |1 |C80000|0 |9 |0 |
+ROW |56073 |873 |29045 |0 |0 |969696|0 |9 |2 |
+ROW |56074 |873 |29044 |0 |1 |C80000|0 |9 |0 |
+ROW |56075 |882 |28992 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56076 |882 |28991 |0 |1 |2774A4|0 |2 |0 |
+ROW |56077 |883 |29007 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56078 |883 |29006 |0 |1 |2774A4|0 |2 |0 |
+ROW |56079 |876 |28982 |2 |0 |1A7C11|0 |2 |0 |
+ROW |56080 |876 |28983 |5 |1 |2774A4|0 |2 |0 |
+ROW |56081 |877 |28997 |2 |0 |1A7C11|0 |2 |0 |
+ROW |56082 |877 |28998 |5 |1 |2774A4|0 |2 |0 |
+ROW |56083 |874 |28978 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56084 |875 |28993 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56085 |878 |28985 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56086 |878 |28984 |0 |1 |2774A4|0 |2 |0 |
+ROW |56087 |879 |29000 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56088 |879 |28999 |0 |1 |2774A4|0 |2 |0 |
+ROW |56089 |880 |28987 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56090 |880 |28988 |0 |1 |2774A4|0 |2 |0 |
+ROW |56091 |880 |28989 |0 |2 |F63100|0 |2 |0 |
+ROW |56092 |880 |28990 |0 |3 |A54F10|1 |2 |0 |
+ROW |56093 |881 |29002 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56094 |881 |29003 |0 |1 |2774A4|0 |2 |0 |
+ROW |56095 |881 |29004 |0 |2 |F63100|0 |2 |0 |
+ROW |56096 |881 |29005 |0 |3 |A54F10|1 |2 |0 |
+ROW |56097 |964 |29513 |0 |0 |969696|0 |9 |2 |
+ROW |56098 |964 |29512 |0 |1 |C80000|0 |9 |0 |
+ROW |56099 |965 |29522 |0 |0 |969696|0 |9 |2 |
+ROW |56100 |965 |29521 |0 |1 |C80000|0 |9 |0 |
+ROW |56101 |1238 |31435 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56102 |1238 |31438 |2 |1 |2774A4|0 |2 |0 |
+ROW |56103 |1238 |31437 |0 |2 |F63100|1 |2 |0 |
+ROW |56104 |1238 |31434 |0 |3 |A54F10|1 |2 |0 |
+ROW |56105 |1238 |31436 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56106 |1238 |31433 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56107 |1239 |31449 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56108 |1239 |31452 |2 |1 |2774A4|0 |2 |0 |
+ROW |56109 |1239 |31451 |0 |2 |F63100|1 |2 |0 |
+ROW |56110 |1239 |31448 |0 |3 |A54F10|1 |2 |0 |
+ROW |56111 |1239 |31450 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56112 |1239 |31447 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56113 |1488 |33321 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56114 |1488 |33324 |0 |1 |2774A4|0 |2 |0 |
+ROW |56115 |1489 |33325 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56116 |1489 |33328 |0 |1 |2774A4|0 |2 |0 |
+ROW |56117 |1490 |33322 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56118 |1490 |33323 |5 |1 |2774A4|0 |2 |0 |
+ROW |56119 |1491 |33326 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56120 |1491 |33327 |5 |1 |2774A4|0 |2 |0 |
+ROW |56121 |1240 |31441 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56122 |1240 |31442 |5 |1 |2774A4|0 |2 |0 |
+ROW |56123 |1241 |31445 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56124 |1241 |31446 |5 |1 |2774A4|0 |2 |0 |
+ROW |56125 |1242 |31440 |0 |0 |1A7C11|1 |2 |0 |
+ROW |56126 |1242 |31439 |5 |1 |2774A4|0 |2 |0 |
+ROW |56127 |1243 |31444 |0 |0 |1A7C11|1 |2 |0 |
+ROW |56128 |1243 |31443 |5 |1 |2774A4|0 |2 |0 |
+ROW |56129 |974 |29456 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56130 |974 |29455 |0 |1 |2774A4|0 |2 |0 |
+ROW |56131 |975 |29482 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56132 |975 |29481 |0 |1 |2774A4|0 |2 |0 |
+ROW |56133 |976 |29458 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56134 |976 |29457 |0 |1 |2774A4|0 |2 |0 |
+ROW |56135 |977 |29484 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56136 |977 |29483 |0 |1 |2774A4|0 |2 |0 |
+ROW |56137 |972 |29454 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56138 |973 |29480 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56139 |978 |29462 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56140 |979 |29488 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56141 |980 |31421 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56142 |980 |29466 |0 |1 |2774A4|0 |2 |0 |
+ROW |56143 |981 |31425 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56144 |981 |29492 |0 |1 |2774A4|0 |2 |0 |
+ROW |56145 |1305 |32013 |0 |0 |969696|0 |9 |2 |
+ROW |56146 |1305 |32014 |0 |1 |C80000|0 |9 |0 |
+ROW |56147 |1306 |32027 |0 |0 |969696|0 |9 |2 |
+ROW |56148 |1306 |32028 |0 |1 |C80000|0 |9 |0 |
+ROW |56149 |1307 |32017 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56150 |1307 |32020 |2 |1 |2774A4|0 |2 |0 |
+ROW |56151 |1307 |32019 |0 |2 |F63100|1 |2 |0 |
+ROW |56152 |1307 |32016 |0 |3 |A54F10|1 |2 |0 |
+ROW |56153 |1307 |32018 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56154 |1307 |32015 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56155 |1308 |32031 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56156 |1308 |32034 |2 |1 |2774A4|0 |2 |0 |
+ROW |56157 |1308 |32033 |0 |2 |F63100|1 |2 |0 |
+ROW |56158 |1308 |32030 |0 |3 |A54F10|1 |2 |0 |
+ROW |56159 |1308 |32032 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56160 |1308 |32029 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56161 |1492 |33329 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56162 |1492 |33332 |0 |1 |2774A4|0 |2 |0 |
+ROW |56163 |1493 |33333 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56164 |1493 |33336 |0 |1 |2774A4|0 |2 |0 |
+ROW |56165 |1494 |33330 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56166 |1494 |33331 |5 |1 |2774A4|0 |2 |0 |
+ROW |56167 |1495 |33334 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56168 |1495 |33335 |5 |1 |2774A4|0 |2 |0 |
+ROW |56169 |1309 |32023 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56170 |1309 |32024 |5 |1 |2774A4|0 |2 |0 |
+ROW |56171 |1310 |32037 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56172 |1310 |32038 |5 |1 |2774A4|0 |2 |0 |
+ROW |56173 |1311 |32022 |0 |0 |1A7C11|1 |2 |0 |
+ROW |56174 |1311 |32021 |5 |1 |2774A4|0 |2 |0 |
+ROW |56175 |1312 |32036 |0 |0 |1A7C11|1 |2 |0 |
+ROW |56176 |1312 |32035 |5 |1 |2774A4|0 |2 |0 |
+ROW |56177 |1313 |31952 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56178 |1313 |31949 |0 |1 |2774A4|0 |2 |0 |
+ROW |56179 |1314 |31979 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56180 |1314 |31976 |0 |1 |2774A4|0 |2 |0 |
+ROW |56181 |1315 |31951 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56182 |1315 |31950 |0 |1 |2774A4|0 |2 |0 |
+ROW |56183 |1316 |31978 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56184 |1316 |31977 |0 |1 |2774A4|0 |2 |0 |
+ROW |56185 |1317 |31954 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56186 |1318 |31981 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56187 |1319 |31973 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56188 |1320 |32000 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56189 |1321 |31969 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56190 |1321 |31970 |0 |1 |2774A4|0 |2 |0 |
+ROW |56191 |1322 |31996 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56192 |1322 |31997 |0 |1 |2774A4|0 |2 |0 |
+ROW |56193 |1583 |34451 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56194 |1584 |34465 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56195 |1584 |34463 |0 |1 |2774A4|0 |2 |0 |
+ROW |56196 |1585 |34466 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56197 |1585 |34462 |0 |1 |2774A4|0 |2 |0 |
+ROW |56198 |1586 |34499 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56199 |1587 |34513 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56200 |1587 |34511 |0 |1 |2774A4|0 |2 |0 |
+ROW |56201 |1588 |34514 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56202 |1588 |34510 |0 |1 |2774A4|0 |2 |0 |
+ROW |56203 |1589 |34547 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56204 |1590 |34561 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56205 |1590 |34559 |0 |1 |2774A4|0 |2 |0 |
+ROW |56206 |1591 |34562 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56207 |1591 |34558 |0 |1 |2774A4|0 |2 |0 |
+ROW |56208 |1592 |34595 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56209 |1593 |34609 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56210 |1593 |34607 |0 |1 |2774A4|0 |2 |0 |
+ROW |56211 |1594 |34610 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56212 |1594 |34606 |0 |1 |2774A4|0 |2 |0 |
+ROW |56213 |1595 |34643 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56214 |1596 |34657 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56215 |1596 |34655 |0 |1 |2774A4|0 |2 |0 |
+ROW |56216 |1597 |34658 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56217 |1597 |34654 |0 |1 |2774A4|0 |2 |0 |
+ROW |56218 |1598 |34691 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56219 |1599 |34705 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56220 |1599 |34703 |0 |1 |2774A4|0 |2 |0 |
+ROW |56221 |1600 |34706 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56222 |1600 |34702 |0 |1 |2774A4|0 |2 |0 |
+ROW |56223 |1601 |34739 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56224 |1602 |34753 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56225 |1602 |34751 |0 |1 |2774A4|0 |2 |0 |
+ROW |56226 |1603 |34754 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56227 |1603 |34750 |0 |1 |2774A4|0 |2 |0 |
+ROW |56228 |1604 |34787 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56229 |1569 |34192 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56230 |1569 |34180 |0 |1 |2774A4|0 |2 |0 |
+ROW |56231 |1570 |34194 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56232 |1570 |34190 |0 |1 |2774A4|0 |2 |0 |
+ROW |56233 |1605 |34793 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56234 |1606 |34807 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56235 |1606 |34805 |0 |1 |2774A4|0 |2 |0 |
+ROW |56236 |1607 |34808 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56237 |1607 |34804 |0 |1 |2774A4|0 |2 |0 |
+ROW |56238 |1608 |34841 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56239 |1609 |34855 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56240 |1609 |34853 |0 |1 |2774A4|0 |2 |0 |
+ROW |56241 |1610 |34856 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56242 |1610 |34852 |0 |1 |2774A4|0 |2 |0 |
+ROW |56243 |1611 |34889 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56244 |1612 |34903 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56245 |1612 |34901 |0 |1 |2774A4|0 |2 |0 |
+ROW |56246 |1613 |34904 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56247 |1613 |34900 |0 |1 |2774A4|0 |2 |0 |
+ROW |56248 |1518 |33705 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56249 |1519 |33724 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56250 |1519 |33722 |0 |1 |2774A4|0 |2 |0 |
+ROW |56251 |1519 |33726 |0 |2 |F63100|0 |2 |0 |
+ROW |56252 |1520 |33719 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56253 |1520 |33720 |0 |1 |2774A4|0 |2 |0 |
+ROW |56254 |1520 |33721 |0 |2 |F63100|0 |2 |0 |
+ROW |56255 |1521 |33725 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56256 |1521 |33723 |0 |1 |2774A4|0 |2 |0 |
+ROW |56257 |1521 |33727 |0 |2 |F63100|0 |2 |0 |
+ROW |56258 |1522 |33730 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56259 |1523 |33734 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56260 |1523 |33732 |0 |1 |2774A4|0 |2 |0 |
+ROW |56261 |1523 |33736 |0 |2 |F63100|0 |2 |0 |
+ROW |56262 |1524 |33735 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56263 |1524 |33733 |0 |1 |2774A4|0 |2 |0 |
+ROW |56264 |1524 |33737 |0 |2 |F63100|0 |2 |0 |
+ROW |56265 |1525 |33743 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56266 |1525 |33742 |0 |1 |2774A4|0 |2 |0 |
+ROW |56267 |1525 |33738 |0 |2 |F63100|0 |2 |0 |
+ROW |56268 |1526 |33692 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56269 |1526 |33693 |0 |1 |2774A4|0 |2 |0 |
+ROW |56270 |1571 |34269 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56271 |1571 |34270 |0 |1 |2774A4|0 |2 |0 |
+ROW |56272 |1571 |34271 |0 |2 |F63100|0 |2 |0 |
+ROW |56273 |1571 |34272 |0 |3 |A54F10|0 |2 |0 |
+ROW |56274 |1572 |34311 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56275 |1572 |34301 |0 |1 |2774A4|0 |2 |0 |
+ROW |56276 |1573 |34243 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56277 |1573 |34244 |0 |1 |2774A4|0 |2 |0 |
+ROW |56278 |1573 |34246 |0 |2 |F63100|0 |2 |0 |
+ROW |56279 |1573 |34245 |0 |3 |A54F10|0 |2 |0 |
+ROW |56280 |1574 |34239 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56281 |1574 |34227 |0 |1 |2774A4|0 |2 |0 |
+ROW |56282 |1574 |34236 |0 |2 |F63100|0 |2 |0 |
+ROW |56283 |1574 |34237 |0 |3 |A54F10|0 |2 |0 |
+ROW |56284 |1575 |34253 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56285 |1575 |34252 |0 |1 |2774A4|0 |2 |0 |
+ROW |56286 |1575 |34249 |0 |2 |F63100|0 |2 |0 |
+ROW |56287 |1575 |34251 |0 |3 |A54F10|0 |2 |0 |
+ROW |56288 |1496 |33368 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56289 |1497 |33371 |1 |0 |1A7C11|0 |2 |0 |
+ROW |56290 |1497 |33371 |1 |1 |2774A4|0 |2 |0 |
+ROW |56291 |1498 |33379 |5 |0 |1A7C11|0 |2 |0 |
+ROW |56292 |1498 |33382 |2 |1 |2774A4|0 |2 |0 |
+ROW |56293 |1498 |33381 |0 |2 |F63100|1 |2 |0 |
+ROW |56294 |1498 |33378 |0 |3 |A54F10|1 |2 |0 |
+ROW |56295 |1498 |33380 |0 |4 |FC6EA3|1 |2 |0 |
+ROW |56296 |1498 |33377 |0 |5 |6C59DC|1 |2 |0 |
+ROW |56297 |1142 |30689 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56298 |1275 |31794 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56299 |1275 |31792 |0 |1 |2774A4|0 |2 |0 |
+ROW |56300 |1275 |31800 |0 |2 |F63100|1 |2 |0 |
+ROW |56301 |1276 |33390 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56302 |1276 |31799 |0 |1 |2774A4|0 |2 |0 |
+ROW |56303 |1276 |31797 |0 |2 |F63100|0 |2 |0 |
+ROW |56304 |1277 |33389 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56305 |1277 |31795 |0 |1 |2774A4|0 |2 |0 |
+ROW |56306 |1278 |31793 |0 |0 |1A7C11|0 |2 |0 |
+ROW |56307 |1278 |31802 |0 |1 |2774A4|0 |2 |0 |
+ROW |56308 |1278 |31790 |0 |2 |F63100|0 |2 |0 |
+ROW |56309 |1278 |31791 |0 |3 |A54F10|0 |2 |0 |
TABLE |hostmacro
FIELDS|hostmacroid|hostid|macro |value |description |type|
@@ -16805,7 +18118,7 @@ ROW |1154 |10236 |{$CPU.UTIL.CRIT}
ROW |1155 |10236 |{$MEMORY.UTIL.MAX} |90 | |0 |
ROW |1156 |10237 |{$CPU.UTIL.CRIT} |90 | |0 |
ROW |1157 |10237 |{$MEMORY.UTIL.MAX} |90 | |0 |
-ROW |1158 |10254 |{$MEMORY.NAME.NOT_MATCHES} |(Buffer&pipe;Cache) |Filter is overriden to ignore RAM(Cache) and RAM(Buffers) memory objects. |0 |
+ROW |1158 |10254 |{$MEMORY.NAME.NOT_MATCHES} |(Buffer&pipe;Cache) |Filter is overridden to ignore RAM(Cache) and RAM(Buffers) memory objects. |0 |
ROW |1159 |10254 |{$VFS.FS.PUSED.MAX.CRIT} |95 | |0 |
ROW |1160 |10254 |{$VFS.FS.PUSED.MAX.WARN} |90 | |0 |
ROW |1161 |10305 |{$CPU.UTIL.CRIT} |90 | |0 |
@@ -16870,17 +18183,17 @@ ROW |1232 |10291 |{$IF.ERRORS.WARN}
ROW |1233 |10291 |{$IF.UTIL.MAX} |90 | |0 |
ROW |1234 |10291 |{$IFCONTROL} |1 | |0 |
ROW |1242 |10316 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
-ROW |1243 |10316 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percent for trigger expression. |0 |
+ROW |1243 |10316 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percentage for trigger expression. |0 |
ROW |1244 |10316 |{$MYSQL.HOST} |localhost |Hostname or IP of MySQL host or container. |0 |
ROW |1245 |10316 |{$MYSQL.PORT} |3306 |MySQL service port. |0 |
ROW |1246 |10316 |{$MYSQL.REPL_LAG.MAX.WARN} |30m |The lag of slave from master for trigger expression. |0 |
ROW |1247 |10316 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |The number of slow queries for trigger expression. |0 |
-ROW |1248 |10317 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
-ROW |1249 |10317 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percent for trigger expression. |0 |
+ROW |1248 |10317 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |Number of failed attempts to connect to the MySQL server for trigger expression. |0 |
+ROW |1249 |10317 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization in percentage for trigger expression. |0 |
ROW |1250 |10317 |{$MYSQL.DSN} |<Put your DSN here> |System data source name. |0 |
ROW |1251 |10317 |{$MYSQL.PASSWORD} |<Put your password here> |MySQL user password. |0 |
ROW |1252 |10317 |{$MYSQL.REPL_LAG.MAX.WARN} |30m |The lag of slave from master for trigger expression. |0 |
-ROW |1253 |10317 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |The number of slow queries for trigger expression. |0 |
+ROW |1253 |10317 |{$MYSQL.SLOW_QUERIES.MAX.WARN} |3 |Number of slow queries for trigger expression. |0 |
ROW |1254 |10317 |{$MYSQL.USER} |<Put your username here> |MySQL username. |0 |
ROW |1255 |10318 |{$DOCKER.LLD.FILTER.CONTAINER.MATCHES} |.* |Filter of discoverable containers |0 |
ROW |1256 |10318 |{$DOCKER.LLD.FILTER.CONTAINER.NOT_MATCHES} |CHANGE_IF_NEEDED |Filter to exclude discovered containers |0 |
@@ -16891,7 +18204,7 @@ ROW |1260 |10319 |{$MEMCACHED.CONN.QUEUED.MAX.WARN}
ROW |1261 |10319 |{$MEMCACHED.CONN.THROTTLED.MAX.WARN} |1 |Maximum number of throttled connections per second |0 |
ROW |1262 |10319 |{$MEMCACHED.CONN.URI} |tcp://localhost:11211 |Connection string in the URI format (password is not used). This param overwrites a value configured in the "Plugins.Memcached.Uri" option of the configuration file (if it's set), otherwise, the plugin's default value is used: "tcp://localhost:11211" |0 |
ROW |1263 |10319 |{$MEMCACHED.MEM.PUSED.MAX.WARN} |90 |Maximum percentage of memory used |0 |
-ROW |1264 |10320 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |The number of failed attempts to connect to the MySQL server for trigger expression. |0 |
+ROW |1264 |10320 |{$MYSQL.ABORTED_CONN.MAX.WARN} |3 |Number of failed attempts to connect to the MySQL server for trigger expression. |0 |
ROW |1265 |10320 |{$MYSQL.BUFF_UTIL.MIN.WARN} |50 |The minimum buffer pool utilization percentage for trigger expression. |0 |
ROW |1266 |10320 |{$MYSQL.DSN} |<Put your DSN> |System data source name such as <tcp://host:port or unix:/path/to/socket)/>. |0 |
ROW |1267 |10320 |{$MYSQL.PASSWORD} | |MySQL user password. |0 |
@@ -16957,33 +18270,33 @@ ROW |1326 |10326 |{$IIS.PORT}
ROW |1327 |10326 |{$IIS.QUEUE.MAX.TIME} |5m |The time during which the queue length may exceed the threshold. |0 |
ROW |1328 |10326 |{$IIS.QUEUE.MAX.WARN} | |Maximum application pool's request queue length for trigger expression. |0 |
ROW |1329 |10326 |{$IIS.SERVICE} |http |The service (http/https/etc) for port check. See "net.tcp.service" documentation page for more information: https://www.zabbix.com/documentation/5.4/manual/config/items/itemtypes/simple_checks |0 |
-ROW |1330 |10327 |{$MSSQL.AVERAGE_WAIT_TIME.MAX} |500 |The maximum average wait time in ms for trigger expression. |0 |
-ROW |1331 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |30 |The minimum % buffer cache hit ratio for high trigger expression. |0 |
-ROW |1332 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |50 |The minimum % buffer cache hit ratio for warning trigger expression. |0 |
-ROW |1333 |10327 |{$MSSQL.DBNAME.MATCHES} |.* |This macro is used in database discovery. It can be overridden on the host or linked template level. |0 |
-ROW |1334 |10327 |{$MSSQL.DBNAME.NOT_MATCHES} |master&pipe;tempdb&pipe;model&pipe;msdb |This macro is used in database discovery. It can be overridden on the host or linked template level. |0 |
-ROW |1335 |10327 |{$MSSQL.DEADLOCKS.MAX} |1 |The maximum deadlocks per second for trigger expression. |0 |
+ROW |1330 |10327 |{$MSSQL.AVERAGE_WAIT_TIME.MAX} |500 |The maximum average wait time in ms - for the trigger expression. |0 |
+ROW |1331 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.CRIT} |30 |The minimum % buffer cache hit ratio - for the High trigger expression. |0 |
+ROW |1332 |10327 |{$MSSQL.BUFFER_CACHE_RATIO.MIN.WARN} |50 |The minimum % buffer cache hit ratio - for the Warning trigger expression. |0 |
+ROW |1333 |10327 |{$MSSQL.DBNAME.MATCHES} |.* |This macro is used in database discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1334 |10327 |{$MSSQL.DBNAME.NOT_MATCHES} |master&pipe;tempdb&pipe;model&pipe;msdb |This macro is used in database discovery. It can be overridden on a host or linked template level. |0 |
+ROW |1335 |10327 |{$MSSQL.DEADLOCKS.MAX} |1 |The maximum deadlocks per second - for the trigger expression. |0 |
ROW |1336 |10327 |{$MSSQL.DSN} |<Put your DSN here> |System data source name. |0 |
-ROW |1337 |10327 |{$MSSQL.FREE_LIST_STALLS.MAX} |2 |The maximum free list stalls per second for trigger expression. |0 |
-ROW |1338 |10327 |{$MSSQL.INSTANCE} |SQLServer |The instance name for the default instance is SQLServer. For named instance set macro value as MSSQL$instance name. |0 |
-ROW |1339 |10327 |{$MSSQL.LAZY_WRITES.MAX} |20 |The maximum lazy writes per second for trigger expression. |0 |
-ROW |1340 |10327 |{$MSSQL.LOCK_REQUESTS.MAX} |1000 |The maximum lock requests per second for trigger expression. |0 |
-ROW |1341 |10327 |{$MSSQL.LOCK_TIMEOUTS.MAX} |1 |The maximum lock timeouts per second for trigger expression. |0 |
-ROW |1342 |10327 |{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX} |1 |The maximum log flush wait time in ms for trigger expression. |0 |
-ROW |1343 |10327 |{$MSSQL.LOG_FLUSH_WAITS.MAX} |1 |The maximum log flush waits per second for trigger expression. |0 |
-ROW |1346 |10327 |{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |300 |The minimum page life expectancy for trigger expression. |0 |
-ROW |1347 |10327 |{$MSSQL.PAGE_READS.MAX} |90 |The maximum page reads per second for trigger expression. |0 |
-ROW |1348 |10327 |{$MSSQL.PAGE_WRITES.MAX} |90 |The maximum page writes per second for trigger expression. |0 |
+ROW |1337 |10327 |{$MSSQL.FREE_LIST_STALLS.MAX} |2 |The maximum free list stalls per second - for the trigger expression. |0 |
+ROW |1338 |10327 |{$MSSQL.INSTANCE} |SQLServer |The instance name for the default instance is SQLServer. For named instance set the macro value as MSSQL$instance name. |0 |
+ROW |1339 |10327 |{$MSSQL.LAZY_WRITES.MAX} |20 |The maximum lazy writes per second - for the trigger expression. |0 |
+ROW |1340 |10327 |{$MSSQL.LOCK_REQUESTS.MAX} |1000 |The maximum lock requests per second - for the trigger expression. |0 |
+ROW |1341 |10327 |{$MSSQL.LOCK_TIMEOUTS.MAX} |1 |The maximum lock timeouts per second - for the trigger expression. |0 |
+ROW |1342 |10327 |{$MSSQL.LOG_FLUSH_WAIT_TIME.MAX} |1 |The maximum log flush wait time in ms - for the trigger expression. |0 |
+ROW |1343 |10327 |{$MSSQL.LOG_FLUSH_WAITS.MAX} |1 |The maximum log flush waits per second - for the trigger expression. |0 |
+ROW |1346 |10327 |{$MSSQL.PAGE_LIFE_EXPECTANCY.MIN} |300 |The minimum page life expectancy - for the trigger expression. |0 |
+ROW |1347 |10327 |{$MSSQL.PAGE_READS.MAX} |90 |The maximum page reads per second - for the trigger expression. |0 |
+ROW |1348 |10327 |{$MSSQL.PAGE_WRITES.MAX} |90 |The maximum page writes per second - for the trigger expression. |0 |
ROW |1349 |10327 |{$MSSQL.PASSWORD} |<Put your password here> |MSSQL user password. |0 |
-ROW |1350 |10327 |{$MSSQL.PERCENT_COMPILATIONS.MAX} |10 |The maximum percent of Transact-SQL compilations for trigger expression. |0 |
-ROW |1351 |10327 |{$MSSQL.PERCENT_LOG_USED.MAX} |80 |The maximum percent log used for trigger expression. |0 |
-ROW |1352 |10327 |{$MSSQL.PERCENT_READAHEAD.MAX} |20 |The maximum percent of pages read/sec in anticipation of use for trigger expression. |0 |
-ROW |1353 |10327 |{$MSSQL.PERCENT_RECOMPILATIONS.MAX} |10 |The maximum percent of Transact-SQL recompilations for trigger expression. |0 |
+ROW |1350 |10327 |{$MSSQL.PERCENT_COMPILATIONS.MAX} |10 |The maximum percentage of Transact-SQL compilations - for the trigger expression. |0 |
+ROW |1351 |10327 |{$MSSQL.PERCENT_LOG_USED.MAX} |80 |The maximum percentage of log used - for the trigger expression. |0 |
+ROW |1352 |10327 |{$MSSQL.PERCENT_READAHEAD.MAX} |20 |The maximum percentage of pages read/sec in anticipation of use - for the trigger expression. |0 |
+ROW |1353 |10327 |{$MSSQL.PERCENT_RECOMPILATIONS.MAX} |10 |The maximum percentage of Transact-SQL recompilations - for the trigger expression. |0 |
ROW |1354 |10327 |{$MSSQL.PORT} |1433 |MSSQL TCP port. |0 |
ROW |1355 |10327 |{$MSSQL.USER} |<Put your username here> |MSSQL username. |0 |
-ROW |1356 |10327 |{$MSSQL.WORK_FILES.MAX} |20 |The maximum number of work files created per second for trigger expression. |0 |
-ROW |1357 |10327 |{$MSSQL.WORK_TABLES.MAX} |20 |The maximum number of work tables created per second for trigger expression. |0 |
-ROW |1358 |10327 |{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |90 |The minimum % worktables from cache ratio for high trigger expression. |0 |
+ROW |1356 |10327 |{$MSSQL.WORK_FILES.MAX} |20 |The maximum number of work files created per second - for the trigger expression. |0 |
+ROW |1357 |10327 |{$MSSQL.WORK_TABLES.MAX} |20 |The maximum number of work tables created per second - for the trigger expression. |0 |
+ROW |1358 |10327 |{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |90 |The minimum percentage of the worktables from cache ratio - for the High trigger expression. |0 |
ROW |1359 |10316 |{$MYSQL.CREATED_TMP_DISK_TABLES.MAX.WARN} |10 |The maximum number of created tmp tables on a disk per second for trigger expressions. |0 |
ROW |1360 |10316 |{$MYSQL.CREATED_TMP_FILES.MAX.WARN} |10 |The maximum number of created tmp files on a disk per second for trigger expressions. |0 |
ROW |1361 |10316 |{$MYSQL.CREATED_TMP_TABLES.MAX.WARN} |30 |The maximum number of created tmp tables in memory per second for trigger expressions. |0 |
@@ -17029,7 +18342,7 @@ ROW |1400 |10169 |{$JMX.FILE.DESCRIPTORS.MAX}
ROW |1401 |10169 |{$JMX.FILE.DESCRIPTORS.TIME} |3m |The time during which the file descriptors count may exceed the threshold. |0 |
ROW |1402 |10169 |{$JMX.HEAP.MEM.USAGE.MAX} |85 |A threshold in percent for Heap memory utilization trigger. |0 |
ROW |1403 |10169 |{$JMX.HEAP.MEM.USAGE.TIME} |10m |The time during which the Heap memory utilization may exceed the threshold. |0 |
-ROW |1404 |10169 |{$JMX.MP.USAGE.MAX} |85 |A threshold in percent for memory pools utilization trigger. Use a context to change the treshold for a specific pool. |0 |
+ROW |1404 |10169 |{$JMX.MP.USAGE.MAX} |85 |A threshold in percent for memory pools utilization trigger. Use a context to change the threshold for a specific pool. |0 |
ROW |1405 |10169 |{$JMX.MP.USAGE.TIME} |10m |The time during which the memory pools utilization may exceed the threshold. |0 |
ROW |1406 |10169 |{$JMX.NONHEAP.MEM.USAGE.MAX} |85 |A threshold in percent for Non-heap memory utilization trigger. |0 |
ROW |1407 |10169 |{$JMX.NONHEAP.MEM.USAGE.TIME} |10m |The time during which the Non-heap memory utilization may exceed the threshold. |0 |
@@ -17141,9 +18454,9 @@ ROW |1512 |10350 |{$SERVICE.STARTUPNAME.NOT_MATCHES}
ROW |1534 |10353 |{$CEPH.API.KEY} |zabbix_pass | |0 |
ROW |1535 |10353 |{$CEPH.CONNSTRING} |https://localhost:8003 | |0 |
ROW |1536 |10353 |{$CEPH.USER} |zabbix | |0 |
-ROW |1542 |10355 |{$SQUID.FILE.DESC.WARN.MIN} |100 |The threshold for minimum number of avaliable file descriptors |0 |
+ROW |1542 |10355 |{$SQUID.FILE.DESC.WARN.MIN} |100 |The threshold for minimum number of available file descriptors |0 |
ROW |1543 |10355 |{$SQUID.HTTP.PORT} |3128 |http_port configured in squid.conf (Default: 3128) |0 |
-ROW |1544 |10355 |{$SQUID.PAGE.FAULT.WARN} |90 |The threshold for sys page faults rate in percent of recieved HTTP requests |0 |
+ROW |1544 |10355 |{$SQUID.PAGE.FAULT.WARN} |90 |The threshold for sys page faults rate in percent of received HTTP requests |0 |
ROW |1545 |10355 |{$SQUID.SNMP.COMMUNITY} |public |SNMP community allowed by ACL in squid.conf |0 |
ROW |1546 |10355 |{$SQUID.SNMP.PORT} |3401 |snmp_port configured in squid.conf (Default: 3401) |0 |
ROW |1568 |10357 |{$PG.CACHE_HITRATIO.MIN.WARN} |90 | |0 |
@@ -17302,7 +18615,7 @@ ROW |1720 |10334 |{$VMWARE.VM.UUID}
ROW |1721 |10367 |{$VMWARE.HV.UUID} |{#HV.UUID} |UUID of hypervisor. |0 |
ROW |1722 |10368 |{$VMWARE.VM.UUID} |{#VM.UUID} |UUID of guest virtual machine. |0 |
ROW |1723 |10369 |{$ZOOKEEPER.COMMAND_URL} |commands |The URL for listing and issuing commands relative to the root URL (admin.commandURL). |0 |
-ROW |1724 |10369 |{$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN} |85 |Maximum percentage of file descriptors usage alert treshold (for trigger expression). |0 |
+ROW |1724 |10369 |{$ZOOKEEPER.FILE_DESCRIPTORS.MAX.WARN} |85 |Maximum percentage of file descriptors usage alert threshold (for trigger expression). |0 |
ROW |1725 |10369 |{$ZOOKEEPER.OUTSTANDING_REQ.MAX.WARN} |10 |Maximum number of outstanding requests (for trigger expression). |0 |
ROW |1726 |10369 |{$ZOOKEEPER.PENDING_SYNCS.MAX.WARN} |10 |Maximum number of pending syncs from the followers (for trigger expression). |0 |
ROW |1727 |10369 |{$ZOOKEEPER.PORT} |8080 |The port the embedded Jetty server listens on (admin.serverPort). |0 |
@@ -17689,8 +19002,6 @@ ROW |2107 |10251 |{$VFS.FS.FSTYPE.NOT_MATCHES}
ROW |2108 |10251 |{$VFS.FS.PUSED.MAX.CRIT} |90 | |0 |
ROW |2109 |10251 |{$VFS.FS.PUSED.MAX.WARN} |80 | |0 |
ROW |2110 |10395 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
-ROW |2111 |10395 |{$ICMP.LOSS.WARN} |20 | |0 |
-ROW |2112 |10395 |{$ICMP.RESPONSE_TIME.WARN} |0.15 | |0 |
ROW |2113 |10395 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
ROW |2114 |10395 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
ROW |2115 |10395 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
@@ -17702,6 +19013,127 @@ ROW |2120 |10396 |{$HTTP.AGENT.TIMEOUT}
ROW |2121 |10396 |{$PASSWORD} | |AFF700 user password. |0 |
ROW |2122 |10396 |{$URL} | |AFF700 cluster URL address. |0 |
ROW |2123 |10396 |{$USERNAME} | |AFF700 user name. |0 |
+ROW |2124 |10327 |{$MSSQL.BACKUP_DIFF.CRIT} |6d |The maximum days without a differential backup - for the High trigger expression. |0 |
+ROW |2125 |10327 |{$MSSQL.BACKUP_DIFF.WARN} |3d |The maximum days without a differential backup - for the Warning trigger expression. |0 |
+ROW |2126 |10327 |{$MSSQL.BACKUP_DURATION.WARN} |1h |The maximum job duration - for the Warning trigger expression. |0 |
+ROW |2127 |10327 |{$MSSQL.BACKUP_FULL.CRIT} |10d |The maximum days without a full backup - for the High trigger expression. |0 |
+ROW |2128 |10327 |{$MSSQL.BACKUP_FULL.WARN} |9d |The maximum days without a full backup - for the Warning trigger expression. |0 |
+ROW |2129 |10327 |{$MSSQL.BACKUP_LOG.CRIT} |8h |The maximum days without a log backup - for the High trigger expression. |0 |
+ROW |2130 |10327 |{$MSSQL.BACKUP_LOG.WARN} |4h |The maximum days without a log backup - for the Warning trigger expression. |0 |
+ROW |2131 |10327 |{$MSSQL.JOB.MATCHES} |.* |This macro is used in job discovery. It can be overridden on a host or linked template level. |0 |
+ROW |2132 |10327 |{$MSSQL.JOB.NOT_MATCHES} |CHANGE_IF_NEEDED |This macro is used in job discovery. It can be overridden on a host or linked template level. |0 |
+ROW |2133 |10397 |{$PD.MISS_REGION.MAX.WARN} |100 |Maximum number of missed regions |0 |
+ROW |2134 |10397 |{$PD.PORT} |2379 |The port of PD server metrics web endpoint |0 |
+ROW |2135 |10397 |{$PD.STORAGE_USAGE.MAX.WARN} |80 |Maximum percentage of cluster space used |0 |
+ROW |2136 |10397 |{$PD.URL} |localhost |PD server URL |0 |
+ROW |2137 |10398 |{$TIDB.DDL.WAITING.MAX.WARN} |5 |Maximum number of DDL tasks that are waiting |0 |
+ROW |2138 |10398 |{$TIDB.GC_ACTIONS.ERRORS.MAX.WARN} |1 |Maximum number of GC-related operations failures |0 |
+ROW |2139 |10398 |{$TIDB.HEAP.USAGE.MAX.WARN} |10G |Maximum heap memory used |0 |
+ROW |2140 |10398 |{$TIDB.MONITOR_KEEP_ALIVE.MAX.WARN} |10 |Minimum number of keep alive operations |0 |
+ROW |2141 |10398 |{$TIDB.OPEN.FDS.MAX.WARN} |90 |Maximum percentage of used file descriptors |0 |
+ROW |2142 |10398 |{$TIDB.PORT} |10080 |The port of TiDB server metrics web endpoint |0 |
+ROW |2143 |10398 |{$TIDB.REGION_ERROR.MAX.WARN} |50 |Maximum number of region related errors |0 |
+ROW |2144 |10398 |{$TIDB.SCHEMA_LEASE_ERRORS.MAX.WARN} |0 |Maximum number of schema lease errors |0 |
+ROW |2145 |10398 |{$TIDB.SCHEMA_LOAD_ERRORS.MAX.WARN} |1 |Maximum number of load schema errors |0 |
+ROW |2146 |10398 |{$TIDB.TIME_JUMP_BACK.MAX.WARN} |1 |Maximum number of times that the operating system rewinds every second |0 |
+ROW |2147 |10398 |{$TIDB.URL} |localhost |TiDB server URL |0 |
+ROW |2148 |10399 |{$TIKV.COPOCESSOR.ERRORS.MAX.WARN} |1 |Maximum number of coprocessor request errors |0 |
+ROW |2149 |10399 |{$TIKV.PENDING_COMMANDS.MAX.WARN} |1 |Maximum number of pending commands |0 |
+ROW |2150 |10399 |{$TIKV.PENDING_TASKS.MAX.WARN} |1 |Maximum number of tasks currently running by the worker or pending |0 |
+ROW |2151 |10399 |{$TIKV.PORT} |20180 |The port of TiKV server metrics web endpoint |0 |
+ROW |2152 |10399 |{$TIKV.STORE.ERRORS.MAX.WARN} |1 |Maximum number of failure messages |0 |
+ROW |2153 |10399 |{$TIKV.URL} |localhost |TiKV server URL |0 |
+ROW |2154 |10400 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2155 |10400 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2156 |10400 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2157 |10400 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2158 |10400 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2159 |10400 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2160 |10400 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2161 |10400 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2162 |10400 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2163 |10401 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2164 |10401 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2165 |10401 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2166 |10401 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2167 |10401 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2168 |10401 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2169 |10401 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2170 |10401 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2171 |10401 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2172 |10402 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2173 |10402 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2174 |10402 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2175 |10402 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2176 |10402 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2177 |10402 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2178 |10402 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2179 |10402 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2180 |10402 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2181 |10403 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2182 |10403 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2183 |10403 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2184 |10403 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2185 |10403 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2186 |10403 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2187 |10403 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2188 |10403 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2189 |10403 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2190 |10404 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2191 |10404 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2192 |10404 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2193 |10404 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2194 |10404 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2195 |10404 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2196 |10404 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2197 |10404 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2198 |10404 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2199 |10405 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2200 |10405 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2201 |10405 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2202 |10405 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2203 |10405 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2204 |10405 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2205 |10405 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2206 |10405 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2207 |10405 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2208 |10406 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2209 |10406 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2210 |10406 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2211 |10406 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2212 |10406 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2213 |10406 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2214 |10406 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2215 |10406 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2216 |10406 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2217 |10395 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2218 |10407 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2219 |10407 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2220 |10407 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2221 |10407 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2222 |10407 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2223 |10407 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2224 |10407 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2225 |10407 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2226 |10407 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2227 |10408 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2228 |10408 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2229 |10408 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2230 |10408 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2231 |10408 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2232 |10408 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2233 |10408 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2234 |10408 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2235 |10408 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
+ROW |2236 |10409 |{$BATTERY.CAPACITY.MIN.WARN} |50 |Minimum battery capacity percentage for trigger expression. |0 |
+ROW |2237 |10409 |{$BATTERY.TEMP.MAX.WARN} |55 |Maximum battery temperature for trigger expression. |0 |
+ROW |2238 |10409 |{$SNMP.TIMEOUT} |5m |The time interval for SNMP agent availability trigger expression. |0 |
+ROW |2239 |10409 |{$TIME.PERIOD} |15m |Time period for trigger expression. |0 |
+ROW |2240 |10409 |{$UPS.INPUT_FREQ.MAX.WARN} |50.3 |Maximum input frequency for trigger expression. |0 |
+ROW |2241 |10409 |{$UPS.INPUT_FREQ.MIN.WARN} |49.7 |Minimum input frequency for trigger expression. |0 |
+ROW |2242 |10409 |{$UPS.INPUT_VOLT.MAX.WARN} |243 |Maximum input voltage for trigger expression. |0 |
+ROW |2243 |10409 |{$UPS.INPUT_VOLT.MIN.WARN} |197 |Minimum input voltage for trigger expression. |0 |
+ROW |2244 |10409 |{$UPS.OUTPUT.MAX.WARN} |80 |Maximum output load in % for trigger expression. |0 |
TABLE |hosts_groups
FIELDS|hostgroupid|hostid|groupid|
@@ -17887,6 +19319,19 @@ ROW |416 |10393 |8 |
ROW |417 |10394 |8 |
ROW |418 |10395 |18 |
ROW |419 |10396 |16 |
+ROW |420 |10397 |13 |
+ROW |421 |10398 |13 |
+ROW |422 |10399 |13 |
+ROW |423 |10400 |18 |
+ROW |424 |10401 |18 |
+ROW |425 |10402 |18 |
+ROW |426 |10403 |18 |
+ROW |427 |10404 |18 |
+ROW |428 |10405 |18 |
+ROW |429 |10406 |18 |
+ROW |430 |10407 |18 |
+ROW |431 |10408 |18 |
+ROW |432 |10409 |18 |
TABLE |hosts_templates
FIELDS|hosttemplateid|hostid|templateid|
@@ -22279,6 +23724,532 @@ ROW |4242 |268 |1 |Up
ROW |4243 |269 |0 |not available |
ROW |4244 |269 |1 |available |
ROW |4245 |269 |2 |unknown |
+ROW |4246 |270 |0 |Failed |
+ROW |4247 |270 |1 |Succeeded |
+ROW |4248 |270 |2 |Retry |
+ROW |4249 |270 |3 |Canceled |
+ROW |4250 |270 |4 |Running |
+ROW |4251 |270 |5 |Unknown |
+ROW |4252 |271 |0 |Down |
+ROW |4253 |271 |1 |Up |
+ROW |4254 |272 |0 |Down |
+ROW |4255 |272 |1 |Up |
+ROW |4256 |273 |1 |Normal |
+ROW |4257 |273 |2 |Warning |
+ROW |4258 |273 |3 |Critical |
+ROW |4259 |273 |4 |Not applicable |
+ROW |4260 |274 |1 |no Battery Needs Replacing |
+ROW |4261 |274 |2 |battery Needs Replacing |
+ROW |4262 |275 |1 |no Transfer |
+ROW |4263 |275 |2 |High Line Voltage |
+ROW |4264 |275 |3 |Brownout |
+ROW |4265 |275 |4 |Blackout |
+ROW |4266 |275 |5 |Small Momentary Sag |
+ROW |4267 |275 |6 |Deep Momentary Sag |
+ROW |4268 |275 |7 |Small Momentary Spike |
+ROW |4269 |275 |8 |Large Momentary Spike |
+ROW |4270 |275 |9 |Self Test |
+ROW |4271 |275 |10 |Rate of Voltage Change |
+ROW |4272 |276 |1 |Unknown |
+ROW |4273 |276 |2 |Normal |
+ROW |4274 |276 |3 |Low |
+ROW |4275 |276 |4 |In Fault Condition |
+ROW |4276 |277 |1 |Unknown |
+ROW |4277 |277 |2 |Online |
+ROW |4278 |277 |3 |On Battery |
+ROW |4279 |277 |4 |On Smart Boost |
+ROW |4280 |277 |5 |Timed Sleeping |
+ROW |4281 |277 |6 |Software Bypass |
+ROW |4282 |277 |7 |Off |
+ROW |4283 |277 |8 |Rebooting |
+ROW |4284 |277 |9 |Switched Bypass |
+ROW |4285 |277 |10 |Hardware Failure Bypass |
+ROW |4286 |277 |11 |Sleeping Until Power Return |
+ROW |4287 |277 |12 |On Smart Trim |
+ROW |4288 |277 |13 |Eco Mode |
+ROW |4289 |277 |14 |Hot Standby |
+ROW |4290 |277 |15 |On Battery Test |
+ROW |4291 |277 |16 |Emergency Static Bypass |
+ROW |4292 |277 |17 |Static Bypass Standby |
+ROW |4293 |277 |18 |Power Saving Mode |
+ROW |4294 |277 |19 |Spot Mode |
+ROW |4295 |277 |20 |E-Conversion |
+ROW |4296 |277 |21 |Charger Spotmode |
+ROW |4297 |277 |22 |Inverter Spotmode |
+ROW |4298 |277 |23 |Active Load |
+ROW |4299 |277 |24 |Battery Discharge Spotmode |
+ROW |4300 |277 |25 |Inverter Standby |
+ROW |4301 |277 |26 |Charger Only |
+ROW |4302 |278 |0 |not available |
+ROW |4303 |278 |1 |available |
+ROW |4304 |278 |2 |unknown |
+ROW |4305 |279 |1 |Normal |
+ROW |4306 |279 |2 |Warning |
+ROW |4307 |279 |3 |Critical |
+ROW |4308 |279 |4 |Not applicable |
+ROW |4309 |280 |1 |no Battery Needs Replacing |
+ROW |4310 |280 |2 |battery Needs Replacing |
+ROW |4311 |281 |1 |no Transfer |
+ROW |4312 |281 |2 |High Line Voltage |
+ROW |4313 |281 |3 |Brownout |
+ROW |4314 |281 |4 |Blackout |
+ROW |4315 |281 |5 |Small Momentary Sag |
+ROW |4316 |281 |6 |Deep Momentary Sag |
+ROW |4317 |281 |7 |Small Momentary Spike |
+ROW |4318 |281 |8 |Large Momentary Spike |
+ROW |4319 |281 |9 |Self Test |
+ROW |4320 |281 |10 |Rate of Voltage Change |
+ROW |4321 |282 |1 |Unknown |
+ROW |4322 |282 |2 |Normal |
+ROW |4323 |282 |3 |Low |
+ROW |4324 |282 |4 |In Fault Condition |
+ROW |4325 |283 |1 |Unknown |
+ROW |4326 |283 |2 |Online |
+ROW |4327 |283 |3 |On Battery |
+ROW |4328 |283 |4 |On Smart Boost |
+ROW |4329 |283 |5 |Timed Sleeping |
+ROW |4330 |283 |6 |Software Bypass |
+ROW |4331 |283 |7 |Off |
+ROW |4332 |283 |8 |Rebooting |
+ROW |4333 |283 |9 |Switched Bypass |
+ROW |4334 |283 |10 |Hardware Failure Bypass |
+ROW |4335 |283 |11 |Sleeping Until Power Return |
+ROW |4336 |283 |12 |On Smart Trim |
+ROW |4337 |283 |13 |Eco Mode |
+ROW |4338 |283 |14 |Hot Standby |
+ROW |4339 |283 |15 |On Battery Test |
+ROW |4340 |283 |16 |Emergency Static Bypass |
+ROW |4341 |283 |17 |Static Bypass Standby |
+ROW |4342 |283 |18 |Power Saving Mode |
+ROW |4343 |283 |19 |Spot Mode |
+ROW |4344 |283 |20 |E-Conversion |
+ROW |4345 |283 |21 |Charger Spotmode |
+ROW |4346 |283 |22 |Inverter Spotmode |
+ROW |4347 |283 |23 |Active Load |
+ROW |4348 |283 |24 |Battery Discharge Spotmode |
+ROW |4349 |283 |25 |Inverter Standby |
+ROW |4350 |283 |26 |Charger Only |
+ROW |4351 |284 |0 |not available |
+ROW |4352 |284 |1 |available |
+ROW |4353 |284 |2 |unknown |
+ROW |4354 |285 |1 |Normal |
+ROW |4355 |285 |2 |Warning |
+ROW |4356 |285 |3 |Critical |
+ROW |4357 |285 |4 |Not applicable |
+ROW |4358 |286 |1 |no Battery Needs Replacing |
+ROW |4359 |286 |2 |battery Needs Replacing |
+ROW |4360 |287 |1 |no Transfer |
+ROW |4361 |287 |2 |High Line Voltage |
+ROW |4362 |287 |3 |Brownout |
+ROW |4363 |287 |4 |Blackout |
+ROW |4364 |287 |5 |Small Momentary Sag |
+ROW |4365 |287 |6 |Deep Momentary Sag |
+ROW |4366 |287 |7 |Small Momentary Spike |
+ROW |4367 |287 |8 |Large Momentary Spike |
+ROW |4368 |287 |9 |Self Test |
+ROW |4369 |287 |10 |Rate of Voltage Change |
+ROW |4370 |288 |1 |Unknown |
+ROW |4371 |288 |2 |Normal |
+ROW |4372 |288 |3 |Low |
+ROW |4373 |288 |4 |In Fault Condition |
+ROW |4374 |289 |1 |Unknown |
+ROW |4375 |289 |2 |Online |
+ROW |4376 |289 |3 |On Battery |
+ROW |4377 |289 |4 |On Smart Boost |
+ROW |4378 |289 |5 |Timed Sleeping |
+ROW |4379 |289 |6 |Software Bypass |
+ROW |4380 |289 |7 |Off |
+ROW |4381 |289 |8 |Rebooting |
+ROW |4382 |289 |9 |Switched Bypass |
+ROW |4383 |289 |10 |Hardware Failure Bypass |
+ROW |4384 |289 |11 |Sleeping Until Power Return |
+ROW |4385 |289 |12 |On Smart Trim |
+ROW |4386 |289 |13 |Eco Mode |
+ROW |4387 |289 |14 |Hot Standby |
+ROW |4388 |289 |15 |On Battery Test |
+ROW |4389 |289 |16 |Emergency Static Bypass |
+ROW |4390 |289 |17 |Static Bypass Standby |
+ROW |4391 |289 |18 |Power Saving Mode |
+ROW |4392 |289 |19 |Spot Mode |
+ROW |4393 |289 |20 |E-Conversion |
+ROW |4394 |289 |21 |Charger Spotmode |
+ROW |4395 |289 |22 |Inverter Spotmode |
+ROW |4396 |289 |23 |Active Load |
+ROW |4397 |289 |24 |Battery Discharge Spotmode |
+ROW |4398 |289 |25 |Inverter Standby |
+ROW |4399 |289 |26 |Charger Only |
+ROW |4400 |290 |0 |not available |
+ROW |4401 |290 |1 |available |
+ROW |4402 |290 |2 |unknown |
+ROW |4403 |291 |1 |Normal |
+ROW |4404 |291 |2 |Warning |
+ROW |4405 |291 |3 |Critical |
+ROW |4406 |291 |4 |Not applicable |
+ROW |4407 |292 |1 |no Battery Needs Replacing |
+ROW |4408 |292 |2 |battery Needs Replacing |
+ROW |4409 |293 |1 |no Transfer |
+ROW |4410 |293 |2 |High Line Voltage |
+ROW |4411 |293 |3 |Brownout |
+ROW |4412 |293 |4 |Blackout |
+ROW |4413 |293 |5 |Small Momentary Sag |
+ROW |4414 |293 |6 |Deep Momentary Sag |
+ROW |4415 |293 |7 |Small Momentary Spike |
+ROW |4416 |293 |8 |Large Momentary Spike |
+ROW |4417 |293 |9 |Self Test |
+ROW |4418 |293 |10 |Rate of Voltage Change |
+ROW |4419 |294 |1 |Unknown |
+ROW |4420 |294 |2 |Normal |
+ROW |4421 |294 |3 |Low |
+ROW |4422 |294 |4 |In Fault Condition |
+ROW |4423 |295 |1 |Unknown |
+ROW |4424 |295 |2 |Online |
+ROW |4425 |295 |3 |On Battery |
+ROW |4426 |295 |4 |On Smart Boost |
+ROW |4427 |295 |5 |Timed Sleeping |
+ROW |4428 |295 |6 |Software Bypass |
+ROW |4429 |295 |7 |Off |
+ROW |4430 |295 |8 |Rebooting |
+ROW |4431 |295 |9 |Switched Bypass |
+ROW |4432 |295 |10 |Hardware Failure Bypass |
+ROW |4433 |295 |11 |Sleeping Until Power Return |
+ROW |4434 |295 |12 |On Smart Trim |
+ROW |4435 |295 |13 |Eco Mode |
+ROW |4436 |295 |14 |Hot Standby |
+ROW |4437 |295 |15 |On Battery Test |
+ROW |4438 |295 |16 |Emergency Static Bypass |
+ROW |4439 |295 |17 |Static Bypass Standby |
+ROW |4440 |295 |18 |Power Saving Mode |
+ROW |4441 |295 |19 |Spot Mode |
+ROW |4442 |295 |20 |E-Conversion |
+ROW |4443 |295 |21 |Charger Spotmode |
+ROW |4444 |295 |22 |Inverter Spotmode |
+ROW |4445 |295 |23 |Active Load |
+ROW |4446 |295 |24 |Battery Discharge Spotmode |
+ROW |4447 |295 |25 |Inverter Standby |
+ROW |4448 |295 |26 |Charger Only |
+ROW |4449 |296 |0 |not available |
+ROW |4450 |296 |1 |available |
+ROW |4451 |296 |2 |unknown |
+ROW |4452 |297 |1 |Normal |
+ROW |4453 |297 |2 |Warning |
+ROW |4454 |297 |3 |Critical |
+ROW |4455 |297 |4 |Not applicable |
+ROW |4456 |298 |1 |no Battery Needs Replacing |
+ROW |4457 |298 |2 |battery Needs Replacing |
+ROW |4458 |299 |1 |no Transfer |
+ROW |4459 |299 |2 |High Line Voltage |
+ROW |4460 |299 |3 |Brownout |
+ROW |4461 |299 |4 |Blackout |
+ROW |4462 |299 |5 |Small Momentary Sag |
+ROW |4463 |299 |6 |Deep Momentary Sag |
+ROW |4464 |299 |7 |Small Momentary Spike |
+ROW |4465 |299 |8 |Large Momentary Spike |
+ROW |4466 |299 |9 |Self Test |
+ROW |4467 |299 |10 |Rate of Voltage Change |
+ROW |4468 |300 |1 |Unknown |
+ROW |4469 |300 |2 |Normal |
+ROW |4470 |300 |3 |Low |
+ROW |4471 |300 |4 |In Fault Condition |
+ROW |4472 |301 |1 |Unknown |
+ROW |4473 |301 |2 |Online |
+ROW |4474 |301 |3 |On Battery |
+ROW |4475 |301 |4 |On Smart Boost |
+ROW |4476 |301 |5 |Timed Sleeping |
+ROW |4477 |301 |6 |Software Bypass |
+ROW |4478 |301 |7 |Off |
+ROW |4479 |301 |8 |Rebooting |
+ROW |4480 |301 |9 |Switched Bypass |
+ROW |4481 |301 |10 |Hardware Failure Bypass |
+ROW |4482 |301 |11 |Sleeping Until Power Return |
+ROW |4483 |301 |12 |On Smart Trim |
+ROW |4484 |301 |13 |Eco Mode |
+ROW |4485 |301 |14 |Hot Standby |
+ROW |4486 |301 |15 |On Battery Test |
+ROW |4487 |301 |16 |Emergency Static Bypass |
+ROW |4488 |301 |17 |Static Bypass Standby |
+ROW |4489 |301 |18 |Power Saving Mode |
+ROW |4490 |301 |19 |Spot Mode |
+ROW |4491 |301 |20 |E-Conversion |
+ROW |4492 |301 |21 |Charger Spotmode |
+ROW |4493 |301 |22 |Inverter Spotmode |
+ROW |4494 |301 |23 |Active Load |
+ROW |4495 |301 |24 |Battery Discharge Spotmode |
+ROW |4496 |301 |25 |Inverter Standby |
+ROW |4497 |301 |26 |Charger Only |
+ROW |4498 |302 |0 |not available |
+ROW |4499 |302 |1 |available |
+ROW |4500 |302 |2 |unknown |
+ROW |4501 |303 |1 |Normal |
+ROW |4502 |303 |2 |Warning |
+ROW |4503 |303 |3 |Critical |
+ROW |4504 |303 |4 |Not applicable |
+ROW |4505 |304 |1 |no Battery Needs Replacing |
+ROW |4506 |304 |2 |battery Needs Replacing |
+ROW |4507 |305 |1 |no Transfer |
+ROW |4508 |305 |2 |High Line Voltage |
+ROW |4509 |305 |3 |Brownout |
+ROW |4510 |305 |4 |Blackout |
+ROW |4511 |305 |5 |Small Momentary Sag |
+ROW |4512 |305 |6 |Deep Momentary Sag |
+ROW |4513 |305 |7 |Small Momentary Spike |
+ROW |4514 |305 |8 |Large Momentary Spike |
+ROW |4515 |305 |9 |Self Test |
+ROW |4516 |305 |10 |Rate of Voltage Change |
+ROW |4517 |306 |1 |Unknown |
+ROW |4518 |306 |2 |Normal |
+ROW |4519 |306 |3 |Low |
+ROW |4520 |306 |4 |In Fault Condition |
+ROW |4521 |307 |1 |Unknown |
+ROW |4522 |307 |2 |Online |
+ROW |4523 |307 |3 |On Battery |
+ROW |4524 |307 |4 |On Smart Boost |
+ROW |4525 |307 |5 |Timed Sleeping |
+ROW |4526 |307 |6 |Software Bypass |
+ROW |4527 |307 |7 |Off |
+ROW |4528 |307 |8 |Rebooting |
+ROW |4529 |307 |9 |Switched Bypass |
+ROW |4530 |307 |10 |Hardware Failure Bypass |
+ROW |4531 |307 |11 |Sleeping Until Power Return |
+ROW |4532 |307 |12 |On Smart Trim |
+ROW |4533 |307 |13 |Eco Mode |
+ROW |4534 |307 |14 |Hot Standby |
+ROW |4535 |307 |15 |On Battery Test |
+ROW |4536 |307 |16 |Emergency Static Bypass |
+ROW |4537 |307 |17 |Static Bypass Standby |
+ROW |4538 |307 |18 |Power Saving Mode |
+ROW |4539 |307 |19 |Spot Mode |
+ROW |4540 |307 |20 |E-Conversion |
+ROW |4541 |307 |21 |Charger Spotmode |
+ROW |4542 |307 |22 |Inverter Spotmode |
+ROW |4543 |307 |23 |Active Load |
+ROW |4544 |307 |24 |Battery Discharge Spotmode |
+ROW |4545 |307 |25 |Inverter Standby |
+ROW |4546 |307 |26 |Charger Only |
+ROW |4547 |308 |0 |not available |
+ROW |4548 |308 |1 |available |
+ROW |4549 |308 |2 |unknown |
+ROW |4550 |309 |1 |Normal |
+ROW |4551 |309 |2 |Warning |
+ROW |4552 |309 |3 |Critical |
+ROW |4553 |309 |4 |Not applicable |
+ROW |4554 |310 |1 |no Battery Needs Replacing |
+ROW |4555 |310 |2 |battery Needs Replacing |
+ROW |4556 |311 |1 |no Transfer |
+ROW |4557 |311 |2 |High Line Voltage |
+ROW |4558 |311 |3 |Brownout |
+ROW |4559 |311 |4 |Blackout |
+ROW |4560 |311 |5 |Small Momentary Sag |
+ROW |4561 |311 |6 |Deep Momentary Sag |
+ROW |4562 |311 |7 |Small Momentary Spike |
+ROW |4563 |311 |8 |Large Momentary Spike |
+ROW |4564 |311 |9 |Self Test |
+ROW |4565 |311 |10 |Rate of Voltage Change |
+ROW |4566 |312 |1 |Unknown |
+ROW |4567 |312 |2 |Normal |
+ROW |4568 |312 |3 |Low |
+ROW |4569 |312 |4 |In Fault Condition |
+ROW |4570 |313 |1 |Unknown |
+ROW |4571 |313 |2 |Online |
+ROW |4572 |313 |3 |On Battery |
+ROW |4573 |313 |4 |On Smart Boost |
+ROW |4574 |313 |5 |Timed Sleeping |
+ROW |4575 |313 |6 |Software Bypass |
+ROW |4576 |313 |7 |Off |
+ROW |4577 |313 |8 |Rebooting |
+ROW |4578 |313 |9 |Switched Bypass |
+ROW |4579 |313 |10 |Hardware Failure Bypass |
+ROW |4580 |313 |11 |Sleeping Until Power Return |
+ROW |4581 |313 |12 |On Smart Trim |
+ROW |4582 |313 |13 |Eco Mode |
+ROW |4583 |313 |14 |Hot Standby |
+ROW |4584 |313 |15 |On Battery Test |
+ROW |4585 |313 |16 |Emergency Static Bypass |
+ROW |4586 |313 |17 |Static Bypass Standby |
+ROW |4587 |313 |18 |Power Saving Mode |
+ROW |4588 |313 |19 |Spot Mode |
+ROW |4589 |313 |20 |E-Conversion |
+ROW |4590 |313 |21 |Charger Spotmode |
+ROW |4591 |313 |22 |Inverter Spotmode |
+ROW |4592 |313 |23 |Active Load |
+ROW |4593 |313 |24 |Battery Discharge Spotmode |
+ROW |4594 |313 |25 |Inverter Standby |
+ROW |4595 |313 |26 |Charger Only |
+ROW |4596 |314 |0 |not available |
+ROW |4597 |314 |1 |available |
+ROW |4598 |314 |2 |unknown |
+ROW |4599 |315 |1 |Unknown |
+ROW |4600 |315 |2 |Online |
+ROW |4601 |315 |3 |On Battery |
+ROW |4602 |315 |4 |On Smart Boost |
+ROW |4603 |315 |5 |Timed Sleeping |
+ROW |4604 |315 |6 |Software Bypass |
+ROW |4605 |315 |7 |Off |
+ROW |4606 |315 |8 |Rebooting |
+ROW |4607 |315 |9 |Switched Bypass |
+ROW |4608 |315 |10 |Hardware Failure Bypass |
+ROW |4609 |315 |11 |Sleeping Until Power Return |
+ROW |4610 |315 |12 |On Smart Trim |
+ROW |4611 |315 |13 |Eco Mode |
+ROW |4612 |315 |14 |Hot Standby |
+ROW |4613 |315 |15 |On Battery Test |
+ROW |4614 |315 |16 |Emergency Static Bypass |
+ROW |4615 |315 |17 |Static Bypass Standby |
+ROW |4616 |315 |18 |Power Saving Mode |
+ROW |4617 |315 |19 |Spot Mode |
+ROW |4618 |315 |20 |E-Conversion |
+ROW |4619 |315 |21 |Charger Spotmode |
+ROW |4620 |315 |22 |Inverter Spotmode |
+ROW |4621 |315 |23 |Active Load |
+ROW |4622 |315 |24 |Battery Discharge Spotmode |
+ROW |4623 |315 |25 |Inverter Standby |
+ROW |4624 |315 |26 |Charger Only |
+ROW |4625 |316 |1 |Normal |
+ROW |4626 |316 |2 |Warning |
+ROW |4627 |316 |3 |Critical |
+ROW |4628 |316 |4 |Not applicable |
+ROW |4629 |317 |1 |no Battery Needs Replacing |
+ROW |4630 |317 |2 |battery Needs Replacing |
+ROW |4631 |318 |1 |no Transfer |
+ROW |4632 |318 |2 |High Line Voltage |
+ROW |4633 |318 |3 |Brownout |
+ROW |4634 |318 |4 |Blackout |
+ROW |4635 |318 |5 |Small Momentary Sag |
+ROW |4636 |318 |6 |Deep Momentary Sag |
+ROW |4637 |318 |7 |Small Momentary Spike |
+ROW |4638 |318 |8 |Large Momentary Spike |
+ROW |4639 |318 |9 |Self Test |
+ROW |4640 |318 |10 |Rate of Voltage Change |
+ROW |4641 |319 |1 |Unknown |
+ROW |4642 |319 |2 |Normal |
+ROW |4643 |319 |3 |Low |
+ROW |4644 |319 |4 |In Fault Condition |
+ROW |4645 |320 |1 |Unknown |
+ROW |4646 |320 |2 |Online |
+ROW |4647 |320 |3 |On Battery |
+ROW |4648 |320 |4 |On Smart Boost |
+ROW |4649 |320 |5 |Timed Sleeping |
+ROW |4650 |320 |6 |Software Bypass |
+ROW |4651 |320 |7 |Off |
+ROW |4652 |320 |8 |Rebooting |
+ROW |4653 |320 |9 |Switched Bypass |
+ROW |4654 |320 |10 |Hardware Failure Bypass |
+ROW |4655 |320 |11 |Sleeping Until Power Return |
+ROW |4656 |320 |12 |On Smart Trim |
+ROW |4657 |320 |13 |Eco Mode |
+ROW |4658 |320 |14 |Hot Standby |
+ROW |4659 |320 |15 |On Battery Test |
+ROW |4660 |320 |16 |Emergency Static Bypass |
+ROW |4661 |320 |17 |Static Bypass Standby |
+ROW |4662 |320 |18 |Power Saving Mode |
+ROW |4663 |320 |19 |Spot Mode |
+ROW |4664 |320 |20 |E-Conversion |
+ROW |4665 |320 |21 |Charger Spotmode |
+ROW |4666 |320 |22 |Inverter Spotmode |
+ROW |4667 |320 |23 |Active Load |
+ROW |4668 |320 |24 |Battery Discharge Spotmode |
+ROW |4669 |320 |25 |Inverter Standby |
+ROW |4670 |320 |26 |Charger Only |
+ROW |4671 |321 |0 |not available |
+ROW |4672 |321 |1 |available |
+ROW |4673 |321 |2 |unknown |
+ROW |4674 |322 |1 |Normal |
+ROW |4675 |322 |2 |Warning |
+ROW |4676 |322 |3 |Critical |
+ROW |4677 |322 |4 |Not applicable |
+ROW |4678 |323 |1 |no Battery Needs Replacing |
+ROW |4679 |323 |2 |battery Needs Replacing |
+ROW |4680 |324 |1 |no Transfer |
+ROW |4681 |324 |2 |High Line Voltage |
+ROW |4682 |324 |3 |Brownout |
+ROW |4683 |324 |4 |Blackout |
+ROW |4684 |324 |5 |Small Momentary Sag |
+ROW |4685 |324 |6 |Deep Momentary Sag |
+ROW |4686 |324 |7 |Small Momentary Spike |
+ROW |4687 |324 |8 |Large Momentary Spike |
+ROW |4688 |324 |9 |Self Test |
+ROW |4689 |324 |10 |Rate of Voltage Change |
+ROW |4690 |325 |1 |Unknown |
+ROW |4691 |325 |2 |Normal |
+ROW |4692 |325 |3 |Low |
+ROW |4693 |325 |4 |In Fault Condition |
+ROW |4694 |326 |1 |Unknown |
+ROW |4695 |326 |2 |Online |
+ROW |4696 |326 |3 |On Battery |
+ROW |4697 |326 |4 |On Smart Boost |
+ROW |4698 |326 |5 |Timed Sleeping |
+ROW |4699 |326 |6 |Software Bypass |
+ROW |4700 |326 |7 |Off |
+ROW |4701 |326 |8 |Rebooting |
+ROW |4702 |326 |9 |Switched Bypass |
+ROW |4703 |326 |10 |Hardware Failure Bypass |
+ROW |4704 |326 |11 |Sleeping Until Power Return |
+ROW |4705 |326 |12 |On Smart Trim |
+ROW |4706 |326 |13 |Eco Mode |
+ROW |4707 |326 |14 |Hot Standby |
+ROW |4708 |326 |15 |On Battery Test |
+ROW |4709 |326 |16 |Emergency Static Bypass |
+ROW |4710 |326 |17 |Static Bypass Standby |
+ROW |4711 |326 |18 |Power Saving Mode |
+ROW |4712 |326 |19 |Spot Mode |
+ROW |4713 |326 |20 |E-Conversion |
+ROW |4714 |326 |21 |Charger Spotmode |
+ROW |4715 |326 |22 |Inverter Spotmode |
+ROW |4716 |326 |23 |Active Load |
+ROW |4717 |326 |24 |Battery Discharge Spotmode |
+ROW |4718 |326 |25 |Inverter Standby |
+ROW |4719 |326 |26 |Charger Only |
+ROW |4720 |327 |0 |not available |
+ROW |4721 |327 |1 |available |
+ROW |4722 |327 |2 |unknown |
+ROW |4723 |328 |1 |Normal |
+ROW |4724 |328 |2 |Warning |
+ROW |4725 |328 |3 |Critical |
+ROW |4726 |328 |4 |Not applicable |
+ROW |4727 |329 |1 |no Battery Needs Replacing |
+ROW |4728 |329 |2 |battery Needs Replacing |
+ROW |4729 |330 |1 |no Transfer |
+ROW |4730 |330 |2 |High Line Voltage |
+ROW |4731 |330 |3 |Brownout |
+ROW |4732 |330 |4 |Blackout |
+ROW |4733 |330 |5 |Small Momentary Sag |
+ROW |4734 |330 |6 |Deep Momentary Sag |
+ROW |4735 |330 |7 |Small Momentary Spike |
+ROW |4736 |330 |8 |Large Momentary Spike |
+ROW |4737 |330 |9 |Self Test |
+ROW |4738 |330 |10 |Rate of Voltage Change |
+ROW |4739 |331 |1 |Unknown |
+ROW |4740 |331 |2 |Normal |
+ROW |4741 |331 |3 |Low |
+ROW |4742 |331 |4 |In Fault Condition |
+ROW |4743 |332 |1 |Unknown |
+ROW |4744 |332 |2 |Online |
+ROW |4745 |332 |3 |On Battery |
+ROW |4746 |332 |4 |On Smart Boost |
+ROW |4747 |332 |5 |Timed Sleeping |
+ROW |4748 |332 |6 |Software Bypass |
+ROW |4749 |332 |7 |Off |
+ROW |4750 |332 |8 |Rebooting |
+ROW |4751 |332 |9 |Switched Bypass |
+ROW |4752 |332 |10 |Hardware Failure Bypass |
+ROW |4753 |332 |11 |Sleeping Until Power Return |
+ROW |4754 |332 |12 |On Smart Trim |
+ROW |4755 |332 |13 |Eco Mode |
+ROW |4756 |332 |14 |Hot Standby |
+ROW |4757 |332 |15 |On Battery Test |
+ROW |4758 |332 |16 |Emergency Static Bypass |
+ROW |4759 |332 |17 |Static Bypass Standby |
+ROW |4760 |332 |18 |Power Saving Mode |
+ROW |4761 |332 |19 |Spot Mode |
+ROW |4762 |332 |20 |E-Conversion |
+ROW |4763 |332 |21 |Charger Spotmode |
+ROW |4764 |332 |22 |Inverter Spotmode |
+ROW |4765 |332 |23 |Active Load |
+ROW |4766 |332 |24 |Battery Discharge Spotmode |
+ROW |4767 |332 |25 |Inverter Standby |
+ROW |4768 |332 |26 |Charger Only |
+ROW |4769 |333 |0 |not available |
+ROW |4770 |333 |1 |available |
+ROW |4771 |333 |2 |unknown |
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|
@@ -24393,6 +26364,223 @@ ROW |3449 |34310 |34268 |
ROW |3450 |34311 |34268 |
ROW |3451 |34312 |34268 |
ROW |3452 |34313 |34268 |
+ROW |3453 |34325 |31123 |
+ROW |3454 |34326 |31123 |
+ROW |3455 |34327 |31123 |
+ROW |3456 |34328 |31123 |
+ROW |3457 |34329 |31123 |
+ROW |3458 |34330 |31123 |
+ROW |3459 |34331 |34324 |
+ROW |3460 |34332 |34324 |
+ROW |3461 |34333 |34324 |
+ROW |3462 |34334 |34324 |
+ROW |3463 |34335 |34324 |
+ROW |3464 |34348 |34342 |
+ROW |3465 |34349 |34342 |
+ROW |3466 |34350 |34342 |
+ROW |3467 |34351 |34342 |
+ROW |3468 |34352 |34342 |
+ROW |3469 |34353 |34342 |
+ROW |3470 |34354 |34342 |
+ROW |3471 |34355 |34342 |
+ROW |3472 |34356 |34342 |
+ROW |3473 |34357 |34342 |
+ROW |3474 |34358 |34342 |
+ROW |3475 |34359 |34343 |
+ROW |3476 |34360 |34344 |
+ROW |3477 |34361 |34344 |
+ROW |3478 |34362 |34344 |
+ROW |3479 |34363 |34344 |
+ROW |3480 |34364 |34345 |
+ROW |3481 |34365 |34346 |
+ROW |3482 |34366 |34347 |
+ROW |3483 |34405 |34399 |
+ROW |3484 |34406 |34400 |
+ROW |3485 |34407 |34400 |
+ROW |3486 |34408 |34401 |
+ROW |3487 |34409 |34402 |
+ROW |3488 |34410 |34403 |
+ROW |3489 |34411 |34404 |
+ROW |3490 |34444 |34440 |
+ROW |3491 |34445 |34440 |
+ROW |3492 |34446 |34440 |
+ROW |3493 |34447 |34440 |
+ROW |3494 |34448 |34441 |
+ROW |3495 |34449 |34442 |
+ROW |3496 |34450 |34443 |
+ROW |3497 |34482 |34476 |
+ROW |3498 |34483 |34477 |
+ROW |3499 |34484 |34477 |
+ROW |3500 |34485 |34477 |
+ROW |3501 |34486 |34477 |
+ROW |3502 |34487 |34477 |
+ROW |3503 |34488 |34478 |
+ROW |3504 |34489 |34478 |
+ROW |3505 |34490 |34478 |
+ROW |3506 |34491 |34479 |
+ROW |3507 |34492 |34479 |
+ROW |3508 |34493 |34479 |
+ROW |3509 |34494 |34480 |
+ROW |3510 |34495 |34480 |
+ROW |3511 |34496 |34481 |
+ROW |3512 |34497 |34481 |
+ROW |3513 |34498 |34481 |
+ROW |3514 |34530 |34524 |
+ROW |3515 |34531 |34525 |
+ROW |3516 |34532 |34525 |
+ROW |3517 |34533 |34525 |
+ROW |3518 |34534 |34525 |
+ROW |3519 |34535 |34525 |
+ROW |3520 |34536 |34526 |
+ROW |3521 |34537 |34526 |
+ROW |3522 |34538 |34526 |
+ROW |3523 |34539 |34527 |
+ROW |3524 |34540 |34527 |
+ROW |3525 |34541 |34527 |
+ROW |3526 |34542 |34528 |
+ROW |3527 |34543 |34528 |
+ROW |3528 |34544 |34529 |
+ROW |3529 |34545 |34529 |
+ROW |3530 |34546 |34529 |
+ROW |3531 |34578 |34572 |
+ROW |3532 |34579 |34573 |
+ROW |3533 |34580 |34573 |
+ROW |3534 |34581 |34573 |
+ROW |3535 |34582 |34573 |
+ROW |3536 |34583 |34573 |
+ROW |3537 |34584 |34574 |
+ROW |3538 |34585 |34574 |
+ROW |3539 |34586 |34574 |
+ROW |3540 |34587 |34575 |
+ROW |3541 |34588 |34575 |
+ROW |3542 |34589 |34575 |
+ROW |3543 |34590 |34576 |
+ROW |3544 |34591 |34576 |
+ROW |3545 |34592 |34577 |
+ROW |3546 |34593 |34577 |
+ROW |3547 |34594 |34577 |
+ROW |3548 |34626 |34620 |
+ROW |3549 |34627 |34621 |
+ROW |3550 |34628 |34621 |
+ROW |3551 |34629 |34621 |
+ROW |3552 |34630 |34621 |
+ROW |3553 |34631 |34621 |
+ROW |3554 |34632 |34622 |
+ROW |3555 |34633 |34622 |
+ROW |3556 |34634 |34622 |
+ROW |3557 |34635 |34623 |
+ROW |3558 |34636 |34623 |
+ROW |3559 |34637 |34623 |
+ROW |3560 |34638 |34624 |
+ROW |3561 |34639 |34624 |
+ROW |3562 |34640 |34625 |
+ROW |3563 |34641 |34625 |
+ROW |3564 |34642 |34625 |
+ROW |3565 |34674 |34668 |
+ROW |3566 |34675 |34669 |
+ROW |3567 |34676 |34669 |
+ROW |3568 |34677 |34669 |
+ROW |3569 |34678 |34669 |
+ROW |3570 |34679 |34669 |
+ROW |3571 |34680 |34670 |
+ROW |3572 |34681 |34670 |
+ROW |3573 |34682 |34670 |
+ROW |3574 |34683 |34671 |
+ROW |3575 |34684 |34671 |
+ROW |3576 |34685 |34671 |
+ROW |3577 |34686 |34672 |
+ROW |3578 |34687 |34672 |
+ROW |3579 |34688 |34673 |
+ROW |3580 |34689 |34673 |
+ROW |3581 |34690 |34673 |
+ROW |3582 |34722 |34716 |
+ROW |3583 |34723 |34717 |
+ROW |3584 |34724 |34717 |
+ROW |3585 |34725 |34717 |
+ROW |3586 |34726 |34717 |
+ROW |3587 |34727 |34717 |
+ROW |3588 |34728 |34718 |
+ROW |3589 |34729 |34718 |
+ROW |3590 |34730 |34718 |
+ROW |3591 |34731 |34719 |
+ROW |3592 |34732 |34719 |
+ROW |3593 |34733 |34719 |
+ROW |3594 |34734 |34720 |
+ROW |3595 |34735 |34720 |
+ROW |3596 |34736 |34721 |
+ROW |3597 |34737 |34721 |
+ROW |3598 |34738 |34721 |
+ROW |3599 |34770 |34764 |
+ROW |3600 |34771 |34765 |
+ROW |3601 |34772 |34765 |
+ROW |3602 |34773 |34765 |
+ROW |3603 |34774 |34765 |
+ROW |3604 |34775 |34765 |
+ROW |3605 |34776 |34766 |
+ROW |3606 |34777 |34766 |
+ROW |3607 |34778 |34766 |
+ROW |3608 |34779 |34767 |
+ROW |3609 |34780 |34767 |
+ROW |3610 |34781 |34767 |
+ROW |3611 |34782 |34768 |
+ROW |3612 |34783 |34768 |
+ROW |3613 |34784 |34769 |
+ROW |3614 |34785 |34769 |
+ROW |3615 |34786 |34769 |
+ROW |3616 |34790 |34789 |
+ROW |3617 |34791 |34789 |
+ROW |3618 |34792 |34789 |
+ROW |3619 |34824 |34818 |
+ROW |3620 |34825 |34819 |
+ROW |3621 |34826 |34819 |
+ROW |3622 |34827 |34819 |
+ROW |3623 |34828 |34819 |
+ROW |3624 |34829 |34819 |
+ROW |3625 |34830 |34820 |
+ROW |3626 |34831 |34820 |
+ROW |3627 |34832 |34820 |
+ROW |3628 |34833 |34821 |
+ROW |3629 |34834 |34821 |
+ROW |3630 |34835 |34821 |
+ROW |3631 |34836 |34822 |
+ROW |3632 |34837 |34822 |
+ROW |3633 |34838 |34823 |
+ROW |3634 |34839 |34823 |
+ROW |3635 |34840 |34823 |
+ROW |3636 |34872 |34866 |
+ROW |3637 |34873 |34867 |
+ROW |3638 |34874 |34867 |
+ROW |3639 |34875 |34867 |
+ROW |3640 |34876 |34867 |
+ROW |3641 |34877 |34867 |
+ROW |3642 |34878 |34868 |
+ROW |3643 |34879 |34868 |
+ROW |3644 |34880 |34868 |
+ROW |3645 |34881 |34869 |
+ROW |3646 |34882 |34869 |
+ROW |3647 |34883 |34869 |
+ROW |3648 |34884 |34870 |
+ROW |3649 |34885 |34870 |
+ROW |3650 |34886 |34871 |
+ROW |3651 |34887 |34871 |
+ROW |3652 |34888 |34871 |
+ROW |3653 |34920 |34914 |
+ROW |3654 |34921 |34915 |
+ROW |3655 |34922 |34915 |
+ROW |3656 |34923 |34915 |
+ROW |3657 |34924 |34915 |
+ROW |3658 |34925 |34915 |
+ROW |3659 |34926 |34916 |
+ROW |3660 |34927 |34916 |
+ROW |3661 |34928 |34916 |
+ROW |3662 |34929 |34917 |
+ROW |3663 |34930 |34917 |
+ROW |3664 |34931 |34917 |
+ROW |3665 |34932 |34918 |
+ROW |3666 |34933 |34918 |
+ROW |3667 |34934 |34919 |
+ROW |3668 |34935 |34919 |
+ROW |3669 |34936 |34919 |
TABLE |host_discovery
FIELDS|hostid|parent_hostid|parent_itemid|
@@ -25395,6 +27583,18 @@ ROW |1457 |34163 |9 |{#MEMTYPE} |{$MEMORY.TYP
ROW |1458 |34163 |8 |{#MEMNAME} |{$MEMORY.NAME.MATCHES} |
ROW |1459 |34163 |9 |{#MEMNAME} |{$MEMORY.NAME.NOT_MATCHES} |
ROW |1460 |34208 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1461 |34324 |8 |{#JOBNAME} |{$MSSQL.JOB.MATCHES} |
+ROW |1462 |34324 |9 |{#JOBNAME} |{$MSSQL.JOB.NOT_MATCHES} |
+ROW |1463 |34477 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1464 |34525 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1465 |34573 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1466 |34621 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1467 |34669 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1468 |34717 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1469 |34765 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1470 |34819 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1471 |34867 |9 |{#CARTRIDGE_STATUS} |^$ |
+ROW |1472 |34915 |9 |{#CARTRIDGE_STATUS} |^$ |
TABLE |item_rtdata
FIELDS|itemid|
@@ -25493,6 +27693,8 @@ ROW |33024 |
ROW |33025 |
ROW |33026 |
ROW |33027 |
+ROW |34318 |
+ROW |34319 |
TABLE |item_preproc
FIELDS|item_preprocid|itemid|step|type|params |error_handler|error_handler_params |
@@ -26836,8 +29038,6 @@ ROW |78940 |30836 |3 |10 |
ROW |78941 |30837 |1 |12 |$[?(@.metric == "ReplicasMaxAbsoluteDelay")].value.first() |0 | |
ROW |78942 |30838 |1 |12 |$[?(@.metric == "ReadonlyReplica")].value.first() |0 | |
ROW |78943 |30839 |1 |12 |$[?(@.metric == "Revision")].value.first() |0 | |
-ROW |78944 |30840 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
-ROW |78945 |30840 |2 |10 | |0 | |
ROW |78946 |30841 |1 |12 |$[?(@.event == "SelectQuery")].value.first() |2 |0 |
ROW |78947 |30841 |2 |10 | |0 | |
ROW |78948 |30842 |1 |12 |$[?(@.event == "ZooKeeperUserExceptions")].value.first() |2 |0 |
@@ -30543,7 +32743,6 @@ ROW |82680 |33883 |1 |12 |$.wiredTiger.cache['modified pages evicte
ROW |82681 |33884 |1 |12 |$.wiredTiger.cache['maximum page size at eviction'] |0 | |
ROW |82682 |33885 |1 |12 |$.wiredTiger.concurrentTransactions.write.totalTickets |0 | |
ROW |82683 |33888 |1 |20 |30m |0 | |
-ROW |82684 |33890 |1 |21 |data = JSON.parse(value)&bsn;return (data["$clusterTime"].clusterTime-data.sharding.lastSeenConfigServerOpTime.ts)/Math.pow(2,32); |0 | |
ROW |82685 |33891 |1 |12 |$.opcounters.command |0 | |
ROW |82686 |33891 |2 |10 | |0 | |
ROW |82687 |33892 |1 |12 |$.network.bytesIn |0 | |
@@ -30758,15 +32957,13 @@ ROW |82895 |34174 |1 |1 |{#ALLOC_UNITS}
ROW |82896 |34175 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |82897 |34176 |1 |1 |{#ALLOC_UNITS} |0 | |
ROW |82898 |34177 |1 |1 |{#ALLOC_UNITS} |0 | |
-ROW |82899 |34179 |1 |20 |6h |0 | |
ROW |82900 |34180 |1 |1 |0.1 |0 | |
ROW |82901 |34180 |2 |20 |6h |0 | |
ROW |82902 |34181 |1 |1 |0.01 |0 | |
ROW |82903 |34182 |1 |20 |6h |0 | |
-ROW |82904 |34183 |1 |20 |1h |0 | |
-ROW |82905 |34184 |1 |20 |1h |0 | |
+ROW |82904 |34183 |1 |20 |6h |0 | |
ROW |82906 |34185 |1 |20 |6h |0 | |
-ROW |82907 |34186 |1 |20 |1h |0 | |
+ROW |82907 |34186 |1 |20 |6h |0 | |
ROW |82908 |34187 |1 |20 |1d |0 | |
ROW |82909 |34188 |1 |20 |1d |0 | |
ROW |82910 |34190 |1 |1 |0.1 |0 | |
@@ -30921,6 +33118,787 @@ ROW |83058 |34312 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].spa
ROW |83059 |34312 |2 |20 |6h |0 | |
ROW |83060 |34313 |1 |12 |$.records[?(@.name=='{#VOLUMENAME}')].type.first() |0 | |
ROW |83061 |34313 |2 |20 |6h |0 | |
+ROW |83062 |34314 |1 |12 |$.data.process['report manager'].busy.avg |0 | |
+ROW |83063 |34315 |1 |12 |$.data.process['report writer'].busy.avg |0 | |
+ROW |83064 |34320 |1 |12 |$[?(@.event == "ZooKeeperOtherExceptions")].value.first() |2 |0 |
+ROW |83065 |34320 |2 |10 | |0 | |
+ROW |83066 |34321 |1 |21 |data = JSON.parse(value)&bsn;return (data["$clusterTime"].clusterTime-data.sharding.lastSeenConfigServerOpTime.ts)/Math.pow(2,32); |0 | |
+ROW |83067 |34324 |1 |20 |1d |0 | |
+ROW |83068 |34325 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='I')].duration.first() |2 |0 |
+ROW |83069 |34326 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='I')].timesincelastbackup.first() |2 |0 |
+ROW |83070 |34327 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='L')].timesincelastbackup.first() |2 |0 |
+ROW |83071 |34328 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='L')].duration.first() |2 |0 |
+ROW |83072 |34329 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='D')].timesincelastbackup.first() |2 |0 |
+ROW |83073 |34330 |1 |12 |$[?(@.dbname=='{#DBNAME}' && @.type=='D')].duration.first() |2 |0 |
+ROW |83074 |34331 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].LastRunDateTime.first() |1 | |
+ROW |83075 |34331 |2 |20 |1d |0 | |
+ROW |83076 |34332 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].LastRunStatusMessage.first() |1 | |
+ROW |83077 |34332 |2 |20 |15m |0 | |
+ROW |83078 |34333 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].NextRunDateTime.first() |1 | |
+ROW |83079 |34333 |2 |20 |15m |0 | |
+ROW |83080 |34334 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].RunStatus.first() |1 | |
+ROW |83081 |34334 |2 |20 |15m |0 | |
+ROW |83082 |34335 |1 |12 |$[?(@.JobName=='{#JOBNAME}')].RunDuration.first() |1 | |
+ROW |83083 |34335 |2 |20 |15m |0 | |
+ROW |83084 |32366 |2 |1 |0.001 |0 | |
+ROW |83085 |34336 |0 |26 | |1 | |
+ROW |83086 |34336 |1 |23 | |0 | |
+ROW |83087 |34337 |0 |26 | |2 |{"status": "0"} |
+ROW |83088 |34338 |1 |12 |$[?(@.name == "grpc_server_handling_seconds_count")].value.sum() |1 | |
+ROW |83089 |34338 |2 |10 | |0 | |
+ROW |83090 |34339 |1 |12 |$.status |2 |1 |
+ROW |83091 |34339 |2 |20 |1h |0 | |
+ROW |83092 |34340 |1 |12 |$.start_timestamp |0 | |
+ROW |83093 |34340 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |83094 |34341 |1 |12 |$.version |0 | |
+ROW |83095 |34341 |2 |20 |3h |0 | |
+ROW |83096 |34342 |1 |12 |$[?(@.name=="pd_cluster_status")] |2 |[] |
+ROW |83097 |34342 |2 |21 |return JSON.stringify(value != "[]" ? [{'{#SINGLETON}': ''}] : []); |0 | |
+ROW |83098 |34342 |3 |20 |1h |0 | |
+ROW |83099 |34343 |1 |12 |$[?(@.name == "grpc_server_handling_seconds_count")] |1 | |
+ROW |83100 |34343 |2 |21 |var lookup = {},&bsn;result = [];&bsn;&bsn;JSON.parse(value).forEach(function (item) {&bsn;var grpc_method = item.labels.grpc_method;&bsn;if (!(lookup[grpc_method])) {&bsn;lookup[grpc_method] = 1;&bsn;result.push({ "{#GRPC_METHOD}": grpc_method });&bsn;}&bsn;})&bsn;&bsn;return JSON.stringify(result); |0 | |
+ROW |83101 |34343 |3 |20 |1h |0 | |
+ROW |83102 |34344 |1 |12 |$[?(@.name == "pd_scheduler_region_heartbeat")] |1 | |
+ROW |83103 |34344 |2 |21 |var lookup = {},&bsn;result = [];&bsn;&bsn;JSON.parse(value).forEach(function (item) {&bsn;var address = item.labels.address;&bsn;if (!(lookup[address])) {&bsn;lookup[address] = 1;&bsn;result.push({ "{#STORE_ADDRESS}": address });&bsn;}&bsn;})&bsn;&bsn;return JSON.stringify(result); |0 | |
+ROW |83104 |34344 |3 |20 |1h |0 | |
+ROW |83105 |34345 |1 |12 |$[?(@.name == "pd_regions_label_level")] |1 | |
+ROW |83106 |34345 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83107 |34345 |3 |20 |1h |0 | |
+ROW |83108 |34346 |1 |12 |$[?(@.name == "pd_regions_status")] |1 | |
+ROW |83109 |34346 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83110 |34346 |3 |20 |1h |0 | |
+ROW |83111 |34347 |1 |12 |$[?(@.name == "pd_scheduler_status" && @.labels.type == "allow")] |1 | |
+ROW |83112 |34347 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#KIND}": item.labels.kind,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83113 |34347 |3 |20 |1h |0 | |
+ROW |83114 |34348 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "leader_count")].value.first() |0 | |
+ROW |83115 |34349 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "region_count")].value.first() |0 | |
+ROW |83116 |34350 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "storage_capacity")].value.first() |0 | |
+ROW |83117 |34350 |2 |20 |1h |0 | |
+ROW |83118 |34351 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "storage_size")].value.first() |0 | |
+ROW |83119 |34352 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_disconnected_count")].value.first() |0 | |
+ROW |83120 |34352 |2 |20 |1h |0 | |
+ROW |83121 |34353 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_down_count")].value.first() |0 | |
+ROW |83122 |34353 |2 |20 |1h |0 | |
+ROW |83123 |34354 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_low_space_count")].value.first() |0 | |
+ROW |83124 |34354 |2 |20 |1h |0 | |
+ROW |83125 |34355 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_offline_count")].value.first() |0 | |
+ROW |83126 |34355 |2 |20 |1h |0 | |
+ROW |83127 |34356 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_tombstone_count")].value.first() |0 | |
+ROW |83128 |34356 |2 |20 |1h |0 | |
+ROW |83129 |34357 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_unhealth_count")].value.first() |0 | |
+ROW |83130 |34357 |2 |20 |1h |0 | |
+ROW |83131 |34358 |1 |12 |$[?(@.name == "pd_cluster_status" && @.labels.type == "store_up_count")].value.first() |0 | |
+ROW |83132 |34358 |2 |20 |1h |0 | |
+ROW |83133 |34359 |1 |12 |$[?(@.name == "grpc_server_handling_seconds_count" && @.labels.grpc_method == "{#GRPC_METHOD}")].value.first() |0 | |
+ROW |83134 |34359 |2 |10 | |0 | |
+ROW |83135 |34360 |1 |12 |$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.status == "err" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum() |2 |0 |
+ROW |83136 |34360 |2 |10 | |0 | |
+ROW |83137 |34361 |1 |12 |$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.status == "ok" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum() |2 |0 |
+ROW |83138 |34361 |2 |10 | |0 | |
+ROW |83139 |34362 |1 |12 |$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.type == "push" && @.labels.address == "{#STORE_ADDRESS}")].value.sum() |2 |0 |
+ROW |83140 |34362 |2 |10 | |0 | |
+ROW |83141 |34363 |1 |12 |$[?(@.name == "pd_scheduler_region_heartbeat" && @.labels.type == "report" && @.labels.address == "{#STORE_ADDRESS}")].value.sum() |2 |0 |
+ROW |83142 |34363 |2 |10 | |0 | |
+ROW |83143 |34364 |1 |12 |$[?(@.name == "pd_regions_label_level" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83144 |34365 |1 |12 |$[?(@.name == "pd_regions_status" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83145 |34366 |1 |12 |$[?(@.name == "pd_regions_status" && @.labels.type == "allow" && @.labels.kind == "{#KIND}")].value.first() |2 |0 |
+ROW |83146 |34367 |0 |26 | |2 |{"status": "0"} |
+ROW |83147 |34368 |0 |26 | |1 | |
+ROW |83148 |34368 |1 |23 | |0 | |
+ROW |83149 |34369 |1 |12 |$[?(@.name=="process_cpu_seconds_total")].value.first() |0 | |
+ROW |83150 |34369 |2 |10 | |0 | |
+ROW |83151 |34369 |3 |1 |100 |0 | |
+ROW |83152 |34370 |1 |12 |$[?(@.name == "tidb_server_query_total")].value.sum() |0 | |
+ROW |83153 |34370 |2 |10 | |0 | |
+ROW |83154 |34371 |1 |12 |$[?(@.name=="process_start_time_seconds")].value.first() |0 | |
+ROW |83155 |34371 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |83156 |34372 |1 |12 |$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")].value.sum() |0 | |
+ROW |83157 |34372 |2 |10 | |0 | |
+ROW |83158 |34373 |1 |12 |$[?(@.name=="tidb_tikvclient_region_err_total")].value.sum() |0 | |
+ROW |83159 |34373 |2 |10 | |0 | |
+ROW |83160 |34374 |1 |12 |$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")].value.sum() |0 | |
+ROW |83161 |34374 |2 |10 | |0 | |
+ROW |83162 |34375 |1 |12 |$[?(@.name=="tidb_tikvclient_backoff_total")].value.sum() |1 | |
+ROW |83163 |34375 |2 |10 | |0 | |
+ROW |83164 |34376 |1 |12 |$[?(@.name=="tidb_server_panic_total")].value.first() |1 | |
+ROW |83165 |34376 |2 |10 | |0 | |
+ROW |83166 |34377 |1 |12 |$[?(@.name=="tidb_server_critical_error_total")].value.first() |0 | |
+ROW |83167 |34377 |2 |10 | |0 | |
+ROW |83168 |34378 |1 |12 |$[?(@.name=="tidb_server_connections")].value.first() |0 | |
+ROW |83169 |34379 |1 |12 |$.status |2 |1 |
+ROW |83170 |34379 |2 |20 |1h |0 | |
+ROW |83171 |34380 |1 |12 |$[?(@.name=="tidb_executor_statement_total")].value.sum() |0 | |
+ROW |83172 |34380 |2 |10 | |0 | |
+ROW |83173 |34381 |1 |12 |$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "outdate"")].value.first() |1 | |
+ROW |83174 |34381 |2 |10 | |0 | |
+ROW |83175 |34382 |1 |12 |$[?(@.name=="tidb_session_schema_lease_error_total && @.labels.type == "change"")].value.first() |1 | |
+ROW |83176 |34382 |2 |10 | |0 | |
+ROW |83177 |34383 |1 |12 |$[?(@.name == "tidb_server_query_total" && @.labels.result == "Error")].value.sum() |0 | |
+ROW |83178 |34383 |2 |10 | |0 | |
+ROW |83179 |34384 |1 |12 |$[?(@.name == "tidb_server_query_total" && @.labels.result == "OK")].value.sum() |0 | |
+ROW |83180 |34384 |2 |10 | |0 | |
+ROW |83181 |34385 |1 |12 |$[?(@.name=="tidb_ddl_waiting_jobs")].value.sum() |0 | |
+ROW |83182 |34386 |1 |12 |$[?(@.name=="process_resident_memory_bytes")].value.first() |0 | |
+ROW |83183 |34387 |1 |12 |$[?(@.name=="process_open_fds")].value.first() |0 | |
+ROW |83184 |34388 |1 |12 |$[?(@.name=="process_max_fds")].value.first() |0 | |
+ROW |83185 |34389 |1 |12 |$[?(@.name=="pd_client_request_handle_requests_duration_seconds_count" && @.labels.type == "tso")].value.first() |0 | |
+ROW |83186 |34389 |2 |10 | |0 | |
+ROW |83187 |34390 |1 |12 |$[?(@.name=="pd_client_cmd_handle_cmds_duration_seconds_count" && @.labels.type == "tso")].value.first() |0 | |
+ROW |83188 |34390 |2 |10 | |0 | |
+ROW |83189 |34391 |1 |12 |$[?(@.name=="tidb_monitor_time_jump_back_total")].value.first() |0 | |
+ROW |83190 |34391 |2 |10 | |0 | |
+ROW |83191 |34392 |1 |12 |$[?(@.name=="tidb_monitor_keep_alive_total")].value.first() |1 | |
+ROW |83192 |34392 |2 |9 | |0 | |
+ROW |83193 |34393 |1 |12 |$[?(@.name=="go_memstats_heap_inuse_bytes")].value.first() |0 | |
+ROW |83194 |34394 |1 |12 |$[?(@.name=="go_goroutines")].value.first() |0 | |
+ROW |83195 |34395 |1 |12 |$[?(@.name=="tidb_server_execute_error_total")].value.sum() |1 | |
+ROW |83196 |34395 |2 |10 | |0 | |
+ROW |83197 |34396 |1 |12 |$[?(@.name=="tidb_domain_load_schema_total")].value.sum() |0 | |
+ROW |83198 |34396 |2 |10 | |0 | |
+ROW |83199 |34397 |1 |12 |$[?(@.name=="tidb_domain_load_schema_total && @.labels.type == "failed"")].value.first() |1 | |
+ROW |83200 |34397 |2 |10 | |0 | |
+ROW |83201 |34398 |1 |12 |$.version |0 | |
+ROW |83202 |34398 |2 |20 |3h |0 | |
+ROW |83203 |34399 |1 |12 |$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count")] |0 | |
+ROW |83204 |34399 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83205 |34399 |3 |20 |1h |0 | |
+ROW |83206 |34400 |1 |12 |$[?(@.name=="tidb_server_query_total")] |0 | |
+ROW |83207 |34400 |2 |21 |var lookup = {},&bsn;result = [];&bsn;&bsn;JSON.parse(value).forEach(function (item) {&bsn;var type = item.labels.type;&bsn;if (!(lookup[type])) {&bsn;lookup[type] = 1;&bsn;result.push({ "{#TYPE}": type });&bsn;}&bsn;})&bsn;&bsn;return JSON.stringify(result); |0 | |
+ROW |83208 |34400 |3 |20 |1h |0 | |
+ROW |83209 |34401 |1 |12 |$[?(@.name=="tidb_executor_statement_total")] |0 | |
+ROW |83210 |34401 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83211 |34401 |3 |20 |1h |0 | |
+ROW |83212 |34402 |1 |12 |$[?(@.name=="tidb_tikvclient_backoff_total")] |1 | |
+ROW |83213 |34402 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83214 |34402 |3 |20 |1h |0 | |
+ROW |83215 |34403 |1 |12 |$[?(@.name=="tidb_tikvclient_gc_action_result")] |1 | |
+ROW |83216 |34403 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83217 |34403 |3 |20 |1h |0 | |
+ROW |83218 |34404 |1 |12 |$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total")] |0 | |
+ROW |83219 |34404 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83220 |34404 |3 |20 |1h |0 | |
+ROW |83221 |34405 |1 |12 |$[?(@.name=="tidb_tikvclient_txn_cmd_duration_seconds_count" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83222 |34405 |2 |10 | |0 | |
+ROW |83223 |34406 |1 |12 |$[?(@.name == "tidb_server_query_total" && @.labels.result == "Error" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83224 |34406 |2 |10 | |0 | |
+ROW |83225 |34407 |1 |12 |$[?(@.name == "tidb_server_query_total" && @.labels.result == "OK" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83226 |34407 |2 |10 | |0 | |
+ROW |83227 |34408 |1 |12 |$[?(@.name=="tidb_executor_statement_total" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83228 |34408 |2 |10 | |0 | |
+ROW |83229 |34409 |1 |12 |$[?(@.name=="tidb_tikvclient_backoff_total" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83230 |34409 |2 |10 | |0 | |
+ROW |83231 |34410 |1 |12 |$[?(@.name=="tidb_tikvclient_gc_action_result" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83232 |34410 |2 |10 | |0 | |
+ROW |83233 |34411 |1 |12 |$[?(@.name=="tidb_tikvclient_lock_resolver_actions_total" && @.labels.type == "{#TYPE}")].value.first() |0 | |
+ROW |83234 |34411 |2 |10 | |0 | |
+ROW |83235 |34412 |0 |26 | |1 | |
+ROW |83236 |34412 |1 |23 | |0 | |
+ROW |83237 |34413 |1 |12 |$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "high")].value.first() |0 | |
+ROW |83238 |34413 |2 |10 | |0 | |
+ROW |83239 |34414 |1 |12 |$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "region" )].value.first() |0 | |
+ROW |83240 |34415 |1 |12 |$[?(@.name == "tikv_store_size_bytes" && @.labels.type == "capacity")].value.first() |0 | |
+ROW |83241 |34416 |1 |12 |$[?(@.name == "tikv_store_size_bytes" && @.labels.type == "available")].value.first() |0 | |
+ROW |83242 |34417 |1 |12 |$[?(@.name == "tikv_storage_command_total")].value.sum() |0 | |
+ROW |83243 |34417 |2 |10 | |0 | |
+ROW |83244 |34418 |1 |12 |$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "sending")].value.first() |0 | |
+ROW |83245 |34419 |1 |12 |$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "receiving")].value.first() |0 | |
+ROW |83246 |34420 |1 |12 |$[?(@.name == "tikv_raftstore_snapshot_traffic_total" && @.labels.type == "applying")].value.first() |0 | |
+ROW |83247 |34421 |1 |12 |$[?(@.name == "tikv_scheduler_too_busy_total")].value.sum() |1 | |
+ROW |83248 |34421 |2 |10 | |0 | |
+ROW |83249 |34422 |1 |12 |$[?(@.name == "tikv_worker_pending_task_total")].value.first() |0 | |
+ROW |83250 |34423 |1 |12 |$[?(@.name == "tikv_scheduler_stage_total")].value.sum() |2 |0 |
+ROW |83251 |34423 |2 |10 | |0 | |
+ROW |83252 |34424 |1 |12 |$[?(@.name == "process_resident_memory_bytes")].value.first() |0 | |
+ROW |83253 |34425 |1 |12 |$[?(@.name == "tikv_raftstore_region_count" && @.labels.type == "leader" )].value.first() |0 | |
+ROW |83254 |34426 |1 |12 |$[?(@.name == "tikv_server_report_failure_msg_total")].value.sum() |1 | |
+ROW |83255 |34426 |2 |10 | |0 | |
+ROW |83256 |34427 |1 |12 |$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "low")].value.first() |0 | |
+ROW |83257 |34427 |2 |10 | |0 | |
+ROW |83258 |34428 |1 |12 |$[?(@.name == "tikv_grpc_msg_fail_total")].value.sum() |1 | |
+ROW |83259 |34428 |2 |10 | |0 | |
+ROW |83260 |34429 |1 |12 |$[?(@.name == "tikv_grpc_msg_duration_seconds_count")].value.sum() |0 | |
+ROW |83261 |34429 |2 |10 | |0 | |
+ROW |83262 |34430 |1 |12 |$[?(@.name == "tikv_engine_size_bytes")].value.sum() |0 | |
+ROW |83263 |34431 |1 |12 |$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type == "wal_file_bytes")].value.first() |0 | |
+ROW |83264 |34432 |1 |12 |$[?(@.name == "tikv_engine_flow_bytes" && @.labels.db == "kv" && @.labels.type =~ "bytes_read&pipe;iter_bytes_read")].value.sum() |0 | |
+ROW |83265 |34433 |1 |12 |$[?(@.name == "tikv_thread_cpu_seconds_total")].value.sum() |0 | |
+ROW |83266 |34433 |2 |10 | |0 | |
+ROW |83267 |34433 |3 |1 |100 |0 | |
+ROW |83268 |34434 |1 |12 |$[?(@.name == "tikv_coprocessor_response_bytes")].value.first() |0 | |
+ROW |83269 |34434 |2 |10 | |0 | |
+ROW |83270 |34435 |1 |12 |$[?(@.name == "tikv_coprocessor_rocksdb_perf")].value.sum() |0 | |
+ROW |83271 |34435 |2 |10 | |0 | |
+ROW |83272 |34436 |1 |12 |$[?(@.name == "tikv_coprocessor_request_error")].value.sum() |1 | |
+ROW |83273 |34436 |2 |10 | |0 | |
+ROW |83274 |34437 |1 |12 |$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")].value.sum() |0 | |
+ROW |83275 |34437 |2 |10 | |0 | |
+ROW |83276 |34438 |1 |12 |$[?(@.name == "tikv_scheduler_commands_pri_total" && @.labels.priority == "normal")].value.first() |0 | |
+ROW |83277 |34438 |2 |10 | |0 | |
+ROW |83278 |34439 |1 |12 |$[?(@.name=="process_start_time_seconds")].value.first() |0 | |
+ROW |83279 |34439 |2 |21 |//use boottime to calculate uptime&bsn;return (Math.floor(Date.now()/1000)-Number(value)); |0 | |
+ROW |83280 |34440 |1 |12 |$[?(@.name == "tikv_coprocessor_request_duration_seconds_count")] |0 | |
+ROW |83281 |34440 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#REQ_TYPE}": item.labels.req,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83282 |34440 |3 |20 |1h |0 | |
+ROW |83283 |34441 |1 |12 |$[?(@.name == "tikv_grpc_msg_duration_seconds_count")] |0 | |
+ROW |83284 |34441 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#TYPE}": item.labels.type,&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83285 |34441 |3 |20 |1h |0 | |
+ROW |83286 |34442 |1 |12 |$[?(@.name == "tikv_scheduler_stage_total")] |0 | |
+ROW |83287 |34442 |2 |21 |var lookup = {},&bsn;result = [];&bsn;&bsn;JSON.parse(value).forEach(function (item) {&bsn;var stage = item.labels.stage;&bsn;if (!(lookup[stage])) {&bsn;lookup[stage] = 1;&bsn;result.push({ "{#STAGE}": stage });&bsn;}&bsn;})&bsn;&bsn;return JSON.stringify(result); |0 | |
+ROW |83288 |34442 |3 |20 |1h |0 | |
+ROW |83289 |34443 |1 |12 |$[?(@.name == "tikv_server_report_failure_msg_total")] |1 | |
+ROW |83290 |34443 |2 |21 |output = JSON.parse(value).map(function(item){&bsn;return {&bsn;"{#STORE_ID}": item.labels.store_id,&bsn;"{#TYPE}": item.labels.type,&bsn;&bsn;}})&bsn;return JSON.stringify({"data": output}) |0 | |
+ROW |83291 |34443 |3 |20 |1h |0 | |
+ROW |83292 |34444 |1 |12 |$[?(@.name == "tikv_coprocessor_request_duration_seconds_count" && @.labels.req == "{#REQ_TYPE}")].value.first() |0 | |
+ROW |83293 |34444 |2 |10 | |0 | |
+ROW |83294 |34445 |1 |12 |$[?(@.name == "tikv_coprocessor_request_error" && @.labels.req == "{#REQ_TYPE}")].value.first() |1 | |
+ROW |83295 |34445 |2 |10 | |0 | |
+ROW |83296 |34446 |1 |12 |$[?(@.name == "tikv_coprocessor_rocksdb_perf" && @.labels.req == "{#REQ_TYPE}")].value.sum() |0 | |
+ROW |83297 |34446 |2 |10 | |0 | |
+ROW |83298 |34447 |1 |12 |$[?(@.name == "tikv_coprocessor_scan_keys_count" && @.labels.req == "{#REQ_TYPE}")].value.first() |0 | |
+ROW |83299 |34447 |2 |10 | |0 | |
+ROW |83300 |34448 |1 |12 |$[?(@.name == "tikv_grpc_msg_duration_seconds_count" && @.labels.type == "{#TYPE}")].value.first() |2 | |
+ROW |83301 |34449 |1 |12 |$[?(@.name == "tikv_scheduler_stage_total" && @.labels.stage == "{#STAGE}")].value.sum() |2 |0 |
+ROW |83302 |34449 |2 |10 | |0 | |
+ROW |83303 |34450 |1 |12 |$[?(@.name == "tikv_server_report_failure_msg_total" && @.labels.store_id == "{#STORE_ID}" && @.labels.type == "{#TYPE}")].value.sum() |0 | |
+ROW |83304 |34450 |2 |10 | |0 | |
+ROW |83305 |34451 |1 |1 |0.1 |0 | |
+ROW |83306 |34451 |2 |20 |6h |0 | |
+ROW |83307 |34452 |1 |20 |6h |0 | |
+ROW |83308 |34453 |1 |1 |0.01 |0 | |
+ROW |83309 |34454 |1 |20 |6h |0 | |
+ROW |83310 |34455 |1 |20 |6h |0 | |
+ROW |83311 |34456 |1 |20 |6h |0 | |
+ROW |83312 |34457 |1 |20 |6h |0 | |
+ROW |83313 |34458 |1 |20 |6h |0 | |
+ROW |83314 |34459 |1 |20 |1d |0 | |
+ROW |83315 |34460 |1 |20 |1d |0 | |
+ROW |83316 |34462 |1 |1 |0.1 |0 | |
+ROW |83317 |34462 |2 |20 |6h |0 | |
+ROW |83318 |34463 |1 |1 |0.1 |0 | |
+ROW |83319 |34463 |2 |20 |6h |0 | |
+ROW |83320 |34464 |1 |20 |6h |0 | |
+ROW |83321 |34465 |1 |1 |0.1 |0 | |
+ROW |83322 |34465 |2 |20 |6h |0 | |
+ROW |83323 |34466 |1 |1 |0.1 |0 | |
+ROW |83324 |34466 |2 |20 |6h |0 | |
+ROW |83325 |34467 |1 |1 |0.1 |0 | |
+ROW |83326 |34467 |2 |20 |6h |0 | |
+ROW |83327 |34468 |1 |20 |6h |0 | |
+ROW |83328 |34469 |1 |1 |0.1 |0 | |
+ROW |83329 |34469 |2 |20 |6h |0 | |
+ROW |83330 |34470 |1 |1 |0.1 |0 | |
+ROW |83331 |34470 |2 |20 |6h |0 | |
+ROW |83332 |34471 |1 |20 |6h |0 | |
+ROW |83333 |34472 |1 |1 |0.01 |0 | |
+ROW |83334 |34472 |2 |20 |6h |0 | |
+ROW |83335 |34473 |1 |20 |6h |0 | |
+ROW |83336 |34474 |1 |20 |6h |0 | |
+ROW |83337 |34475 |1 |20 |6h |0 | |
+ROW |83338 |34482 |1 |20 |6h |0 | |
+ROW |83339 |34483 |1 |20 |6h |0 | |
+ROW |83340 |34484 |1 |20 |6h |0 | |
+ROW |83341 |34485 |1 |20 |6h |0 | |
+ROW |83342 |34486 |1 |1 |0.1 |0 | |
+ROW |83343 |34486 |2 |20 |6h |0 | |
+ROW |83344 |34487 |1 |20 |6h |0 | |
+ROW |83345 |34488 |1 |20 |6h |0 | |
+ROW |83346 |34489 |1 |20 |6h |0 | |
+ROW |83347 |34490 |1 |20 |6h |0 | |
+ROW |83348 |34491 |1 |20 |6h |0 | |
+ROW |83349 |34492 |1 |20 |6h |0 | |
+ROW |83350 |34493 |1 |20 |6h |0 | |
+ROW |83351 |34494 |1 |1 |0.1 |0 | |
+ROW |83352 |34494 |2 |20 |6h |0 | |
+ROW |83353 |34495 |1 |20 |6h |0 | |
+ROW |83354 |34496 |1 |1 |0.1 |0 | |
+ROW |83355 |34496 |2 |20 |6h |0 | |
+ROW |83356 |34497 |1 |20 |6h |0 | |
+ROW |83357 |34498 |1 |20 |6h |0 | |
+ROW |83358 |34499 |1 |1 |0.1 |0 | |
+ROW |83359 |34499 |2 |20 |6h |0 | |
+ROW |83360 |34500 |1 |20 |6h |0 | |
+ROW |83361 |34501 |1 |1 |0.01 |0 | |
+ROW |83362 |34502 |1 |20 |6h |0 | |
+ROW |83363 |34503 |1 |20 |6h |0 | |
+ROW |83364 |34504 |1 |20 |6h |0 | |
+ROW |83365 |34505 |1 |20 |6h |0 | |
+ROW |83366 |34506 |1 |20 |6h |0 | |
+ROW |83367 |34507 |1 |20 |1d |0 | |
+ROW |83368 |34508 |1 |20 |1d |0 | |
+ROW |83369 |34510 |1 |1 |0.1 |0 | |
+ROW |83370 |34510 |2 |20 |6h |0 | |
+ROW |83371 |34511 |1 |1 |0.1 |0 | |
+ROW |83372 |34511 |2 |20 |6h |0 | |
+ROW |83373 |34512 |1 |20 |6h |0 | |
+ROW |83374 |34513 |1 |1 |0.1 |0 | |
+ROW |83375 |34513 |2 |20 |6h |0 | |
+ROW |83376 |34514 |1 |1 |0.1 |0 | |
+ROW |83377 |34514 |2 |20 |6h |0 | |
+ROW |83378 |34515 |1 |1 |0.1 |0 | |
+ROW |83379 |34515 |2 |20 |6h |0 | |
+ROW |83380 |34516 |1 |20 |6h |0 | |
+ROW |83381 |34517 |1 |1 |0.1 |0 | |
+ROW |83382 |34517 |2 |20 |6h |0 | |
+ROW |83383 |34518 |1 |1 |0.1 |0 | |
+ROW |83384 |34518 |2 |20 |6h |0 | |
+ROW |83385 |34519 |1 |20 |6h |0 | |
+ROW |83386 |34520 |1 |1 |0.01 |0 | |
+ROW |83387 |34520 |2 |20 |6h |0 | |
+ROW |83388 |34521 |1 |20 |6h |0 | |
+ROW |83389 |34522 |1 |20 |6h |0 | |
+ROW |83390 |34523 |1 |20 |6h |0 | |
+ROW |83391 |34530 |1 |20 |6h |0 | |
+ROW |83392 |34531 |1 |20 |6h |0 | |
+ROW |83393 |34532 |1 |20 |6h |0 | |
+ROW |83394 |34533 |1 |20 |6h |0 | |
+ROW |83395 |34534 |1 |1 |0.1 |0 | |
+ROW |83396 |34534 |2 |20 |6h |0 | |
+ROW |83397 |34535 |1 |20 |6h |0 | |
+ROW |83398 |34536 |1 |20 |6h |0 | |
+ROW |83399 |34537 |1 |20 |6h |0 | |
+ROW |83400 |34538 |1 |20 |6h |0 | |
+ROW |83401 |34539 |1 |20 |6h |0 | |
+ROW |83402 |34540 |1 |20 |6h |0 | |
+ROW |83403 |34541 |1 |20 |6h |0 | |
+ROW |83404 |34542 |1 |1 |0.1 |0 | |
+ROW |83405 |34542 |2 |20 |6h |0 | |
+ROW |83406 |34543 |1 |20 |6h |0 | |
+ROW |83407 |34544 |1 |1 |0.1 |0 | |
+ROW |83408 |34544 |2 |20 |6h |0 | |
+ROW |83409 |34545 |1 |20 |6h |0 | |
+ROW |83410 |34546 |1 |20 |6h |0 | |
+ROW |83411 |34547 |1 |1 |0.1 |0 | |
+ROW |83412 |34547 |2 |20 |6h |0 | |
+ROW |83413 |34548 |1 |20 |6h |0 | |
+ROW |83414 |34549 |1 |1 |0.01 |0 | |
+ROW |83415 |34550 |1 |20 |6h |0 | |
+ROW |83416 |34551 |1 |20 |6h |0 | |
+ROW |83417 |34552 |1 |20 |6h |0 | |
+ROW |83418 |34553 |1 |20 |6h |0 | |
+ROW |83419 |34554 |1 |20 |6h |0 | |
+ROW |83420 |34555 |1 |20 |1d |0 | |
+ROW |83421 |34556 |1 |20 |1d |0 | |
+ROW |83422 |34558 |1 |1 |0.1 |0 | |
+ROW |83423 |34558 |2 |20 |6h |0 | |
+ROW |83424 |34559 |1 |1 |0.1 |0 | |
+ROW |83425 |34559 |2 |20 |6h |0 | |
+ROW |83426 |34560 |1 |20 |6h |0 | |
+ROW |83427 |34561 |1 |1 |0.1 |0 | |
+ROW |83428 |34561 |2 |20 |6h |0 | |
+ROW |83429 |34562 |1 |1 |0.1 |0 | |
+ROW |83430 |34562 |2 |20 |6h |0 | |
+ROW |83431 |34563 |1 |1 |0.1 |0 | |
+ROW |83432 |34563 |2 |20 |6h |0 | |
+ROW |83433 |34564 |1 |20 |6h |0 | |
+ROW |83434 |34565 |1 |1 |0.1 |0 | |
+ROW |83435 |34565 |2 |20 |6h |0 | |
+ROW |83436 |34566 |1 |1 |0.1 |0 | |
+ROW |83437 |34566 |2 |20 |6h |0 | |
+ROW |83438 |34567 |1 |20 |6h |0 | |
+ROW |83439 |34568 |1 |1 |0.01 |0 | |
+ROW |83440 |34568 |2 |20 |6h |0 | |
+ROW |83441 |34569 |1 |20 |6h |0 | |
+ROW |83442 |34570 |1 |20 |6h |0 | |
+ROW |83443 |34571 |1 |20 |6h |0 | |
+ROW |83444 |34578 |1 |20 |6h |0 | |
+ROW |83445 |34579 |1 |20 |6h |0 | |
+ROW |83446 |34580 |1 |20 |6h |0 | |
+ROW |83447 |34581 |1 |20 |6h |0 | |
+ROW |83448 |34582 |1 |1 |0.1 |0 | |
+ROW |83449 |34582 |2 |20 |6h |0 | |
+ROW |83450 |34583 |1 |20 |6h |0 | |
+ROW |83451 |34584 |1 |20 |6h |0 | |
+ROW |83452 |34585 |1 |20 |6h |0 | |
+ROW |83453 |34586 |1 |20 |6h |0 | |
+ROW |83454 |34587 |1 |20 |6h |0 | |
+ROW |83455 |34588 |1 |20 |6h |0 | |
+ROW |83456 |34589 |1 |20 |6h |0 | |
+ROW |83457 |34590 |1 |1 |0.1 |0 | |
+ROW |83458 |34590 |2 |20 |6h |0 | |
+ROW |83459 |34591 |1 |20 |6h |0 | |
+ROW |83460 |34592 |1 |1 |0.1 |0 | |
+ROW |83461 |34592 |2 |20 |6h |0 | |
+ROW |83462 |34593 |1 |20 |6h |0 | |
+ROW |83463 |34594 |1 |20 |6h |0 | |
+ROW |83464 |34595 |1 |1 |0.1 |0 | |
+ROW |83465 |34595 |2 |20 |6h |0 | |
+ROW |83466 |34596 |1 |20 |6h |0 | |
+ROW |83467 |34597 |1 |1 |0.01 |0 | |
+ROW |83468 |34598 |1 |20 |6h |0 | |
+ROW |83469 |34599 |1 |20 |6h |0 | |
+ROW |83470 |34600 |1 |20 |6h |0 | |
+ROW |83471 |34601 |1 |20 |6h |0 | |
+ROW |83472 |34602 |1 |20 |6h |0 | |
+ROW |83473 |34603 |1 |20 |1d |0 | |
+ROW |83474 |34604 |1 |20 |1d |0 | |
+ROW |83475 |34606 |1 |1 |0.1 |0 | |
+ROW |83476 |34606 |2 |20 |6h |0 | |
+ROW |83477 |34607 |1 |1 |0.1 |0 | |
+ROW |83478 |34607 |2 |20 |6h |0 | |
+ROW |83479 |34608 |1 |20 |6h |0 | |
+ROW |83480 |34609 |1 |1 |0.1 |0 | |
+ROW |83481 |34609 |2 |20 |6h |0 | |
+ROW |83482 |34610 |1 |1 |0.1 |0 | |
+ROW |83483 |34610 |2 |20 |6h |0 | |
+ROW |83484 |34611 |1 |1 |0.1 |0 | |
+ROW |83485 |34611 |2 |20 |6h |0 | |
+ROW |83486 |34612 |1 |20 |6h |0 | |
+ROW |83487 |34613 |1 |1 |0.1 |0 | |
+ROW |83488 |34613 |2 |20 |6h |0 | |
+ROW |83489 |34614 |1 |1 |0.1 |0 | |
+ROW |83490 |34614 |2 |20 |6h |0 | |
+ROW |83491 |34615 |1 |20 |6h |0 | |
+ROW |83492 |34616 |1 |1 |0.01 |0 | |
+ROW |83493 |34616 |2 |20 |6h |0 | |
+ROW |83494 |34617 |1 |20 |6h |0 | |
+ROW |83495 |34618 |1 |20 |6h |0 | |
+ROW |83496 |34619 |1 |20 |6h |0 | |
+ROW |83497 |34626 |1 |20 |6h |0 | |
+ROW |83498 |34627 |1 |20 |6h |0 | |
+ROW |83499 |34628 |1 |20 |6h |0 | |
+ROW |83500 |34629 |1 |20 |6h |0 | |
+ROW |83501 |34630 |1 |1 |0.1 |0 | |
+ROW |83502 |34630 |2 |20 |6h |0 | |
+ROW |83503 |34631 |1 |20 |6h |0 | |
+ROW |83504 |34632 |1 |20 |6h |0 | |
+ROW |83505 |34633 |1 |20 |6h |0 | |
+ROW |83506 |34634 |1 |20 |6h |0 | |
+ROW |83507 |34635 |1 |20 |6h |0 | |
+ROW |83508 |34636 |1 |20 |6h |0 | |
+ROW |83509 |34637 |1 |20 |6h |0 | |
+ROW |83510 |34638 |1 |1 |0.1 |0 | |
+ROW |83511 |34638 |2 |20 |6h |0 | |
+ROW |83512 |34639 |1 |20 |6h |0 | |
+ROW |83513 |34640 |1 |1 |0.1 |0 | |
+ROW |83514 |34640 |2 |20 |6h |0 | |
+ROW |83515 |34641 |1 |20 |6h |0 | |
+ROW |83516 |34642 |1 |20 |6h |0 | |
+ROW |83517 |34643 |1 |1 |0.1 |0 | |
+ROW |83518 |34643 |2 |20 |6h |0 | |
+ROW |83519 |34644 |1 |20 |6h |0 | |
+ROW |83520 |34645 |1 |1 |0.01 |0 | |
+ROW |83521 |34646 |1 |20 |6h |0 | |
+ROW |83522 |34647 |1 |20 |6h |0 | |
+ROW |83523 |34648 |1 |20 |6h |0 | |
+ROW |83524 |34649 |1 |20 |6h |0 | |
+ROW |83525 |34650 |1 |20 |6h |0 | |
+ROW |83526 |34651 |1 |20 |1d |0 | |
+ROW |83527 |34652 |1 |20 |1d |0 | |
+ROW |83528 |34654 |1 |1 |0.1 |0 | |
+ROW |83529 |34654 |2 |20 |6h |0 | |
+ROW |83530 |34655 |1 |1 |0.1 |0 | |
+ROW |83531 |34655 |2 |20 |6h |0 | |
+ROW |83532 |34656 |1 |20 |6h |0 | |
+ROW |83533 |34657 |1 |1 |0.1 |0 | |
+ROW |83534 |34657 |2 |20 |6h |0 | |
+ROW |83535 |34658 |1 |1 |0.1 |0 | |
+ROW |83536 |34658 |2 |20 |6h |0 | |
+ROW |83537 |34659 |1 |1 |0.1 |0 | |
+ROW |83538 |34659 |2 |20 |6h |0 | |
+ROW |83539 |34660 |1 |20 |6h |0 | |
+ROW |83540 |34661 |1 |1 |0.1 |0 | |
+ROW |83541 |34661 |2 |20 |6h |0 | |
+ROW |83542 |34662 |1 |1 |0.1 |0 | |
+ROW |83543 |34662 |2 |20 |6h |0 | |
+ROW |83544 |34663 |1 |20 |6h |0 | |
+ROW |83545 |34664 |1 |1 |0.01 |0 | |
+ROW |83546 |34664 |2 |20 |6h |0 | |
+ROW |83547 |34665 |1 |20 |6h |0 | |
+ROW |83548 |34666 |1 |20 |6h |0 | |
+ROW |83549 |34667 |1 |20 |6h |0 | |
+ROW |83550 |34674 |1 |20 |6h |0 | |
+ROW |83551 |34675 |1 |20 |6h |0 | |
+ROW |83552 |34676 |1 |20 |6h |0 | |
+ROW |83553 |34677 |1 |20 |6h |0 | |
+ROW |83554 |34678 |1 |1 |0.1 |0 | |
+ROW |83555 |34678 |2 |20 |6h |0 | |
+ROW |83556 |34679 |1 |20 |6h |0 | |
+ROW |83557 |34680 |1 |20 |6h |0 | |
+ROW |83558 |34681 |1 |20 |6h |0 | |
+ROW |83559 |34682 |1 |20 |6h |0 | |
+ROW |83560 |34683 |1 |20 |6h |0 | |
+ROW |83561 |34684 |1 |20 |6h |0 | |
+ROW |83562 |34685 |1 |20 |6h |0 | |
+ROW |83563 |34686 |1 |1 |0.1 |0 | |
+ROW |83564 |34686 |2 |20 |6h |0 | |
+ROW |83565 |34687 |1 |20 |6h |0 | |
+ROW |83566 |34688 |1 |1 |0.1 |0 | |
+ROW |83567 |34688 |2 |20 |6h |0 | |
+ROW |83568 |34689 |1 |20 |6h |0 | |
+ROW |83569 |34690 |1 |20 |6h |0 | |
+ROW |83570 |34691 |1 |1 |0.1 |0 | |
+ROW |83571 |34691 |2 |20 |6h |0 | |
+ROW |83572 |34692 |1 |20 |6h |0 | |
+ROW |83573 |34693 |1 |1 |0.01 |0 | |
+ROW |83574 |34694 |1 |20 |6h |0 | |
+ROW |83575 |34695 |1 |20 |6h |0 | |
+ROW |83576 |34696 |1 |20 |6h |0 | |
+ROW |83577 |34697 |1 |20 |6h |0 | |
+ROW |83578 |34698 |1 |20 |6h |0 | |
+ROW |83579 |34699 |1 |20 |1d |0 | |
+ROW |83580 |34700 |1 |20 |1d |0 | |
+ROW |83581 |34702 |1 |1 |0.1 |0 | |
+ROW |83582 |34702 |2 |20 |6h |0 | |
+ROW |83583 |34703 |1 |1 |0.1 |0 | |
+ROW |83584 |34703 |2 |20 |6h |0 | |
+ROW |83585 |34704 |1 |20 |6h |0 | |
+ROW |83586 |34705 |1 |1 |0.1 |0 | |
+ROW |83587 |34705 |2 |20 |6h |0 | |
+ROW |83588 |34706 |1 |1 |0.1 |0 | |
+ROW |83589 |34706 |2 |20 |6h |0 | |
+ROW |83590 |34707 |1 |1 |0.1 |0 | |
+ROW |83591 |34707 |2 |20 |6h |0 | |
+ROW |83592 |34708 |1 |20 |6h |0 | |
+ROW |83593 |34709 |1 |1 |0.1 |0 | |
+ROW |83594 |34709 |2 |20 |6h |0 | |
+ROW |83595 |34710 |1 |1 |0.1 |0 | |
+ROW |83596 |34710 |2 |20 |6h |0 | |
+ROW |83597 |34711 |1 |20 |6h |0 | |
+ROW |83598 |34712 |1 |1 |0.01 |0 | |
+ROW |83599 |34712 |2 |20 |6h |0 | |
+ROW |83600 |34713 |1 |20 |6h |0 | |
+ROW |83601 |34714 |1 |20 |6h |0 | |
+ROW |83602 |34715 |1 |20 |6h |0 | |
+ROW |83603 |34722 |1 |20 |6h |0 | |
+ROW |83604 |34723 |1 |20 |6h |0 | |
+ROW |83605 |34724 |1 |20 |6h |0 | |
+ROW |83606 |34725 |1 |20 |6h |0 | |
+ROW |83607 |34726 |1 |1 |0.1 |0 | |
+ROW |83608 |34726 |2 |20 |6h |0 | |
+ROW |83609 |34727 |1 |20 |6h |0 | |
+ROW |83610 |34728 |1 |20 |6h |0 | |
+ROW |83611 |34729 |1 |20 |6h |0 | |
+ROW |83612 |34730 |1 |20 |6h |0 | |
+ROW |83613 |34731 |1 |20 |6h |0 | |
+ROW |83614 |34732 |1 |20 |6h |0 | |
+ROW |83615 |34733 |1 |20 |6h |0 | |
+ROW |83616 |34734 |1 |1 |0.1 |0 | |
+ROW |83617 |34734 |2 |20 |6h |0 | |
+ROW |83618 |34735 |1 |20 |6h |0 | |
+ROW |83619 |34736 |1 |1 |0.1 |0 | |
+ROW |83620 |34736 |2 |20 |6h |0 | |
+ROW |83621 |34737 |1 |20 |6h |0 | |
+ROW |83622 |34738 |1 |20 |6h |0 | |
+ROW |83623 |34739 |1 |1 |0.1 |0 | |
+ROW |83624 |34739 |2 |20 |6h |0 | |
+ROW |83625 |34740 |1 |20 |6h |0 | |
+ROW |83626 |34741 |1 |1 |0.01 |0 | |
+ROW |83627 |34742 |1 |20 |6h |0 | |
+ROW |83628 |34743 |1 |20 |6h |0 | |
+ROW |83629 |34744 |1 |20 |6h |0 | |
+ROW |83630 |34745 |1 |20 |6h |0 | |
+ROW |83631 |34746 |1 |20 |6h |0 | |
+ROW |83632 |34747 |1 |20 |1d |0 | |
+ROW |83633 |34748 |1 |20 |1d |0 | |
+ROW |83634 |34750 |1 |1 |0.1 |0 | |
+ROW |83635 |34750 |2 |20 |6h |0 | |
+ROW |83636 |34751 |1 |1 |0.1 |0 | |
+ROW |83637 |34751 |2 |20 |6h |0 | |
+ROW |83638 |34752 |1 |20 |6h |0 | |
+ROW |83639 |34753 |1 |1 |0.1 |0 | |
+ROW |83640 |34753 |2 |20 |6h |0 | |
+ROW |83641 |34754 |1 |1 |0.1 |0 | |
+ROW |83642 |34754 |2 |20 |6h |0 | |
+ROW |83643 |34755 |1 |1 |0.1 |0 | |
+ROW |83644 |34755 |2 |20 |6h |0 | |
+ROW |83645 |34756 |1 |20 |6h |0 | |
+ROW |83646 |34757 |1 |1 |0.1 |0 | |
+ROW |83647 |34757 |2 |20 |6h |0 | |
+ROW |83648 |34758 |1 |1 |0.1 |0 | |
+ROW |83649 |34758 |2 |20 |6h |0 | |
+ROW |83650 |34759 |1 |20 |6h |0 | |
+ROW |83651 |34760 |1 |1 |0.01 |0 | |
+ROW |83652 |34760 |2 |20 |6h |0 | |
+ROW |83653 |34761 |1 |20 |6h |0 | |
+ROW |83654 |34762 |1 |20 |6h |0 | |
+ROW |83655 |34763 |1 |20 |6h |0 | |
+ROW |83656 |34770 |1 |20 |6h |0 | |
+ROW |83657 |34771 |1 |20 |6h |0 | |
+ROW |83658 |34772 |1 |20 |6h |0 | |
+ROW |83659 |34773 |1 |20 |6h |0 | |
+ROW |83660 |34774 |1 |1 |0.1 |0 | |
+ROW |83661 |34774 |2 |20 |6h |0 | |
+ROW |83662 |34775 |1 |20 |6h |0 | |
+ROW |83663 |34776 |1 |20 |6h |0 | |
+ROW |83664 |34777 |1 |20 |6h |0 | |
+ROW |83665 |34778 |1 |20 |6h |0 | |
+ROW |83666 |34779 |1 |20 |6h |0 | |
+ROW |83667 |34780 |1 |20 |6h |0 | |
+ROW |83668 |34781 |1 |20 |6h |0 | |
+ROW |83669 |34782 |1 |1 |0.1 |0 | |
+ROW |83670 |34782 |2 |20 |6h |0 | |
+ROW |83671 |34783 |1 |20 |6h |0 | |
+ROW |83672 |34784 |1 |1 |0.1 |0 | |
+ROW |83673 |34784 |2 |20 |6h |0 | |
+ROW |83674 |34785 |1 |20 |6h |0 | |
+ROW |83675 |34786 |1 |20 |6h |0 | |
+ROW |83676 |34787 |1 |1 |0.1 |0 | |
+ROW |83677 |34787 |2 |20 |6h |0 | |
+ROW |83678 |34788 |1 |20 |6h |0 | |
+ROW |83679 |34206 |1 |20 |6h |0 | |
+ROW |83680 |34790 |1 |1 |0.1 |0 | |
+ROW |83681 |34790 |2 |20 |6h |0 | |
+ROW |83682 |34791 |1 |20 |6h |0 | |
+ROW |83683 |34792 |1 |20 |6h |0 | |
+ROW |83684 |34793 |1 |1 |0.1 |0 | |
+ROW |83685 |34793 |2 |20 |6h |0 | |
+ROW |83686 |34794 |1 |20 |6h |0 | |
+ROW |83687 |34795 |1 |1 |0.01 |0 | |
+ROW |83688 |34796 |1 |20 |6h |0 | |
+ROW |83689 |34797 |1 |20 |6h |0 | |
+ROW |83690 |34798 |1 |20 |6h |0 | |
+ROW |83691 |34799 |1 |20 |6h |0 | |
+ROW |83692 |34800 |1 |20 |6h |0 | |
+ROW |83693 |34801 |1 |20 |1d |0 | |
+ROW |83694 |34802 |1 |20 |1d |0 | |
+ROW |83695 |34804 |1 |1 |0.1 |0 | |
+ROW |83696 |34804 |2 |20 |6h |0 | |
+ROW |83697 |34805 |1 |1 |0.1 |0 | |
+ROW |83698 |34805 |2 |20 |6h |0 | |
+ROW |83699 |34806 |1 |20 |6h |0 | |
+ROW |83700 |34807 |1 |1 |0.1 |0 | |
+ROW |83701 |34807 |2 |20 |6h |0 | |
+ROW |83702 |34808 |1 |1 |0.1 |0 | |
+ROW |83703 |34808 |2 |20 |6h |0 | |
+ROW |83704 |34809 |1 |1 |0.1 |0 | |
+ROW |83705 |34809 |2 |20 |6h |0 | |
+ROW |83706 |34810 |1 |20 |6h |0 | |
+ROW |83707 |34811 |1 |1 |0.1 |0 | |
+ROW |83708 |34811 |2 |20 |6h |0 | |
+ROW |83709 |34812 |1 |1 |0.1 |0 | |
+ROW |83710 |34812 |2 |20 |6h |0 | |
+ROW |83711 |34813 |1 |20 |6h |0 | |
+ROW |83712 |34814 |1 |1 |0.01 |0 | |
+ROW |83713 |34814 |2 |20 |6h |0 | |
+ROW |83714 |34815 |1 |20 |6h |0 | |
+ROW |83715 |34816 |1 |20 |6h |0 | |
+ROW |83716 |34817 |1 |20 |6h |0 | |
+ROW |83717 |34824 |1 |20 |6h |0 | |
+ROW |83718 |34825 |1 |20 |6h |0 | |
+ROW |83719 |34826 |1 |20 |6h |0 | |
+ROW |83720 |34827 |1 |20 |6h |0 | |
+ROW |83721 |34828 |1 |1 |0.1 |0 | |
+ROW |83722 |34828 |2 |20 |6h |0 | |
+ROW |83723 |34829 |1 |20 |6h |0 | |
+ROW |83724 |34830 |1 |20 |6h |0 | |
+ROW |83725 |34831 |1 |20 |6h |0 | |
+ROW |83726 |34832 |1 |20 |6h |0 | |
+ROW |83727 |34833 |1 |20 |6h |0 | |
+ROW |83728 |34834 |1 |20 |6h |0 | |
+ROW |83729 |34835 |1 |20 |6h |0 | |
+ROW |83730 |34836 |1 |1 |0.1 |0 | |
+ROW |83731 |34836 |2 |20 |6h |0 | |
+ROW |83732 |34837 |1 |20 |6h |0 | |
+ROW |83733 |34838 |1 |1 |0.1 |0 | |
+ROW |83734 |34838 |2 |20 |6h |0 | |
+ROW |83735 |34839 |1 |20 |6h |0 | |
+ROW |83736 |34840 |1 |20 |6h |0 | |
+ROW |83737 |34841 |1 |1 |0.1 |0 | |
+ROW |83738 |34841 |2 |20 |6h |0 | |
+ROW |83739 |34842 |1 |20 |6h |0 | |
+ROW |83740 |34843 |1 |1 |0.01 |0 | |
+ROW |83741 |34844 |1 |20 |6h |0 | |
+ROW |83742 |34845 |1 |20 |6h |0 | |
+ROW |83743 |34846 |1 |20 |6h |0 | |
+ROW |83744 |34847 |1 |20 |6h |0 | |
+ROW |83745 |34848 |1 |20 |6h |0 | |
+ROW |83746 |34849 |1 |20 |1d |0 | |
+ROW |83747 |34850 |1 |20 |1d |0 | |
+ROW |83748 |34852 |1 |1 |0.1 |0 | |
+ROW |83749 |34852 |2 |20 |6h |0 | |
+ROW |83750 |34853 |1 |1 |0.1 |0 | |
+ROW |83751 |34853 |2 |20 |6h |0 | |
+ROW |83752 |34854 |1 |20 |6h |0 | |
+ROW |83753 |34855 |1 |1 |0.1 |0 | |
+ROW |83754 |34855 |2 |20 |6h |0 | |
+ROW |83755 |34856 |1 |1 |0.1 |0 | |
+ROW |83756 |34856 |2 |20 |6h |0 | |
+ROW |83757 |34857 |1 |1 |0.1 |0 | |
+ROW |83758 |34857 |2 |20 |6h |0 | |
+ROW |83759 |34858 |1 |20 |6h |0 | |
+ROW |83760 |34859 |1 |1 |0.1 |0 | |
+ROW |83761 |34859 |2 |20 |6h |0 | |
+ROW |83762 |34860 |1 |1 |0.1 |0 | |
+ROW |83763 |34860 |2 |20 |6h |0 | |
+ROW |83764 |34861 |1 |20 |6h |0 | |
+ROW |83765 |34862 |1 |1 |0.01 |0 | |
+ROW |83766 |34862 |2 |20 |6h |0 | |
+ROW |83767 |34863 |1 |20 |6h |0 | |
+ROW |83768 |34864 |1 |20 |6h |0 | |
+ROW |83769 |34865 |1 |20 |6h |0 | |
+ROW |83770 |34872 |1 |20 |6h |0 | |
+ROW |83771 |34873 |1 |20 |6h |0 | |
+ROW |83772 |34874 |1 |20 |6h |0 | |
+ROW |83773 |34875 |1 |20 |6h |0 | |
+ROW |83774 |34876 |1 |1 |0.1 |0 | |
+ROW |83775 |34876 |2 |20 |6h |0 | |
+ROW |83776 |34877 |1 |20 |6h |0 | |
+ROW |83777 |34878 |1 |20 |6h |0 | |
+ROW |83778 |34879 |1 |20 |6h |0 | |
+ROW |83779 |34880 |1 |20 |6h |0 | |
+ROW |83780 |34881 |1 |20 |6h |0 | |
+ROW |83781 |34882 |1 |20 |6h |0 | |
+ROW |83782 |34883 |1 |20 |6h |0 | |
+ROW |83783 |34884 |1 |1 |0.1 |0 | |
+ROW |83784 |34884 |2 |20 |6h |0 | |
+ROW |83785 |34885 |1 |20 |6h |0 | |
+ROW |83786 |34886 |1 |1 |0.1 |0 | |
+ROW |83787 |34886 |2 |20 |6h |0 | |
+ROW |83788 |34887 |1 |20 |6h |0 | |
+ROW |83789 |34888 |1 |20 |6h |0 | |
+ROW |83790 |34889 |1 |1 |0.1 |0 | |
+ROW |83791 |34889 |2 |20 |6h |0 | |
+ROW |83792 |34890 |1 |20 |6h |0 | |
+ROW |83793 |34891 |1 |1 |0.01 |0 | |
+ROW |83794 |34892 |1 |20 |6h |0 | |
+ROW |83795 |34893 |1 |20 |6h |0 | |
+ROW |83796 |34894 |1 |20 |6h |0 | |
+ROW |83797 |34895 |1 |20 |6h |0 | |
+ROW |83798 |34896 |1 |20 |6h |0 | |
+ROW |83799 |34897 |1 |20 |1d |0 | |
+ROW |83800 |34898 |1 |20 |1d |0 | |
+ROW |83801 |34900 |1 |1 |0.1 |0 | |
+ROW |83802 |34900 |2 |20 |6h |0 | |
+ROW |83803 |34901 |1 |1 |0.1 |0 | |
+ROW |83804 |34901 |2 |20 |6h |0 | |
+ROW |83805 |34902 |1 |20 |6h |0 | |
+ROW |83806 |34903 |1 |1 |0.1 |0 | |
+ROW |83807 |34903 |2 |20 |6h |0 | |
+ROW |83808 |34904 |1 |1 |0.1 |0 | |
+ROW |83809 |34904 |2 |20 |6h |0 | |
+ROW |83810 |34905 |1 |1 |0.1 |0 | |
+ROW |83811 |34905 |2 |20 |6h |0 | |
+ROW |83812 |34906 |1 |20 |6h |0 | |
+ROW |83813 |34907 |1 |1 |0.1 |0 | |
+ROW |83814 |34907 |2 |20 |6h |0 | |
+ROW |83815 |34908 |1 |1 |0.1 |0 | |
+ROW |83816 |34908 |2 |20 |6h |0 | |
+ROW |83817 |34909 |1 |20 |6h |0 | |
+ROW |83818 |34910 |1 |1 |0.01 |0 | |
+ROW |83819 |34910 |2 |20 |6h |0 | |
+ROW |83820 |34911 |1 |20 |6h |0 | |
+ROW |83821 |34912 |1 |20 |6h |0 | |
+ROW |83822 |34913 |1 |20 |6h |0 | |
+ROW |83823 |34920 |1 |20 |6h |0 | |
+ROW |83824 |34921 |1 |20 |6h |0 | |
+ROW |83825 |34922 |1 |20 |6h |0 | |
+ROW |83826 |34923 |1 |20 |6h |0 | |
+ROW |83827 |34924 |1 |1 |0.1 |0 | |
+ROW |83828 |34924 |2 |20 |6h |0 | |
+ROW |83829 |34925 |1 |20 |6h |0 | |
+ROW |83830 |34926 |1 |20 |6h |0 | |
+ROW |83831 |34927 |1 |20 |6h |0 | |
+ROW |83832 |34928 |1 |20 |6h |0 | |
+ROW |83833 |34929 |1 |20 |6h |0 | |
+ROW |83834 |34930 |1 |20 |6h |0 | |
+ROW |83835 |34931 |1 |20 |6h |0 | |
+ROW |83836 |34932 |1 |1 |0.1 |0 | |
+ROW |83837 |34932 |2 |20 |6h |0 | |
+ROW |83838 |34933 |1 |20 |6h |0 | |
+ROW |83839 |34934 |1 |1 |0.1 |0 | |
+ROW |83840 |34934 |2 |20 |6h |0 | |
+ROW |83841 |34935 |1 |20 |6h |0 | |
+ROW |83842 |34936 |1 |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|
@@ -31024,174 +34002,294 @@ ROW |120 |33466 |{#NAME} |$.name
ROW |121 |33466 |{#URL} |$.url |
TABLE |lld_override
-FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
-ROW |130 |30961 |trigger |1 |0 | |0 |
-ROW |131 |33521 |trigger disabled non main channels|1 |0 | |0 |
-ROW |132 |33810 |Primary metrics |1 |0 | |0 |
-ROW |133 |33657 |ID filter |1 |0 | |0 |
-ROW |134 |33658 |Not NVMe |2 |0 | |0 |
-ROW |135 |33658 |Self-test |1 |0 | |0 |
-ROW |136 |33669 |ID filter |1 |0 | |0 |
-ROW |137 |33670 |Not NVMe |2 |0 | |0 |
-ROW |138 |33670 |Self-test |1 |0 | |0 |
-ROW |139 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |140 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |141 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |142 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |143 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |144 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |145 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |146 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |147 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
-ROW |148 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
-ROW |149 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
-ROW |150 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
-ROW |151 |34209 |Temp |1 |0 | |0 |
-ROW |152 |34210 |Temp |1 |0 | |0 |
-ROW |153 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
-ROW |154 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
-ROW |155 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
-ROW |156 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
-ROW |157 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
-ROW |158 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
-ROW |159 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
+FIELDS|lld_overrideid|itemid|name |step|evaltype|formula|stop|
+ROW |160 |30961 |trigger |1 |0 | |0 |
+ROW |161 |33521 |trigger disabled non main channels |1 |0 | |0 |
+ROW |162 |33810 |Primary metrics |1 |0 | |0 |
+ROW |163 |34346 |Too many missed regions trigger |1 |0 | |0 |
+ROW |164 |34346 |Unresponsive peers trigger |2 |0 | |0 |
+ROW |165 |34403 |Failed GC-related operations trigger |1 |0 | |0 |
+ROW |166 |34443 |Too many unreachable messages trigger|1 |0 | |0 |
+ROW |167 |33657 |ID filter |1 |0 | |0 |
+ROW |168 |33658 |Not NVMe |2 |0 | |0 |
+ROW |169 |33658 |Self-test |1 |0 | |0 |
+ROW |170 |33669 |ID filter |1 |0 | |0 |
+ROW |171 |33670 |Not NVMe |2 |0 | |0 |
+ROW |172 |33670 |Self-test |1 |0 | |0 |
+ROW |173 |28306 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |174 |28306 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |175 |28306 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |176 |28306 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |177 |28307 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |178 |28307 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |179 |28307 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |180 |28307 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |181 |33182 |trigger THRESHOLD_HI_CRIT |4 |0 | |0 |
+ROW |182 |33182 |trigger THRESHOLD_HI_WARN |3 |0 | |0 |
+ROW |183 |33182 |trigger THRESHOLD_LO_CRIT |2 |0 | |0 |
+ROW |184 |33182 |trigger THRESHOLD_LO_WARN |1 |0 | |0 |
+ROW |185 |34478 |Temp |1 |0 | |0 |
+ROW |186 |34479 |Temp |1 |0 | |0 |
+ROW |187 |34526 |Temp |1 |0 | |0 |
+ROW |188 |34527 |Temp |1 |0 | |0 |
+ROW |189 |34574 |Temp |1 |0 | |0 |
+ROW |190 |34575 |Temp |1 |0 | |0 |
+ROW |191 |34622 |Temp |1 |0 | |0 |
+ROW |192 |34623 |Temp |1 |0 | |0 |
+ROW |193 |34670 |Temp |1 |0 | |0 |
+ROW |194 |34671 |Temp |1 |0 | |0 |
+ROW |195 |34718 |Temp |1 |0 | |0 |
+ROW |196 |34719 |Temp |1 |0 | |0 |
+ROW |197 |34766 |Temp |1 |0 | |0 |
+ROW |198 |34767 |Temp |1 |0 | |0 |
+ROW |199 |34209 |Temp |1 |0 | |0 |
+ROW |200 |34210 |Temp |1 |0 | |0 |
+ROW |201 |34820 |Temp |1 |0 | |0 |
+ROW |202 |34821 |Temp |1 |0 | |0 |
+ROW |203 |34868 |Temp |1 |0 | |0 |
+ROW |204 |34869 |Temp |1 |0 | |0 |
+ROW |205 |34916 |Temp |1 |0 | |0 |
+ROW |206 |34917 |Temp |1 |0 | |0 |
+ROW |207 |33354 |Do not discover aggregate metrics |1 |0 | |0 |
+ROW |208 |30687 |trigger SENSOR_HI_CRIT |5 |0 | |0 |
+ROW |209 |30687 |trigger SENSOR_HI_DISAST |6 |0 | |0 |
+ROW |210 |30687 |trigger SENSOR_HI_WARN |4 |0 | |0 |
+ROW |211 |30687 |trigger SENSOR_LO_CRIT |2 |0 | |0 |
+ROW |212 |30687 |trigger SENSOR_LO_DISAST |3 |0 | |0 |
+ROW |213 |30687 |trigger SENSOR_LO_WARN |1 |0 | |0 |
TABLE |lld_override_condition
FIELDS|lld_override_conditionid|lld_overrideid|operator|macro |value |
-ROW |53 |130 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
-ROW |54 |131 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
-ROW |55 |132 |8 |{#NODE_STATE} |1 |
-ROW |56 |133 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |57 |133 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |58 |134 |9 |{#DISKTYPE} |nvme |
-ROW |59 |135 |8 |{#DISKTYPE} |nvme |
-ROW |60 |136 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
-ROW |61 |136 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
-ROW |62 |137 |9 |{#DISKTYPE} |nvme |
-ROW |63 |138 |8 |{#DISKTYPE} |nvme |
-ROW |64 |139 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |65 |140 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |66 |141 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |67 |142 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |68 |143 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |69 |144 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |70 |145 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |71 |146 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |72 |147 |8 |{#THRESHOLD_HI_CRIT} |^$ |
-ROW |73 |148 |8 |{#THRESHOLD_HI_WARN} |^$ |
-ROW |74 |149 |8 |{#THRESHOLD_LO_CRIT} |^$ |
-ROW |75 |150 |8 |{#THRESHOLD_LO_WARN} |^$ |
-ROW |76 |151 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
-ROW |77 |152 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
-ROW |78 |153 |8 |{#FSTYPE} |3&pipe;4 |
+ROW |79 |160 |8 |{#GRPC.CODE} |{$ETCD.GRPC_CODE.TRIGGER.MATCHES}|
+ROW |80 |161 |9 |{#CHANNEL_ID} |{$HIKVISION_MAIN_CHANNEL_ID} |
+ROW |81 |162 |8 |{#NODE_STATE} |1 |
+ROW |82 |163 |8 |{#TYPE} |miss_peer_region_count |
+ROW |83 |164 |8 |{#TYPE} |down_peer_region_count |
+ROW |84 |165 |8 |{#TYPE} |failed |
+ROW |85 |166 |8 |{#TYPE} |unreachable |
+ROW |86 |167 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |87 |167 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |88 |168 |9 |{#DISKTYPE} |nvme |
+ROW |89 |169 |8 |{#DISKTYPE} |nvme |
+ROW |90 |170 |8 |{#ID} |{$SMART.ATTRIBUTE.ID.MATCHES} |
+ROW |91 |170 |8 |{#NAME} |{$SMART.DISK.NAME.MATCHES} |
+ROW |92 |171 |9 |{#DISKTYPE} |nvme |
+ROW |93 |172 |8 |{#DISKTYPE} |nvme |
+ROW |94 |173 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |95 |174 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |96 |175 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |97 |176 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |98 |177 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |99 |178 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |100 |179 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |101 |180 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |102 |181 |8 |{#THRESHOLD_HI_CRIT} |^$ |
+ROW |103 |182 |8 |{#THRESHOLD_HI_WARN} |^$ |
+ROW |104 |183 |8 |{#THRESHOLD_LO_CRIT} |^$ |
+ROW |105 |184 |8 |{#THRESHOLD_LO_WARN} |^$ |
+ROW |106 |185 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |107 |186 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |108 |187 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |109 |188 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |110 |189 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |111 |190 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |112 |191 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |113 |192 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |114 |193 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |115 |194 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |116 |195 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |117 |196 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |118 |197 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |119 |198 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |120 |199 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |121 |200 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |122 |201 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |123 |202 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |124 |203 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |125 |204 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |126 |205 |8 |{#EXTERNAL_SENSOR1_NAME}|Temp |
+ROW |127 |206 |8 |{#EXTERNAL_SENSOR2_NAME}|Temp |
+ROW |128 |207 |8 |{#FSTYPE} |3&pipe;4 |
TABLE |lld_override_operation
FIELDS|lld_override_operationid|lld_overrideid|operationobject|operator|value |
-ROW |130 |130 |1 |2 |Too many failed gRPC requests |
-ROW |131 |131 |1 |2 |Invalid video stream resolution parameters |
-ROW |132 |132 |0 |2 |Number of replicas |
-ROW |133 |132 |0 |2 |Unhealthy replicas |
-ROW |134 |132 |0 |2 |Number of unhealthy replicas |
-ROW |135 |132 |0 |2 |Replication lag |
-ROW |136 |133 |0 |8 | |
-ROW |137 |134 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |138 |135 |0 |2 |Self-test |
-ROW |139 |136 |0 |8 | |
-ROW |140 |137 |0 |8 |Media&pipe;Percentage&pipe;Critical |
-ROW |141 |138 |0 |2 |Self-test |
-ROW |142 |139 |1 |8 |Temperature is above the critical threshold|
-ROW |143 |140 |1 |8 |Temperature is above the warning threshold |
-ROW |144 |141 |1 |8 |Temperature is below the critical threshold|
-ROW |145 |142 |1 |8 |Temperature is below the warning threshold |
-ROW |146 |143 |1 |8 |Fan speed is above the critical threshold |
-ROW |147 |144 |1 |8 |Fan speed is above the warning threshold |
-ROW |148 |145 |1 |8 |Fan speed is below the critical threshold |
-ROW |149 |146 |1 |8 |Fan speed is below the warning threshold |
-ROW |150 |147 |1 |8 |Voltage is above the critical threshold |
-ROW |151 |148 |1 |8 |Voltage is above the warning threshold |
-ROW |152 |149 |1 |8 |Voltage is below the critical threshold |
-ROW |153 |150 |1 |8 |Voltage is below the warning threshold |
-ROW |154 |151 |0 |2 |Humidity |
-ROW |155 |152 |0 |2 |Humidity |
-ROW |156 |153 |0 |2 |Saved |
-ROW |157 |154 |1 |2 |{#SENSOR_HI_CRIT} |
-ROW |158 |155 |1 |2 |{#SENSOR_HI_DISAST} |
-ROW |159 |156 |1 |2 |{#SENSOR_HI_WARN} |
-ROW |160 |157 |1 |2 |{#SENSOR_LO_CRIT} |
-ROW |161 |158 |1 |2 |{#SENSOR_LO_DISAST} |
-ROW |162 |159 |1 |2 |{#SENSOR_LO_WARN} |
+ROW |163 |160 |1 |2 |Too many failed gRPC requests |
+ROW |164 |161 |1 |2 |Invalid video stream resolution parameters |
+ROW |165 |162 |0 |2 |Number of replicas |
+ROW |166 |162 |0 |2 |Unhealthy replicas |
+ROW |167 |162 |0 |2 |Number of unhealthy replicas |
+ROW |168 |162 |0 |2 |Replication lag |
+ROW |169 |163 |1 |2 |Too many missed regions |
+ROW |170 |164 |1 |2 |There are unresponsive peers |
+ROW |171 |165 |1 |2 |Too many failed GC-related operations |
+ROW |172 |166 |1 |2 |Too many failure messages |
+ROW |173 |167 |0 |8 | |
+ROW |174 |168 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |175 |169 |0 |2 |Self-test |
+ROW |176 |170 |0 |8 | |
+ROW |177 |171 |0 |8 |Media&pipe;Percentage&pipe;Critical |
+ROW |178 |172 |0 |2 |Self-test |
+ROW |179 |173 |1 |8 |Temperature is above the critical threshold|
+ROW |180 |174 |1 |8 |Temperature is above the warning threshold |
+ROW |181 |175 |1 |8 |Temperature is below the critical threshold|
+ROW |182 |176 |1 |8 |Temperature is below the warning threshold |
+ROW |183 |177 |1 |8 |Fan speed is above the critical threshold |
+ROW |184 |178 |1 |8 |Fan speed is above the warning threshold |
+ROW |185 |179 |1 |8 |Fan speed is below the critical threshold |
+ROW |186 |180 |1 |8 |Fan speed is below the warning threshold |
+ROW |187 |181 |1 |8 |Voltage is above the critical threshold |
+ROW |188 |182 |1 |8 |Voltage is above the warning threshold |
+ROW |189 |183 |1 |8 |Voltage is below the critical threshold |
+ROW |190 |184 |1 |8 |Voltage is below the warning threshold |
+ROW |191 |185 |0 |2 |Humidity |
+ROW |192 |186 |0 |2 |Humidity |
+ROW |193 |187 |0 |2 |Humidity |
+ROW |194 |188 |0 |2 |Humidity |
+ROW |195 |189 |0 |2 |Humidity |
+ROW |196 |190 |0 |2 |Humidity |
+ROW |197 |191 |0 |2 |Humidity |
+ROW |198 |192 |0 |2 |Humidity |
+ROW |199 |193 |0 |2 |Humidity |
+ROW |200 |194 |0 |2 |Humidity |
+ROW |201 |195 |0 |2 |Humidity |
+ROW |202 |196 |0 |2 |Humidity |
+ROW |203 |197 |0 |2 |Humidity |
+ROW |204 |198 |0 |2 |Humidity |
+ROW |205 |199 |0 |2 |Humidity |
+ROW |206 |200 |0 |2 |Humidity |
+ROW |207 |201 |0 |2 |Humidity |
+ROW |208 |202 |0 |2 |Humidity |
+ROW |209 |203 |0 |2 |Humidity |
+ROW |210 |204 |0 |2 |Humidity |
+ROW |211 |205 |0 |2 |Humidity |
+ROW |212 |206 |0 |2 |Humidity |
+ROW |213 |207 |0 |2 |Saved |
+ROW |214 |208 |1 |2 |{#SENSOR_HI_CRIT} |
+ROW |215 |209 |1 |2 |{#SENSOR_HI_DISAST} |
+ROW |216 |210 |1 |2 |{#SENSOR_HI_WARN} |
+ROW |217 |211 |1 |2 |{#SENSOR_LO_CRIT} |
+ROW |218 |212 |1 |2 |{#SENSOR_LO_DISAST} |
+ROW |219 |213 |1 |2 |{#SENSOR_LO_WARN} |
TABLE |lld_override_opstatus
FIELDS|lld_override_operationid|status|
-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 |
+ROW |171 |0 |
+ROW |172 |0 |
+ROW |173 |0 |
+ROW |174 |0 |
+ROW |175 |0 |
+ROW |176 |0 |
+ROW |177 |0 |
+ROW |178 |0 |
+ROW |179 |0 |
+ROW |180 |0 |
+ROW |181 |0 |
+ROW |182 |0 |
+ROW |183 |0 |
+ROW |184 |0 |
+ROW |185 |0 |
+ROW |186 |0 |
+ROW |187 |0 |
+ROW |188 |0 |
+ROW |189 |0 |
+ROW |190 |0 |
+ROW |191 |0 |
+ROW |192 |0 |
+ROW |193 |0 |
+ROW |194 |0 |
+ROW |195 |0 |
+ROW |196 |0 |
+ROW |197 |0 |
+ROW |198 |0 |
+ROW |199 |0 |
+ROW |200 |0 |
+ROW |201 |0 |
+ROW |202 |0 |
+ROW |203 |0 |
+ROW |204 |0 |
+ROW |205 |0 |
+ROW |206 |0 |
+ROW |207 |0 |
+ROW |208 |0 |
+ROW |209 |0 |
+ROW |210 |0 |
+ROW |211 |0 |
+ROW |212 |0 |
+ROW |213 |0 |
+ROW |214 |0 |
+ROW |215 |0 |
+ROW |216 |0 |
+ROW |217 |0 |
+ROW |218 |0 |
+ROW |219 |0 |
TABLE |lld_override_opdiscover
FIELDS|lld_override_operationid|discover|
-ROW |130 |0 |
-ROW |131 |1 |
-ROW |132 |0 |
-ROW |133 |0 |
-ROW |134 |0 |
-ROW |135 |1 |
-ROW |136 |1 |
-ROW |137 |1 |
-ROW |138 |1 |
-ROW |139 |1 |
-ROW |140 |1 |
-ROW |141 |1 |
-ROW |142 |1 |
-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 |0 |
+ROW |164 |1 |
+ROW |165 |0 |
+ROW |166 |0 |
+ROW |167 |0 |
+ROW |168 |1 |
+ROW |169 |0 |
+ROW |170 |0 |
+ROW |171 |0 |
+ROW |172 |0 |
+ROW |173 |1 |
+ROW |174 |1 |
+ROW |175 |1 |
+ROW |176 |1 |
+ROW |177 |1 |
+ROW |178 |1 |
+ROW |179 |1 |
+ROW |180 |1 |
+ROW |181 |1 |
+ROW |182 |1 |
+ROW |183 |1 |
+ROW |184 |1 |
+ROW |185 |1 |
+ROW |186 |1 |
+ROW |187 |1 |
+ROW |188 |1 |
+ROW |189 |1 |
+ROW |190 |1 |
+ROW |191 |1 |
+ROW |192 |1 |
+ROW |193 |1 |
+ROW |194 |1 |
+ROW |195 |1 |
+ROW |196 |1 |
+ROW |197 |1 |
+ROW |198 |1 |
+ROW |199 |1 |
+ROW |200 |1 |
+ROW |201 |1 |
+ROW |202 |1 |
+ROW |203 |1 |
+ROW |204 |1 |
+ROW |205 |1 |
+ROW |206 |1 |
+ROW |207 |1 |
+ROW |208 |1 |
+ROW |209 |1 |
+ROW |210 |1 |
+ROW |211 |1 |
+ROW |212 |1 |
+ROW |213 |1 |
+ROW |214 |1 |
+ROW |215 |1 |
+ROW |216 |1 |
+ROW |217 |1 |
+ROW |218 |1 |
+ROW |219 |1 |
TABLE |item_parameter
FIELDS|item_parameterid|itemid|name |value |
@@ -31214,5557 +34312,6095 @@ ROW |16 |33634 |url |{$SHAREPOINT.URL} |
ROW |17 |33634 |user |{$SHAREPOINT.USER} |
TABLE |item_tag
-FIELDS|itemtagid|itemid|tag |value |
-ROW |1 |29124 |Application|CPU |
-ROW |2 |29125 |Application|CPU |
-ROW |3 |29126 |Application|CPU |
-ROW |4 |29127 |Application|CPU |
-ROW |5 |29128 |Application|CPU |
-ROW |6 |29129 |Application|CPU |
-ROW |7 |29130 |Application|CPU |
-ROW |8 |29131 |Application|CPU |
-ROW |9 |29132 |Application|CPU |
-ROW |10 |29133 |Application|CPU |
-ROW |11 |29134 |Application|CPU |
-ROW |12 |29135 |Application|CPU |
-ROW |13 |29136 |Application|CPU |
-ROW |14 |29137 |Application|CPU |
-ROW |15 |29138 |Application|CPU |
-ROW |16 |29139 |Application|CPU |
-ROW |17 |29199 |Application|CPU |
-ROW |18 |29148 |Application|General |
-ROW |19 |29149 |Application|General |
-ROW |20 |29150 |Application|General |
-ROW |21 |29151 |Application|General |
-ROW |22 |29152 |Application|General |
-ROW |23 |29153 |Application|General |
-ROW |24 |29154 |Application|General |
-ROW |25 |29155 |Application|General |
-ROW |26 |29156 |Application|General |
-ROW |27 |29158 |Application|Inventory |
-ROW |28 |29159 |Application|Inventory |
-ROW |29 |29160 |Application|Inventory |
-ROW |30 |29140 |Application|Memory |
-ROW |31 |29141 |Application|Memory |
-ROW |32 |29142 |Application|Memory |
-ROW |33 |29143 |Application|Memory |
-ROW |34 |29144 |Application|Memory |
-ROW |35 |29145 |Application|Memory |
-ROW |36 |31365 |Application|Memory |
-ROW |37 |10020 |Application|Monitoring agent |
-ROW |38 |10059 |Application|Monitoring agent |
-ROW |39 |23319 |Application|Monitoring agent |
-ROW |40 |29157 |Application|Security |
-ROW |41 |29147 |Application|Status |
-ROW |42 |29548 |Application|Status |
-ROW |43 |31375 |Application|Zabbix raw items |
-ROW |44 |31387 |Application|Zabbix raw items |
-ROW |45 |31390 |Application|Zabbix raw items |
-ROW |46 |10061 |Application|Zabbix server |
-ROW |47 |10062 |Application|Zabbix server |
-ROW |48 |10063 |Application|Zabbix server |
-ROW |49 |10064 |Application|Zabbix server |
-ROW |50 |10065 |Application|Zabbix server |
-ROW |51 |10066 |Application|Zabbix server |
-ROW |52 |22183 |Application|Zabbix server |
-ROW |53 |22185 |Application|Zabbix server |
-ROW |54 |22187 |Application|Zabbix server |
-ROW |55 |22189 |Application|Zabbix server |
-ROW |56 |22191 |Application|Zabbix server |
-ROW |57 |22196 |Application|Zabbix server |
-ROW |58 |22199 |Application|Zabbix server |
-ROW |59 |22219 |Application|Zabbix server |
-ROW |60 |22396 |Application|Zabbix server |
-ROW |61 |22399 |Application|Zabbix server |
-ROW |62 |22400 |Application|Zabbix server |
-ROW |63 |22401 |Application|Zabbix server |
-ROW |64 |22402 |Application|Zabbix server |
-ROW |65 |22404 |Application|Zabbix server |
-ROW |66 |22406 |Application|Zabbix server |
-ROW |67 |22408 |Application|Zabbix server |
-ROW |68 |22412 |Application|Zabbix server |
-ROW |69 |22414 |Application|Zabbix server |
-ROW |70 |22416 |Application|Zabbix server |
-ROW |71 |22418 |Application|Zabbix server |
-ROW |72 |22420 |Application|Zabbix server |
-ROW |73 |22422 |Application|Zabbix server |
-ROW |74 |22424 |Application|Zabbix server |
-ROW |75 |22426 |Application|Zabbix server |
-ROW |76 |22430 |Application|Zabbix server |
-ROW |77 |22689 |Application|Zabbix server |
-ROW |78 |23171 |Application|Zabbix server |
-ROW |79 |23251 |Application|Zabbix server |
-ROW |80 |23634 |Application|Zabbix server |
-ROW |81 |23661 |Application|Zabbix server |
-ROW |82 |23663 |Application|Zabbix server |
-ROW |83 |25366 |Application|Zabbix server |
-ROW |84 |25370 |Application|Zabbix server |
-ROW |85 |25665 |Application|Zabbix server |
-ROW |86 |25666 |Application|Zabbix server |
-ROW |87 |28248 |Application|Zabbix server |
-ROW |88 |28533 |Application|Zabbix server |
-ROW |89 |28535 |Application|Zabbix server |
-ROW |90 |28537 |Application|Zabbix server |
-ROW |91 |29822 |Application|Zabbix server |
-ROW |92 |33020 |Application|Zabbix server |
-ROW |93 |33021 |Application|Zabbix server |
-ROW |94 |33022 |Application|Zabbix server |
-ROW |95 |33023 |Application|Zabbix server |
-ROW |96 |10067 |Application|Zabbix proxy |
-ROW |97 |10068 |Application|Zabbix proxy |
-ROW |98 |10069 |Application|Zabbix proxy |
-ROW |99 |10070 |Application|Zabbix proxy |
-ROW |100 |10071 |Application|Zabbix proxy |
-ROW |101 |10072 |Application|Zabbix proxy |
-ROW |102 |23340 |Application|Zabbix proxy |
-ROW |103 |23341 |Application|Zabbix proxy |
-ROW |104 |23342 |Application|Zabbix proxy |
-ROW |105 |23343 |Application|Zabbix proxy |
-ROW |106 |23344 |Application|Zabbix proxy |
-ROW |107 |23345 |Application|Zabbix proxy |
-ROW |108 |23346 |Application|Zabbix proxy |
-ROW |109 |23347 |Application|Zabbix proxy |
-ROW |110 |23348 |Application|Zabbix proxy |
-ROW |111 |23349 |Application|Zabbix proxy |
-ROW |112 |23350 |Application|Zabbix proxy |
-ROW |113 |23351 |Application|Zabbix proxy |
-ROW |114 |23352 |Application|Zabbix proxy |
-ROW |115 |23353 |Application|Zabbix proxy |
-ROW |116 |23354 |Application|Zabbix proxy |
-ROW |117 |23355 |Application|Zabbix proxy |
-ROW |118 |23356 |Application|Zabbix proxy |
-ROW |119 |23357 |Application|Zabbix proxy |
-ROW |120 |23358 |Application|Zabbix proxy |
-ROW |121 |23359 |Application|Zabbix proxy |
-ROW |122 |23360 |Application|Zabbix proxy |
-ROW |123 |25368 |Application|Zabbix proxy |
-ROW |124 |25369 |Application|Zabbix proxy |
-ROW |125 |28250 |Application|Zabbix proxy |
-ROW |126 |28251 |Application|Zabbix proxy |
-ROW |127 |28617 |Application|Zabbix proxy |
-ROW |128 |28618 |Application|Zabbix proxy |
-ROW |129 |28619 |Application|Zabbix proxy |
-ROW |130 |33018 |Application|Zabbix proxy |
-ROW |131 |33019 |Application|Zabbix proxy |
-ROW |132 |22231 |Application|Monitoring agent |
-ROW |133 |22232 |Application|Monitoring agent |
-ROW |134 |23318 |Application|Monitoring agent |
-ROW |135 |29544 |Application|Status |
-ROW |136 |22840 |Application|CPU |
-ROW |137 |22841 |Application|CPU |
-ROW |138 |22842 |Application|CPU |
-ROW |139 |22843 |Application|CPU |
-ROW |140 |22844 |Application|CPU |
-ROW |141 |22845 |Application|CPU |
-ROW |142 |22846 |Application|CPU |
-ROW |143 |22848 |Application|CPU |
-ROW |144 |22851 |Application|CPU |
-ROW |145 |22852 |Application|CPU |
-ROW |146 |22868 |Application|Filesystems |
-ROW |147 |22869 |Application|Filesystems |
-ROW |148 |22870 |Application|Filesystems |
-ROW |149 |22871 |Application|Filesystems |
-ROW |150 |22872 |Application|Filesystems |
-ROW |151 |22839 |Application|General |
-ROW |152 |22853 |Application|General |
-ROW |153 |22854 |Application|General |
-ROW |154 |22858 |Application|General |
-ROW |155 |22859 |Application|General |
-ROW |156 |22855 |Application|Memory |
-ROW |157 |22856 |Application|Memory |
-ROW |158 |22857 |Application|Memory |
-ROW |159 |22862 |Application|Memory |
-ROW |160 |22863 |Application|Memory |
-ROW |161 |22833 |Application|Monitoring agent |
-ROW |162 |22834 |Application|Monitoring agent |
-ROW |163 |23320 |Application|Monitoring agent |
-ROW |164 |23075 |Application|Network interfaces |
-ROW |165 |23076 |Application|Network interfaces |
-ROW |166 |22835 |Application|OS |
-ROW |167 |22836 |Application|OS |
-ROW |168 |22839 |Application|OS |
-ROW |169 |22853 |Application|OS |
-ROW |170 |22854 |Application|OS |
-ROW |171 |22858 |Application|OS |
-ROW |172 |22859 |Application|OS |
-ROW |173 |22860 |Application|OS |
-ROW |174 |22840 |Application|Performance |
-ROW |175 |22841 |Application|Performance |
-ROW |176 |22842 |Application|Performance |
-ROW |177 |22843 |Application|Performance |
-ROW |178 |22844 |Application|Performance |
-ROW |179 |22845 |Application|Performance |
-ROW |180 |22846 |Application|Performance |
-ROW |181 |22848 |Application|Performance |
-ROW |182 |22851 |Application|Performance |
-ROW |183 |22852 |Application|Performance |
-ROW |184 |22837 |Application|Processes |
-ROW |185 |22838 |Application|Processes |
-ROW |186 |22860 |Application|Security |
-ROW |187 |22861 |Application|Security |
-ROW |188 |29549 |Application|Status |
-ROW |189 |22880 |Application|CPU |
-ROW |190 |22881 |Application|CPU |
-ROW |191 |22882 |Application|CPU |
-ROW |192 |22883 |Application|CPU |
-ROW |193 |22884 |Application|CPU |
-ROW |194 |22885 |Application|CPU |
-ROW |195 |22886 |Application|CPU |
-ROW |196 |22888 |Application|CPU |
-ROW |197 |22891 |Application|CPU |
-ROW |198 |22892 |Application|CPU |
-ROW |199 |22908 |Application|Filesystems |
-ROW |200 |22909 |Application|Filesystems |
-ROW |201 |22910 |Application|Filesystems |
-ROW |202 |22911 |Application|Filesystems |
-ROW |203 |22912 |Application|Filesystems |
-ROW |204 |22879 |Application|General |
-ROW |205 |22893 |Application|General |
-ROW |206 |22894 |Application|General |
-ROW |207 |22898 |Application|General |
-ROW |208 |22899 |Application|General |
-ROW |209 |22895 |Application|Memory |
-ROW |210 |22896 |Application|Memory |
-ROW |211 |22897 |Application|Memory |
-ROW |212 |22902 |Application|Memory |
-ROW |213 |22903 |Application|Memory |
-ROW |214 |22873 |Application|Monitoring agent |
-ROW |215 |22874 |Application|Monitoring agent |
-ROW |216 |23321 |Application|Monitoring agent |
-ROW |217 |23073 |Application|Network interfaces |
-ROW |218 |23074 |Application|Network interfaces |
-ROW |219 |22875 |Application|OS |
-ROW |220 |22876 |Application|OS |
-ROW |221 |22879 |Application|OS |
-ROW |222 |22893 |Application|OS |
-ROW |223 |22894 |Application|OS |
-ROW |224 |22898 |Application|OS |
-ROW |225 |22899 |Application|OS |
-ROW |226 |22900 |Application|OS |
-ROW |227 |22880 |Application|Performance |
-ROW |228 |22881 |Application|Performance |
-ROW |229 |22882 |Application|Performance |
-ROW |230 |22883 |Application|Performance |
-ROW |231 |22884 |Application|Performance |
-ROW |232 |22885 |Application|Performance |
-ROW |233 |22886 |Application|Performance |
-ROW |234 |22888 |Application|Performance |
-ROW |235 |22891 |Application|Performance |
-ROW |236 |22892 |Application|Performance |
-ROW |237 |22877 |Application|Processes |
-ROW |238 |22878 |Application|Processes |
-ROW |239 |22900 |Application|Security |
-ROW |240 |22901 |Application|Security |
-ROW |241 |29550 |Application|Status |
-ROW |242 |22920 |Application|CPU |
-ROW |243 |22921 |Application|CPU |
-ROW |244 |22922 |Application|CPU |
-ROW |245 |22923 |Application|CPU |
-ROW |246 |22924 |Application|CPU |
-ROW |247 |23108 |Application|CPU |
-ROW |248 |23109 |Application|CPU |
-ROW |249 |23110 |Application|CPU |
-ROW |250 |23111 |Application|CPU |
-ROW |251 |23112 |Application|CPU |
-ROW |252 |23113 |Application|CPU |
-ROW |253 |23114 |Application|CPU |
-ROW |254 |23115 |Application|CPU |
-ROW |255 |23118 |Application|CPU |
-ROW |256 |23119 |Application|CPU |
-ROW |257 |23120 |Application|CPU |
-ROW |258 |23121 |Application|CPU |
-ROW |259 |23123 |Application|CPU |
-ROW |260 |22948 |Application|Filesystems |
-ROW |261 |22949 |Application|Filesystems |
-ROW |262 |22950 |Application|Filesystems |
-ROW |263 |22951 |Application|Filesystems |
-ROW |264 |22952 |Application|Filesystems |
-ROW |265 |23116 |Application|Filesystems |
-ROW |266 |23117 |Application|Filesystems |
-ROW |267 |22933 |Application|General |
-ROW |268 |22934 |Application|General |
-ROW |269 |22938 |Application|General |
-ROW |270 |22939 |Application|General |
-ROW |271 |23108 |Application|Logical partitions |
-ROW |272 |23109 |Application|Logical partitions |
-ROW |273 |23111 |Application|Logical partitions |
-ROW |274 |23112 |Application|Logical partitions |
-ROW |275 |23118 |Application|Logical partitions |
-ROW |276 |22942 |Application|Memory |
-ROW |277 |22943 |Application|Memory |
-ROW |278 |23122 |Application|Memory |
-ROW |279 |23124 |Application|Memory |
-ROW |280 |23125 |Application|Memory |
-ROW |281 |23126 |Application|Memory |
-ROW |282 |23127 |Application|Memory |
-ROW |283 |23128 |Application|Memory |
-ROW |284 |23129 |Application|Memory |
-ROW |285 |23130 |Application|Memory |
-ROW |286 |23131 |Application|Memory |
-ROW |287 |22913 |Application|Monitoring agent |
-ROW |288 |22914 |Application|Monitoring agent |
-ROW |289 |23322 |Application|Monitoring agent |
-ROW |290 |22945 |Application|Network interfaces |
-ROW |291 |22946 |Application|Network interfaces |
-ROW |292 |22933 |Application|OS |
-ROW |293 |22934 |Application|OS |
-ROW |294 |22938 |Application|OS |
-ROW |295 |22939 |Application|OS |
-ROW |296 |22940 |Application|OS |
-ROW |297 |22920 |Application|Performance |
-ROW |298 |22921 |Application|Performance |
-ROW |299 |22922 |Application|Performance |
-ROW |300 |22923 |Application|Performance |
-ROW |301 |22924 |Application|Performance |
-ROW |302 |23108 |Application|Performance |
-ROW |303 |23109 |Application|Performance |
-ROW |304 |23110 |Application|Performance |
-ROW |305 |23111 |Application|Performance |
-ROW |306 |23112 |Application|Performance |
-ROW |307 |23113 |Application|Performance |
-ROW |308 |23114 |Application|Performance |
-ROW |309 |23115 |Application|Performance |
-ROW |310 |23116 |Application|Performance |
-ROW |311 |23117 |Application|Performance |
-ROW |312 |23119 |Application|Performance |
-ROW |313 |23120 |Application|Performance |
-ROW |314 |23121 |Application|Performance |
-ROW |315 |23122 |Application|Performance |
-ROW |316 |23123 |Application|Performance |
-ROW |317 |22917 |Application|Processes |
-ROW |318 |22918 |Application|Processes |
-ROW |319 |22940 |Application|Security |
-ROW |320 |22941 |Application|Security |
-ROW |321 |29551 |Application|Status |
-ROW |322 |22961 |Application|CPU |
-ROW |323 |22962 |Application|CPU |
-ROW |324 |22963 |Application|CPU |
-ROW |325 |22965 |Application|CPU |
-ROW |326 |22968 |Application|CPU |
-ROW |327 |22971 |Application|CPU |
-ROW |328 |22972 |Application|CPU |
-ROW |329 |22988 |Application|Filesystems |
-ROW |330 |22989 |Application|Filesystems |
-ROW |331 |22990 |Application|Filesystems |
-ROW |332 |22991 |Application|Filesystems |
-ROW |333 |22992 |Application|Filesystems |
-ROW |334 |22973 |Application|General |
-ROW |335 |22974 |Application|General |
-ROW |336 |22978 |Application|General |
-ROW |337 |22982 |Application|Memory |
-ROW |338 |22983 |Application|Memory |
-ROW |339 |22953 |Application|Monitoring agent |
-ROW |340 |22954 |Application|Monitoring agent |
-ROW |341 |23323 |Application|Monitoring agent |
-ROW |342 |22985 |Application|Network interfaces |
-ROW |343 |22986 |Application|Network interfaces |
-ROW |344 |22973 |Application|OS |
-ROW |345 |22974 |Application|OS |
-ROW |346 |22978 |Application|OS |
-ROW |347 |22980 |Application|OS |
-ROW |348 |22961 |Application|Performance |
-ROW |349 |22962 |Application|Performance |
-ROW |350 |22963 |Application|Performance |
-ROW |351 |22965 |Application|Performance |
-ROW |352 |22968 |Application|Performance |
-ROW |353 |22971 |Application|Performance |
-ROW |354 |22972 |Application|Performance |
-ROW |355 |22980 |Application|Security |
-ROW |356 |22981 |Application|Security |
-ROW |357 |29552 |Application|Status |
-ROW |358 |23000 |Application|CPU |
-ROW |359 |23001 |Application|CPU |
-ROW |360 |23002 |Application|CPU |
-ROW |361 |23003 |Application|CPU |
-ROW |362 |23004 |Application|CPU |
-ROW |363 |23005 |Application|CPU |
-ROW |364 |23007 |Application|CPU |
-ROW |365 |23011 |Application|CPU |
-ROW |366 |23012 |Application|CPU |
-ROW |367 |23028 |Application|Filesystems |
-ROW |368 |23029 |Application|Filesystems |
-ROW |369 |23030 |Application|Filesystems |
-ROW |370 |23031 |Application|Filesystems |
-ROW |371 |23032 |Application|Filesystems |
-ROW |372 |22999 |Application|General |
-ROW |373 |23013 |Application|General |
-ROW |374 |23014 |Application|General |
-ROW |375 |23018 |Application|General |
-ROW |376 |23019 |Application|General |
-ROW |377 |23015 |Application|Memory |
-ROW |378 |23016 |Application|Memory |
-ROW |379 |23017 |Application|Memory |
-ROW |380 |23022 |Application|Memory |
-ROW |381 |23023 |Application|Memory |
-ROW |382 |22993 |Application|Monitoring agent |
-ROW |383 |22994 |Application|Monitoring agent |
-ROW |384 |23324 |Application|Monitoring agent |
-ROW |385 |23025 |Application|Network interfaces |
-ROW |386 |23026 |Application|Network interfaces |
-ROW |387 |22996 |Application|OS |
-ROW |388 |22999 |Application|OS |
-ROW |389 |23013 |Application|OS |
-ROW |390 |23014 |Application|OS |
-ROW |391 |23018 |Application|OS |
-ROW |392 |23019 |Application|OS |
-ROW |393 |23020 |Application|OS |
-ROW |394 |23000 |Application|Performance |
-ROW |395 |23001 |Application|Performance |
-ROW |396 |23002 |Application|Performance |
-ROW |397 |23003 |Application|Performance |
-ROW |398 |23004 |Application|Performance |
-ROW |399 |23005 |Application|Performance |
-ROW |400 |23007 |Application|Performance |
-ROW |401 |23011 |Application|Performance |
-ROW |402 |23012 |Application|Performance |
-ROW |403 |22997 |Application|Processes |
-ROW |404 |22998 |Application|Processes |
-ROW |405 |23020 |Application|Security |
-ROW |406 |23021 |Application|Security |
-ROW |407 |29553 |Application|Status |
-ROW |408 |23041 |Application|CPU |
-ROW |409 |23042 |Application|CPU |
-ROW |410 |23043 |Application|CPU |
-ROW |411 |23068 |Application|Filesystems |
-ROW |412 |23069 |Application|Filesystems |
-ROW |413 |23070 |Application|Filesystems |
-ROW |414 |23071 |Application|Filesystems |
-ROW |415 |23072 |Application|Filesystems |
-ROW |416 |23039 |Application|General |
-ROW |417 |23053 |Application|General |
-ROW |418 |23054 |Application|General |
-ROW |419 |23058 |Application|General |
-ROW |420 |23059 |Application|General |
-ROW |421 |23062 |Application|Memory |
-ROW |422 |23063 |Application|Memory |
-ROW |423 |23033 |Application|Monitoring agent |
-ROW |424 |23034 |Application|Monitoring agent |
-ROW |425 |23325 |Application|Monitoring agent |
-ROW |426 |23077 |Application|Network interfaces |
-ROW |427 |23078 |Application|Network interfaces |
-ROW |428 |23035 |Application|OS |
-ROW |429 |23036 |Application|OS |
-ROW |430 |23039 |Application|OS |
-ROW |431 |23053 |Application|OS |
-ROW |432 |23054 |Application|OS |
-ROW |433 |23058 |Application|OS |
-ROW |434 |23059 |Application|OS |
-ROW |435 |23060 |Application|OS |
-ROW |436 |23041 |Application|Performance |
-ROW |437 |23042 |Application|Performance |
-ROW |438 |23043 |Application|Performance |
-ROW |439 |23060 |Application|Security |
-ROW |440 |23061 |Application|Security |
-ROW |441 |29554 |Application|Status |
-ROW |442 |29480 |Application|CPU |
-ROW |443 |29481 |Application|CPU |
-ROW |444 |29482 |Application|CPU |
-ROW |445 |29483 |Application|CPU |
-ROW |446 |29484 |Application|CPU |
-ROW |447 |29485 |Application|CPU |
-ROW |448 |30138 |Application|CPU |
-ROW |449 |31423 |Application|CPU |
-ROW |450 |29499 |Application|General |
-ROW |451 |29500 |Application|General |
-ROW |452 |29501 |Application|General |
-ROW |453 |29502 |Application|General |
-ROW |454 |29503 |Application|General |
-ROW |455 |29504 |Application|Inventory |
-ROW |456 |29486 |Application|Memory |
-ROW |457 |29487 |Application|Memory |
-ROW |458 |29488 |Application|Memory |
-ROW |459 |29489 |Application|Memory |
-ROW |460 |29492 |Application|Memory |
-ROW |461 |29493 |Application|Memory |
-ROW |462 |29494 |Application|Memory |
-ROW |463 |29495 |Application|Memory |
-ROW |464 |29496 |Application|Memory |
-ROW |465 |31424 |Application|Memory |
-ROW |466 |31425 |Application|Memory |
-ROW |467 |31428 |Application|Memory |
-ROW |468 |23160 |Application|Monitoring agent |
-ROW |469 |23161 |Application|Monitoring agent |
-ROW |470 |23326 |Application|Monitoring agent |
-ROW |471 |30426 |Application|Services |
-ROW |472 |29498 |Application|Status |
-ROW |473 |29555 |Application|Status |
-ROW |474 |31426 |Application|Zabbix raw items |
-ROW |475 |29161 |Application|CPU |
-ROW |476 |29162 |Application|CPU |
-ROW |477 |29163 |Application|CPU |
-ROW |478 |29164 |Application|CPU |
-ROW |479 |29165 |Application|CPU |
-ROW |480 |29166 |Application|CPU |
-ROW |481 |29167 |Application|CPU |
-ROW |482 |29168 |Application|CPU |
-ROW |483 |29169 |Application|CPU |
-ROW |484 |29170 |Application|CPU |
-ROW |485 |29171 |Application|CPU |
-ROW |486 |29172 |Application|CPU |
-ROW |487 |29173 |Application|CPU |
-ROW |488 |29174 |Application|CPU |
-ROW |489 |29175 |Application|CPU |
-ROW |490 |29176 |Application|CPU |
-ROW |491 |29200 |Application|CPU |
-ROW |492 |29185 |Application|General |
-ROW |493 |29186 |Application|General |
-ROW |494 |29187 |Application|General |
-ROW |495 |29188 |Application|General |
-ROW |496 |29189 |Application|General |
-ROW |497 |29190 |Application|General |
-ROW |498 |29191 |Application|General |
-ROW |499 |29192 |Application|General |
-ROW |500 |29193 |Application|General |
-ROW |501 |29195 |Application|Inventory |
-ROW |502 |29196 |Application|Inventory |
-ROW |503 |29197 |Application|Inventory |
-ROW |504 |29177 |Application|Memory |
-ROW |505 |29178 |Application|Memory |
-ROW |506 |29179 |Application|Memory |
-ROW |507 |29180 |Application|Memory |
-ROW |508 |29181 |Application|Memory |
-ROW |509 |29182 |Application|Memory |
-ROW |510 |31366 |Application|Memory |
-ROW |511 |23287 |Application|Monitoring agent |
-ROW |512 |23288 |Application|Monitoring agent |
-ROW |513 |23327 |Application|Monitoring agent |
-ROW |514 |29194 |Application|Security |
-ROW |515 |29184 |Application|Status |
-ROW |516 |29557 |Application|Status |
-ROW |517 |31378 |Application|Zabbix raw items |
-ROW |518 |31393 |Application|Zabbix raw items |
-ROW |519 |31396 |Application|Zabbix raw items |
-ROW |520 |10073 |Application|Zabbix server |
-ROW |521 |10074 |Application|Zabbix server |
-ROW |522 |10075 |Application|Zabbix server |
-ROW |523 |10076 |Application|Zabbix server |
-ROW |524 |10077 |Application|Zabbix server |
-ROW |525 |10078 |Application|Zabbix server |
-ROW |526 |23252 |Application|Zabbix server |
-ROW |527 |23253 |Application|Zabbix server |
-ROW |528 |23255 |Application|Zabbix server |
-ROW |529 |23256 |Application|Zabbix server |
-ROW |530 |23257 |Application|Zabbix server |
-ROW |531 |23258 |Application|Zabbix server |
-ROW |532 |23259 |Application|Zabbix server |
-ROW |533 |23260 |Application|Zabbix server |
-ROW |534 |23261 |Application|Zabbix server |
-ROW |535 |23262 |Application|Zabbix server |
-ROW |536 |23264 |Application|Zabbix server |
-ROW |537 |23265 |Application|Zabbix server |
-ROW |538 |23266 |Application|Zabbix server |
-ROW |539 |23267 |Application|Zabbix server |
-ROW |540 |23268 |Application|Zabbix server |
-ROW |541 |23269 |Application|Zabbix server |
-ROW |542 |23270 |Application|Zabbix server |
-ROW |543 |23271 |Application|Zabbix server |
-ROW |544 |23272 |Application|Zabbix server |
-ROW |545 |23273 |Application|Zabbix server |
-ROW |546 |23274 |Application|Zabbix server |
-ROW |547 |23275 |Application|Zabbix server |
-ROW |548 |23276 |Application|Zabbix server |
-ROW |549 |23277 |Application|Zabbix server |
-ROW |550 |23328 |Application|Zabbix server |
-ROW |551 |23620 |Application|Zabbix server |
-ROW |552 |23625 |Application|Zabbix server |
-ROW |553 |23628 |Application|Zabbix server |
-ROW |554 |23635 |Application|Zabbix server |
-ROW |555 |23662 |Application|Zabbix server |
-ROW |556 |23664 |Application|Zabbix server |
-ROW |557 |25367 |Application|Zabbix server |
-ROW |558 |25371 |Application|Zabbix server |
-ROW |559 |25667 |Application|Zabbix server |
-ROW |560 |25668 |Application|Zabbix server |
-ROW |561 |28249 |Application|Zabbix server |
-ROW |562 |28534 |Application|Zabbix server |
-ROW |563 |28536 |Application|Zabbix server |
-ROW |564 |28538 |Application|Zabbix server |
-ROW |565 |29823 |Application|Zabbix server |
-ROW |566 |33024 |Application|Zabbix server |
-ROW |567 |33025 |Application|Zabbix server |
-ROW |568 |33026 |Application|Zabbix server |
-ROW |569 |33027 |Application|Zabbix server |
-ROW |570 |23644 |Application|FTP service |
-ROW |571 |23645 |Application|HTTP service |
-ROW |572 |23646 |Application|HTTPS service |
-ROW |573 |23647 |Application|IMAP service |
-ROW |574 |23648 |Application|LDAP service |
-ROW |575 |23649 |Application|NNTP service |
-ROW |576 |23650 |Application|NTP service |
-ROW |577 |23651 |Application|POP service |
-ROW |578 |23652 |Application|SMTP service |
-ROW |579 |23653 |Application|SSH service |
-ROW |580 |23654 |Application|Telnet service |
-ROW |581 |31499 |Application|JMX |
-ROW |582 |31500 |Application|JMX |
-ROW |583 |31501 |Application|JMX |
-ROW |584 |31502 |Application|JMX |
-ROW |585 |31503 |Application|JMX |
-ROW |586 |31504 |Application|JMX |
-ROW |587 |31505 |Application|JMX |
-ROW |588 |31506 |Application|JMX |
-ROW |589 |31507 |Application|JMX |
-ROW |590 |31508 |Application|JMX |
-ROW |591 |31509 |Application|JMX |
-ROW |592 |31510 |Application|JMX |
-ROW |593 |31511 |Application|JMX |
-ROW |594 |31512 |Application|JMX |
-ROW |595 |31513 |Application|JMX |
-ROW |596 |31514 |Application|JMX |
-ROW |597 |31515 |Application|JMX |
-ROW |598 |31516 |Application|JMX |
-ROW |599 |31517 |Application|JMX |
-ROW |600 |31518 |Application|JMX |
-ROW |601 |31519 |Application|JMX |
-ROW |602 |31520 |Application|JMX |
-ROW |603 |31521 |Application|JMX |
-ROW |604 |31522 |Application|JMX |
-ROW |605 |31523 |Application|JMX |
-ROW |606 |31524 |Application|JMX |
-ROW |607 |31525 |Application|JMX |
-ROW |608 |31526 |Application|JMX |
-ROW |609 |31527 |Application|JMX |
-ROW |610 |31528 |Application|JMX |
-ROW |611 |31529 |Application|JMX |
-ROW |612 |31530 |Application|JMX |
-ROW |613 |31531 |Application|JMX |
-ROW |614 |31532 |Application|JMX |
-ROW |615 |31533 |Application|JMX |
-ROW |616 |31534 |Application|JMX |
-ROW |617 |31535 |Application|JMX |
-ROW |618 |31536 |Application|JMX |
-ROW |619 |31537 |Application|JMX |
-ROW |620 |31538 |Application|JMX |
-ROW |621 |31539 |Application|JMX |
-ROW |622 |31540 |Application|JMX |
-ROW |623 |31541 |Application|JMX |
-ROW |624 |31542 |Application|JMX |
-ROW |625 |31543 |Application|JMX |
-ROW |626 |31544 |Application|JMX |
-ROW |627 |31545 |Application|JMX |
-ROW |628 |31546 |Application|JMX |
-ROW |629 |31547 |Application|JMX |
-ROW |630 |31548 |Application|JMX |
-ROW |631 |31549 |Application|JMX |
-ROW |632 |31550 |Application|JMX |
-ROW |633 |31551 |Application|JMX |
-ROW |634 |31552 |Application|JMX |
-ROW |635 |31553 |Application|JMX |
-ROW |636 |26927 |Application|Fans |
-ROW |637 |26928 |Application|Temperature |
-ROW |638 |26925 |Application|Voltage |
-ROW |639 |26926 |Application|Voltage |
-ROW |640 |26929 |Application|Voltage |
-ROW |641 |26930 |Application|Voltage |
-ROW |642 |26931 |Application|Voltage |
-ROW |643 |26932 |Application|Voltage |
-ROW |644 |26935 |Application|Fans |
-ROW |645 |26936 |Application|Fans |
-ROW |646 |26933 |Application|Temperature |
-ROW |647 |26943 |Application|Temperature |
-ROW |648 |26934 |Application|Voltage |
-ROW |649 |26937 |Application|Voltage |
-ROW |650 |26938 |Application|Voltage |
-ROW |651 |26939 |Application|Voltage |
-ROW |652 |26940 |Application|Voltage |
-ROW |653 |26941 |Application|Voltage |
-ROW |654 |26942 |Application|Voltage |
-ROW |655 |31612 |Application|VMware |
-ROW |656 |31613 |Application|VMware |
-ROW |657 |31614 |Application|VMware |
-ROW |658 |31663 |Application|VMware |
-ROW |659 |31664 |Application|VMware |
-ROW |660 |31665 |Application|VMware |
-ROW |661 |31666 |Application|VMware |
-ROW |662 |31667 |Application|VMware |
-ROW |663 |32890 |Application|VMware |
-ROW |664 |32891 |Application|VMware |
-ROW |665 |32892 |Application|VMware |
-ROW |666 |32893 |Application|VMware |
-ROW |667 |32894 |Application|VMware |
-ROW |668 |32895 |Application|VMware |
-ROW |669 |32896 |Application|VMware |
-ROW |670 |32897 |Application|VMware |
-ROW |671 |32898 |Application|VMware |
-ROW |672 |32899 |Application|VMware |
-ROW |673 |32900 |Application|VMware |
-ROW |674 |32901 |Application|VMware |
-ROW |675 |32902 |Application|VMware |
-ROW |676 |32903 |Application|VMware |
-ROW |677 |32904 |Application|VMware |
-ROW |678 |32905 |Application|VMware |
-ROW |679 |32906 |Application|VMware |
-ROW |680 |32907 |Application|VMware |
-ROW |681 |32908 |Application|VMware |
-ROW |682 |32935 |Application|VMware |
-ROW |683 |32936 |Application|VMware |
-ROW |684 |32937 |Application|VMware |
-ROW |685 |32938 |Application|VMware |
-ROW |686 |32939 |Application|VMware |
-ROW |687 |32940 |Application|VMware |
-ROW |688 |32941 |Application|VMware |
-ROW |689 |32942 |Application|VMware |
-ROW |690 |32943 |Application|VMware |
-ROW |691 |32944 |Application|VMware |
-ROW |692 |32945 |Application|VMware |
-ROW |693 |32946 |Application|VMware |
-ROW |694 |33638 |Application|VMware |
-ROW |695 |33639 |Application|VMware |
-ROW |696 |33640 |Application|VMware |
-ROW |697 |33641 |Application|VMware |
-ROW |698 |33642 |Application|VMware |
-ROW |699 |33643 |Application|VMware |
-ROW |700 |33644 |Application|VMware |
-ROW |701 |33645 |Application|VMware |
-ROW |702 |33650 |Application|VMware |
-ROW |703 |33651 |Application|VMware |
-ROW |704 |33652 |Application|VMware |
-ROW |705 |33653 |Application|VMware |
-ROW |706 |33654 |Application|VMware |
-ROW |707 |32909 |Application|VMware |
-ROW |708 |32910 |Application|VMware |
-ROW |709 |32911 |Application|VMware |
-ROW |710 |32912 |Application|VMware |
-ROW |711 |32913 |Application|VMware |
-ROW |712 |32914 |Application|VMware |
-ROW |713 |32915 |Application|VMware |
-ROW |714 |32916 |Application|VMware |
-ROW |715 |32917 |Application|VMware |
-ROW |716 |32918 |Application|VMware |
-ROW |717 |32919 |Application|VMware |
-ROW |718 |32920 |Application|VMware |
-ROW |719 |32921 |Application|VMware |
-ROW |720 |32922 |Application|VMware |
-ROW |721 |32923 |Application|VMware |
-ROW |722 |32924 |Application|VMware |
-ROW |723 |32925 |Application|VMware |
-ROW |724 |32926 |Application|VMware |
-ROW |725 |32927 |Application|VMware |
-ROW |726 |32928 |Application|VMware |
-ROW |727 |32929 |Application|VMware |
-ROW |728 |32930 |Application|VMware |
-ROW |729 |32947 |Application|VMware |
-ROW |730 |32948 |Application|VMware |
-ROW |731 |32949 |Application|VMware |
-ROW |732 |32950 |Application|VMware |
-ROW |733 |33646 |Application|VMware |
-ROW |734 |33647 |Application|VMware |
-ROW |735 |33648 |Application|VMware |
-ROW |736 |33649 |Application|VMware |
-ROW |737 |33655 |Application|VMware |
-ROW |738 |30143 |Application|CPU |
-ROW |739 |30163 |Application|Memory |
-ROW |740 |30164 |Application|Memory |
-ROW |741 |30165 |Application|Memory |
-ROW |742 |27065 |Application|Status |
-ROW |743 |27066 |Application|Status |
-ROW |744 |27067 |Application|Status |
-ROW |745 |27152 |Application|General |
-ROW |746 |27157 |Application|General |
-ROW |747 |29845 |Application|General |
-ROW |748 |29846 |Application|General |
-ROW |749 |29847 |Application|General |
-ROW |750 |29848 |Application|General |
-ROW |751 |27149 |Application|Status |
-ROW |752 |27150 |Application|Status |
-ROW |753 |27151 |Application|Status |
-ROW |754 |27154 |Application|Status |
-ROW |755 |29844 |Application|Status |
-ROW |756 |27208 |Application|CPU |
-ROW |757 |27213 |Application|Fans |
-ROW |758 |27195 |Application|General |
-ROW |759 |27199 |Application|General |
-ROW |760 |29850 |Application|General |
-ROW |761 |29851 |Application|General |
-ROW |762 |29852 |Application|General |
-ROW |763 |29853 |Application|General |
-ROW |764 |27203 |Application|Inventory |
-ROW |765 |27214 |Application|Inventory |
-ROW |766 |30086 |Application|Inventory |
-ROW |767 |27207 |Application|Memory |
-ROW |768 |30087 |Application|Memory |
-ROW |769 |30088 |Application|Memory |
-ROW |770 |30089 |Application|Memory |
-ROW |771 |30091 |Application|Power supply |
-ROW |772 |30092 |Application|Power supply |
-ROW |773 |27192 |Application|Status |
-ROW |774 |27193 |Application|Status |
-ROW |775 |27194 |Application|Status |
-ROW |776 |27202 |Application|Status |
-ROW |777 |29849 |Application|Status |
-ROW |778 |27212 |Application|Temperature |
-ROW |779 |27240 |Application|CPU |
-ROW |780 |27249 |Application|Fans |
-ROW |781 |27250 |Application|Fans |
-ROW |782 |27228 |Application|General |
-ROW |783 |27232 |Application|General |
-ROW |784 |29855 |Application|General |
-ROW |785 |29856 |Application|General |
-ROW |786 |29857 |Application|General |
-ROW |787 |29858 |Application|General |
-ROW |788 |27236 |Application|Inventory |
-ROW |789 |27237 |Application|Inventory |
-ROW |790 |30093 |Application|Memory |
-ROW |791 |27248 |Application|Power supply |
-ROW |792 |27225 |Application|Status |
-ROW |793 |27226 |Application|Status |
-ROW |794 |27227 |Application|Status |
-ROW |795 |27235 |Application|Status |
-ROW |796 |27238 |Application|Status |
-ROW |797 |29854 |Application|Status |
-ROW |798 |27246 |Application|Temperature |
-ROW |799 |27247 |Application|Temperature |
-ROW |800 |27294 |Application|CPU |
-ROW |801 |30094 |Application|Memory |
-ROW |802 |27299 |Application|CPU |
-ROW |803 |27313 |Application|Fans |
-ROW |804 |27264 |Application|General |
-ROW |805 |27268 |Application|General |
-ROW |806 |29860 |Application|General |
-ROW |807 |29861 |Application|General |
-ROW |808 |29862 |Application|General |
-ROW |809 |29863 |Application|General |
-ROW |810 |27295 |Application|Inventory |
-ROW |811 |27296 |Application|Inventory |
-ROW |812 |30095 |Application|Memory |
-ROW |813 |27312 |Application|Power supply |
-ROW |814 |27261 |Application|Status |
-ROW |815 |27262 |Application|Status |
-ROW |816 |27263 |Application|Status |
-ROW |817 |27271 |Application|Status |
-ROW |818 |29859 |Application|Status |
-ROW |819 |27314 |Application|Temperature |
-ROW |820 |27315 |Application|Temperature |
-ROW |821 |27301 |Application|CPU |
-ROW |822 |27317 |Application|Fans |
-ROW |823 |27285 |Application|General |
-ROW |824 |27289 |Application|General |
-ROW |825 |29865 |Application|General |
-ROW |826 |29866 |Application|General |
-ROW |827 |29867 |Application|General |
-ROW |828 |29868 |Application|General |
-ROW |829 |27297 |Application|Inventory |
-ROW |830 |27319 |Application|Inventory |
-ROW |831 |27320 |Application|Inventory |
-ROW |832 |30096 |Application|Memory |
-ROW |833 |27316 |Application|Power supply |
-ROW |834 |27282 |Application|Status |
-ROW |835 |27283 |Application|Status |
-ROW |836 |27284 |Application|Status |
-ROW |837 |27292 |Application|Status |
-ROW |838 |29864 |Application|Status |
-ROW |839 |27318 |Application|Temperature |
-ROW |840 |27415 |Application|Memory |
-ROW |841 |27416 |Application|Memory |
-ROW |842 |30101 |Application|Memory |
-ROW |843 |27417 |Application|CPU |
-ROW |844 |27376 |Application|CPU |
-ROW |845 |27378 |Application|Inventory |
-ROW |846 |27379 |Application|Inventory |
-ROW |847 |27419 |Application|Inventory |
-ROW |848 |30097 |Application|Inventory |
-ROW |849 |27423 |Application|Fans |
-ROW |850 |27422 |Application|Power supply |
-ROW |851 |27420 |Application|Temperature |
-ROW |852 |27421 |Application|Temperature |
-ROW |853 |27427 |Application|CPU |
-ROW |854 |27432 |Application|Fans |
-ROW |855 |27336 |Application|General |
-ROW |856 |27340 |Application|General |
-ROW |857 |29870 |Application|General |
-ROW |858 |29871 |Application|General |
-ROW |859 |29872 |Application|General |
-ROW |860 |29873 |Application|General |
-ROW |861 |27385 |Application|Inventory |
-ROW |862 |27386 |Application|Inventory |
-ROW |863 |27428 |Application|Inventory |
-ROW |864 |30098 |Application|Inventory |
-ROW |865 |27425 |Application|Memory |
-ROW |866 |27426 |Application|Memory |
-ROW |867 |30102 |Application|Memory |
-ROW |868 |27431 |Application|Power supply |
-ROW |869 |27333 |Application|Status |
-ROW |870 |27334 |Application|Status |
-ROW |871 |27335 |Application|Status |
-ROW |872 |27343 |Application|Status |
-ROW |873 |29869 |Application|Status |
-ROW |874 |27429 |Application|Temperature |
-ROW |875 |27430 |Application|Temperature |
-ROW |876 |27380 |Application|CPU |
-ROW |877 |27449 |Application|Fans |
-ROW |878 |27368 |Application|General |
-ROW |879 |27372 |Application|General |
-ROW |880 |29875 |Application|General |
-ROW |881 |29876 |Application|General |
-ROW |882 |29877 |Application|General |
-ROW |883 |29878 |Application|General |
-ROW |884 |27382 |Application|Inventory |
-ROW |885 |27383 |Application|Inventory |
-ROW |886 |27445 |Application|Inventory |
-ROW |887 |30099 |Application|Inventory |
-ROW |888 |27443 |Application|Memory |
-ROW |889 |27444 |Application|Memory |
-ROW |890 |30103 |Application|Memory |
-ROW |891 |27448 |Application|Power supply |
-ROW |892 |27365 |Application|Status |
-ROW |893 |27366 |Application|Status |
-ROW |894 |27367 |Application|Status |
-ROW |895 |27375 |Application|Status |
-ROW |896 |29874 |Application|Status |
-ROW |897 |27446 |Application|Temperature |
-ROW |898 |27447 |Application|Temperature |
-ROW |899 |27478 |Application|CPU |
-ROW |900 |27480 |Application|Fans |
-ROW |901 |27465 |Application|General |
-ROW |902 |27469 |Application|General |
-ROW |903 |29880 |Application|General |
-ROW |904 |29881 |Application|General |
-ROW |905 |29882 |Application|General |
-ROW |906 |29883 |Application|General |
-ROW |907 |27481 |Application|Inventory |
-ROW |908 |27482 |Application|Inventory |
-ROW |909 |27483 |Application|Inventory |
-ROW |910 |27484 |Application|Inventory |
-ROW |911 |30105 |Application|Memory |
-ROW |912 |27479 |Application|Power supply |
-ROW |913 |27462 |Application|Status |
-ROW |914 |27463 |Application|Status |
-ROW |915 |27464 |Application|Status |
-ROW |916 |27472 |Application|Status |
-ROW |917 |29879 |Application|Status |
-ROW |918 |27485 |Application|Temperature |
-ROW |919 |27511 |Application|CPU |
-ROW |920 |27519 |Application|Fans |
-ROW |921 |27499 |Application|General |
-ROW |922 |27503 |Application|General |
-ROW |923 |29885 |Application|General |
-ROW |924 |29886 |Application|General |
-ROW |925 |29887 |Application|General |
-ROW |926 |29888 |Application|General |
-ROW |927 |27508 |Application|Inventory |
-ROW |928 |27509 |Application|Inventory |
-ROW |929 |27510 |Application|Inventory |
-ROW |930 |30106 |Application|Inventory |
-ROW |931 |30107 |Application|Memory |
-ROW |932 |27518 |Application|Power supply |
-ROW |933 |27496 |Application|Status |
-ROW |934 |27497 |Application|Status |
-ROW |935 |27498 |Application|Status |
-ROW |936 |27506 |Application|Status |
-ROW |937 |29884 |Application|Status |
-ROW |938 |27517 |Application|Temperature |
-ROW |939 |27547 |Application|CPU |
-ROW |940 |27555 |Application|Fans |
-ROW |941 |27535 |Application|General |
-ROW |942 |27539 |Application|General |
-ROW |943 |29890 |Application|General |
-ROW |944 |29891 |Application|General |
-ROW |945 |29892 |Application|General |
-ROW |946 |29893 |Application|General |
-ROW |947 |27543 |Application|Inventory |
-ROW |948 |27544 |Application|Inventory |
-ROW |949 |27545 |Application|Inventory |
-ROW |950 |27546 |Application|Inventory |
-ROW |951 |30108 |Application|Memory |
-ROW |952 |27554 |Application|Power supply |
-ROW |953 |27532 |Application|Status |
-ROW |954 |27533 |Application|Status |
-ROW |955 |27534 |Application|Status |
-ROW |956 |27542 |Application|Status |
-ROW |957 |29889 |Application|Status |
-ROW |958 |27553 |Application|Temperature |
-ROW |959 |27586 |Application|CPU |
-ROW |960 |27594 |Application|Fans |
-ROW |961 |27595 |Application|Fans |
-ROW |962 |27571 |Application|General |
-ROW |963 |27575 |Application|General |
-ROW |964 |29895 |Application|General |
-ROW |965 |29896 |Application|General |
-ROW |966 |29897 |Application|General |
-ROW |967 |29898 |Application|General |
-ROW |968 |27579 |Application|Inventory |
-ROW |969 |27580 |Application|Inventory |
-ROW |970 |27582 |Application|Inventory |
-ROW |971 |27583 |Application|Inventory |
-ROW |972 |30109 |Application|Inventory |
-ROW |973 |27591 |Application|Memory |
-ROW |974 |30110 |Application|Memory |
-ROW |975 |30111 |Application|Memory |
-ROW |976 |27593 |Application|Power supply |
-ROW |977 |27568 |Application|Status |
-ROW |978 |27569 |Application|Status |
-ROW |979 |27570 |Application|Status |
-ROW |980 |27578 |Application|Status |
-ROW |981 |29894 |Application|Status |
-ROW |982 |27584 |Application|Temperature |
-ROW |983 |27585 |Application|Temperature |
-ROW |984 |27634 |Application|General |
-ROW |985 |27638 |Application|General |
-ROW |986 |29900 |Application|General |
-ROW |987 |29901 |Application|General |
-ROW |988 |29902 |Application|General |
-ROW |989 |29903 |Application|General |
-ROW |990 |27631 |Application|Status |
-ROW |991 |27632 |Application|Status |
-ROW |992 |27633 |Application|Status |
-ROW |993 |27641 |Application|Status |
-ROW |994 |29899 |Application|Status |
-ROW |995 |27671 |Application|CPU |
-ROW |996 |27673 |Application|Fans |
-ROW |997 |27657 |Application|General |
-ROW |998 |27661 |Application|General |
-ROW |999 |29905 |Application|General |
-ROW |1000 |29906 |Application|General |
-ROW |1001 |29907 |Application|General |
-ROW |1002 |29908 |Application|General |
-ROW |1003 |27675 |Application|Inventory |
-ROW |1004 |27676 |Application|Inventory |
-ROW |1005 |27677 |Application|Inventory |
-ROW |1006 |27678 |Application|Inventory |
-ROW |1007 |27679 |Application|Inventory |
-ROW |1008 |30112 |Application|Memory |
-ROW |1009 |27674 |Application|Power supply |
-ROW |1010 |27654 |Application|Status |
-ROW |1011 |27655 |Application|Status |
-ROW |1012 |27656 |Application|Status |
-ROW |1013 |27664 |Application|Status |
-ROW |1014 |29904 |Application|Status |
-ROW |1015 |27672 |Application|Temperature |
-ROW |1016 |27753 |Application|CPU |
-ROW |1017 |27755 |Application|Fans |
-ROW |1018 |27737 |Application|General |
-ROW |1019 |27741 |Application|General |
-ROW |1020 |29910 |Application|General |
-ROW |1021 |29911 |Application|General |
-ROW |1022 |29912 |Application|General |
-ROW |1023 |29913 |Application|General |
-ROW |1024 |27748 |Application|Inventory |
-ROW |1025 |27749 |Application|Inventory |
-ROW |1026 |27750 |Application|Inventory |
-ROW |1027 |27754 |Application|Inventory |
-ROW |1028 |30116 |Application|Memory |
-ROW |1029 |27734 |Application|Status |
-ROW |1030 |27735 |Application|Status |
-ROW |1031 |27736 |Application|Status |
-ROW |1032 |27744 |Application|Status |
-ROW |1033 |29909 |Application|Status |
-ROW |1034 |27751 |Application|Temperature |
-ROW |1035 |27787 |Application|Fans |
-ROW |1036 |27769 |Application|General |
-ROW |1037 |27773 |Application|General |
-ROW |1038 |29915 |Application|General |
-ROW |1039 |29916 |Application|General |
-ROW |1040 |29917 |Application|General |
-ROW |1041 |29918 |Application|General |
-ROW |1042 |27777 |Application|Inventory |
-ROW |1043 |27778 |Application|Inventory |
-ROW |1044 |27785 |Application|Inventory |
-ROW |1045 |27786 |Application|Power supply |
-ROW |1046 |27766 |Application|Status |
-ROW |1047 |27767 |Application|Status |
-ROW |1048 |27768 |Application|Status |
-ROW |1049 |27776 |Application|Status |
-ROW |1050 |29914 |Application|Status |
-ROW |1051 |27783 |Application|Temperature |
-ROW |1052 |27784 |Application|Temperature |
-ROW |1053 |28894 |Application|CPU |
-ROW |1054 |27822 |Application|Fans |
-ROW |1055 |27803 |Application|General |
-ROW |1056 |27807 |Application|General |
-ROW |1057 |29920 |Application|General |
-ROW |1058 |29921 |Application|General |
-ROW |1059 |29922 |Application|General |
-ROW |1060 |29923 |Application|General |
-ROW |1061 |27812 |Application|Inventory |
-ROW |1062 |27813 |Application|Inventory |
-ROW |1063 |30117 |Application|Inventory |
-ROW |1064 |30118 |Application|Memory |
-ROW |1065 |27823 |Application|Power supply |
-ROW |1066 |27800 |Application|Status |
-ROW |1067 |27801 |Application|Status |
-ROW |1068 |27802 |Application|Status |
-ROW |1069 |27810 |Application|Status |
-ROW |1070 |27814 |Application|Status |
-ROW |1071 |29919 |Application|Status |
-ROW |1072 |27821 |Application|Temperature |
-ROW |1073 |27904 |Application|CPU |
-ROW |1074 |27885 |Application|General |
-ROW |1075 |27889 |Application|General |
-ROW |1076 |29925 |Application|General |
-ROW |1077 |29926 |Application|General |
-ROW |1078 |29927 |Application|General |
-ROW |1079 |29928 |Application|General |
-ROW |1080 |27893 |Application|Inventory |
-ROW |1081 |27894 |Application|Inventory |
-ROW |1082 |27895 |Application|Inventory |
-ROW |1083 |30119 |Application|Inventory |
-ROW |1084 |27898 |Application|Memory |
-ROW |1085 |27900 |Application|Memory |
-ROW |1086 |30120 |Application|Memory |
-ROW |1087 |27882 |Application|Status |
-ROW |1088 |27883 |Application|Status |
-ROW |1089 |27884 |Application|Status |
-ROW |1090 |27892 |Application|Status |
-ROW |1091 |29924 |Application|Status |
-ROW |1092 |27906 |Application|Storage |
-ROW |1093 |27907 |Application|Storage |
-ROW |1094 |27908 |Application|Storage |
-ROW |1095 |27905 |Application|Temperature |
-ROW |1096 |31560 |Application|Temperature |
-ROW |1097 |27936 |Application|CPU |
-ROW |1098 |27942 |Application|Fans |
-ROW |1099 |27922 |Application|General |
-ROW |1100 |27926 |Application|General |
-ROW |1101 |29930 |Application|General |
-ROW |1102 |29931 |Application|General |
-ROW |1103 |29932 |Application|General |
-ROW |1104 |29933 |Application|General |
-ROW |1105 |27930 |Application|Inventory |
-ROW |1106 |27931 |Application|Inventory |
-ROW |1107 |30121 |Application|Inventory |
-ROW |1108 |27935 |Application|Memory |
-ROW |1109 |30122 |Application|Memory |
-ROW |1110 |30123 |Application|Memory |
-ROW |1111 |27943 |Application|Power supply |
-ROW |1112 |27919 |Application|Status |
-ROW |1113 |27920 |Application|Status |
-ROW |1114 |27921 |Application|Status |
-ROW |1115 |27929 |Application|Status |
-ROW |1116 |29929 |Application|Status |
-ROW |1117 |27940 |Application|Temperature |
-ROW |1118 |27941 |Application|Temperature |
-ROW |1119 |27975 |Application|CPU |
-ROW |1120 |30129 |Application|Fans |
-ROW |1121 |27959 |Application|General |
-ROW |1122 |27963 |Application|General |
-ROW |1123 |29935 |Application|General |
-ROW |1124 |29936 |Application|General |
-ROW |1125 |29937 |Application|General |
-ROW |1126 |29938 |Application|General |
-ROW |1127 |27967 |Application|Inventory |
-ROW |1128 |27968 |Application|Inventory |
-ROW |1129 |27970 |Application|Inventory |
-ROW |1130 |27971 |Application|Inventory |
-ROW |1131 |30125 |Application|Inventory |
-ROW |1132 |27972 |Application|Memory |
-ROW |1133 |27973 |Application|Memory |
-ROW |1134 |30126 |Application|Memory |
-ROW |1135 |30130 |Application|Power supply |
-ROW |1136 |27956 |Application|Status |
-ROW |1137 |27957 |Application|Status |
-ROW |1138 |27958 |Application|Status |
-ROW |1139 |27966 |Application|Status |
-ROW |1140 |29934 |Application|Status |
-ROW |1141 |30124 |Application|Temperature |
-ROW |1142 |28003 |Application|CPU |
-ROW |1143 |27989 |Application|General |
-ROW |1144 |27993 |Application|General |
-ROW |1145 |29940 |Application|General |
-ROW |1146 |29941 |Application|General |
-ROW |1147 |29942 |Application|General |
-ROW |1148 |29943 |Application|General |
-ROW |1149 |27997 |Application|Inventory |
-ROW |1150 |27998 |Application|Inventory |
-ROW |1151 |27999 |Application|Inventory |
-ROW |1152 |28000 |Application|Inventory |
-ROW |1153 |30131 |Application|Memory |
-ROW |1154 |27986 |Application|Status |
-ROW |1155 |27987 |Application|Status |
-ROW |1156 |27988 |Application|Status |
-ROW |1157 |27996 |Application|Status |
-ROW |1158 |29939 |Application|Status |
-ROW |1159 |28031 |Application|CPU |
-ROW |1160 |28018 |Application|General |
-ROW |1161 |28022 |Application|General |
-ROW |1162 |29835 |Application|General |
-ROW |1163 |29836 |Application|General |
-ROW |1164 |29837 |Application|General |
-ROW |1165 |29838 |Application|General |
-ROW |1166 |28026 |Application|Inventory |
-ROW |1167 |28027 |Application|Inventory |
-ROW |1168 |30132 |Application|Memory |
-ROW |1169 |30133 |Application|Memory |
-ROW |1170 |30134 |Application|Memory |
-ROW |1171 |30135 |Application|Memory |
-ROW |1172 |30136 |Application|Memory |
-ROW |1173 |28015 |Application|Status |
-ROW |1174 |28016 |Application|Status |
-ROW |1175 |28017 |Application|Status |
-ROW |1176 |28025 |Application|Status |
-ROW |1177 |29834 |Application|Status |
-ROW |1178 |29002 |Application|CPU |
-ROW |1179 |29003 |Application|CPU |
-ROW |1180 |29004 |Application|CPU |
-ROW |1181 |29005 |Application|CPU |
-ROW |1182 |29006 |Application|CPU |
-ROW |1183 |29007 |Application|CPU |
-ROW |1184 |29034 |Application|CPU |
-ROW |1185 |29035 |Application|CPU |
-ROW |1186 |29036 |Application|CPU |
-ROW |1187 |29037 |Application|CPU |
-ROW |1188 |29038 |Application|CPU |
-ROW |1189 |29039 |Application|CPU |
-ROW |1190 |29040 |Application|CPU |
-ROW |1191 |29041 |Application|CPU |
-ROW |1192 |29042 |Application|CPU |
-ROW |1193 |29043 |Application|CPU |
-ROW |1194 |29049 |Application|CPU |
-ROW |1195 |28960 |Application|General |
-ROW |1196 |28964 |Application|General |
-ROW |1197 |29985 |Application|General |
-ROW |1198 |29986 |Application|General |
-ROW |1199 |29987 |Application|General |
-ROW |1200 |29988 |Application|General |
-ROW |1201 |28993 |Application|Memory |
-ROW |1202 |28994 |Application|Memory |
-ROW |1203 |28995 |Application|Memory |
-ROW |1204 |28996 |Application|Memory |
-ROW |1205 |28997 |Application|Memory |
-ROW |1206 |28998 |Application|Memory |
-ROW |1207 |28999 |Application|Memory |
-ROW |1208 |29000 |Application|Memory |
-ROW |1209 |29001 |Application|Memory |
-ROW |1210 |28957 |Application|Status |
-ROW |1211 |28958 |Application|Status |
-ROW |1212 |28959 |Application|Status |
-ROW |1213 |28967 |Application|Status |
-ROW |1214 |29984 |Application|Status |
-ROW |1215 |30145 |Application|CPU |
-ROW |1216 |29053 |Application|General |
-ROW |1217 |29057 |Application|General |
-ROW |1218 |29990 |Application|General |
-ROW |1219 |29991 |Application|General |
-ROW |1220 |29992 |Application|General |
-ROW |1221 |29993 |Application|General |
-ROW |1222 |30175 |Application|Memory |
-ROW |1223 |30176 |Application|Memory |
-ROW |1224 |30177 |Application|Memory |
-ROW |1225 |29050 |Application|Status |
-ROW |1226 |29051 |Application|Status |
-ROW |1227 |29052 |Application|Status |
-ROW |1228 |29060 |Application|Status |
-ROW |1229 |29989 |Application|Status |
-ROW |1230 |28143 |Application|CPU |
-ROW |1231 |28154 |Application|Fans |
-ROW |1232 |28133 |Application|General |
-ROW |1233 |28137 |Application|General |
-ROW |1234 |29945 |Application|General |
-ROW |1235 |29946 |Application|General |
-ROW |1236 |29947 |Application|General |
-ROW |1237 |29948 |Application|General |
-ROW |1238 |28141 |Application|Inventory |
-ROW |1239 |28142 |Application|Inventory |
-ROW |1240 |28157 |Application|Inventory |
-ROW |1241 |28158 |Application|Inventory |
-ROW |1242 |28153 |Application|Memory |
-ROW |1243 |30113 |Application|Memory |
-ROW |1244 |30114 |Application|Memory |
-ROW |1245 |30115 |Application|Memory |
-ROW |1246 |28155 |Application|Power supply |
-ROW |1247 |28130 |Application|Status |
-ROW |1248 |28131 |Application|Status |
-ROW |1249 |28132 |Application|Status |
-ROW |1250 |28140 |Application|Status |
-ROW |1251 |29944 |Application|Status |
-ROW |1252 |28150 |Application|Temperature |
-ROW |1253 |28156 |Application|Temperature |
-ROW |1254 |34154 |Application|CPU |
-ROW |1255 |28202 |Application|Fans |
-ROW |1256 |28203 |Application|Fans |
-ROW |1257 |34152 |Application|General |
-ROW |1258 |34153 |Application|General |
-ROW |1259 |34155 |Application|General |
-ROW |1260 |34156 |Application|General |
-ROW |1261 |34157 |Application|General |
-ROW |1262 |34158 |Application|General |
-ROW |1263 |28204 |Application|Inventory |
-ROW |1264 |28205 |Application|Inventory |
-ROW |1265 |34176 |Application|Memory |
-ROW |1266 |34177 |Application|Memory |
-ROW |1267 |34178 |Application|Memory |
-ROW |1268 |28206 |Application|Power supply |
-ROW |1269 |34149 |Application|Status |
-ROW |1270 |34150 |Application|Status |
-ROW |1271 |34151 |Application|Status |
-ROW |1272 |34159 |Application|Status |
-ROW |1273 |34160 |Application|Status |
-ROW |1274 |28200 |Application|Temperature |
-ROW |1275 |28201 |Application|Temperature |
-ROW |1276 |28246 |Application|CPU |
-ROW |1277 |28247 |Application|CPU |
-ROW |1278 |28215 |Application|Fans |
-ROW |1279 |28236 |Application|General |
-ROW |1280 |28240 |Application|General |
-ROW |1281 |29955 |Application|General |
-ROW |1282 |29956 |Application|General |
-ROW |1283 |29957 |Application|General |
-ROW |1284 |29958 |Application|General |
-ROW |1285 |28208 |Application|Inventory |
-ROW |1286 |28209 |Application|Inventory |
-ROW |1287 |28210 |Application|Inventory |
-ROW |1288 |30100 |Application|Inventory |
-ROW |1289 |28220 |Application|Memory |
-ROW |1290 |28222 |Application|Memory |
-ROW |1291 |30104 |Application|Memory |
-ROW |1292 |28216 |Application|Power supply |
-ROW |1293 |28233 |Application|Status |
-ROW |1294 |28234 |Application|Status |
-ROW |1295 |28235 |Application|Status |
-ROW |1296 |28243 |Application|Status |
-ROW |1297 |29954 |Application|Status |
-ROW |1298 |28217 |Application|Temperature |
-ROW |1299 |28218 |Application|Temperature |
-ROW |1300 |30146 |Application|CPU |
-ROW |1301 |28325 |Application|Fans |
-ROW |1302 |28326 |Application|Fans |
-ROW |1303 |28285 |Application|General |
-ROW |1304 |28289 |Application|General |
-ROW |1305 |29960 |Application|General |
-ROW |1306 |29961 |Application|General |
-ROW |1307 |29962 |Application|General |
-ROW |1308 |29963 |Application|General |
-ROW |1309 |28327 |Application|Inventory |
-ROW |1310 |28328 |Application|Inventory |
-ROW |1311 |30181 |Application|Memory |
-ROW |1312 |30182 |Application|Memory |
-ROW |1313 |30183 |Application|Memory |
-ROW |1314 |28329 |Application|Power supply |
-ROW |1315 |28282 |Application|Status |
-ROW |1316 |28283 |Application|Status |
-ROW |1317 |28284 |Application|Status |
-ROW |1318 |28292 |Application|Status |
-ROW |1319 |29959 |Application|Status |
-ROW |1320 |28323 |Application|Temperature |
-ROW |1321 |28324 |Application|Temperature |
-ROW |1322 |33183 |Application|Voltage |
-ROW |1323 |33181 |Application|Zabbix raw items |
-ROW |1324 |28374 |Application|Disk arrays |
-ROW |1325 |28375 |Application|Disk arrays |
-ROW |1326 |28376 |Application|Disk arrays |
-ROW |1327 |28359 |Application|Fans |
-ROW |1328 |28360 |Application|Fans |
-ROW |1329 |28333 |Application|General |
-ROW |1330 |28337 |Application|General |
-ROW |1331 |29965 |Application|General |
-ROW |1332 |29966 |Application|General |
-ROW |1333 |29967 |Application|General |
-ROW |1334 |29968 |Application|General |
-ROW |1335 |28342 |Application|Inventory |
-ROW |1336 |28344 |Application|Inventory |
-ROW |1337 |28345 |Application|Inventory |
-ROW |1338 |30141 |Application|Inventory |
-ROW |1339 |28361 |Application|Physical disks |
-ROW |1340 |28362 |Application|Physical disks |
-ROW |1341 |28363 |Application|Physical disks |
-ROW |1342 |28364 |Application|Physical disks |
-ROW |1343 |28365 |Application|Physical disks |
-ROW |1344 |28366 |Application|Physical disks |
-ROW |1345 |28367 |Application|Physical disks |
-ROW |1346 |28358 |Application|Power supply |
-ROW |1347 |28330 |Application|Status |
-ROW |1348 |28331 |Application|Status |
-ROW |1349 |28332 |Application|Status |
-ROW |1350 |28340 |Application|Status |
-ROW |1351 |28341 |Application|Status |
-ROW |1352 |29964 |Application|Status |
-ROW |1353 |28354 |Application|Temperature |
-ROW |1354 |28355 |Application|Temperature |
-ROW |1355 |28356 |Application|Temperature |
-ROW |1356 |28357 |Application|Temperature |
-ROW |1357 |28368 |Application|Virtual disks |
-ROW |1358 |28369 |Application|Virtual disks |
-ROW |1359 |28370 |Application|Virtual disks |
-ROW |1360 |28371 |Application|Virtual disks |
-ROW |1361 |28372 |Application|Virtual disks |
-ROW |1362 |28373 |Application|Virtual disks |
-ROW |1363 |28413 |Application|Disk arrays |
-ROW |1364 |28414 |Application|Disk arrays |
-ROW |1365 |28415 |Application|Disk arrays |
-ROW |1366 |28416 |Application|Disk arrays |
-ROW |1367 |28412 |Application|Fans |
-ROW |1368 |28380 |Application|General |
-ROW |1369 |28384 |Application|General |
-ROW |1370 |29970 |Application|General |
-ROW |1371 |29971 |Application|General |
-ROW |1372 |29972 |Application|General |
-ROW |1373 |29973 |Application|General |
-ROW |1374 |28390 |Application|Inventory |
-ROW |1375 |28391 |Application|Inventory |
-ROW |1376 |28417 |Application|Physical disks |
-ROW |1377 |28418 |Application|Physical disks |
-ROW |1378 |28419 |Application|Physical disks |
-ROW |1379 |28420 |Application|Physical disks |
-ROW |1380 |28421 |Application|Physical disks |
-ROW |1381 |28422 |Application|Physical disks |
-ROW |1382 |28411 |Application|Power supply |
-ROW |1383 |28377 |Application|Status |
-ROW |1384 |28378 |Application|Status |
-ROW |1385 |28379 |Application|Status |
-ROW |1386 |28387 |Application|Status |
-ROW |1387 |29969 |Application|Status |
-ROW |1388 |29994 |Application|Status |
-ROW |1389 |28388 |Application|Temperature |
-ROW |1390 |28404 |Application|Temperature |
-ROW |1391 |28405 |Application|Temperature |
-ROW |1392 |28406 |Application|Temperature |
-ROW |1393 |28407 |Application|Temperature |
-ROW |1394 |28408 |Application|Temperature |
-ROW |1395 |28409 |Application|Temperature |
-ROW |1396 |33621 |Application|Temperature |
-ROW |1397 |33622 |Application|Temperature |
-ROW |1398 |33623 |Application|Temperature |
-ROW |1399 |33624 |Application|Temperature |
-ROW |1400 |33625 |Application|Temperature |
-ROW |1401 |33626 |Application|Temperature |
-ROW |1402 |33627 |Application|Temperature |
-ROW |1403 |33628 |Application|Temperature |
-ROW |1404 |33629 |Application|Temperature |
-ROW |1405 |28423 |Application|Virtual disks |
-ROW |1406 |28424 |Application|Virtual disks |
-ROW |1407 |28425 |Application|Virtual disks |
-ROW |1408 |28478 |Application|Fans |
-ROW |1409 |28479 |Application|Fans |
-ROW |1410 |28457 |Application|General |
-ROW |1411 |28461 |Application|General |
-ROW |1412 |29975 |Application|General |
-ROW |1413 |29976 |Application|General |
-ROW |1414 |29977 |Application|General |
-ROW |1415 |29978 |Application|General |
-ROW |1416 |28466 |Application|Inventory |
-ROW |1417 |28467 |Application|Inventory |
-ROW |1418 |28480 |Application|Physical disks |
-ROW |1419 |28481 |Application|Physical disks |
-ROW |1420 |28477 |Application|Power supply |
-ROW |1421 |28454 |Application|Status |
-ROW |1422 |28455 |Application|Status |
-ROW |1423 |28456 |Application|Status |
-ROW |1424 |28464 |Application|Status |
-ROW |1425 |28465 |Application|Status |
-ROW |1426 |29974 |Application|Status |
-ROW |1427 |28474 |Application|Temperature |
-ROW |1428 |28475 |Application|Temperature |
-ROW |1429 |28476 |Application|Temperature |
-ROW |1430 |28496 |Application|Fans |
-ROW |1431 |28485 |Application|General |
-ROW |1432 |28489 |Application|General |
-ROW |1433 |29980 |Application|General |
-ROW |1434 |29981 |Application|General |
-ROW |1435 |29982 |Application|General |
-ROW |1436 |29983 |Application|General |
-ROW |1437 |28482 |Application|Status |
-ROW |1438 |28483 |Application|Status |
-ROW |1439 |28484 |Application|Status |
-ROW |1440 |28492 |Application|Status |
-ROW |1441 |29979 |Application|Status |
-ROW |1442 |28495 |Application|Temperature |
-ROW |1443 |28511 |Application|Tomcat |
-ROW |1444 |28539 |Application|Zabbix server |
-ROW |1445 |28540 |Application|Zabbix server |
-ROW |1446 |28541 |Application|Zabbix server |
-ROW |1447 |28542 |Application|Zabbix server |
-ROW |1448 |28543 |Application|Zabbix server |
-ROW |1449 |28544 |Application|Zabbix server |
-ROW |1450 |28545 |Application|Zabbix server |
-ROW |1451 |28546 |Application|Zabbix server |
-ROW |1452 |28547 |Application|Zabbix server |
-ROW |1453 |28548 |Application|Zabbix server |
-ROW |1454 |28549 |Application|Zabbix server |
-ROW |1455 |28550 |Application|Zabbix server |
-ROW |1456 |28551 |Application|Zabbix server |
-ROW |1457 |28552 |Application|Zabbix server |
-ROW |1458 |28553 |Application|Zabbix server |
-ROW |1459 |28554 |Application|Zabbix server |
-ROW |1460 |28555 |Application|Zabbix server |
-ROW |1461 |28556 |Application|Zabbix server |
-ROW |1462 |28557 |Application|Zabbix server |
-ROW |1463 |28558 |Application|Zabbix server |
-ROW |1464 |28559 |Application|Zabbix server |
-ROW |1465 |28560 |Application|Zabbix server |
-ROW |1466 |28561 |Application|Zabbix server |
-ROW |1467 |28562 |Application|Zabbix server |
-ROW |1468 |28563 |Application|Zabbix server |
-ROW |1469 |28564 |Application|Zabbix server |
-ROW |1470 |28565 |Application|Zabbix server |
-ROW |1471 |28566 |Application|Zabbix server |
-ROW |1472 |28567 |Application|Zabbix server |
-ROW |1473 |28568 |Application|Zabbix server |
-ROW |1474 |28569 |Application|Zabbix server |
-ROW |1475 |28570 |Application|Zabbix server |
-ROW |1476 |28571 |Application|Zabbix server |
-ROW |1477 |28572 |Application|Zabbix server |
-ROW |1478 |28573 |Application|Zabbix server |
-ROW |1479 |28574 |Application|Zabbix server |
-ROW |1480 |28575 |Application|Zabbix server |
-ROW |1481 |28576 |Application|Zabbix server |
-ROW |1482 |28577 |Application|Zabbix server |
-ROW |1483 |28578 |Application|Zabbix server |
-ROW |1484 |28579 |Application|Zabbix server |
-ROW |1485 |28580 |Application|Zabbix server |
-ROW |1486 |28581 |Application|Zabbix server |
-ROW |1487 |28582 |Application|Zabbix server |
-ROW |1488 |28583 |Application|Zabbix server |
-ROW |1489 |28584 |Application|Zabbix server |
-ROW |1490 |29821 |Application|Zabbix server |
-ROW |1491 |31053 |Application|Zabbix server |
-ROW |1492 |33014 |Application|Zabbix server |
-ROW |1493 |33015 |Application|Zabbix server |
-ROW |1494 |33016 |Application|Zabbix server |
-ROW |1495 |33017 |Application|Zabbix server |
-ROW |1496 |28585 |Application|Zabbix proxy |
-ROW |1497 |28586 |Application|Zabbix proxy |
-ROW |1498 |28587 |Application|Zabbix proxy |
-ROW |1499 |28588 |Application|Zabbix proxy |
-ROW |1500 |28589 |Application|Zabbix proxy |
-ROW |1501 |28590 |Application|Zabbix proxy |
-ROW |1502 |28591 |Application|Zabbix proxy |
-ROW |1503 |28592 |Application|Zabbix proxy |
-ROW |1504 |28593 |Application|Zabbix proxy |
-ROW |1505 |28594 |Application|Zabbix proxy |
-ROW |1506 |28595 |Application|Zabbix proxy |
-ROW |1507 |28596 |Application|Zabbix proxy |
-ROW |1508 |28597 |Application|Zabbix proxy |
-ROW |1509 |28598 |Application|Zabbix proxy |
-ROW |1510 |28599 |Application|Zabbix proxy |
-ROW |1511 |28600 |Application|Zabbix proxy |
-ROW |1512 |28601 |Application|Zabbix proxy |
-ROW |1513 |28602 |Application|Zabbix proxy |
-ROW |1514 |28603 |Application|Zabbix proxy |
-ROW |1515 |28604 |Application|Zabbix proxy |
-ROW |1516 |28605 |Application|Zabbix proxy |
-ROW |1517 |28606 |Application|Zabbix proxy |
-ROW |1518 |28607 |Application|Zabbix proxy |
-ROW |1519 |28608 |Application|Zabbix proxy |
-ROW |1520 |28609 |Application|Zabbix proxy |
-ROW |1521 |28610 |Application|Zabbix proxy |
-ROW |1522 |28611 |Application|Zabbix proxy |
-ROW |1523 |28612 |Application|Zabbix proxy |
-ROW |1524 |28613 |Application|Zabbix proxy |
-ROW |1525 |28614 |Application|Zabbix proxy |
-ROW |1526 |28615 |Application|Zabbix proxy |
-ROW |1527 |28616 |Application|Zabbix proxy |
-ROW |1528 |31052 |Application|Zabbix proxy |
-ROW |1529 |33012 |Application|Zabbix proxy |
-ROW |1530 |33013 |Application|Zabbix proxy |
-ROW |1531 |28743 |Application|Apache |
-ROW |1532 |28744 |Application|Apache |
-ROW |1533 |28745 |Application|Apache |
-ROW |1534 |28746 |Application|Apache |
-ROW |1535 |28747 |Application|Apache |
-ROW |1536 |28748 |Application|Apache |
-ROW |1537 |30897 |Application|Apache |
-ROW |1538 |30898 |Application|Apache |
-ROW |1539 |30899 |Application|Apache |
-ROW |1540 |30900 |Application|Apache |
-ROW |1541 |30901 |Application|Apache |
-ROW |1542 |30902 |Application|Apache |
-ROW |1543 |30903 |Application|Apache |
-ROW |1544 |30904 |Application|Apache |
-ROW |1545 |30905 |Application|Apache |
-ROW |1546 |30906 |Application|Apache |
-ROW |1547 |30907 |Application|Apache |
-ROW |1548 |30908 |Application|Apache |
-ROW |1549 |30909 |Application|Apache |
-ROW |1550 |30910 |Application|Apache |
-ROW |1551 |30911 |Application|Apache |
-ROW |1552 |30912 |Application|Apache |
-ROW |1553 |30913 |Application|Apache |
-ROW |1554 |30914 |Application|Apache |
-ROW |1555 |30915 |Application|Apache |
-ROW |1556 |30917 |Application|Apache |
-ROW |1557 |30918 |Application|Apache |
-ROW |1558 |30919 |Application|Apache |
-ROW |1559 |30920 |Application|Apache |
-ROW |1560 |30921 |Application|Apache |
-ROW |1561 |30922 |Application|Apache |
-ROW |1562 |30896 |Application|Zabbix raw items |
-ROW |1563 |28776 |Application|Apache |
-ROW |1564 |28777 |Application|Apache |
-ROW |1565 |28778 |Application|Apache |
-ROW |1566 |28779 |Application|Apache |
-ROW |1567 |28780 |Application|Apache |
-ROW |1568 |28781 |Application|Apache |
-ROW |1569 |28782 |Application|Apache |
-ROW |1570 |28783 |Application|Apache |
-ROW |1571 |28784 |Application|Apache |
-ROW |1572 |28785 |Application|Apache |
-ROW |1573 |28786 |Application|Apache |
-ROW |1574 |28787 |Application|Apache |
-ROW |1575 |28788 |Application|Apache |
-ROW |1576 |28789 |Application|Apache |
-ROW |1577 |28790 |Application|Apache |
-ROW |1578 |28791 |Application|Apache |
-ROW |1579 |28792 |Application|Apache |
-ROW |1580 |28793 |Application|Apache |
-ROW |1581 |28794 |Application|Apache |
-ROW |1582 |28795 |Application|Apache |
-ROW |1583 |28796 |Application|Apache |
-ROW |1584 |28798 |Application|Apache |
-ROW |1585 |28799 |Application|Apache |
-ROW |1586 |28800 |Application|Apache |
-ROW |1587 |28801 |Application|Apache |
-ROW |1588 |28802 |Application|Apache |
-ROW |1589 |28803 |Application|Apache |
-ROW |1590 |28775 |Application|Zabbix raw items |
-ROW |1591 |28805 |Application|Nginx |
-ROW |1592 |28806 |Application|Nginx |
-ROW |1593 |28807 |Application|Nginx |
-ROW |1594 |28808 |Application|Nginx |
-ROW |1595 |28809 |Application|Nginx |
-ROW |1596 |28810 |Application|Nginx |
-ROW |1597 |28811 |Application|Nginx |
-ROW |1598 |28812 |Application|Nginx |
-ROW |1599 |28813 |Application|Nginx |
-ROW |1600 |28814 |Application|Nginx |
-ROW |1601 |28815 |Application|Nginx |
-ROW |1602 |28816 |Application|Nginx |
-ROW |1603 |28817 |Application|Nginx |
-ROW |1604 |28818 |Application|Nginx |
-ROW |1605 |28819 |Application|Nginx |
-ROW |1606 |28820 |Application|Nginx |
-ROW |1607 |28804 |Application|Zabbix raw items |
-ROW |1608 |28822 |Application|Nginx |
-ROW |1609 |28823 |Application|Nginx |
-ROW |1610 |28824 |Application|Nginx |
-ROW |1611 |28825 |Application|Nginx |
-ROW |1612 |28826 |Application|Nginx |
-ROW |1613 |28827 |Application|Nginx |
-ROW |1614 |28828 |Application|Nginx |
-ROW |1615 |28829 |Application|Nginx |
-ROW |1616 |28830 |Application|Nginx |
-ROW |1617 |28831 |Application|Nginx |
-ROW |1618 |28832 |Application|Nginx |
-ROW |1619 |28833 |Application|Nginx |
-ROW |1620 |28821 |Application|Zabbix raw items |
-ROW |1621 |28978 |Application|Memory |
-ROW |1622 |28979 |Application|Memory |
-ROW |1623 |28980 |Application|Memory |
-ROW |1624 |28981 |Application|Memory |
-ROW |1625 |28982 |Application|Memory |
-ROW |1626 |28983 |Application|Memory |
-ROW |1627 |28984 |Application|Memory |
-ROW |1628 |28985 |Application|Memory |
-ROW |1629 |28986 |Application|Memory |
-ROW |1630 |28987 |Application|CPU |
-ROW |1631 |28988 |Application|CPU |
-ROW |1632 |28989 |Application|CPU |
-ROW |1633 |28990 |Application|CPU |
-ROW |1634 |28991 |Application|CPU |
-ROW |1635 |28992 |Application|CPU |
-ROW |1636 |29017 |Application|CPU |
-ROW |1637 |29018 |Application|CPU |
-ROW |1638 |29019 |Application|CPU |
-ROW |1639 |29020 |Application|CPU |
-ROW |1640 |29021 |Application|CPU |
-ROW |1641 |29022 |Application|CPU |
-ROW |1642 |29023 |Application|CPU |
-ROW |1643 |29024 |Application|CPU |
-ROW |1644 |29025 |Application|CPU |
-ROW |1645 |29026 |Application|CPU |
-ROW |1646 |29048 |Application|CPU |
-ROW |1647 |29087 |Application|CPU |
-ROW |1648 |29088 |Application|CPU |
-ROW |1649 |29089 |Application|CPU |
-ROW |1650 |29090 |Application|CPU |
-ROW |1651 |29091 |Application|CPU |
-ROW |1652 |29092 |Application|CPU |
-ROW |1653 |29093 |Application|CPU |
-ROW |1654 |29094 |Application|CPU |
-ROW |1655 |29095 |Application|CPU |
-ROW |1656 |29096 |Application|CPU |
-ROW |1657 |29097 |Application|CPU |
-ROW |1658 |29098 |Application|CPU |
-ROW |1659 |29099 |Application|CPU |
-ROW |1660 |29100 |Application|CPU |
-ROW |1661 |29101 |Application|CPU |
-ROW |1662 |29102 |Application|CPU |
-ROW |1663 |29198 |Application|CPU |
-ROW |1664 |29103 |Application|Memory |
-ROW |1665 |29104 |Application|Memory |
-ROW |1666 |29105 |Application|Memory |
-ROW |1667 |29106 |Application|Memory |
-ROW |1668 |29107 |Application|Memory |
-ROW |1669 |29108 |Application|Memory |
-ROW |1670 |31364 |Application|Memory |
-ROW |1671 |31372 |Application|Zabbix raw items |
-ROW |1672 |31381 |Application|Zabbix raw items |
-ROW |1673 |31384 |Application|Zabbix raw items |
-ROW |1674 |29111 |Application|General |
-ROW |1675 |29112 |Application|General |
-ROW |1676 |29113 |Application|General |
-ROW |1677 |29114 |Application|General |
-ROW |1678 |29115 |Application|General |
-ROW |1679 |29116 |Application|General |
-ROW |1680 |29117 |Application|General |
-ROW |1681 |29118 |Application|General |
-ROW |1682 |29119 |Application|General |
-ROW |1683 |29121 |Application|Inventory |
-ROW |1684 |29122 |Application|Inventory |
-ROW |1685 |29123 |Application|Inventory |
-ROW |1686 |29120 |Application|Security |
-ROW |1687 |29110 |Application|Status |
-ROW |1688 |29399 |Application|CPU |
-ROW |1689 |29405 |Application|CPU |
-ROW |1690 |29406 |Application|CPU |
-ROW |1691 |29407 |Application|CPU |
-ROW |1692 |29408 |Application|CPU |
-ROW |1693 |29409 |Application|CPU |
-ROW |1694 |29410 |Application|CPU |
-ROW |1695 |29411 |Application|CPU |
-ROW |1696 |29412 |Application|CPU |
-ROW |1697 |29413 |Application|CPU |
-ROW |1698 |29416 |Application|CPU |
-ROW |1699 |29417 |Application|CPU |
-ROW |1700 |29418 |Application|CPU |
-ROW |1701 |29419 |Application|CPU |
-ROW |1702 |29420 |Application|CPU |
-ROW |1703 |29426 |Application|CPU |
-ROW |1704 |29427 |Application|CPU |
-ROW |1705 |29398 |Application|General |
-ROW |1706 |29404 |Application|General |
-ROW |1707 |29414 |Application|General |
-ROW |1708 |29423 |Application|General |
-ROW |1709 |29424 |Application|General |
-ROW |1710 |29425 |Application|General |
-ROW |1711 |29422 |Application|Inventory |
-ROW |1712 |29428 |Application|Inventory |
-ROW |1713 |29396 |Application|Memory |
-ROW |1714 |29397 |Application|Memory |
-ROW |1715 |29400 |Application|Memory |
-ROW |1716 |29401 |Application|Memory |
-ROW |1717 |29402 |Application|Memory |
-ROW |1718 |29403 |Application|Memory |
-ROW |1719 |29415 |Application|Monitoring agent |
-ROW |1720 |29421 |Application|Status |
-ROW |1721 |29395 |Application|Zabbix raw items |
-ROW |1722 |29450 |Application|Zabbix raw items |
-ROW |1723 |29451 |Application|Zabbix raw items |
-ROW |1724 |29454 |Application|CPU |
-ROW |1725 |29455 |Application|CPU |
-ROW |1726 |29456 |Application|CPU |
-ROW |1727 |29457 |Application|CPU |
-ROW |1728 |29458 |Application|CPU |
-ROW |1729 |29459 |Application|CPU |
-ROW |1730 |30137 |Application|CPU |
-ROW |1731 |31419 |Application|CPU |
-ROW |1732 |29460 |Application|Memory |
-ROW |1733 |29461 |Application|Memory |
-ROW |1734 |29462 |Application|Memory |
-ROW |1735 |29463 |Application|Memory |
-ROW |1736 |29466 |Application|Memory |
-ROW |1737 |29467 |Application|Memory |
-ROW |1738 |29468 |Application|Memory |
-ROW |1739 |29469 |Application|Memory |
-ROW |1740 |29470 |Application|Memory |
-ROW |1741 |31420 |Application|Memory |
-ROW |1742 |31421 |Application|Memory |
-ROW |1743 |31427 |Application|Memory |
-ROW |1744 |29473 |Application|General |
-ROW |1745 |29474 |Application|General |
-ROW |1746 |29475 |Application|General |
-ROW |1747 |29476 |Application|General |
-ROW |1748 |29477 |Application|General |
-ROW |1749 |29478 |Application|Inventory |
-ROW |1750 |29472 |Application|Status |
-ROW |1751 |31422 |Application|Zabbix raw items |
-ROW |1752 |29545 |Application|Monitoring agent |
-ROW |1753 |29546 |Application|Monitoring agent |
-ROW |1754 |29547 |Application|Status |
-ROW |1755 |30000 |Application|RabbitMQ |
-ROW |1756 |30001 |Application|RabbitMQ |
-ROW |1757 |30002 |Application|RabbitMQ |
-ROW |1758 |30003 |Application|RabbitMQ |
-ROW |1759 |30004 |Application|RabbitMQ |
-ROW |1760 |30005 |Application|RabbitMQ |
-ROW |1761 |30006 |Application|RabbitMQ |
-ROW |1762 |30007 |Application|RabbitMQ |
-ROW |1763 |30008 |Application|RabbitMQ |
-ROW |1764 |30009 |Application|RabbitMQ |
-ROW |1765 |30010 |Application|RabbitMQ |
-ROW |1766 |30011 |Application|RabbitMQ |
-ROW |1767 |30012 |Application|RabbitMQ |
-ROW |1768 |30013 |Application|RabbitMQ |
-ROW |1769 |30014 |Application|RabbitMQ |
-ROW |1770 |30015 |Application|RabbitMQ |
-ROW |1771 |30016 |Application|RabbitMQ |
-ROW |1772 |30017 |Application|RabbitMQ |
-ROW |1773 |30018 |Application|RabbitMQ |
-ROW |1774 |30019 |Application|RabbitMQ |
-ROW |1775 |30020 |Application|RabbitMQ |
-ROW |1776 |30021 |Application|RabbitMQ |
-ROW |1777 |30022 |Application|RabbitMQ |
-ROW |1778 |30023 |Application|RabbitMQ |
-ROW |1779 |33747 |Application|RabbitMQ |
-ROW |1780 |29998 |Application|Zabbix raw items |
-ROW |1781 |29999 |Application|Zabbix raw items |
-ROW |1782 |29655 |Application|RabbitMQ |
-ROW |1783 |29656 |Application|RabbitMQ |
-ROW |1784 |29657 |Application|RabbitMQ |
-ROW |1785 |29658 |Application|RabbitMQ |
-ROW |1786 |29659 |Application|RabbitMQ |
-ROW |1787 |29660 |Application|RabbitMQ |
-ROW |1788 |29687 |Application|RabbitMQ |
-ROW |1789 |29688 |Application|RabbitMQ |
-ROW |1790 |29691 |Application|RabbitMQ |
-ROW |1791 |29692 |Application|RabbitMQ |
-ROW |1792 |29693 |Application|RabbitMQ |
-ROW |1793 |29694 |Application|RabbitMQ |
-ROW |1794 |29695 |Application|RabbitMQ |
-ROW |1795 |29696 |Application|RabbitMQ |
-ROW |1796 |29697 |Application|RabbitMQ |
-ROW |1797 |29698 |Application|RabbitMQ |
-ROW |1798 |29699 |Application|RabbitMQ |
-ROW |1799 |29700 |Application|RabbitMQ |
-ROW |1800 |29701 |Application|RabbitMQ |
-ROW |1801 |30024 |Application|RabbitMQ |
-ROW |1802 |30025 |Application|RabbitMQ |
-ROW |1803 |33748 |Application|RabbitMQ |
-ROW |1804 |33749 |Application|RabbitMQ |
-ROW |1805 |33750 |Application|RabbitMQ |
-ROW |1806 |33751 |Application|RabbitMQ |
-ROW |1807 |33752 |Application|RabbitMQ |
-ROW |1808 |33753 |Application|RabbitMQ |
-ROW |1809 |29653 |Application|Zabbix raw items |
-ROW |1810 |29654 |Application|Zabbix raw items |
-ROW |1811 |29661 |Application|Zabbix raw items |
-ROW |1812 |29746 |Application|RabbitMQ |
-ROW |1813 |29747 |Application|RabbitMQ |
-ROW |1814 |29748 |Application|RabbitMQ |
-ROW |1815 |29749 |Application|RabbitMQ |
-ROW |1816 |29750 |Application|RabbitMQ |
-ROW |1817 |29751 |Application|RabbitMQ |
-ROW |1818 |29752 |Application|RabbitMQ |
-ROW |1819 |29753 |Application|RabbitMQ |
-ROW |1820 |29754 |Application|RabbitMQ |
-ROW |1821 |29755 |Application|RabbitMQ |
-ROW |1822 |29756 |Application|RabbitMQ |
-ROW |1823 |29757 |Application|RabbitMQ |
-ROW |1824 |29758 |Application|RabbitMQ |
-ROW |1825 |29759 |Application|RabbitMQ |
-ROW |1826 |29760 |Application|RabbitMQ |
-ROW |1827 |29761 |Application|RabbitMQ |
-ROW |1828 |29762 |Application|RabbitMQ |
-ROW |1829 |29763 |Application|RabbitMQ |
-ROW |1830 |29764 |Application|RabbitMQ |
-ROW |1831 |29765 |Application|RabbitMQ |
-ROW |1832 |29766 |Application|RabbitMQ |
-ROW |1833 |29767 |Application|RabbitMQ |
-ROW |1834 |29768 |Application|RabbitMQ |
-ROW |1835 |29769 |Application|RabbitMQ |
-ROW |1836 |33757 |Application|RabbitMQ |
-ROW |1837 |29738 |Application|Zabbix raw items |
-ROW |1838 |29739 |Application|Zabbix raw items |
-ROW |1839 |29742 |Application|RabbitMQ |
-ROW |1840 |29743 |Application|RabbitMQ |
-ROW |1841 |29771 |Application|RabbitMQ |
-ROW |1842 |29772 |Application|RabbitMQ |
-ROW |1843 |29773 |Application|RabbitMQ |
-ROW |1844 |29774 |Application|RabbitMQ |
-ROW |1845 |29775 |Application|RabbitMQ |
-ROW |1846 |29776 |Application|RabbitMQ |
-ROW |1847 |29777 |Application|RabbitMQ |
-ROW |1848 |29779 |Application|RabbitMQ |
-ROW |1849 |29780 |Application|RabbitMQ |
-ROW |1850 |29781 |Application|RabbitMQ |
-ROW |1851 |29782 |Application|RabbitMQ |
-ROW |1852 |29783 |Application|RabbitMQ |
-ROW |1853 |29784 |Application|RabbitMQ |
-ROW |1854 |30044 |Application|RabbitMQ |
-ROW |1855 |30045 |Application|RabbitMQ |
-ROW |1856 |33758 |Application|RabbitMQ |
-ROW |1857 |33759 |Application|RabbitMQ |
-ROW |1858 |33760 |Application|RabbitMQ |
-ROW |1859 |33761 |Application|RabbitMQ |
-ROW |1860 |33762 |Application|RabbitMQ |
-ROW |1861 |33763 |Application|RabbitMQ |
-ROW |1862 |29741 |Application|Zabbix raw items |
-ROW |1863 |29745 |Application|Zabbix raw items |
-ROW |1864 |30043 |Application|Zabbix raw items |
-ROW |1865 |30083 |Application|Disk arrays |
-ROW |1866 |30084 |Application|Disk arrays |
-ROW |1867 |30085 |Application|Disk arrays |
-ROW |1868 |30075 |Application|Fans |
-ROW |1869 |30049 |Application|General |
-ROW |1870 |30050 |Application|General |
-ROW |1871 |30051 |Application|General |
-ROW |1872 |30052 |Application|General |
-ROW |1873 |30053 |Application|General |
-ROW |1874 |30054 |Application|General |
-ROW |1875 |30073 |Application|Inventory |
-ROW |1876 |30074 |Application|Inventory |
-ROW |1877 |30076 |Application|Physical disks |
-ROW |1878 |30077 |Application|Physical disks |
-ROW |1879 |30078 |Application|Physical disks |
-ROW |1880 |30079 |Application|Physical disks |
-ROW |1881 |30071 |Application|Power supply |
-ROW |1882 |30046 |Application|Status |
-ROW |1883 |30047 |Application|Status |
-ROW |1884 |30048 |Application|Status |
-ROW |1885 |30055 |Application|Status |
-ROW |1886 |30056 |Application|Status |
-ROW |1887 |30072 |Application|Status |
-ROW |1888 |30066 |Application|Temperature |
-ROW |1889 |30067 |Application|Temperature |
-ROW |1890 |30068 |Application|Temperature |
-ROW |1891 |30069 |Application|Temperature |
-ROW |1892 |30070 |Application|Temperature |
-ROW |1893 |30080 |Application|Virtual disks |
-ROW |1894 |30081 |Application|Virtual disks |
-ROW |1895 |30082 |Application|Virtual disks |
-ROW |1896 |30142 |Application|CPU |
-ROW |1897 |30157 |Application|Memory |
-ROW |1898 |30158 |Application|Memory |
-ROW |1899 |30159 |Application|Memory |
-ROW |1900 |30187 |Application|HAProxy |
-ROW |1901 |30188 |Application|HAProxy |
-ROW |1902 |30191 |Application|HAProxy |
-ROW |1903 |30192 |Application|HAProxy |
-ROW |1904 |30189 |Application|Zabbix raw items |
-ROW |1905 |30190 |Application|Zabbix raw items |
-ROW |1906 |30234 |Application|HAProxy |
-ROW |1907 |30235 |Application|HAProxy |
-ROW |1908 |30789 |Application|HAProxy |
-ROW |1909 |30790 |Application|HAProxy |
-ROW |1910 |30230 |Application|Zabbix raw items |
-ROW |1911 |30231 |Application|Zabbix raw items |
-ROW |1912 |30273 |Application|Redis |
-ROW |1913 |30274 |Application|Redis |
-ROW |1914 |30277 |Application|Redis |
-ROW |1915 |30278 |Application|Redis |
-ROW |1916 |30279 |Application|Redis |
-ROW |1917 |30280 |Application|Redis |
-ROW |1918 |30281 |Application|Redis |
-ROW |1919 |30282 |Application|Redis |
-ROW |1920 |30283 |Application|Redis |
-ROW |1921 |30284 |Application|Redis |
-ROW |1922 |30285 |Application|Redis |
-ROW |1923 |30286 |Application|Redis |
-ROW |1924 |30287 |Application|Redis |
-ROW |1925 |30288 |Application|Redis |
-ROW |1926 |30289 |Application|Redis |
-ROW |1927 |30290 |Application|Redis |
-ROW |1928 |30291 |Application|Redis |
-ROW |1929 |30292 |Application|Redis |
-ROW |1930 |30293 |Application|Redis |
-ROW |1931 |30294 |Application|Redis |
-ROW |1932 |30295 |Application|Redis |
-ROW |1933 |30296 |Application|Redis |
-ROW |1934 |30297 |Application|Redis |
-ROW |1935 |30298 |Application|Redis |
-ROW |1936 |30299 |Application|Redis |
-ROW |1937 |30300 |Application|Redis |
-ROW |1938 |30301 |Application|Redis |
-ROW |1939 |30302 |Application|Redis |
-ROW |1940 |30303 |Application|Redis |
-ROW |1941 |30304 |Application|Redis |
-ROW |1942 |30305 |Application|Redis |
-ROW |1943 |30306 |Application|Redis |
-ROW |1944 |30307 |Application|Redis |
-ROW |1945 |30308 |Application|Redis |
-ROW |1946 |30309 |Application|Redis |
-ROW |1947 |30310 |Application|Redis |
-ROW |1948 |30311 |Application|Redis |
-ROW |1949 |30312 |Application|Redis |
-ROW |1950 |30313 |Application|Redis |
-ROW |1951 |30314 |Application|Redis |
-ROW |1952 |30315 |Application|Redis |
-ROW |1953 |30316 |Application|Redis |
-ROW |1954 |30317 |Application|Redis |
-ROW |1955 |30318 |Application|Redis |
-ROW |1956 |30319 |Application|Redis |
-ROW |1957 |30320 |Application|Redis |
-ROW |1958 |30321 |Application|Redis |
-ROW |1959 |30322 |Application|Redis |
-ROW |1960 |30323 |Application|Redis |
-ROW |1961 |30324 |Application|Redis |
-ROW |1962 |30325 |Application|Redis |
-ROW |1963 |30326 |Application|Redis |
-ROW |1964 |30327 |Application|Redis |
-ROW |1965 |30328 |Application|Redis |
-ROW |1966 |30329 |Application|Redis |
-ROW |1967 |30330 |Application|Redis |
-ROW |1968 |30331 |Application|Redis |
-ROW |1969 |30332 |Application|Redis |
-ROW |1970 |30333 |Application|Redis |
-ROW |1971 |30334 |Application|Redis |
-ROW |1972 |30335 |Application|Redis |
-ROW |1973 |30336 |Application|Redis |
-ROW |1974 |30344 |Application|Redis |
-ROW |1975 |30345 |Application|Redis |
-ROW |1976 |30346 |Application|Redis |
-ROW |1977 |30347 |Application|Redis |
-ROW |1978 |30351 |Application|Redis |
-ROW |1979 |30352 |Application|Redis |
-ROW |1980 |30353 |Application|Redis |
-ROW |1981 |30354 |Application|Redis |
-ROW |1982 |30355 |Application|Redis |
-ROW |1983 |30356 |Application|Redis |
-ROW |1984 |30357 |Application|Redis |
-ROW |1985 |30358 |Application|Redis |
-ROW |1986 |30359 |Application|Redis |
-ROW |1987 |30360 |Application|Redis |
-ROW |1988 |30361 |Application|Redis |
-ROW |1989 |30362 |Application|Redis |
-ROW |1990 |30363 |Application|Redis |
-ROW |1991 |30364 |Application|Redis |
-ROW |1992 |30365 |Application|Redis |
-ROW |1993 |30366 |Application|Redis |
-ROW |1994 |30367 |Application|Redis |
-ROW |1995 |30368 |Application|Redis |
-ROW |1996 |30369 |Application|Redis |
-ROW |1997 |30370 |Application|Redis |
-ROW |1998 |30371 |Application|Redis |
-ROW |1999 |30372 |Application|Redis |
-ROW |2000 |30373 |Application|Redis |
-ROW |2001 |30374 |Application|Redis |
-ROW |2002 |30375 |Application|Redis |
-ROW |2003 |30376 |Application|Redis |
-ROW |2004 |30377 |Application|Redis |
-ROW |2005 |30378 |Application|Redis |
-ROW |2006 |30379 |Application|Redis |
-ROW |2007 |30380 |Application|Redis |
-ROW |2008 |30381 |Application|Redis |
-ROW |2009 |30382 |Application|Redis |
-ROW |2010 |30383 |Application|Redis |
-ROW |2011 |30384 |Application|Redis |
-ROW |2012 |30385 |Application|Redis |
-ROW |2013 |30386 |Application|Redis |
-ROW |2014 |30387 |Application|Redis |
-ROW |2015 |30388 |Application|Redis |
-ROW |2016 |30389 |Application|Redis |
-ROW |2017 |30390 |Application|Redis |
-ROW |2018 |30391 |Application|Redis |
-ROW |2019 |30392 |Application|Redis |
-ROW |2020 |30393 |Application|Redis |
-ROW |2021 |30394 |Application|Redis |
-ROW |2022 |30395 |Application|Redis |
-ROW |2023 |30397 |Application|Redis |
-ROW |2024 |30398 |Application|Redis |
-ROW |2025 |30399 |Application|Redis |
-ROW |2026 |30400 |Application|Redis |
-ROW |2027 |30401 |Application|Redis |
-ROW |2028 |30402 |Application|Redis |
-ROW |2029 |30403 |Application|Redis |
-ROW |2030 |30404 |Application|Redis |
-ROW |2031 |30275 |Application|Zabbix raw items |
-ROW |2032 |30276 |Application|Zabbix raw items |
-ROW |2033 |30425 |Application|Services |
-ROW |2034 |30431 |Application|MySQL |
-ROW |2035 |30432 |Application|MySQL |
-ROW |2036 |30434 |Application|MySQL |
-ROW |2037 |30435 |Application|MySQL |
-ROW |2038 |30437 |Application|MySQL |
-ROW |2039 |30438 |Application|MySQL |
-ROW |2040 |30439 |Application|MySQL |
-ROW |2041 |30440 |Application|MySQL |
-ROW |2042 |30441 |Application|MySQL |
-ROW |2043 |30442 |Application|MySQL |
-ROW |2044 |30444 |Application|MySQL |
-ROW |2045 |30445 |Application|MySQL |
-ROW |2046 |30446 |Application|MySQL |
-ROW |2047 |30447 |Application|MySQL |
-ROW |2048 |30449 |Application|MySQL |
-ROW |2049 |30450 |Application|MySQL |
-ROW |2050 |30451 |Application|MySQL |
-ROW |2051 |30452 |Application|MySQL |
-ROW |2052 |30453 |Application|MySQL |
-ROW |2053 |30454 |Application|MySQL |
-ROW |2054 |30455 |Application|MySQL |
-ROW |2055 |30456 |Application|MySQL |
-ROW |2056 |30457 |Application|MySQL |
-ROW |2057 |30458 |Application|MySQL |
-ROW |2058 |30459 |Application|MySQL |
-ROW |2059 |30460 |Application|MySQL |
-ROW |2060 |30461 |Application|MySQL |
-ROW |2061 |30462 |Application|MySQL |
-ROW |2062 |30463 |Application|MySQL |
-ROW |2063 |30464 |Application|MySQL |
-ROW |2064 |30465 |Application|MySQL |
-ROW |2065 |30466 |Application|MySQL |
-ROW |2066 |30470 |Application|MySQL |
-ROW |2067 |30471 |Application|MySQL |
-ROW |2068 |30474 |Application|MySQL |
-ROW |2069 |30476 |Application|MySQL |
-ROW |2070 |30477 |Application|MySQL |
-ROW |2071 |30478 |Application|MySQL |
-ROW |2072 |31168 |Application|MySQL |
-ROW |2073 |31169 |Application|MySQL |
-ROW |2074 |31170 |Application|MySQL |
-ROW |2075 |31171 |Application|MySQL |
-ROW |2076 |33126 |Application|MySQL |
-ROW |2077 |33127 |Application|MySQL |
-ROW |2078 |33128 |Application|MySQL |
-ROW |2079 |33129 |Application|MySQL |
-ROW |2080 |33130 |Application|MySQL |
-ROW |2081 |33131 |Application|MySQL |
-ROW |2082 |33132 |Application|MySQL |
-ROW |2083 |33134 |Application|MySQL |
-ROW |2084 |33135 |Application|MySQL |
-ROW |2085 |33136 |Application|MySQL |
-ROW |2086 |33137 |Application|MySQL |
-ROW |2087 |33138 |Application|MySQL |
-ROW |2088 |33139 |Application|MySQL |
-ROW |2089 |30433 |Application|Zabbix raw items |
-ROW |2090 |30436 |Application|Zabbix raw items |
-ROW |2091 |30443 |Application|Zabbix raw items |
-ROW |2092 |30475 |Application|Zabbix raw items |
-ROW |2093 |30480 |Application|MySQL |
-ROW |2094 |30481 |Application|MySQL |
-ROW |2095 |30482 |Application|MySQL |
-ROW |2096 |30483 |Application|MySQL |
-ROW |2097 |30484 |Application|MySQL |
-ROW |2098 |30486 |Application|MySQL |
-ROW |2099 |30488 |Application|MySQL |
-ROW |2100 |30489 |Application|MySQL |
-ROW |2101 |30490 |Application|MySQL |
-ROW |2102 |30491 |Application|MySQL |
-ROW |2103 |30492 |Application|MySQL |
-ROW |2104 |30493 |Application|MySQL |
-ROW |2105 |30494 |Application|MySQL |
-ROW |2106 |30495 |Application|MySQL |
-ROW |2107 |30496 |Application|MySQL |
-ROW |2108 |30497 |Application|MySQL |
-ROW |2109 |30499 |Application|MySQL |
-ROW |2110 |30500 |Application|MySQL |
-ROW |2111 |30503 |Application|MySQL |
-ROW |2112 |30504 |Application|MySQL |
-ROW |2113 |30505 |Application|MySQL |
-ROW |2114 |30506 |Application|MySQL |
-ROW |2115 |30507 |Application|MySQL |
-ROW |2116 |30508 |Application|MySQL |
-ROW |2117 |30509 |Application|MySQL |
-ROW |2118 |30510 |Application|MySQL |
-ROW |2119 |30512 |Application|MySQL |
-ROW |2120 |30513 |Application|MySQL |
-ROW |2121 |30514 |Application|MySQL |
-ROW |2122 |30515 |Application|MySQL |
-ROW |2123 |30516 |Application|MySQL |
-ROW |2124 |30517 |Application|MySQL |
-ROW |2125 |30518 |Application|MySQL |
-ROW |2126 |30519 |Application|MySQL |
-ROW |2127 |30522 |Application|MySQL |
-ROW |2128 |30524 |Application|MySQL |
-ROW |2129 |30525 |Application|MySQL |
-ROW |2130 |30526 |Application|MySQL |
-ROW |2131 |31176 |Application|MySQL |
-ROW |2132 |31177 |Application|MySQL |
-ROW |2133 |31178 |Application|MySQL |
-ROW |2134 |31179 |Application|MySQL |
-ROW |2135 |33154 |Application|MySQL |
-ROW |2136 |33155 |Application|MySQL |
-ROW |2137 |33156 |Application|MySQL |
-ROW |2138 |33157 |Application|MySQL |
-ROW |2139 |33158 |Application|MySQL |
-ROW |2140 |33159 |Application|MySQL |
-ROW |2141 |33160 |Application|MySQL |
-ROW |2142 |33162 |Application|MySQL |
-ROW |2143 |33163 |Application|MySQL |
-ROW |2144 |33164 |Application|MySQL |
-ROW |2145 |33165 |Application|MySQL |
-ROW |2146 |33166 |Application|MySQL |
-ROW |2147 |33167 |Application|MySQL |
-ROW |2148 |30479 |Application|Zabbix raw items |
-ROW |2149 |30485 |Application|Zabbix raw items |
-ROW |2150 |30487 |Application|Zabbix raw items |
-ROW |2151 |30523 |Application|Zabbix raw items |
-ROW |2152 |30530 |Application|Docker |
-ROW |2153 |30532 |Application|Docker |
-ROW |2154 |30533 |Application|Docker |
-ROW |2155 |30534 |Application|Docker |
-ROW |2156 |30535 |Application|Docker |
-ROW |2157 |30536 |Application|Docker |
-ROW |2158 |30537 |Application|Docker |
-ROW |2159 |30538 |Application|Docker |
-ROW |2160 |30539 |Application|Docker |
-ROW |2161 |30540 |Application|Docker |
-ROW |2162 |30541 |Application|Docker |
-ROW |2163 |30542 |Application|Docker |
-ROW |2164 |30543 |Application|Docker |
-ROW |2165 |30544 |Application|Docker |
-ROW |2166 |30545 |Application|Docker |
-ROW |2167 |30546 |Application|Docker |
-ROW |2168 |30547 |Application|Docker |
-ROW |2169 |30548 |Application|Docker |
-ROW |2170 |30549 |Application|Docker |
-ROW |2171 |30550 |Application|Docker |
-ROW |2172 |30551 |Application|Docker |
-ROW |2173 |30552 |Application|Docker |
-ROW |2174 |30553 |Application|Docker |
-ROW |2175 |30554 |Application|Docker |
-ROW |2176 |30555 |Application|Docker |
-ROW |2177 |30556 |Application|Docker |
-ROW |2178 |30557 |Application|Docker |
-ROW |2179 |30558 |Application|Docker |
-ROW |2180 |30559 |Application|Docker |
-ROW |2181 |30560 |Application|Docker |
-ROW |2182 |30561 |Application|Docker |
-ROW |2183 |30562 |Application|Docker |
-ROW |2184 |30563 |Application|Docker |
-ROW |2185 |30564 |Application|Docker |
-ROW |2186 |30565 |Application|Docker |
-ROW |2187 |30566 |Application|Docker |
-ROW |2188 |30567 |Application|Docker |
-ROW |2189 |30568 |Application|Docker |
-ROW |2190 |30569 |Application|Docker |
-ROW |2191 |30570 |Application|Docker |
-ROW |2192 |30527 |Application|Zabbix raw items |
-ROW |2193 |30528 |Application|Zabbix raw items |
-ROW |2194 |30529 |Application|Zabbix raw items |
-ROW |2195 |30531 |Application|Zabbix raw items |
-ROW |2196 |30611 |Application|Memcached |
-ROW |2197 |30613 |Application|Memcached |
-ROW |2198 |30614 |Application|Memcached |
-ROW |2199 |30615 |Application|Memcached |
-ROW |2200 |30616 |Application|Memcached |
-ROW |2201 |30617 |Application|Memcached |
-ROW |2202 |30618 |Application|Memcached |
-ROW |2203 |30619 |Application|Memcached |
-ROW |2204 |30620 |Application|Memcached |
-ROW |2205 |30621 |Application|Memcached |
-ROW |2206 |30622 |Application|Memcached |
-ROW |2207 |30623 |Application|Memcached |
-ROW |2208 |30624 |Application|Memcached |
-ROW |2209 |30625 |Application|Memcached |
-ROW |2210 |30626 |Application|Memcached |
-ROW |2211 |30627 |Application|Memcached |
-ROW |2212 |30628 |Application|Memcached |
-ROW |2213 |30629 |Application|Memcached |
-ROW |2214 |30630 |Application|Memcached |
-ROW |2215 |30631 |Application|Memcached |
-ROW |2216 |30632 |Application|Memcached |
-ROW |2217 |30633 |Application|Memcached |
-ROW |2218 |30634 |Application|Memcached |
-ROW |2219 |30635 |Application|Memcached |
-ROW |2220 |30636 |Application|Memcached |
-ROW |2221 |30612 |Application|Zabbix raw items |
-ROW |2222 |30637 |Application|MySQL |
-ROW |2223 |30638 |Application|MySQL |
-ROW |2224 |30640 |Application|MySQL |
-ROW |2225 |30641 |Application|MySQL |
-ROW |2226 |30643 |Application|MySQL |
-ROW |2227 |30644 |Application|MySQL |
-ROW |2228 |30645 |Application|MySQL |
-ROW |2229 |30646 |Application|MySQL |
-ROW |2230 |30647 |Application|MySQL |
-ROW |2231 |30648 |Application|MySQL |
-ROW |2232 |30650 |Application|MySQL |
-ROW |2233 |30651 |Application|MySQL |
-ROW |2234 |30652 |Application|MySQL |
-ROW |2235 |30653 |Application|MySQL |
-ROW |2236 |30655 |Application|MySQL |
-ROW |2237 |30656 |Application|MySQL |
-ROW |2238 |30657 |Application|MySQL |
-ROW |2239 |30658 |Application|MySQL |
-ROW |2240 |30659 |Application|MySQL |
-ROW |2241 |30660 |Application|MySQL |
-ROW |2242 |30661 |Application|MySQL |
-ROW |2243 |30662 |Application|MySQL |
-ROW |2244 |30663 |Application|MySQL |
-ROW |2245 |30664 |Application|MySQL |
-ROW |2246 |30665 |Application|MySQL |
-ROW |2247 |30666 |Application|MySQL |
-ROW |2248 |30667 |Application|MySQL |
-ROW |2249 |30668 |Application|MySQL |
-ROW |2250 |30669 |Application|MySQL |
-ROW |2251 |30670 |Application|MySQL |
-ROW |2252 |30671 |Application|MySQL |
-ROW |2253 |30672 |Application|MySQL |
-ROW |2254 |30676 |Application|MySQL |
-ROW |2255 |30677 |Application|MySQL |
-ROW |2256 |30680 |Application|MySQL |
-ROW |2257 |30682 |Application|MySQL |
-ROW |2258 |30683 |Application|MySQL |
-ROW |2259 |30684 |Application|MySQL |
-ROW |2260 |31172 |Application|MySQL |
-ROW |2261 |31173 |Application|MySQL |
-ROW |2262 |31174 |Application|MySQL |
-ROW |2263 |31175 |Application|MySQL |
-ROW |2264 |33140 |Application|MySQL |
-ROW |2265 |33141 |Application|MySQL |
-ROW |2266 |33142 |Application|MySQL |
-ROW |2267 |33143 |Application|MySQL |
-ROW |2268 |33144 |Application|MySQL |
-ROW |2269 |33145 |Application|MySQL |
-ROW |2270 |33146 |Application|MySQL |
-ROW |2271 |33148 |Application|MySQL |
-ROW |2272 |33149 |Application|MySQL |
-ROW |2273 |33150 |Application|MySQL |
-ROW |2274 |33151 |Application|MySQL |
-ROW |2275 |33152 |Application|MySQL |
-ROW |2276 |33153 |Application|MySQL |
-ROW |2277 |30639 |Application|Zabbix raw items |
-ROW |2278 |30642 |Application|Zabbix raw items |
-ROW |2279 |30649 |Application|Zabbix raw items |
-ROW |2280 |30681 |Application|Zabbix raw items |
-ROW |2281 |30685 |Application|Zabbix raw items |
-ROW |2282 |30690 |Application|ES cluster |
-ROW |2283 |30692 |Application|ES cluster |
-ROW |2284 |30695 |Application|ES cluster |
-ROW |2285 |30696 |Application|ES cluster |
-ROW |2286 |30697 |Application|ES cluster |
-ROW |2287 |30698 |Application|ES cluster |
-ROW |2288 |30699 |Application|ES cluster |
-ROW |2289 |30700 |Application|ES cluster |
-ROW |2290 |30701 |Application|ES cluster |
-ROW |2291 |30702 |Application|ES cluster |
-ROW |2292 |30703 |Application|ES cluster |
-ROW |2293 |30704 |Application|ES cluster |
-ROW |2294 |30705 |Application|ES cluster |
-ROW |2295 |30706 |Application|ES cluster |
-ROW |2296 |30707 |Application|ES cluster |
-ROW |2297 |30708 |Application|ES cluster |
-ROW |2298 |30709 |Application|ES cluster |
-ROW |2299 |30710 |Application|ES cluster |
-ROW |2300 |30711 |Application|ES cluster |
-ROW |2301 |30712 |Application|ES cluster |
-ROW |2302 |30691 |Application|Zabbix raw items |
-ROW |2303 |30693 |Application|Zabbix raw items |
-ROW |2304 |30694 |Application|Zabbix raw items |
-ROW |2305 |30719 |Application|Zabbix raw items |
-ROW |2306 |30739 |Application|Zabbix raw items |
-ROW |2307 |30743 |Application|Zabbix raw items |
-ROW |2308 |30744 |Application|Zabbix raw items |
-ROW |2309 |30746 |Application|Zabbix raw items |
-ROW |2310 |30747 |Application|Zabbix raw items |
-ROW |2311 |30754 |Application|Zabbix raw items |
-ROW |2312 |30756 |Application|Zabbix raw items |
-ROW |2313 |30821 |Application|ClickHouse |
-ROW |2314 |30822 |Application|ClickHouse |
-ROW |2315 |30827 |Application|ClickHouse |
-ROW |2316 |30831 |Application|ClickHouse |
-ROW |2317 |30832 |Application|ClickHouse |
-ROW |2318 |30833 |Application|ClickHouse |
-ROW |2319 |30834 |Application|ClickHouse |
-ROW |2320 |30835 |Application|ClickHouse |
-ROW |2321 |30837 |Application|ClickHouse |
-ROW |2322 |30838 |Application|ClickHouse |
-ROW |2323 |30839 |Application|ClickHouse |
-ROW |2324 |30841 |Application|ClickHouse |
-ROW |2325 |30846 |Application|ClickHouse |
-ROW |2326 |30847 |Application|ClickHouse |
-ROW |2327 |30848 |Application|ClickHouse |
-ROW |2328 |30849 |Application|ClickHouse |
-ROW |2329 |30850 |Application|ClickHouse |
-ROW |2330 |30851 |Application|ClickHouse |
-ROW |2331 |30852 |Application|ClickHouse |
-ROW |2332 |30853 |Application|ClickHouse |
-ROW |2333 |30854 |Application|ClickHouse |
-ROW |2334 |30855 |Application|ClickHouse |
-ROW |2335 |30856 |Application|ClickHouse |
-ROW |2336 |30857 |Application|ClickHouse |
-ROW |2337 |30858 |Application|ClickHouse |
-ROW |2338 |30859 |Application|ClickHouse |
-ROW |2339 |30860 |Application|ClickHouse |
-ROW |2340 |30861 |Application|ClickHouse |
-ROW |2341 |30862 |Application|ClickHouse |
-ROW |2342 |30863 |Application|ClickHouse |
-ROW |2343 |30864 |Application|ClickHouse |
-ROW |2344 |30865 |Application|ClickHouse |
-ROW |2345 |30866 |Application|ClickHouse |
-ROW |2346 |30867 |Application|ClickHouse |
-ROW |2347 |30868 |Application|ClickHouse |
-ROW |2348 |30869 |Application|ClickHouse |
-ROW |2349 |30870 |Application|ClickHouse |
-ROW |2350 |30871 |Application|ClickHouse |
-ROW |2351 |30872 |Application|ClickHouse |
-ROW |2352 |31054 |Application|ClickHouse |
-ROW |2353 |30836 |Application|ClickHouse ZooKeeper |
-ROW |2354 |30840 |Application|ClickHouse ZooKeeper |
-ROW |2355 |30842 |Application|ClickHouse ZooKeeper |
-ROW |2356 |30843 |Application|ClickHouse ZooKeeper |
-ROW |2357 |30844 |Application|ClickHouse ZooKeeper |
-ROW |2358 |30845 |Application|ClickHouse ZooKeeper |
-ROW |2359 |30873 |Application|ClickHouse ZooKeeper |
-ROW |2360 |30823 |Application|Zabbix raw items |
-ROW |2361 |30824 |Application|Zabbix raw items |
-ROW |2362 |30825 |Application|Zabbix raw items |
-ROW |2363 |30826 |Application|Zabbix raw items |
-ROW |2364 |30828 |Application|Zabbix raw items |
-ROW |2365 |30829 |Application|Zabbix raw items |
-ROW |2366 |30830 |Application|Zabbix raw items |
-ROW |2367 |30923 |Application|Etcd |
-ROW |2368 |30924 |Application|Etcd |
-ROW |2369 |30927 |Application|Etcd |
-ROW |2370 |30928 |Application|Etcd |
-ROW |2371 |30929 |Application|Etcd |
-ROW |2372 |30930 |Application|Etcd |
-ROW |2373 |30931 |Application|Etcd |
-ROW |2374 |30932 |Application|Etcd |
-ROW |2375 |30933 |Application|Etcd |
-ROW |2376 |30934 |Application|Etcd |
-ROW |2377 |30935 |Application|Etcd |
-ROW |2378 |30936 |Application|Etcd |
-ROW |2379 |30937 |Application|Etcd |
-ROW |2380 |30938 |Application|Etcd |
-ROW |2381 |30939 |Application|Etcd |
-ROW |2382 |30940 |Application|Etcd |
-ROW |2383 |30941 |Application|Etcd |
-ROW |2384 |30942 |Application|Etcd |
-ROW |2385 |30943 |Application|Etcd |
-ROW |2386 |30944 |Application|Etcd |
-ROW |2387 |30945 |Application|Etcd |
-ROW |2388 |30946 |Application|Etcd |
-ROW |2389 |30947 |Application|Etcd |
-ROW |2390 |30948 |Application|Etcd |
-ROW |2391 |30949 |Application|Etcd |
-ROW |2392 |30950 |Application|Etcd |
-ROW |2393 |30951 |Application|Etcd |
-ROW |2394 |30952 |Application|Etcd |
-ROW |2395 |30953 |Application|Etcd |
-ROW |2396 |30954 |Application|Etcd |
-ROW |2397 |30955 |Application|Etcd |
-ROW |2398 |30956 |Application|Etcd |
-ROW |2399 |30957 |Application|Etcd |
-ROW |2400 |30958 |Application|Etcd |
-ROW |2401 |30959 |Application|Etcd |
-ROW |2402 |30960 |Application|Etcd |
-ROW |2403 |30963 |Application|Etcd |
-ROW |2404 |30925 |Application|Zabbix raw items |
-ROW |2405 |30926 |Application|Zabbix raw items |
-ROW |2406 |30968 |Application|IIS |
-ROW |2407 |30969 |Application|IIS |
-ROW |2408 |30970 |Application|IIS |
-ROW |2409 |30971 |Application|IIS |
-ROW |2410 |30972 |Application|IIS |
-ROW |2411 |30973 |Application|IIS |
-ROW |2412 |30974 |Application|IIS |
-ROW |2413 |30975 |Application|IIS |
-ROW |2414 |30976 |Application|IIS |
-ROW |2415 |30977 |Application|IIS |
-ROW |2416 |30978 |Application|IIS |
-ROW |2417 |30979 |Application|IIS |
-ROW |2418 |30980 |Application|IIS |
-ROW |2419 |30981 |Application|IIS |
-ROW |2420 |30982 |Application|IIS |
-ROW |2421 |30983 |Application|IIS |
-ROW |2422 |30984 |Application|IIS |
-ROW |2423 |30985 |Application|IIS |
-ROW |2424 |30986 |Application|IIS |
-ROW |2425 |30987 |Application|IIS |
-ROW |2426 |30988 |Application|IIS |
-ROW |2427 |30989 |Application|IIS |
-ROW |2428 |30990 |Application|IIS |
-ROW |2429 |30991 |Application|IIS |
-ROW |2430 |30992 |Application|IIS |
-ROW |2431 |30993 |Application|IIS |
-ROW |2432 |30994 |Application|IIS |
-ROW |2433 |30995 |Application|IIS |
-ROW |2434 |30996 |Application|IIS |
-ROW |2435 |30997 |Application|IIS |
-ROW |2436 |30998 |Application|IIS |
-ROW |2437 |30999 |Application|IIS |
-ROW |2438 |31000 |Application|IIS |
-ROW |2439 |31001 |Application|IIS |
-ROW |2440 |31002 |Application|IIS |
-ROW |2441 |31003 |Application|IIS |
-ROW |2442 |31004 |Application|IIS |
-ROW |2443 |31010 |Application|IIS |
-ROW |2444 |31011 |Application|IIS |
-ROW |2445 |31012 |Application|IIS |
-ROW |2446 |31013 |Application|IIS |
-ROW |2447 |31014 |Application|IIS |
-ROW |2448 |31015 |Application|IIS |
-ROW |2449 |31016 |Application|IIS |
-ROW |2450 |31017 |Application|IIS |
-ROW |2451 |31018 |Application|IIS |
-ROW |2452 |31019 |Application|IIS |
-ROW |2453 |31020 |Application|IIS |
-ROW |2454 |31021 |Application|IIS |
-ROW |2455 |31022 |Application|IIS |
-ROW |2456 |31023 |Application|IIS |
-ROW |2457 |31024 |Application|IIS |
-ROW |2458 |31025 |Application|IIS |
-ROW |2459 |31026 |Application|IIS |
-ROW |2460 |31027 |Application|IIS |
-ROW |2461 |31028 |Application|IIS |
-ROW |2462 |31029 |Application|IIS |
-ROW |2463 |31030 |Application|IIS |
-ROW |2464 |31031 |Application|IIS |
-ROW |2465 |31032 |Application|IIS |
-ROW |2466 |31033 |Application|IIS |
-ROW |2467 |31034 |Application|IIS |
-ROW |2468 |31035 |Application|IIS |
-ROW |2469 |31036 |Application|IIS |
-ROW |2470 |31037 |Application|IIS |
-ROW |2471 |31038 |Application|IIS |
-ROW |2472 |31039 |Application|IIS |
-ROW |2473 |31040 |Application|IIS |
-ROW |2474 |31041 |Application|IIS |
-ROW |2475 |31042 |Application|IIS |
-ROW |2476 |31043 |Application|IIS |
-ROW |2477 |31044 |Application|IIS |
-ROW |2478 |31045 |Application|IIS |
-ROW |2479 |31046 |Application|IIS |
-ROW |2480 |31056 |Application|MSSQL |
-ROW |2481 |31057 |Application|MSSQL |
-ROW |2482 |31058 |Application|MSSQL |
-ROW |2483 |31060 |Application|MSSQL |
-ROW |2484 |31061 |Application|MSSQL |
-ROW |2485 |31062 |Application|MSSQL |
-ROW |2486 |31063 |Application|MSSQL |
-ROW |2487 |31064 |Application|MSSQL |
-ROW |2488 |31065 |Application|MSSQL |
-ROW |2489 |31066 |Application|MSSQL |
-ROW |2490 |31067 |Application|MSSQL |
-ROW |2491 |31068 |Application|MSSQL |
-ROW |2492 |31069 |Application|MSSQL |
-ROW |2493 |31070 |Application|MSSQL |
-ROW |2494 |31071 |Application|MSSQL |
-ROW |2495 |31072 |Application|MSSQL |
-ROW |2496 |31073 |Application|MSSQL |
-ROW |2497 |31074 |Application|MSSQL |
-ROW |2498 |31075 |Application|MSSQL |
-ROW |2499 |31076 |Application|MSSQL |
-ROW |2500 |31077 |Application|MSSQL |
-ROW |2501 |31078 |Application|MSSQL |
-ROW |2502 |31079 |Application|MSSQL |
-ROW |2503 |31080 |Application|MSSQL |
-ROW |2504 |31081 |Application|MSSQL |
-ROW |2505 |31082 |Application|MSSQL |
-ROW |2506 |31083 |Application|MSSQL |
-ROW |2507 |31084 |Application|MSSQL |
-ROW |2508 |31085 |Application|MSSQL |
-ROW |2509 |31086 |Application|MSSQL |
-ROW |2510 |31087 |Application|MSSQL |
-ROW |2511 |31088 |Application|MSSQL |
-ROW |2512 |31089 |Application|MSSQL |
-ROW |2513 |31090 |Application|MSSQL |
-ROW |2514 |31092 |Application|MSSQL |
-ROW |2515 |31095 |Application|MSSQL |
-ROW |2516 |31096 |Application|MSSQL |
-ROW |2517 |31097 |Application|MSSQL |
-ROW |2518 |31098 |Application|MSSQL |
-ROW |2519 |31099 |Application|MSSQL |
-ROW |2520 |31100 |Application|MSSQL |
-ROW |2521 |31101 |Application|MSSQL |
-ROW |2522 |31102 |Application|MSSQL |
-ROW |2523 |31103 |Application|MSSQL |
-ROW |2524 |31104 |Application|MSSQL |
-ROW |2525 |31105 |Application|MSSQL |
-ROW |2526 |31106 |Application|MSSQL |
-ROW |2527 |31107 |Application|MSSQL |
-ROW |2528 |31108 |Application|MSSQL |
-ROW |2529 |31109 |Application|MSSQL |
-ROW |2530 |31110 |Application|MSSQL |
-ROW |2531 |31111 |Application|MSSQL |
-ROW |2532 |31112 |Application|MSSQL |
-ROW |2533 |31113 |Application|MSSQL |
-ROW |2534 |31114 |Application|MSSQL |
-ROW |2535 |31115 |Application|MSSQL |
-ROW |2536 |31116 |Application|MSSQL |
-ROW |2537 |31117 |Application|MSSQL |
-ROW |2538 |31118 |Application|MSSQL |
-ROW |2539 |31119 |Application|MSSQL |
-ROW |2540 |31120 |Application|MSSQL |
-ROW |2541 |31121 |Application|MSSQL |
-ROW |2542 |31554 |Application|MSSQL |
-ROW |2543 |31555 |Application|MSSQL |
-ROW |2544 |31556 |Application|MSSQL |
-ROW |2545 |31055 |Application|Zabbix raw items |
-ROW |2546 |31059 |Application|Zabbix raw items |
-ROW |2547 |31091 |Application|Zabbix raw items |
-ROW |2548 |31093 |Application|Zabbix raw items |
-ROW |2549 |31094 |Application|Zabbix raw items |
-ROW |2550 |31128 |Application|Zabbix raw items |
-ROW |2551 |31129 |Application|Zabbix raw items |
-ROW |2552 |31130 |Application|Zabbix raw items |
-ROW |2553 |31132 |Application|Zabbix raw items |
-ROW |2554 |33941 |Application|Zabbix raw items |
-ROW |2555 |31183 |Application|Oracle |
-ROW |2556 |31184 |Application|Oracle |
-ROW |2557 |31189 |Application|Oracle |
-ROW |2558 |31190 |Application|Oracle |
-ROW |2559 |31191 |Application|Oracle |
-ROW |2560 |31192 |Application|Oracle |
-ROW |2561 |31193 |Application|Oracle |
-ROW |2562 |31194 |Application|Oracle |
-ROW |2563 |31195 |Application|Oracle |
-ROW |2564 |31196 |Application|Oracle |
-ROW |2565 |31197 |Application|Oracle |
-ROW |2566 |31198 |Application|Oracle |
-ROW |2567 |31199 |Application|Oracle |
-ROW |2568 |31200 |Application|Oracle |
-ROW |2569 |31201 |Application|Oracle |
-ROW |2570 |31202 |Application|Oracle |
-ROW |2571 |31203 |Application|Oracle |
-ROW |2572 |31204 |Application|Oracle |
-ROW |2573 |31205 |Application|Oracle |
-ROW |2574 |31206 |Application|Oracle |
-ROW |2575 |31207 |Application|Oracle |
-ROW |2576 |31208 |Application|Oracle |
-ROW |2577 |31209 |Application|Oracle |
-ROW |2578 |31210 |Application|Oracle |
-ROW |2579 |31211 |Application|Oracle |
-ROW |2580 |31212 |Application|Oracle |
-ROW |2581 |31213 |Application|Oracle |
-ROW |2582 |31214 |Application|Oracle |
-ROW |2583 |31215 |Application|Oracle |
-ROW |2584 |31216 |Application|Oracle |
-ROW |2585 |31217 |Application|Oracle |
-ROW |2586 |31218 |Application|Oracle |
-ROW |2587 |31219 |Application|Oracle |
-ROW |2588 |31220 |Application|Oracle |
-ROW |2589 |31221 |Application|Oracle |
-ROW |2590 |31222 |Application|Oracle |
-ROW |2591 |31223 |Application|Oracle |
-ROW |2592 |31224 |Application|Oracle |
-ROW |2593 |31225 |Application|Oracle |
-ROW |2594 |31226 |Application|Oracle |
-ROW |2595 |31227 |Application|Oracle |
-ROW |2596 |31228 |Application|Oracle |
-ROW |2597 |31229 |Application|Oracle |
-ROW |2598 |31230 |Application|Oracle |
-ROW |2599 |31231 |Application|Oracle |
-ROW |2600 |31232 |Application|Oracle |
-ROW |2601 |31233 |Application|Oracle |
-ROW |2602 |31234 |Application|Oracle |
-ROW |2603 |31235 |Application|Oracle |
-ROW |2604 |31236 |Application|Oracle |
-ROW |2605 |31237 |Application|Oracle |
-ROW |2606 |31238 |Application|Oracle |
-ROW |2607 |31239 |Application|Oracle |
-ROW |2608 |31240 |Application|Oracle |
-ROW |2609 |31241 |Application|Oracle |
-ROW |2610 |31242 |Application|Oracle |
-ROW |2611 |31243 |Application|Oracle |
-ROW |2612 |31244 |Application|Oracle |
-ROW |2613 |31245 |Application|Oracle |
-ROW |2614 |31246 |Application|Oracle |
-ROW |2615 |31247 |Application|Oracle |
-ROW |2616 |31248 |Application|Oracle |
-ROW |2617 |31249 |Application|Oracle |
-ROW |2618 |31250 |Application|Oracle |
-ROW |2619 |31251 |Application|Oracle |
-ROW |2620 |31252 |Application|Oracle |
-ROW |2621 |31180 |Application|Zabbix raw items |
-ROW |2622 |31181 |Application|Zabbix raw items |
-ROW |2623 |31182 |Application|Zabbix raw items |
-ROW |2624 |31185 |Application|Zabbix raw items |
-ROW |2625 |31186 |Application|Zabbix raw items |
-ROW |2626 |31187 |Application|Zabbix raw items |
-ROW |2627 |31188 |Application|Zabbix raw items |
-ROW |2628 |31275 |Application|PostgreSQL |
-ROW |2629 |31282 |Application|PostgreSQL |
-ROW |2630 |31283 |Application|PostgreSQL |
-ROW |2631 |31284 |Application|PostgreSQL |
-ROW |2632 |31285 |Application|PostgreSQL |
-ROW |2633 |31286 |Application|PostgreSQL |
-ROW |2634 |31287 |Application|PostgreSQL |
-ROW |2635 |31288 |Application|PostgreSQL |
-ROW |2636 |31291 |Application|PostgreSQL |
-ROW |2637 |31293 |Application|PostgreSQL |
-ROW |2638 |31294 |Application|PostgreSQL |
-ROW |2639 |31295 |Application|PostgreSQL |
-ROW |2640 |31296 |Application|PostgreSQL |
-ROW |2641 |31297 |Application|PostgreSQL |
-ROW |2642 |31298 |Application|PostgreSQL |
-ROW |2643 |31299 |Application|PostgreSQL |
-ROW |2644 |31300 |Application|PostgreSQL |
-ROW |2645 |31301 |Application|PostgreSQL |
-ROW |2646 |31302 |Application|PostgreSQL |
-ROW |2647 |31303 |Application|PostgreSQL |
-ROW |2648 |31304 |Application|PostgreSQL |
-ROW |2649 |31305 |Application|PostgreSQL |
-ROW |2650 |31306 |Application|PostgreSQL |
-ROW |2651 |31307 |Application|PostgreSQL |
-ROW |2652 |31309 |Application|PostgreSQL |
-ROW |2653 |31310 |Application|PostgreSQL |
-ROW |2654 |31311 |Application|PostgreSQL |
-ROW |2655 |31312 |Application|PostgreSQL |
-ROW |2656 |31313 |Application|PostgreSQL |
-ROW |2657 |31314 |Application|PostgreSQL |
-ROW |2658 |31315 |Application|PostgreSQL |
-ROW |2659 |31316 |Application|PostgreSQL |
-ROW |2660 |31317 |Application|PostgreSQL |
-ROW |2661 |31318 |Application|PostgreSQL |
-ROW |2662 |31319 |Application|PostgreSQL |
-ROW |2663 |31320 |Application|PostgreSQL |
-ROW |2664 |31321 |Application|PostgreSQL |
-ROW |2665 |31322 |Application|PostgreSQL |
-ROW |2666 |31323 |Application|PostgreSQL |
-ROW |2667 |31324 |Application|PostgreSQL |
-ROW |2668 |31325 |Application|PostgreSQL |
-ROW |2669 |31326 |Application|PostgreSQL |
-ROW |2670 |31327 |Application|PostgreSQL |
-ROW |2671 |31328 |Application|PostgreSQL |
-ROW |2672 |31329 |Application|PostgreSQL |
-ROW |2673 |31330 |Application|PostgreSQL |
-ROW |2674 |31331 |Application|PostgreSQL |
-ROW |2675 |31332 |Application|PostgreSQL |
-ROW |2676 |31333 |Application|PostgreSQL |
-ROW |2677 |33172 |Application|PostgreSQL |
-ROW |2678 |33173 |Application|PostgreSQL |
-ROW |2679 |33174 |Application|PostgreSQL |
-ROW |2680 |33176 |Application|PostgreSQL |
-ROW |2681 |31274 |Application|Zabbix raw items |
-ROW |2682 |31276 |Application|Zabbix raw items |
-ROW |2683 |31277 |Application|Zabbix raw items |
-ROW |2684 |31279 |Application|Zabbix raw items |
-ROW |2685 |31280 |Application|Zabbix raw items |
-ROW |2686 |31289 |Application|Zabbix raw items |
-ROW |2687 |31290 |Application|Zabbix raw items |
-ROW |2688 |33175 |Application|Zabbix raw items |
-ROW |2689 |31572 |Application|PHP-FPM |
-ROW |2690 |31573 |Application|PHP-FPM |
-ROW |2691 |31574 |Application|PHP-FPM |
-ROW |2692 |31575 |Application|PHP-FPM |
-ROW |2693 |31576 |Application|PHP-FPM |
-ROW |2694 |31577 |Application|PHP-FPM |
-ROW |2695 |31578 |Application|PHP-FPM |
-ROW |2696 |31579 |Application|PHP-FPM |
-ROW |2697 |31580 |Application|PHP-FPM |
-ROW |2698 |31581 |Application|PHP-FPM |
-ROW |2699 |31582 |Application|PHP-FPM |
-ROW |2700 |31583 |Application|PHP-FPM |
-ROW |2701 |31584 |Application|PHP-FPM |
-ROW |2702 |31585 |Application|PHP-FPM |
-ROW |2703 |31586 |Application|PHP-FPM |
-ROW |2704 |31587 |Application|PHP-FPM |
-ROW |2705 |31588 |Application|PHP-FPM |
-ROW |2706 |31589 |Application|PHP-FPM |
-ROW |2707 |31590 |Application|PHP-FPM |
-ROW |2708 |31591 |Application|PHP-FPM |
-ROW |2709 |31592 |Application|PHP-FPM |
-ROW |2710 |31570 |Application|Zabbix raw items |
-ROW |2711 |31571 |Application|Zabbix raw items |
-ROW |2712 |31593 |Application|PHP-FPM |
-ROW |2713 |31596 |Application|PHP-FPM |
-ROW |2714 |31597 |Application|PHP-FPM |
-ROW |2715 |31598 |Application|PHP-FPM |
-ROW |2716 |31599 |Application|PHP-FPM |
-ROW |2717 |31600 |Application|PHP-FPM |
-ROW |2718 |31601 |Application|PHP-FPM |
-ROW |2719 |31602 |Application|PHP-FPM |
-ROW |2720 |31603 |Application|PHP-FPM |
-ROW |2721 |31604 |Application|PHP-FPM |
-ROW |2722 |31605 |Application|PHP-FPM |
-ROW |2723 |31606 |Application|PHP-FPM |
-ROW |2724 |31607 |Application|PHP-FPM |
-ROW |2725 |31608 |Application|PHP-FPM |
-ROW |2726 |31609 |Application|PHP-FPM |
-ROW |2727 |31610 |Application|PHP-FPM |
-ROW |2728 |31611 |Application|PHP-FPM |
-ROW |2729 |31594 |Application|Zabbix raw items |
-ROW |2730 |31595 |Application|Zabbix raw items |
-ROW |2731 |31684 |Application|Oracle |
-ROW |2732 |31685 |Application|Oracle |
-ROW |2733 |31687 |Application|Oracle |
-ROW |2734 |31695 |Application|Oracle |
-ROW |2735 |31696 |Application|Oracle |
-ROW |2736 |31701 |Application|Oracle |
-ROW |2737 |31702 |Application|Oracle |
-ROW |2738 |31703 |Application|Oracle |
-ROW |2739 |31704 |Application|Oracle |
-ROW |2740 |31705 |Application|Oracle |
-ROW |2741 |31706 |Application|Oracle |
-ROW |2742 |31707 |Application|Oracle |
-ROW |2743 |31708 |Application|Oracle |
-ROW |2744 |31709 |Application|Oracle |
-ROW |2745 |31710 |Application|Oracle |
-ROW |2746 |31711 |Application|Oracle |
-ROW |2747 |31712 |Application|Oracle |
-ROW |2748 |31713 |Application|Oracle |
-ROW |2749 |31714 |Application|Oracle |
-ROW |2750 |31715 |Application|Oracle |
-ROW |2751 |31716 |Application|Oracle |
-ROW |2752 |31717 |Application|Oracle |
-ROW |2753 |31718 |Application|Oracle |
-ROW |2754 |31719 |Application|Oracle |
-ROW |2755 |31720 |Application|Oracle |
-ROW |2756 |31721 |Application|Oracle |
-ROW |2757 |31722 |Application|Oracle |
-ROW |2758 |31723 |Application|Oracle |
-ROW |2759 |31724 |Application|Oracle |
-ROW |2760 |31725 |Application|Oracle |
-ROW |2761 |31726 |Application|Oracle |
-ROW |2762 |31727 |Application|Oracle |
-ROW |2763 |31728 |Application|Oracle |
-ROW |2764 |31729 |Application|Oracle |
-ROW |2765 |31730 |Application|Oracle |
-ROW |2766 |31731 |Application|Oracle |
-ROW |2767 |31732 |Application|Oracle |
-ROW |2768 |31733 |Application|Oracle |
-ROW |2769 |31734 |Application|Oracle |
-ROW |2770 |31735 |Application|Oracle |
-ROW |2771 |31736 |Application|Oracle |
-ROW |2772 |31737 |Application|Oracle |
-ROW |2773 |31738 |Application|Oracle |
-ROW |2774 |31739 |Application|Oracle |
-ROW |2775 |31740 |Application|Oracle |
-ROW |2776 |31741 |Application|Oracle |
-ROW |2777 |31742 |Application|Oracle |
-ROW |2778 |31743 |Application|Oracle |
-ROW |2779 |31744 |Application|Oracle |
-ROW |2780 |31745 |Application|Oracle |
-ROW |2781 |31746 |Application|Oracle |
-ROW |2782 |31747 |Application|Oracle |
-ROW |2783 |31748 |Application|Oracle |
-ROW |2784 |31749 |Application|Oracle |
-ROW |2785 |31750 |Application|Oracle |
-ROW |2786 |31751 |Application|Oracle |
-ROW |2787 |31752 |Application|Oracle |
-ROW |2788 |31753 |Application|Oracle |
-ROW |2789 |31754 |Application|Oracle |
-ROW |2790 |31755 |Application|Oracle |
-ROW |2791 |31756 |Application|Oracle |
-ROW |2792 |31757 |Application|Oracle |
-ROW |2793 |31758 |Application|Oracle |
-ROW |2794 |31759 |Application|Oracle |
-ROW |2795 |31760 |Application|Oracle |
-ROW |2796 |31686 |Application|Zabbix raw items |
-ROW |2797 |31688 |Application|Zabbix raw items |
-ROW |2798 |31689 |Application|Zabbix raw items |
-ROW |2799 |31690 |Application|Zabbix raw items |
-ROW |2800 |31691 |Application|Zabbix raw items |
-ROW |2801 |31692 |Application|Zabbix raw items |
-ROW |2802 |31693 |Application|Zabbix raw items |
-ROW |2803 |31694 |Application|Zabbix raw items |
-ROW |2804 |31697 |Application|Zabbix raw items |
-ROW |2805 |31698 |Application|Zabbix raw items |
-ROW |2806 |31699 |Application|Zabbix raw items |
-ROW |2807 |31700 |Application|Zabbix raw items |
-ROW |2808 |31782 |Application|Asterisk |
-ROW |2809 |31783 |Application|Asterisk |
-ROW |2810 |31785 |Application|Asterisk |
-ROW |2811 |31786 |Application|Asterisk |
-ROW |2812 |31787 |Application|Asterisk |
-ROW |2813 |31788 |Application|Asterisk |
-ROW |2814 |31789 |Application|Asterisk |
-ROW |2815 |31790 |Application|Asterisk |
-ROW |2816 |31791 |Application|Asterisk |
-ROW |2817 |31792 |Application|Asterisk |
-ROW |2818 |31793 |Application|Asterisk |
-ROW |2819 |31794 |Application|Asterisk |
-ROW |2820 |31795 |Application|Asterisk |
-ROW |2821 |31796 |Application|Asterisk |
-ROW |2822 |31797 |Application|Asterisk |
-ROW |2823 |31798 |Application|Asterisk |
-ROW |2824 |31799 |Application|Asterisk |
-ROW |2825 |31800 |Application|Asterisk |
-ROW |2826 |31801 |Application|Asterisk |
-ROW |2827 |31802 |Application|Asterisk |
-ROW |2828 |33389 |Application|Asterisk |
-ROW |2829 |33390 |Application|Asterisk |
-ROW |2830 |31784 |Application|Zabbix raw items |
-ROW |2831 |31904 |Application|Zabbix raw items |
-ROW |2832 |31934 |Application|Zabbix raw items |
-ROW |2833 |31937 |Application|Zabbix raw items |
-ROW |2834 |31820 |Application|CPU |
-ROW |2835 |31821 |Application|CPU |
-ROW |2836 |31822 |Application|CPU |
-ROW |2837 |31823 |Application|CPU |
-ROW |2838 |31824 |Application|CPU |
-ROW |2839 |31825 |Application|CPU |
-ROW |2840 |31826 |Application|CPU |
-ROW |2841 |31827 |Application|CPU |
-ROW |2842 |31828 |Application|CPU |
-ROW |2843 |31829 |Application|CPU |
-ROW |2844 |31830 |Application|CPU |
-ROW |2845 |31831 |Application|CPU |
-ROW |2846 |31832 |Application|CPU |
-ROW |2847 |31833 |Application|CPU |
-ROW |2848 |31834 |Application|CPU |
-ROW |2849 |31835 |Application|CPU |
-ROW |2850 |31892 |Application|CPU |
-ROW |2851 |31836 |Application|General |
-ROW |2852 |31837 |Application|General |
-ROW |2853 |31838 |Application|General |
-ROW |2854 |31839 |Application|General |
-ROW |2855 |31840 |Application|General |
-ROW |2856 |31841 |Application|General |
-ROW |2857 |31842 |Application|General |
-ROW |2858 |31846 |Application|General |
-ROW |2859 |31848 |Application|General |
-ROW |2860 |31843 |Application|Inventory |
-ROW |2861 |31844 |Application|Inventory |
-ROW |2862 |31845 |Application|Inventory |
-ROW |2863 |31849 |Application|Security |
-ROW |2864 |31847 |Application|Status |
-ROW |2865 |31850 |Application|Memory |
-ROW |2866 |31851 |Application|Memory |
-ROW |2867 |31852 |Application|Memory |
-ROW |2868 |31853 |Application|Memory |
-ROW |2869 |31854 |Application|Memory |
-ROW |2870 |31855 |Application|Memory |
-ROW |2871 |31893 |Application|Memory |
-ROW |2872 |31856 |Application|CPU |
-ROW |2873 |31857 |Application|CPU |
-ROW |2874 |31858 |Application|CPU |
-ROW |2875 |31859 |Application|CPU |
-ROW |2876 |31860 |Application|CPU |
-ROW |2877 |31861 |Application|CPU |
-ROW |2878 |31862 |Application|CPU |
-ROW |2879 |31863 |Application|CPU |
-ROW |2880 |31864 |Application|CPU |
-ROW |2881 |31865 |Application|CPU |
-ROW |2882 |31866 |Application|CPU |
-ROW |2883 |31867 |Application|CPU |
-ROW |2884 |31868 |Application|CPU |
-ROW |2885 |31869 |Application|CPU |
-ROW |2886 |31870 |Application|CPU |
-ROW |2887 |31871 |Application|CPU |
-ROW |2888 |31894 |Application|CPU |
-ROW |2889 |31872 |Application|General |
-ROW |2890 |31873 |Application|General |
-ROW |2891 |31874 |Application|General |
-ROW |2892 |31875 |Application|General |
-ROW |2893 |31876 |Application|General |
-ROW |2894 |31877 |Application|General |
-ROW |2895 |31878 |Application|General |
-ROW |2896 |31882 |Application|General |
-ROW |2897 |31884 |Application|General |
-ROW |2898 |31879 |Application|Inventory |
-ROW |2899 |31880 |Application|Inventory |
-ROW |2900 |31881 |Application|Inventory |
-ROW |2901 |31886 |Application|Memory |
-ROW |2902 |31887 |Application|Memory |
-ROW |2903 |31888 |Application|Memory |
-ROW |2904 |31889 |Application|Memory |
-ROW |2905 |31890 |Application|Memory |
-ROW |2906 |31891 |Application|Memory |
-ROW |2907 |31895 |Application|Memory |
-ROW |2908 |31816 |Application|Monitoring agent |
-ROW |2909 |31817 |Application|Monitoring agent |
-ROW |2910 |31818 |Application|Monitoring agent |
-ROW |2911 |31885 |Application|Security |
-ROW |2912 |31819 |Application|Status |
-ROW |2913 |31883 |Application|Status |
-ROW |2914 |31919 |Application|Zabbix raw items |
-ROW |2915 |31940 |Application|Zabbix raw items |
-ROW |2916 |31943 |Application|Zabbix raw items |
-ROW |2917 |31948 |Application|CPU |
-ROW |2918 |31949 |Application|CPU |
-ROW |2919 |31950 |Application|CPU |
-ROW |2920 |31951 |Application|CPU |
-ROW |2921 |31952 |Application|CPU |
-ROW |2922 |31953 |Application|CPU |
-ROW |2923 |31954 |Application|CPU |
-ROW |2924 |31955 |Application|CPU |
-ROW |2925 |31956 |Application|General |
-ROW |2926 |31957 |Application|General |
-ROW |2927 |31958 |Application|General |
-ROW |2928 |31959 |Application|General |
-ROW |2929 |31961 |Application|General |
-ROW |2930 |31960 |Application|Inventory |
-ROW |2931 |31962 |Application|Status |
-ROW |2932 |31963 |Application|Memory |
-ROW |2933 |31964 |Application|Memory |
-ROW |2934 |31965 |Application|Memory |
-ROW |2935 |31966 |Application|Memory |
-ROW |2936 |31967 |Application|Memory |
-ROW |2937 |31968 |Application|Memory |
-ROW |2938 |31969 |Application|Memory |
-ROW |2939 |31970 |Application|Memory |
-ROW |2940 |31971 |Application|Memory |
-ROW |2941 |31972 |Application|Memory |
-ROW |2942 |31973 |Application|Memory |
-ROW |2943 |32002 |Application|Memory |
-ROW |2944 |31974 |Application|Zabbix raw items |
-ROW |2945 |32025 |Application|Services |
-ROW |2946 |31975 |Application|CPU |
-ROW |2947 |31976 |Application|CPU |
-ROW |2948 |31977 |Application|CPU |
-ROW |2949 |31978 |Application|CPU |
-ROW |2950 |31979 |Application|CPU |
-ROW |2951 |31980 |Application|CPU |
-ROW |2952 |31981 |Application|CPU |
-ROW |2953 |31982 |Application|CPU |
-ROW |2954 |31983 |Application|General |
-ROW |2955 |31984 |Application|General |
-ROW |2956 |31985 |Application|General |
-ROW |2957 |31986 |Application|General |
-ROW |2958 |31988 |Application|General |
-ROW |2959 |31987 |Application|Inventory |
-ROW |2960 |31990 |Application|Memory |
-ROW |2961 |31991 |Application|Memory |
-ROW |2962 |31992 |Application|Memory |
-ROW |2963 |31993 |Application|Memory |
-ROW |2964 |31994 |Application|Memory |
-ROW |2965 |31995 |Application|Memory |
-ROW |2966 |31996 |Application|Memory |
-ROW |2967 |31997 |Application|Memory |
-ROW |2968 |31998 |Application|Memory |
-ROW |2969 |31999 |Application|Memory |
-ROW |2970 |32000 |Application|Memory |
-ROW |2971 |32003 |Application|Memory |
-ROW |2972 |31944 |Application|Monitoring agent |
-ROW |2973 |31945 |Application|Monitoring agent |
-ROW |2974 |31946 |Application|Monitoring agent |
-ROW |2975 |32039 |Application|Services |
-ROW |2976 |31947 |Application|Status |
-ROW |2977 |31989 |Application|Status |
-ROW |2978 |32001 |Application|Zabbix raw items |
-ROW |2979 |32120 |Application|Ceph |
-ROW |2980 |32122 |Application|Ceph |
-ROW |2981 |32123 |Application|Ceph |
-ROW |2982 |32124 |Application|Ceph |
-ROW |2983 |32125 |Application|Ceph |
-ROW |2984 |32126 |Application|Ceph |
-ROW |2985 |32127 |Application|Ceph |
-ROW |2986 |32128 |Application|Ceph |
-ROW |2987 |32129 |Application|Ceph |
-ROW |2988 |32130 |Application|Ceph |
-ROW |2989 |32131 |Application|Ceph |
-ROW |2990 |32132 |Application|Ceph |
-ROW |2991 |32133 |Application|Ceph |
-ROW |2992 |32134 |Application|Ceph |
-ROW |2993 |32135 |Application|Ceph |
-ROW |2994 |32136 |Application|Ceph |
-ROW |2995 |32137 |Application|Ceph |
-ROW |2996 |32138 |Application|Ceph |
-ROW |2997 |32139 |Application|Ceph |
-ROW |2998 |32140 |Application|Ceph |
-ROW |2999 |32141 |Application|Ceph |
-ROW |3000 |32142 |Application|Ceph |
-ROW |3001 |32143 |Application|Ceph |
-ROW |3002 |32144 |Application|Ceph |
-ROW |3003 |32145 |Application|Ceph |
-ROW |3004 |32146 |Application|Ceph |
-ROW |3005 |32147 |Application|Ceph |
-ROW |3006 |32148 |Application|Ceph |
-ROW |3007 |32149 |Application|Ceph |
-ROW |3008 |32150 |Application|Ceph |
-ROW |3009 |32151 |Application|Ceph |
-ROW |3010 |32152 |Application|Ceph |
-ROW |3011 |32153 |Application|Ceph |
-ROW |3012 |32154 |Application|Ceph |
-ROW |3013 |32155 |Application|Ceph |
-ROW |3014 |32156 |Application|Ceph |
-ROW |3015 |32157 |Application|Ceph |
-ROW |3016 |32158 |Application|Ceph |
-ROW |3017 |32159 |Application|Ceph |
-ROW |3018 |32160 |Application|Ceph |
-ROW |3019 |32161 |Application|Ceph |
-ROW |3020 |32162 |Application|Ceph |
-ROW |3021 |32163 |Application|Ceph |
-ROW |3022 |32164 |Application|Ceph |
-ROW |3023 |32165 |Application|Ceph |
-ROW |3024 |32166 |Application|Ceph |
-ROW |3025 |32167 |Application|Ceph |
-ROW |3026 |32117 |Application|Zabbix raw items |
-ROW |3027 |32118 |Application|Zabbix raw items |
-ROW |3028 |32119 |Application|Zabbix raw items |
-ROW |3029 |32121 |Application|Zabbix raw items |
-ROW |3030 |32239 |Application|Squid |
-ROW |3031 |32240 |Application|Squid |
-ROW |3032 |32241 |Application|Squid |
-ROW |3033 |32242 |Application|Squid |
-ROW |3034 |32243 |Application|Squid |
-ROW |3035 |32244 |Application|Squid |
-ROW |3036 |32245 |Application|Squid |
-ROW |3037 |32246 |Application|Squid |
-ROW |3038 |32247 |Application|Squid |
-ROW |3039 |32248 |Application|Squid |
-ROW |3040 |32249 |Application|Squid |
-ROW |3041 |32250 |Application|Squid |
-ROW |3042 |32251 |Application|Squid |
-ROW |3043 |32252 |Application|Squid |
-ROW |3044 |32253 |Application|Squid |
-ROW |3045 |32254 |Application|Squid |
-ROW |3046 |32255 |Application|Squid |
-ROW |3047 |32256 |Application|Squid |
-ROW |3048 |32257 |Application|Squid |
-ROW |3049 |32258 |Application|Squid |
-ROW |3050 |32259 |Application|Squid |
-ROW |3051 |32260 |Application|Squid |
-ROW |3052 |32261 |Application|Squid |
-ROW |3053 |32262 |Application|Squid |
-ROW |3054 |32263 |Application|Squid |
-ROW |3055 |32264 |Application|Squid |
-ROW |3056 |32265 |Application|Squid |
-ROW |3057 |32266 |Application|Squid |
-ROW |3058 |32267 |Application|Squid |
-ROW |3059 |32268 |Application|Squid |
-ROW |3060 |32269 |Application|Squid |
-ROW |3061 |32270 |Application|Squid |
-ROW |3062 |32271 |Application|Squid |
-ROW |3063 |32272 |Application|Squid |
-ROW |3064 |32273 |Application|Squid |
-ROW |3065 |32274 |Application|Squid |
-ROW |3066 |32275 |Application|Squid |
-ROW |3067 |32276 |Application|Squid |
-ROW |3068 |32277 |Application|Squid |
-ROW |3069 |32278 |Application|Squid |
-ROW |3070 |32279 |Application|Squid |
-ROW |3071 |32280 |Application|Squid |
-ROW |3072 |32281 |Application|Squid |
-ROW |3073 |32282 |Application|Squid |
-ROW |3074 |32283 |Application|Squid |
-ROW |3075 |32284 |Application|Squid |
-ROW |3076 |32285 |Application|Squid |
-ROW |3077 |32286 |Application|Squid |
-ROW |3078 |32287 |Application|Squid |
-ROW |3079 |32288 |Application|Squid |
-ROW |3080 |32289 |Application|Squid |
-ROW |3081 |32290 |Application|Squid |
-ROW |3082 |32291 |Application|Squid |
-ROW |3083 |32292 |Application|Squid |
-ROW |3084 |32366 |Application|PostgreSQL |
-ROW |3085 |32367 |Application|PostgreSQL |
-ROW |3086 |32369 |Application|PostgreSQL |
-ROW |3087 |32370 |Application|PostgreSQL |
-ROW |3088 |32371 |Application|PostgreSQL |
-ROW |3089 |32372 |Application|PostgreSQL |
-ROW |3090 |32373 |Application|PostgreSQL |
-ROW |3091 |32374 |Application|PostgreSQL |
-ROW |3092 |32377 |Application|PostgreSQL |
-ROW |3093 |32378 |Application|PostgreSQL |
-ROW |3094 |32381 |Application|PostgreSQL |
-ROW |3095 |32382 |Application|PostgreSQL |
-ROW |3096 |32383 |Application|PostgreSQL |
-ROW |3097 |32384 |Application|PostgreSQL |
-ROW |3098 |32385 |Application|PostgreSQL |
-ROW |3099 |32386 |Application|PostgreSQL |
-ROW |3100 |32387 |Application|PostgreSQL |
-ROW |3101 |32388 |Application|PostgreSQL |
-ROW |3102 |32389 |Application|PostgreSQL |
-ROW |3103 |32390 |Application|PostgreSQL |
-ROW |3104 |32391 |Application|PostgreSQL |
-ROW |3105 |32392 |Application|PostgreSQL |
-ROW |3106 |32393 |Application|PostgreSQL |
-ROW |3107 |32394 |Application|PostgreSQL |
-ROW |3108 |32395 |Application|PostgreSQL |
-ROW |3109 |32396 |Application|PostgreSQL |
-ROW |3110 |32397 |Application|PostgreSQL |
-ROW |3111 |32398 |Application|PostgreSQL |
-ROW |3112 |32399 |Application|PostgreSQL |
-ROW |3113 |32400 |Application|PostgreSQL |
-ROW |3114 |32401 |Application|PostgreSQL |
-ROW |3115 |32402 |Application|PostgreSQL |
-ROW |3116 |32403 |Application|PostgreSQL |
-ROW |3117 |32364 |Application|Zabbix raw items |
-ROW |3118 |32365 |Application|Zabbix raw items |
-ROW |3119 |32368 |Application|Zabbix raw items |
-ROW |3120 |32375 |Application|Zabbix raw items |
-ROW |3121 |32376 |Application|Zabbix raw items |
-ROW |3122 |32379 |Application|Zabbix raw items |
-ROW |3123 |32380 |Application|Zabbix raw items |
-ROW |3124 |32406 |Application|Zabbix raw items |
-ROW |3125 |32407 |Application|Zabbix raw items |
-ROW |3126 |32463 |Application|Zabbix raw items |
-ROW |3127 |32464 |Application|Zabbix raw items |
-ROW |3128 |32516 |Application|MS Exchange |
-ROW |3129 |32517 |Application|MS Exchange |
-ROW |3130 |32518 |Application|MS Exchange |
-ROW |3131 |32519 |Application|MS Exchange |
-ROW |3132 |32520 |Application|MS Exchange |
-ROW |3133 |32521 |Application|MS Exchange |
-ROW |3134 |32522 |Application|MS Exchange |
-ROW |3135 |32523 |Application|MS Exchange |
-ROW |3136 |32524 |Application|MS Exchange |
-ROW |3137 |32543 |Application|MS Exchange |
-ROW |3138 |32544 |Application|MS Exchange |
-ROW |3139 |32545 |Application|MS Exchange |
-ROW |3140 |32546 |Application|MS Exchange |
-ROW |3141 |32547 |Application|MS Exchange |
-ROW |3142 |32548 |Application|MS Exchange |
-ROW |3143 |32549 |Application|MS Exchange |
-ROW |3144 |32550 |Application|MS Exchange |
-ROW |3145 |32551 |Application|MS Exchange |
-ROW |3146 |32552 |Application|MS Exchange |
-ROW |3147 |32553 |Application|MS Exchange |
-ROW |3148 |32554 |Application|MS Exchange |
-ROW |3149 |32573 |Application|MS Exchange |
-ROW |3150 |32574 |Application|MS Exchange |
-ROW |3151 |32575 |Application|MS Exchange |
-ROW |3152 |32576 |Application|GitLab |
-ROW |3153 |32577 |Application|GitLab |
-ROW |3154 |32579 |Application|GitLab |
-ROW |3155 |32580 |Application|GitLab |
-ROW |3156 |32581 |Application|GitLab |
-ROW |3157 |32582 |Application|GitLab |
-ROW |3158 |32583 |Application|GitLab |
-ROW |3159 |32584 |Application|GitLab |
-ROW |3160 |32585 |Application|GitLab |
-ROW |3161 |32586 |Application|GitLab |
-ROW |3162 |32587 |Application|GitLab |
-ROW |3163 |32588 |Application|GitLab |
-ROW |3164 |32589 |Application|GitLab |
-ROW |3165 |32590 |Application|GitLab |
-ROW |3166 |32591 |Application|GitLab |
-ROW |3167 |32592 |Application|GitLab |
-ROW |3168 |32593 |Application|GitLab |
-ROW |3169 |32594 |Application|GitLab |
-ROW |3170 |32595 |Application|GitLab |
-ROW |3171 |32596 |Application|GitLab |
-ROW |3172 |32597 |Application|GitLab |
-ROW |3173 |32598 |Application|GitLab |
-ROW |3174 |32599 |Application|GitLab |
-ROW |3175 |32600 |Application|GitLab |
-ROW |3176 |32601 |Application|GitLab |
-ROW |3177 |32602 |Application|GitLab |
-ROW |3178 |32603 |Application|GitLab |
-ROW |3179 |32604 |Application|GitLab |
-ROW |3180 |32605 |Application|GitLab |
-ROW |3181 |32606 |Application|GitLab |
-ROW |3182 |32607 |Application|GitLab |
-ROW |3183 |32608 |Application|GitLab |
-ROW |3184 |32609 |Application|GitLab |
-ROW |3185 |32610 |Application|GitLab |
-ROW |3186 |32611 |Application|GitLab |
-ROW |3187 |32612 |Application|GitLab |
-ROW |3188 |32613 |Application|GitLab |
-ROW |3189 |32614 |Application|GitLab |
-ROW |3190 |32615 |Application|GitLab |
-ROW |3191 |32616 |Application|GitLab |
-ROW |3192 |32617 |Application|GitLab |
-ROW |3193 |32618 |Application|GitLab |
-ROW |3194 |32621 |Application|GitLab: Puma stats |
-ROW |3195 |32622 |Application|GitLab: Puma stats |
-ROW |3196 |32623 |Application|GitLab: Puma stats |
-ROW |3197 |32624 |Application|GitLab: Puma stats |
-ROW |3198 |32625 |Application|GitLab: Puma stats |
-ROW |3199 |32626 |Application|GitLab: Puma stats |
-ROW |3200 |32627 |Application|GitLab: Puma stats |
-ROW |3201 |32628 |Application|GitLab: Puma stats |
-ROW |3202 |32629 |Application|GitLab: Puma stats |
-ROW |3203 |32630 |Application|GitLab: Puma stats |
-ROW |3204 |32631 |Application|GitLab: Unicorn stats |
-ROW |3205 |32632 |Application|GitLab: Unicorn stats |
-ROW |3206 |32633 |Application|GitLab: Unicorn stats |
-ROW |3207 |32578 |Application|Zabbix raw items |
-ROW |3208 |32636 |Application|Hadoop |
-ROW |3209 |32637 |Application|Hadoop |
-ROW |3210 |32638 |Application|Hadoop |
-ROW |3211 |32640 |Application|Hadoop |
-ROW |3212 |32642 |Application|Hadoop |
-ROW |3213 |32643 |Application|Hadoop |
-ROW |3214 |32644 |Application|Hadoop |
-ROW |3215 |32645 |Application|Hadoop |
-ROW |3216 |32646 |Application|Hadoop |
-ROW |3217 |32647 |Application|Hadoop |
-ROW |3218 |32648 |Application|Hadoop |
-ROW |3219 |32649 |Application|Hadoop |
-ROW |3220 |32650 |Application|Hadoop |
-ROW |3221 |32651 |Application|Hadoop |
-ROW |3222 |32652 |Application|Hadoop |
-ROW |3223 |32653 |Application|Hadoop |
-ROW |3224 |32654 |Application|Hadoop |
-ROW |3225 |32655 |Application|Hadoop |
-ROW |3226 |32656 |Application|Hadoop |
-ROW |3227 |32657 |Application|Hadoop |
-ROW |3228 |32658 |Application|Hadoop |
-ROW |3229 |32659 |Application|Hadoop |
-ROW |3230 |32660 |Application|Hadoop |
-ROW |3231 |32661 |Application|Hadoop |
-ROW |3232 |32662 |Application|Hadoop |
-ROW |3233 |32663 |Application|Hadoop |
-ROW |3234 |32664 |Application|Hadoop |
-ROW |3235 |32665 |Application|Hadoop |
-ROW |3236 |32666 |Application|Hadoop |
-ROW |3237 |32667 |Application|Hadoop |
-ROW |3238 |32634 |Application|Zabbix raw items |
-ROW |3239 |32635 |Application|Zabbix raw items |
-ROW |3240 |32639 |Application|Zabbix raw items |
-ROW |3241 |32641 |Application|Zabbix raw items |
-ROW |3242 |32670 |Application|Zabbix raw items |
-ROW |3243 |32671 |Application|Zabbix raw items |
-ROW |3244 |32693 |Application|Kafka |
-ROW |3245 |32694 |Application|Kafka |
-ROW |3246 |32695 |Application|Kafka |
-ROW |3247 |32696 |Application|Kafka |
-ROW |3248 |32697 |Application|Kafka |
-ROW |3249 |32698 |Application|Kafka |
-ROW |3250 |32699 |Application|Kafka |
-ROW |3251 |32700 |Application|Kafka |
-ROW |3252 |32701 |Application|Kafka |
-ROW |3253 |32702 |Application|Kafka |
-ROW |3254 |32703 |Application|Kafka |
-ROW |3255 |32704 |Application|Kafka |
-ROW |3256 |32705 |Application|Kafka |
-ROW |3257 |32706 |Application|Kafka |
-ROW |3258 |32707 |Application|Kafka |
-ROW |3259 |32708 |Application|Kafka |
-ROW |3260 |32709 |Application|Kafka |
-ROW |3261 |32710 |Application|Kafka |
-ROW |3262 |32711 |Application|Kafka |
-ROW |3263 |32712 |Application|Kafka |
-ROW |3264 |32713 |Application|Kafka |
-ROW |3265 |32714 |Application|Kafka |
-ROW |3266 |32715 |Application|Kafka |
-ROW |3267 |32716 |Application|Kafka |
-ROW |3268 |32717 |Application|Kafka |
-ROW |3269 |32718 |Application|Kafka |
-ROW |3270 |32719 |Application|Kafka |
-ROW |3271 |32720 |Application|Kafka |
-ROW |3272 |32721 |Application|Kafka |
-ROW |3273 |32722 |Application|Kafka |
-ROW |3274 |32723 |Application|Kafka |
-ROW |3275 |32724 |Application|Kafka |
-ROW |3276 |32725 |Application|Kafka |
-ROW |3277 |32726 |Application|Kafka |
-ROW |3278 |32727 |Application|Kafka |
-ROW |3279 |32728 |Application|Kafka |
-ROW |3280 |32729 |Application|Kafka |
-ROW |3281 |32730 |Application|Kafka |
-ROW |3282 |32731 |Application|Kafka |
-ROW |3283 |32732 |Application|Kafka |
-ROW |3284 |32733 |Application|Kafka |
-ROW |3285 |32734 |Application|Kafka |
-ROW |3286 |32735 |Application|Kafka |
-ROW |3287 |32736 |Application|Kafka |
-ROW |3288 |32737 |Application|Kafka |
-ROW |3289 |32738 |Application|Kafka |
-ROW |3290 |32739 |Application|Kafka |
-ROW |3291 |32740 |Application|Kafka |
-ROW |3292 |32741 |Application|Kafka |
-ROW |3293 |32742 |Application|Kafka |
-ROW |3294 |32743 |Application|Kafka |
-ROW |3295 |32744 |Application|Kafka |
-ROW |3296 |32745 |Application|Kafka |
-ROW |3297 |32746 |Application|Kafka |
-ROW |3298 |32747 |Application|Kafka |
-ROW |3299 |32748 |Application|Kafka |
-ROW |3300 |32749 |Application|Kafka |
-ROW |3301 |32750 |Application|Kafka |
-ROW |3302 |32751 |Application|Kafka |
-ROW |3303 |32752 |Application|Kafka |
-ROW |3304 |32753 |Application|Kafka |
-ROW |3305 |32754 |Application|Kafka |
-ROW |3306 |32784 |Application|Vault |
-ROW |3307 |32785 |Application|Vault |
-ROW |3308 |32786 |Application|Vault |
-ROW |3309 |32787 |Application|Vault |
-ROW |3310 |32788 |Application|Vault |
-ROW |3311 |32789 |Application|Vault |
-ROW |3312 |32790 |Application|Vault |
-ROW |3313 |32791 |Application|Vault |
-ROW |3314 |32792 |Application|Vault |
-ROW |3315 |32793 |Application|Vault |
-ROW |3316 |32794 |Application|Vault |
-ROW |3317 |32796 |Application|Vault |
-ROW |3318 |32797 |Application|Vault |
-ROW |3319 |32798 |Application|Vault |
-ROW |3320 |32799 |Application|Vault |
-ROW |3321 |32800 |Application|Vault |
-ROW |3322 |32801 |Application|Vault |
-ROW |3323 |32802 |Application|Vault |
-ROW |3324 |32804 |Application|Vault |
-ROW |3325 |32805 |Application|Vault |
-ROW |3326 |32806 |Application|Vault |
-ROW |3327 |32807 |Application|Vault |
-ROW |3328 |32808 |Application|Vault |
-ROW |3329 |32809 |Application|Vault |
-ROW |3330 |32810 |Application|Vault |
-ROW |3331 |32811 |Application|Vault |
-ROW |3332 |32812 |Application|Vault |
-ROW |3333 |32813 |Application|Vault |
-ROW |3334 |32814 |Application|Vault |
-ROW |3335 |32815 |Application|Vault |
-ROW |3336 |32816 |Application|Vault |
-ROW |3337 |32817 |Application|Vault |
-ROW |3338 |32818 |Application|Vault |
-ROW |3339 |32819 |Application|Vault |
-ROW |3340 |32820 |Application|Vault |
-ROW |3341 |32821 |Application|Vault |
-ROW |3342 |32822 |Application|Vault |
-ROW |3343 |32823 |Application|Vault |
-ROW |3344 |32824 |Application|Vault |
-ROW |3345 |32825 |Application|Vault |
-ROW |3346 |32826 |Application|Vault |
-ROW |3347 |32827 |Application|Vault |
-ROW |3348 |32828 |Application|Vault |
-ROW |3349 |32829 |Application|Vault |
-ROW |3350 |32830 |Application|Vault |
-ROW |3351 |32831 |Application|Vault |
-ROW |3352 |32832 |Application|Vault |
-ROW |3353 |32833 |Application|Vault |
-ROW |3354 |32834 |Application|Vault |
-ROW |3355 |32835 |Application|Vault |
-ROW |3356 |32836 |Application|Vault |
-ROW |3357 |32837 |Application|Vault |
-ROW |3358 |32838 |Application|Vault |
-ROW |3359 |32839 |Application|Vault |
-ROW |3360 |32840 |Application|Vault |
-ROW |3361 |32841 |Application|Vault |
-ROW |3362 |32842 |Application|Vault |
-ROW |3363 |32843 |Application|Vault |
-ROW |3364 |32844 |Application|Vault |
-ROW |3365 |32847 |Application|Vault |
-ROW |3366 |32848 |Application|Vault |
-ROW |3367 |32849 |Application|Vault |
-ROW |3368 |32851 |Application|Vault |
-ROW |3369 |32852 |Application|Vault |
-ROW |3370 |32853 |Application|Vault |
-ROW |3371 |32854 |Application|Vault |
-ROW |3372 |32855 |Application|Vault |
-ROW |3373 |32856 |Application|Vault |
-ROW |3374 |32857 |Application|Vault |
-ROW |3375 |32858 |Application|Vault |
-ROW |3376 |32859 |Application|Vault |
-ROW |3377 |32860 |Application|Vault |
-ROW |3378 |32861 |Application|Vault |
-ROW |3379 |32862 |Application|Vault |
-ROW |3380 |32863 |Application|Vault |
-ROW |3381 |32864 |Application|Vault |
-ROW |3382 |32865 |Application|Vault |
-ROW |3383 |32780 |Application|Zabbix raw items |
-ROW |3384 |32781 |Application|Zabbix raw items |
-ROW |3385 |32782 |Application|Zabbix raw items |
-ROW |3386 |32783 |Application|Zabbix raw items |
-ROW |3387 |32795 |Application|Zabbix raw items |
-ROW |3388 |32803 |Application|Zabbix raw items |
-ROW |3389 |32845 |Application|Zabbix raw items |
-ROW |3390 |32846 |Application|Zabbix raw items |
-ROW |3391 |32850 |Application|Zabbix raw items |
-ROW |3392 |32951 |Application|VMware |
-ROW |3393 |32952 |Application|VMware |
-ROW |3394 |32953 |Application|VMware |
-ROW |3395 |32958 |Application|VMware |
-ROW |3396 |32959 |Application|VMware |
-ROW |3397 |32960 |Application|VMware |
-ROW |3398 |32961 |Application|VMware |
-ROW |3399 |32962 |Application|VMware |
-ROW |3400 |32963 |Application|Zabbix raw items |
-ROW |3401 |32964 |Application|Zabbix raw items |
-ROW |3402 |32965 |Application|Zookeeper |
-ROW |3403 |32966 |Application|Zookeeper |
-ROW |3404 |32967 |Application|Zookeeper |
-ROW |3405 |32968 |Application|Zookeeper |
-ROW |3406 |32969 |Application|Zookeeper |
-ROW |3407 |32970 |Application|Zookeeper |
-ROW |3408 |32971 |Application|Zookeeper |
-ROW |3409 |32972 |Application|Zookeeper |
-ROW |3410 |32973 |Application|Zookeeper |
-ROW |3411 |32974 |Application|Zookeeper |
-ROW |3412 |32975 |Application|Zookeeper |
-ROW |3413 |32976 |Application|Zookeeper |
-ROW |3414 |32977 |Application|Zookeeper |
-ROW |3415 |32978 |Application|Zookeeper |
-ROW |3416 |32979 |Application|Zookeeper |
-ROW |3417 |32980 |Application|Zookeeper |
-ROW |3418 |32981 |Application|Zookeeper |
-ROW |3419 |32982 |Application|Zookeeper |
-ROW |3420 |32983 |Application|Zookeeper |
-ROW |3421 |32984 |Application|Zookeeper |
-ROW |3422 |32985 |Application|Zookeeper |
-ROW |3423 |32986 |Application|Zookeeper |
-ROW |3424 |32987 |Application|Zookeeper |
-ROW |3425 |32988 |Application|Zookeeper |
-ROW |3426 |32989 |Application|Zookeeper |
-ROW |3427 |32990 |Application|Zookeeper |
-ROW |3428 |32991 |Application|Zookeeper |
-ROW |3429 |32992 |Application|Zookeeper |
-ROW |3430 |32993 |Application|Zookeeper |
-ROW |3431 |32994 |Application|Zookeeper |
-ROW |3432 |32995 |Application|Zookeeper |
-ROW |3433 |32996 |Application|Zookeeper |
-ROW |3434 |32997 |Application|Zookeeper |
-ROW |3435 |33006 |Application|Zookeeper |
-ROW |3436 |33007 |Application|Zookeeper |
-ROW |3437 |33008 |Application|Zookeeper |
-ROW |3438 |33009 |Application|Zookeeper |
-ROW |3439 |33010 |Application|Zookeeper |
-ROW |3440 |33011 |Application|Zookeeper |
-ROW |3441 |33028 |Application|Cassandra |
-ROW |3442 |33029 |Application|Cassandra |
-ROW |3443 |33030 |Application|Cassandra |
-ROW |3444 |33031 |Application|Cassandra |
-ROW |3445 |33032 |Application|Cassandra |
-ROW |3446 |33033 |Application|Cassandra |
-ROW |3447 |33034 |Application|Cassandra |
-ROW |3448 |33035 |Application|Cassandra |
-ROW |3449 |33036 |Application|Cassandra |
-ROW |3450 |33037 |Application|Cassandra |
-ROW |3451 |33038 |Application|Cassandra |
-ROW |3452 |33039 |Application|Cassandra |
-ROW |3453 |33040 |Application|Cassandra |
-ROW |3454 |33041 |Application|Cassandra |
-ROW |3455 |33042 |Application|Cassandra |
-ROW |3456 |33043 |Application|Cassandra |
-ROW |3457 |33044 |Application|Cassandra |
-ROW |3458 |33045 |Application|Cassandra |
-ROW |3459 |33046 |Application|Cassandra |
-ROW |3460 |33047 |Application|Cassandra |
-ROW |3461 |33048 |Application|Cassandra |
-ROW |3462 |33049 |Application|Cassandra |
-ROW |3463 |33050 |Application|Cassandra |
-ROW |3464 |33051 |Application|Cassandra |
-ROW |3465 |33052 |Application|Cassandra |
-ROW |3466 |33053 |Application|Cassandra |
-ROW |3467 |33054 |Application|Cassandra |
-ROW |3468 |33055 |Application|Cassandra |
-ROW |3469 |33056 |Application|Cassandra |
-ROW |3470 |33057 |Application|Cassandra |
-ROW |3471 |33058 |Application|Cassandra |
-ROW |3472 |33059 |Application|Cassandra |
-ROW |3473 |33060 |Application|Cassandra |
-ROW |3474 |33061 |Application|Cassandra |
-ROW |3475 |33062 |Application|Cassandra |
-ROW |3476 |33063 |Application|Cassandra |
-ROW |3477 |33064 |Application|Cassandra |
-ROW |3478 |33065 |Application|Cassandra |
-ROW |3479 |33066 |Application|Cassandra |
-ROW |3480 |33067 |Application|Cassandra |
-ROW |3481 |33068 |Application|Cassandra |
-ROW |3482 |33069 |Application|Cassandra |
-ROW |3483 |33070 |Application|Cassandra |
-ROW |3484 |33071 |Application|Cassandra |
-ROW |3485 |33072 |Application|Cassandra |
-ROW |3486 |33073 |Application|Cassandra |
-ROW |3487 |33074 |Application|Cassandra |
-ROW |3488 |33075 |Application|Cassandra |
-ROW |3489 |33076 |Application|Cassandra |
-ROW |3490 |33077 |Application|Cassandra |
-ROW |3491 |33078 |Application|Cassandra |
-ROW |3492 |33079 |Application|Cassandra |
-ROW |3493 |33080 |Application|Cassandra |
-ROW |3494 |33081 |Application|Cassandra |
-ROW |3495 |33082 |Application|Cassandra |
-ROW |3496 |33083 |Application|Cassandra |
-ROW |3497 |33084 |Application|Cassandra |
-ROW |3498 |33085 |Application|Cassandra |
-ROW |3499 |33086 |Application|Cassandra |
-ROW |3500 |33087 |Application|Cassandra |
-ROW |3501 |33088 |Application|Cassandra |
-ROW |3502 |33089 |Application|Cassandra |
-ROW |3503 |33090 |Application|Cassandra |
-ROW |3504 |33091 |Application|Cassandra |
-ROW |3505 |33092 |Application|Cassandra |
-ROW |3506 |33093 |Application|Cassandra |
-ROW |3507 |33094 |Application|Cassandra |
-ROW |3508 |33184 |Application|Array |
-ROW |3509 |33195 |Application|Array |
-ROW |3510 |33202 |Application|Array |
-ROW |3511 |33203 |Application|Array |
-ROW |3512 |33188 |Application|Battery |
-ROW |3513 |33199 |Application|Battery |
-ROW |3514 |33200 |Application|Battery |
-ROW |3515 |33206 |Application|Battery |
-ROW |3516 |33196 |Application|Counter |
-ROW |3517 |33197 |Application|Counter |
-ROW |3518 |33198 |Application|Counter |
-ROW |3519 |33185 |Application|Load |
-ROW |3520 |33193 |Application|Load |
-ROW |3521 |33194 |Application|Load |
-ROW |3522 |33189 |Application|Status |
-ROW |3523 |33190 |Application|Status |
-ROW |3524 |33191 |Application|Status |
-ROW |3525 |33192 |Application|Status |
-ROW |3526 |33186 |Application|Temperature |
-ROW |3527 |33187 |Application|Temperature |
-ROW |3528 |33204 |Application|Temperature |
-ROW |3529 |33201 |Application|Zabbix raw items |
-ROW |3530 |33207 |Application|Array |
-ROW |3531 |33211 |Application|Battery |
-ROW |3532 |33222 |Application|Battery |
-ROW |3533 |33223 |Application|Battery |
-ROW |3534 |33226 |Application|Battery |
-ROW |3535 |33219 |Application|Counter |
-ROW |3536 |33220 |Application|Counter |
-ROW |3537 |33221 |Application|Counter |
-ROW |3538 |33215 |Application|Load |
-ROW |3539 |33217 |Application|Load |
-ROW |3540 |33218 |Application|Load |
-ROW |3541 |33208 |Application|Status |
-ROW |3542 |33212 |Application|Status |
-ROW |3543 |33213 |Application|Status |
-ROW |3544 |33214 |Application|Status |
-ROW |3545 |33209 |Application|Temperature |
-ROW |3546 |33210 |Application|Temperature |
-ROW |3547 |33224 |Application|Temperature |
-ROW |3548 |33216 |Application|Zabbix raw items |
-ROW |3549 |33227 |Application|Array |
-ROW |3550 |33238 |Application|Array |
-ROW |3551 |33245 |Application|Array |
-ROW |3552 |33246 |Application|Array |
-ROW |3553 |33231 |Application|Battery |
-ROW |3554 |33242 |Application|Battery |
-ROW |3555 |33243 |Application|Battery |
-ROW |3556 |33249 |Application|Battery |
-ROW |3557 |33239 |Application|Counter |
-ROW |3558 |33240 |Application|Counter |
-ROW |3559 |33241 |Application|Counter |
-ROW |3560 |33228 |Application|Load |
-ROW |3561 |33236 |Application|Load |
-ROW |3562 |33237 |Application|Load |
-ROW |3563 |33232 |Application|Status |
-ROW |3564 |33233 |Application|Status |
-ROW |3565 |33234 |Application|Status |
-ROW |3566 |33235 |Application|Status |
-ROW |3567 |33229 |Application|Temperature |
-ROW |3568 |33230 |Application|Temperature |
-ROW |3569 |33247 |Application|Temperature |
-ROW |3570 |33244 |Application|Zabbix raw items |
-ROW |3571 |33258 |Application|Battery |
-ROW |3572 |33251 |Application|Load |
-ROW |3573 |33252 |Application|Load |
-ROW |3574 |33253 |Application|Status |
-ROW |3575 |33254 |Application|Status |
-ROW |3576 |33255 |Application|Status |
-ROW |3577 |33256 |Application|Temperature |
-ROW |3578 |33250 |Application|Zabbix raw items |
-ROW |3579 |33259 |Application|Array |
-ROW |3580 |33268 |Application|Array |
-ROW |3581 |33272 |Application|Array |
-ROW |3582 |33273 |Application|Array |
-ROW |3583 |33274 |Application|Array |
-ROW |3584 |33262 |Application|Battery |
-ROW |3585 |33267 |Application|Battery |
-ROW |3586 |33269 |Application|Battery |
-ROW |3587 |33270 |Application|Battery |
-ROW |3588 |33277 |Application|Battery |
-ROW |3589 |33260 |Application|Counter |
-ROW |3590 |33266 |Application|Counter |
-ROW |3591 |33263 |Application|Status |
-ROW |3592 |33264 |Application|Status |
-ROW |3593 |33265 |Application|Status |
-ROW |3594 |33261 |Application|Temperature |
-ROW |3595 |33275 |Application|Temperature |
-ROW |3596 |33271 |Application|Zabbix raw items |
-ROW |3597 |33278 |Application|Array |
-ROW |3598 |33287 |Application|Array |
-ROW |3599 |33291 |Application|Array |
-ROW |3600 |33292 |Application|Array |
-ROW |3601 |33293 |Application|Array |
-ROW |3602 |33281 |Application|Battery |
-ROW |3603 |33286 |Application|Battery |
-ROW |3604 |33288 |Application|Battery |
-ROW |3605 |33289 |Application|Battery |
-ROW |3606 |33296 |Application|Battery |
-ROW |3607 |33279 |Application|Counter |
-ROW |3608 |33285 |Application|Counter |
-ROW |3609 |33282 |Application|Status |
-ROW |3610 |33283 |Application|Status |
-ROW |3611 |33284 |Application|Status |
-ROW |3612 |33280 |Application|Temperature |
-ROW |3613 |33294 |Application|Temperature |
-ROW |3614 |33290 |Application|Zabbix raw items |
-ROW |3615 |33313 |Application|Array |
-ROW |3616 |33312 |Application|Battery |
-ROW |3617 |33314 |Application|Battery |
-ROW |3618 |33315 |Application|Battery |
-ROW |3619 |33316 |Application|Battery |
-ROW |3620 |33299 |Application|Counter |
-ROW |3621 |33300 |Application|Counter |
-ROW |3622 |33317 |Application|Load |
-ROW |3623 |33318 |Application|Load |
-ROW |3624 |33319 |Application|Load |
-ROW |3625 |33320 |Application|Load |
-ROW |3626 |33298 |Application|Status |
-ROW |3627 |33301 |Application|Status |
-ROW |3628 |33302 |Application|Status |
-ROW |3629 |33303 |Application|Status |
-ROW |3630 |33304 |Application|Temperature |
-ROW |3631 |33305 |Application|Temperature |
-ROW |3632 |33297 |Application|Zabbix raw items |
-ROW |3633 |33340 |Application|General |
-ROW |3634 |33341 |Application|General |
-ROW |3635 |33342 |Application|General |
-ROW |3636 |33343 |Application|General |
-ROW |3637 |33344 |Application|General |
-ROW |3638 |33345 |Application|General |
-ROW |3639 |33348 |Application|NetApp FAS3220 |
-ROW |3640 |33349 |Application|NetApp FAS3220 |
-ROW |3641 |33350 |Application|NetApp FAS3220 |
-ROW |3642 |33351 |Application|NetApp FAS3220 |
-ROW |3643 |33337 |Application|Status |
-ROW |3644 |33338 |Application|Status |
-ROW |3645 |33339 |Application|Status |
-ROW |3646 |33346 |Application|Status |
-ROW |3647 |33347 |Application|Status |
-ROW |3648 |33392 |Application|Jenkins |
-ROW |3649 |33396 |Application|Jenkins |
-ROW |3650 |33397 |Application|Jenkins |
-ROW |3651 |33398 |Application|Jenkins |
-ROW |3652 |33399 |Application|Jenkins |
-ROW |3653 |33400 |Application|Jenkins |
-ROW |3654 |33401 |Application|Jenkins |
-ROW |3655 |33402 |Application|Jenkins |
-ROW |3656 |33403 |Application|Jenkins |
-ROW |3657 |33404 |Application|Jenkins |
-ROW |3658 |33405 |Application|Jenkins |
-ROW |3659 |33406 |Application|Jenkins |
-ROW |3660 |33407 |Application|Jenkins |
-ROW |3661 |33408 |Application|Jenkins |
-ROW |3662 |33409 |Application|Jenkins |
-ROW |3663 |33410 |Application|Jenkins |
-ROW |3664 |33411 |Application|Jenkins |
-ROW |3665 |33412 |Application|Jenkins |
-ROW |3666 |33413 |Application|Jenkins |
-ROW |3667 |33414 |Application|Jenkins |
-ROW |3668 |33415 |Application|Jenkins |
-ROW |3669 |33416 |Application|Jenkins |
-ROW |3670 |33417 |Application|Jenkins |
-ROW |3671 |33418 |Application|Jenkins |
-ROW |3672 |33419 |Application|Jenkins |
-ROW |3673 |33420 |Application|Jenkins |
-ROW |3674 |33421 |Application|Jenkins |
-ROW |3675 |33422 |Application|Jenkins |
-ROW |3676 |33423 |Application|Jenkins |
-ROW |3677 |33424 |Application|Jenkins |
-ROW |3678 |33425 |Application|Jenkins |
-ROW |3679 |33426 |Application|Jenkins |
-ROW |3680 |33427 |Application|Jenkins |
-ROW |3681 |33428 |Application|Jenkins |
-ROW |3682 |33429 |Application|Jenkins |
-ROW |3683 |33430 |Application|Jenkins |
-ROW |3684 |33431 |Application|Jenkins |
-ROW |3685 |33432 |Application|Jenkins |
-ROW |3686 |33433 |Application|Jenkins |
-ROW |3687 |33434 |Application|Jenkins |
-ROW |3688 |33435 |Application|Jenkins |
-ROW |3689 |33436 |Application|Jenkins |
-ROW |3690 |33437 |Application|Jenkins |
-ROW |3691 |33438 |Application|Jenkins |
-ROW |3692 |33439 |Application|Jenkins |
-ROW |3693 |33440 |Application|Jenkins |
-ROW |3694 |33441 |Application|Jenkins |
-ROW |3695 |33442 |Application|Jenkins |
-ROW |3696 |33443 |Application|Jenkins |
-ROW |3697 |33444 |Application|Jenkins |
-ROW |3698 |33445 |Application|Jenkins |
-ROW |3699 |33446 |Application|Jenkins |
-ROW |3700 |33447 |Application|Jenkins |
-ROW |3701 |33448 |Application|Jenkins |
-ROW |3702 |33449 |Application|Jenkins |
-ROW |3703 |33450 |Application|Jenkins |
-ROW |3704 |33451 |Application|Jenkins |
-ROW |3705 |33452 |Application|Jenkins |
-ROW |3706 |33453 |Application|Jenkins |
-ROW |3707 |33454 |Application|Jenkins |
-ROW |3708 |33455 |Application|Jenkins |
-ROW |3709 |33456 |Application|Jenkins |
-ROW |3710 |33457 |Application|Jenkins |
-ROW |3711 |33458 |Application|Jenkins |
-ROW |3712 |33459 |Application|Jenkins |
-ROW |3713 |33460 |Application|Jenkins |
-ROW |3714 |33461 |Application|Jenkins |
-ROW |3715 |33462 |Application|Jenkins |
-ROW |3716 |33463 |Application|Jenkins |
-ROW |3717 |33464 |Application|Jenkins |
-ROW |3718 |33391 |Application|Zabbix raw items |
-ROW |3719 |33393 |Application|Zabbix raw items |
-ROW |3720 |33394 |Application|Zabbix raw items |
-ROW |3721 |33395 |Application|Zabbix raw items |
-ROW |3722 |33518 |Application|CPU |
-ROW |3723 |33494 |Application|Hikvision camera |
-ROW |3724 |33495 |Application|Hikvision camera |
-ROW |3725 |33496 |Application|Hikvision camera |
-ROW |3726 |33497 |Application|Hikvision camera |
-ROW |3727 |33498 |Application|Hikvision camera |
-ROW |3728 |33499 |Application|Hikvision camera |
-ROW |3729 |33500 |Application|Hikvision camera |
-ROW |3730 |33502 |Application|Hikvision camera |
-ROW |3731 |33503 |Application|Hikvision camera |
-ROW |3732 |33507 |Application|Hikvision camera |
-ROW |3733 |33508 |Application|Hikvision camera |
-ROW |3734 |33509 |Application|Hikvision camera |
-ROW |3735 |33510 |Application|Hikvision camera |
-ROW |3736 |33511 |Application|Hikvision camera |
-ROW |3737 |33512 |Application|Hikvision camera |
-ROW |3738 |33513 |Application|Hikvision camera |
-ROW |3739 |33514 |Application|Hikvision camera |
-ROW |3740 |33515 |Application|Hikvision camera |
-ROW |3741 |33516 |Application|Hikvision camera |
-ROW |3742 |33517 |Application|Hikvision camera |
-ROW |3743 |33501 |Application|Memory |
-ROW |3744 |33504 |Application|Status |
-ROW |3745 |33505 |Application|Status |
-ROW |3746 |33506 |Application|Status |
-ROW |3747 |33519 |Application|Status |
-ROW |3748 |33491 |Application|Zabbix raw items |
-ROW |3749 |33492 |Application|Zabbix raw items |
-ROW |3750 |33493 |Application|Zabbix raw items |
-ROW |3751 |33522 |Application|Zabbix raw items |
-ROW |3752 |33523 |Application|Zabbix raw items |
-ROW |3753 |33631 |Application|Sharepoint |
-ROW |3754 |33632 |Application|Sharepoint |
-ROW |3755 |33633 |Application|Sharepoint |
-ROW |3756 |33630 |Application|Zabbix raw items |
-ROW |3757 |33656 |Application|Zabbix raw items |
-ROW |3758 |33668 |Application|Zabbix raw items |
-ROW |3759 |33683 |Application|General |
-ROW |3760 |33684 |Application|General |
-ROW |3761 |33685 |Application|General |
-ROW |3762 |33686 |Application|General |
-ROW |3763 |33687 |Application|General |
-ROW |3764 |33688 |Application|General |
-ROW |3765 |33691 |Application|Huawei |
-ROW |3766 |33692 |Application|Huawei |
-ROW |3767 |33693 |Application|Huawei |
-ROW |3768 |33694 |Application|Huawei |
-ROW |3769 |33680 |Application|Status |
-ROW |3770 |33681 |Application|Status |
-ROW |3771 |33682 |Application|Status |
-ROW |3772 |33689 |Application|Status |
-ROW |3773 |33690 |Application|Status |
-ROW |3774 |33766 |Application|MongoDB |
-ROW |3775 |33769 |Application|MongoDB |
-ROW |3776 |33770 |Application|MongoDB |
-ROW |3777 |33771 |Application|MongoDB |
-ROW |3778 |33772 |Application|MongoDB |
-ROW |3779 |33773 |Application|MongoDB |
-ROW |3780 |33774 |Application|MongoDB |
-ROW |3781 |33775 |Application|MongoDB |
-ROW |3782 |33776 |Application|MongoDB |
-ROW |3783 |33777 |Application|MongoDB |
-ROW |3784 |33778 |Application|MongoDB |
-ROW |3785 |33779 |Application|MongoDB |
-ROW |3786 |33780 |Application|MongoDB |
-ROW |3787 |33781 |Application|MongoDB |
-ROW |3788 |33782 |Application|MongoDB |
-ROW |3789 |33783 |Application|MongoDB |
-ROW |3790 |33784 |Application|MongoDB |
-ROW |3791 |33785 |Application|MongoDB |
-ROW |3792 |33786 |Application|MongoDB |
-ROW |3793 |33787 |Application|MongoDB |
-ROW |3794 |33788 |Application|MongoDB |
-ROW |3795 |33789 |Application|MongoDB |
-ROW |3796 |33790 |Application|MongoDB |
-ROW |3797 |33791 |Application|MongoDB |
-ROW |3798 |33792 |Application|MongoDB |
-ROW |3799 |33793 |Application|MongoDB |
-ROW |3800 |33794 |Application|MongoDB |
-ROW |3801 |33795 |Application|MongoDB |
-ROW |3802 |33796 |Application|MongoDB |
-ROW |3803 |33797 |Application|MongoDB |
-ROW |3804 |33798 |Application|MongoDB |
-ROW |3805 |33799 |Application|MongoDB |
-ROW |3806 |33800 |Application|MongoDB |
-ROW |3807 |33801 |Application|MongoDB |
-ROW |3808 |33802 |Application|MongoDB |
-ROW |3809 |33803 |Application|MongoDB |
-ROW |3810 |33804 |Application|MongoDB |
-ROW |3811 |33805 |Application|MongoDB |
-ROW |3812 |33806 |Application|MongoDB |
-ROW |3813 |33807 |Application|MongoDB |
-ROW |3814 |33869 |Application|MongoDB |
-ROW |3815 |33870 |Application|MongoDB |
-ROW |3816 |33871 |Application|MongoDB |
-ROW |3817 |33872 |Application|MongoDB |
-ROW |3818 |33873 |Application|MongoDB |
-ROW |3819 |33874 |Application|MongoDB |
-ROW |3820 |33875 |Application|MongoDB |
-ROW |3821 |33876 |Application|MongoDB |
-ROW |3822 |33877 |Application|MongoDB |
-ROW |3823 |33878 |Application|MongoDB |
-ROW |3824 |33879 |Application|MongoDB |
-ROW |3825 |33880 |Application|MongoDB |
-ROW |3826 |33881 |Application|MongoDB |
-ROW |3827 |33882 |Application|MongoDB |
-ROW |3828 |33883 |Application|MongoDB |
-ROW |3829 |33884 |Application|MongoDB |
-ROW |3830 |33885 |Application|MongoDB |
-ROW |3831 |33764 |Application|Zabbix raw items |
-ROW |3832 |33765 |Application|Zabbix raw items |
-ROW |3833 |33767 |Application|Zabbix raw items |
-ROW |3834 |33768 |Application|Zabbix raw items |
-ROW |3835 |33812 |Application|Zabbix raw items |
-ROW |3836 |33813 |Application|Zabbix raw items |
-ROW |3837 |33886 |Application|MongoDB sharded cluster |
-ROW |3838 |33888 |Application|MongoDB sharded cluster |
-ROW |3839 |33890 |Application|MongoDB sharded cluster |
-ROW |3840 |33891 |Application|MongoDB sharded cluster |
-ROW |3841 |33892 |Application|MongoDB sharded cluster |
-ROW |3842 |33893 |Application|MongoDB sharded cluster |
-ROW |3843 |33894 |Application|MongoDB sharded cluster |
-ROW |3844 |33895 |Application|MongoDB sharded cluster |
-ROW |3845 |33896 |Application|MongoDB sharded cluster |
-ROW |3846 |33897 |Application|MongoDB sharded cluster |
-ROW |3847 |33898 |Application|MongoDB sharded cluster |
-ROW |3848 |33899 |Application|MongoDB sharded cluster |
-ROW |3849 |33900 |Application|MongoDB sharded cluster |
-ROW |3850 |33901 |Application|MongoDB sharded cluster |
-ROW |3851 |33902 |Application|MongoDB sharded cluster |
-ROW |3852 |33903 |Application|MongoDB sharded cluster |
-ROW |3853 |33904 |Application|MongoDB sharded cluster |
-ROW |3854 |33905 |Application|MongoDB sharded cluster |
-ROW |3855 |33906 |Application|MongoDB sharded cluster |
-ROW |3856 |33907 |Application|MongoDB sharded cluster |
-ROW |3857 |33908 |Application|MongoDB sharded cluster |
-ROW |3858 |33909 |Application|MongoDB sharded cluster |
-ROW |3859 |33910 |Application|MongoDB sharded cluster |
-ROW |3860 |33911 |Application|MongoDB sharded cluster |
-ROW |3861 |33912 |Application|MongoDB sharded cluster |
-ROW |3862 |33913 |Application|MongoDB sharded cluster |
-ROW |3863 |33914 |Application|MongoDB sharded cluster |
-ROW |3864 |33915 |Application|MongoDB sharded cluster |
-ROW |3865 |33916 |Application|MongoDB sharded cluster |
-ROW |3866 |33917 |Application|MongoDB sharded cluster |
-ROW |3867 |33918 |Application|MongoDB sharded cluster |
-ROW |3868 |33919 |Application|MongoDB sharded cluster |
-ROW |3869 |33887 |Application|Zabbix raw items |
-ROW |3870 |33889 |Application|Zabbix raw items |
-ROW |3871 |33924 |Application|Zabbix raw items |
-ROW |3872 |33925 |Application|Zabbix raw items |
-ROW |3873 |33966 |Application|CPU |
-ROW |3874 |33968 |Application|Fans |
-ROW |3875 |33947 |Application|General |
-ROW |3876 |33948 |Application|General |
-ROW |3877 |33949 |Application|General |
-ROW |3878 |33952 |Application|General |
-ROW |3879 |33953 |Application|General |
-ROW |3880 |33954 |Application|General |
-ROW |3881 |33950 |Application|Inventory |
-ROW |3882 |33951 |Application|Inventory |
-ROW |3883 |33955 |Application|Inventory |
-ROW |3884 |33967 |Application|Inventory |
-ROW |3885 |33969 |Application|Memory |
-ROW |3886 |33970 |Application|Memory |
-ROW |3887 |33971 |Application|Memory |
-ROW |3888 |33982 |Application|Power supply |
-ROW |3889 |33944 |Application|Status |
-ROW |3890 |33945 |Application|Status |
-ROW |3891 |33946 |Application|Status |
-ROW |3892 |33956 |Application|Status |
-ROW |3893 |33957 |Application|Status |
-ROW |3894 |33983 |Application|Temperature |
-ROW |3895 |33984 |Application|Temperature |
-ROW |3896 |34007 |Application|CPU |
-ROW |3897 |34009 |Application|Fans |
-ROW |3898 |33988 |Application|General |
-ROW |3899 |33989 |Application|General |
-ROW |3900 |33990 |Application|General |
-ROW |3901 |33993 |Application|General |
-ROW |3902 |33994 |Application|General |
-ROW |3903 |33995 |Application|General |
-ROW |3904 |33991 |Application|Inventory |
-ROW |3905 |33992 |Application|Inventory |
-ROW |3906 |33996 |Application|Inventory |
-ROW |3907 |34008 |Application|Inventory |
-ROW |3908 |34010 |Application|Memory |
-ROW |3909 |34011 |Application|Memory |
-ROW |3910 |34012 |Application|Memory |
-ROW |3911 |34023 |Application|Power supply |
-ROW |3912 |33985 |Application|Status |
-ROW |3913 |33986 |Application|Status |
-ROW |3914 |33987 |Application|Status |
-ROW |3915 |33997 |Application|Status |
-ROW |3916 |33998 |Application|Status |
-ROW |3917 |34024 |Application|Temperature |
-ROW |3918 |34025 |Application|Temperature |
-ROW |3919 |34048 |Application|CPU |
-ROW |3920 |34050 |Application|Fans |
-ROW |3921 |34029 |Application|General |
-ROW |3922 |34030 |Application|General |
-ROW |3923 |34031 |Application|General |
-ROW |3924 |34034 |Application|General |
-ROW |3925 |34035 |Application|General |
-ROW |3926 |34036 |Application|General |
-ROW |3927 |34032 |Application|Inventory |
-ROW |3928 |34033 |Application|Inventory |
-ROW |3929 |34037 |Application|Inventory |
-ROW |3930 |34049 |Application|Inventory |
-ROW |3931 |34051 |Application|Memory |
-ROW |3932 |34052 |Application|Memory |
-ROW |3933 |34053 |Application|Memory |
-ROW |3934 |34064 |Application|Power supply |
-ROW |3935 |34026 |Application|Status |
-ROW |3936 |34027 |Application|Status |
-ROW |3937 |34028 |Application|Status |
-ROW |3938 |34038 |Application|Status |
-ROW |3939 |34039 |Application|Status |
-ROW |3940 |34065 |Application|Temperature |
-ROW |3941 |34066 |Application|Temperature |
-ROW |3942 |34089 |Application|CPU |
-ROW |3943 |34091 |Application|Fans |
-ROW |3944 |34070 |Application|General |
-ROW |3945 |34071 |Application|General |
-ROW |3946 |34072 |Application|General |
-ROW |3947 |34075 |Application|General |
-ROW |3948 |34076 |Application|General |
-ROW |3949 |34077 |Application|General |
-ROW |3950 |34073 |Application|Inventory |
-ROW |3951 |34074 |Application|Inventory |
-ROW |3952 |34078 |Application|Inventory |
-ROW |3953 |34090 |Application|Inventory |
-ROW |3954 |34092 |Application|Memory |
-ROW |3955 |34093 |Application|Memory |
-ROW |3956 |34094 |Application|Memory |
-ROW |3957 |34105 |Application|Power supply |
-ROW |3958 |34067 |Application|Status |
-ROW |3959 |34068 |Application|Status |
-ROW |3960 |34069 |Application|Status |
-ROW |3961 |34079 |Application|Status |
-ROW |3962 |34080 |Application|Status |
-ROW |3963 |34106 |Application|Temperature |
-ROW |3964 |34107 |Application|Temperature |
-ROW |3965 |34130 |Application|CPU |
-ROW |3966 |34132 |Application|Fans |
-ROW |3967 |34111 |Application|General |
-ROW |3968 |34112 |Application|General |
-ROW |3969 |34113 |Application|General |
-ROW |3970 |34116 |Application|General |
-ROW |3971 |34117 |Application|General |
-ROW |3972 |34118 |Application|General |
-ROW |3973 |34114 |Application|Inventory |
-ROW |3974 |34115 |Application|Inventory |
-ROW |3975 |34119 |Application|Inventory |
-ROW |3976 |34131 |Application|Inventory |
-ROW |3977 |34133 |Application|Memory |
-ROW |3978 |34134 |Application|Memory |
-ROW |3979 |34135 |Application|Memory |
-ROW |3980 |34146 |Application|Power supply |
-ROW |3981 |34108 |Application|Status |
-ROW |3982 |34109 |Application|Status |
-ROW |3983 |34110 |Application|Status |
-ROW |3984 |34120 |Application|Status |
-ROW |3985 |34121 |Application|Status |
-ROW |3986 |34147 |Application|Temperature |
-ROW |3987 |34148 |Application|Temperature |
-ROW |3988 |34179 |Application|General |
-ROW |3989 |34180 |Application|General |
-ROW |3990 |34182 |Application|General |
-ROW |3991 |34183 |Application|General |
-ROW |3992 |34184 |Application|General |
-ROW |3993 |34185 |Application|General |
-ROW |3994 |34186 |Application|General |
-ROW |3995 |34187 |Application|General |
-ROW |3996 |34188 |Application|General |
-ROW |3997 |34189 |Application|General |
-ROW |3998 |34190 |Application|General |
-ROW |3999 |34191 |Application|General |
-ROW |4000 |34192 |Application|General |
-ROW |4001 |34193 |Application|General |
-ROW |4002 |34194 |Application|General |
-ROW |4003 |34195 |Application|General |
-ROW |4004 |34196 |Application|General |
-ROW |4005 |34200 |Application|General |
-ROW |4006 |34201 |Application|General |
-ROW |4007 |34202 |Application|General |
-ROW |4008 |34203 |Application|General |
-ROW |4009 |34204 |Application|General |
-ROW |4010 |34205 |Application|General |
-ROW |4011 |34212 |Application|General |
-ROW |4012 |34213 |Application|General |
-ROW |4013 |34214 |Application|General |
-ROW |4014 |34215 |Application|General |
-ROW |4015 |34216 |Application|General |
-ROW |4016 |34217 |Application|General |
-ROW |4017 |34218 |Application|General |
-ROW |4018 |34219 |Application|General |
-ROW |4019 |34220 |Application|General |
-ROW |4020 |34221 |Application|General |
-ROW |4021 |34222 |Application|General |
-ROW |4022 |34223 |Application|General |
-ROW |4023 |34224 |Application|General |
-ROW |4024 |34225 |Application|General |
-ROW |4025 |34181 |Application|Status |
-ROW |4026 |34197 |Application|Status |
-ROW |4027 |34198 |Application|Status |
-ROW |4028 |34199 |Application|Status |
-ROW |4029 |34206 |Application|Status |
-ROW |4030 |34227 |Application|General |
-ROW |4031 |34236 |Application|General |
-ROW |4032 |34237 |Application|General |
-ROW |4033 |34239 |Application|General |
-ROW |4034 |34240 |Application|General |
-ROW |4035 |34241 |Application|General |
-ROW |4036 |34242 |Application|General |
-ROW |4037 |34243 |Application|General |
-ROW |4038 |34244 |Application|General |
-ROW |4039 |34245 |Application|General |
-ROW |4040 |34246 |Application|General |
-ROW |4041 |34248 |Application|General |
-ROW |4042 |34249 |Application|General |
-ROW |4043 |34251 |Application|General |
-ROW |4044 |34252 |Application|General |
-ROW |4045 |34253 |Application|General |
-ROW |4046 |34226 |Application|Zabbix raw items |
-ROW |4047 |34228 |Application|Zabbix raw items |
-ROW |4048 |34229 |Application|Zabbix raw items |
-ROW |4049 |34230 |Application|Zabbix raw items |
-ROW |4050 |34231 |Application|Zabbix raw items |
-ROW |4051 |34232 |Application|Zabbix raw items |
-ROW |4052 |34233 |Application|Zabbix raw items |
-ROW |4053 |34234 |Application|Zabbix raw items |
-ROW |4054 |34235 |Application|Zabbix raw items |
-ROW |4055 |34238 |Application|Zabbix raw items |
-ROW |4056 |34247 |Application|Zabbix raw items |
-ROW |4057 |34250 |Application|Zabbix raw items |
-ROW |4058 |34254 |Application|Zabbix raw items |
-ROW |4059 |34255 |Application|Zabbix raw items |
-ROW |4060 |34256 |Application|Zabbix raw items |
-ROW |4061 |34257 |Application|Zabbix raw items |
-ROW |4062 |34258 |Application|Zabbix raw items |
-ROW |4063 |34259 |Application|Zabbix raw items |
-ROW |4064 |34296 |Application|Zabbix raw items |
-ROW |4065 |34297 |Application|Zabbix raw items |
-ROW |4066 |34298 |Application|Zabbix raw items |
-ROW |4067 |34299 |Application|Zabbix raw items |
-ROW |4068 |34302 |Application|Zabbix raw items |
-ROW |4069 |34303 |Application|Zabbix raw items |
-ROW |4070 |34304 |Application|Zabbix raw items |
-ROW |4071 |34305 |Application|Zabbix raw items |
-ROW |4072 |29014 |Application|Disk {#DEVNAME} |
-ROW |4073 |29015 |Application|Disk {#DEVNAME} |
-ROW |4074 |29016 |Application|Disk {#DEVNAME} |
-ROW |4075 |29027 |Application|Filesystem {#FSNAME} |
-ROW |4076 |29028 |Application|Filesystem {#FSNAME} |
-ROW |4077 |29029 |Application|Filesystem {#FSNAME} |
-ROW |4078 |29030 |Application|Filesystem {#FSNAME} |
-ROW |4079 |29031 |Application|Disk {#DEVNAME} |
-ROW |4080 |29032 |Application|Disk {#DEVNAME} |
-ROW |4081 |29033 |Application|Disk {#DEVNAME} |
-ROW |4082 |29044 |Application|Filesystem {#FSNAME} |
-ROW |4083 |29045 |Application|Filesystem {#FSNAME} |
-ROW |4084 |29046 |Application|Filesystem {#FSNAME} |
-ROW |4085 |29047 |Application|Filesystem {#FSNAME} |
-ROW |4086 |29210 |Application|Filesystem {#FSNAME} |
-ROW |4087 |29211 |Application|Filesystem {#FSNAME} |
-ROW |4088 |29212 |Application|Filesystem {#FSNAME} |
-ROW |4089 |29213 |Application|Filesystem {#FSNAME} |
-ROW |4090 |29216 |Application|Interface {#IFNAME} |
-ROW |4091 |29217 |Application|Interface {#IFNAME} |
-ROW |4092 |29218 |Application|Interface {#IFNAME} |
-ROW |4093 |29219 |Application|Interface {#IFNAME} |
-ROW |4094 |29220 |Application|Interface {#IFNAME} |
-ROW |4095 |29221 |Application|Interface {#IFNAME} |
-ROW |4096 |29222 |Application|Interface {#IFNAME} |
-ROW |4097 |29223 |Application|Interface {#IFNAME} |
-ROW |4098 |29224 |Application|Filesystem {#FSNAME} |
-ROW |4099 |29225 |Application|Filesystem {#FSNAME} |
-ROW |4100 |29226 |Application|Filesystem {#FSNAME} |
-ROW |4101 |29227 |Application|Filesystem {#FSNAME} |
-ROW |4102 |29230 |Application|Interface {#IFNAME} |
-ROW |4103 |29231 |Application|Interface {#IFNAME} |
-ROW |4104 |29232 |Application|Interface {#IFNAME} |
-ROW |4105 |29233 |Application|Interface {#IFNAME} |
-ROW |4106 |29234 |Application|Interface {#IFNAME} |
-ROW |4107 |29235 |Application|Interface {#IFNAME} |
-ROW |4108 |29236 |Application|Interface {#IFNAME} |
-ROW |4109 |29237 |Application|Interface {#IFNAME} |
-ROW |4110 |29238 |Application|Filesystem {#FSNAME} |
-ROW |4111 |29239 |Application|Filesystem {#FSNAME} |
-ROW |4112 |29240 |Application|Filesystem {#FSNAME} |
-ROW |4113 |29241 |Application|Filesystem {#FSNAME} |
-ROW |4114 |29244 |Application|Interface {#IFNAME} |
-ROW |4115 |29245 |Application|Interface {#IFNAME} |
-ROW |4116 |29246 |Application|Interface {#IFNAME} |
-ROW |4117 |29247 |Application|Interface {#IFNAME} |
-ROW |4118 |29248 |Application|Interface {#IFNAME} |
-ROW |4119 |29249 |Application|Interface {#IFNAME} |
-ROW |4120 |29250 |Application|Interface {#IFNAME} |
-ROW |4121 |29251 |Application|Interface {#IFNAME} |
-ROW |4122 |29432 |Application|Filesystem {#FSNAME} |
-ROW |4123 |29433 |Application|Filesystem {#FSNAME} |
-ROW |4124 |29445 |Application|Filesystem {#FSNAME} |
-ROW |4125 |29446 |Application|Filesystem {#FSNAME} |
-ROW |4126 |29447 |Application|Filesystem {#FSNAME} |
-ROW |4127 |29434 |Application|Disk {#DEVNAME} |
-ROW |4128 |29435 |Application|Disk {#DEVNAME} |
-ROW |4129 |29448 |Application|Disk {#DEVNAME} |
-ROW |4130 |29449 |Application|Disk {#DEVNAME} |
-ROW |4131 |29452 |Application|Disk {#DEVNAME} |
-ROW |4132 |29453 |Application|Disk {#DEVNAME} |
-ROW |4133 |29436 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4134 |29437 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4135 |29438 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4136 |29439 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4137 |29440 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4138 |29441 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4139 |29442 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4140 |29443 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4141 |29444 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4142 |29512 |Application|Filesystem {#FSNAME} |
-ROW |4143 |29513 |Application|Filesystem {#FSNAME} |
-ROW |4144 |29514 |Application|Filesystem {#FSNAME} |
-ROW |4145 |29521 |Application|Filesystem {#FSNAME} |
-ROW |4146 |29522 |Application|Filesystem {#FSNAME} |
-ROW |4147 |29523 |Application|Filesystem {#FSNAME} |
-ROW |4148 |29720 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4149 |29721 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4150 |29722 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4151 |29723 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4152 |29724 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4153 |29725 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4154 |29726 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4155 |29727 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4156 |29728 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4157 |29729 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4158 |29730 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4159 |29731 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4160 |29732 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4161 |29733 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4162 |29734 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4163 |29735 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4164 |29736 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4165 |29737 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4166 |29787 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4167 |29788 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4168 |29789 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4169 |29790 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4170 |29791 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4171 |29792 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4172 |29793 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4173 |29794 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4174 |29795 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4175 |29796 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4176 |29797 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4177 |29798 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4178 |29799 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4179 |29800 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4180 |29801 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4181 |29802 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4182 |29803 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4183 |29804 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4184 |29805 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4185 |29806 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4186 |29807 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4187 |29808 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4188 |29809 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4189 |29810 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4190 |29811 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4191 |29812 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4192 |29813 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4193 |29814 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4194 |29815 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4195 |29816 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4196 |29817 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4197 |29818 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4198 |29819 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4199 |29820 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
-ROW |4200 |27032 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4201 |27191 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4202 |27332 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4203 |27461 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4204 |27531 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4205 |27567 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4206 |27630 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4207 |27653 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4208 |27733 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4209 |27799 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4210 |27955 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4211 |28129 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4212 |28281 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4213 |28956 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4214 |27099 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4215 |27100 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4216 |27101 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4217 |27102 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4218 |27103 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4219 |27104 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4220 |27105 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4221 |27106 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4222 |27107 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4223 |27181 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4224 |27182 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4225 |27183 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4226 |27184 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4227 |27185 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4228 |27186 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4229 |27187 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4230 |27188 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4231 |27189 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4232 |27216 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4233 |27217 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4234 |27218 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4235 |27219 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4236 |27220 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4237 |27221 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4238 |27222 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4239 |27223 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4240 |27224 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4241 |27252 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4242 |27253 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4243 |27254 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4244 |27255 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4245 |27256 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4246 |27257 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4247 |27258 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4248 |27259 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4249 |27260 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4250 |27273 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4251 |27274 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4252 |27275 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4253 |27276 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4254 |27277 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4255 |27278 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4256 |27279 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4257 |27280 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4258 |27281 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4259 |27322 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4260 |27323 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4261 |27324 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4262 |27325 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4263 |27326 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4264 |27327 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4265 |27328 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4266 |27329 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4267 |27330 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4268 |27451 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4269 |27452 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4270 |27453 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4271 |27454 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4272 |27455 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4273 |27456 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4274 |27457 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4275 |27458 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4276 |27459 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4277 |27487 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4278 |27488 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4279 |27489 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4280 |27490 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4281 |27491 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4282 |27492 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4283 |27493 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4284 |27494 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4285 |27495 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4286 |27521 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4287 |27522 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4288 |27523 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4289 |27524 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4290 |27525 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4291 |27526 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4292 |27527 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4293 |27528 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4294 |27529 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4295 |27557 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4296 |27558 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4297 |27559 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4298 |27560 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4299 |27561 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4300 |27562 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4301 |27563 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4302 |27564 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4303 |27565 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4304 |27643 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4305 |27644 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4306 |27645 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4307 |27646 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4308 |27647 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4309 |27648 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4310 |27649 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4311 |27650 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4312 |27651 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4313 |27723 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4314 |27724 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4315 |27725 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4316 |27726 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4317 |27727 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4318 |27728 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4319 |27729 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4320 |27730 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4321 |27731 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4322 |27757 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4323 |27758 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4324 |27759 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4325 |27760 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4326 |27761 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4327 |27762 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4328 |27763 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4329 |27764 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4330 |27765 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4331 |27789 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4332 |27790 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4333 |27791 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4334 |27792 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4335 |27793 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4336 |27794 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4337 |27795 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4338 |27796 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4339 |27797 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4340 |27873 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4341 |27874 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4342 |27875 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4343 |27876 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4344 |27877 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4345 |27878 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4346 |27879 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4347 |27880 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4348 |27881 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4349 |27910 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4350 |27911 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4351 |27912 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4352 |27913 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4353 |27914 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4354 |27915 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4355 |27916 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4356 |27917 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4357 |27918 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4358 |27945 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4359 |27946 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4360 |27947 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4361 |27948 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4362 |27949 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4363 |27950 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4364 |27951 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4365 |27952 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4366 |27953 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4367 |28119 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4368 |28120 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4369 |28121 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4370 |28122 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4371 |28123 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4372 |28124 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4373 |28125 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4374 |28126 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4375 |28127 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4376 |28224 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4377 |28225 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4378 |28226 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4379 |28227 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4380 |28228 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4381 |28229 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4382 |28230 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4383 |28231 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4384 |28232 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4385 |28294 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4386 |28295 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4387 |28296 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4388 |28297 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4389 |28298 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4390 |28299 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4391 |28300 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4392 |28301 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4393 |28302 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4394 |28969 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4395 |28970 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4396 |28971 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4397 |28972 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4398 |28973 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4399 |28974 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4400 |28975 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4401 |28976 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4402 |28977 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4403 |28006 |Application|Interface {#IFDESCR} |
-ROW |4404 |28007 |Application|Interface {#IFDESCR} |
-ROW |4405 |28008 |Application|Interface {#IFDESCR} |
-ROW |4406 |28009 |Application|Interface {#IFDESCR} |
-ROW |4407 |28010 |Application|Interface {#IFDESCR} |
-ROW |4408 |28011 |Application|Interface {#IFDESCR} |
-ROW |4409 |28012 |Application|Interface {#IFDESCR} |
-ROW |4410 |28013 |Application|Interface {#IFDESCR} |
-ROW |4411 |28014 |Application|Interface {#IFDESCR} |
-ROW |4412 |27079 |Application|Interface {#IFDESCR} |
-ROW |4413 |27080 |Application|Interface {#IFDESCR} |
-ROW |4414 |27081 |Application|Interface {#IFDESCR} |
-ROW |4415 |27082 |Application|Interface {#IFDESCR} |
-ROW |4416 |27083 |Application|Interface {#IFDESCR} |
-ROW |4417 |27084 |Application|Interface {#IFDESCR} |
-ROW |4418 |27085 |Application|Interface {#IFDESCR} |
-ROW |4419 |27086 |Application|Interface {#IFDESCR} |
-ROW |4420 |27087 |Application|Interface {#IFDESCR} |
-ROW |4421 |27620 |Application|Interface {#IFDESCR} |
-ROW |4422 |27621 |Application|Interface {#IFDESCR} |
-ROW |4423 |27622 |Application|Interface {#IFDESCR} |
-ROW |4424 |27623 |Application|Interface {#IFDESCR} |
-ROW |4425 |27624 |Application|Interface {#IFDESCR} |
-ROW |4426 |27625 |Application|Interface {#IFDESCR} |
-ROW |4427 |27626 |Application|Interface {#IFDESCR} |
-ROW |4428 |27627 |Application|Interface {#IFDESCR} |
-ROW |4429 |27628 |Application|Interface {#IFDESCR} |
-ROW |4430 |27977 |Application|Interface {#IFDESCR} |
-ROW |4431 |27978 |Application|Interface {#IFDESCR} |
-ROW |4432 |27979 |Application|Interface {#IFDESCR} |
-ROW |4433 |27980 |Application|Interface {#IFDESCR} |
-ROW |4434 |27981 |Application|Interface {#IFDESCR} |
-ROW |4435 |27982 |Application|Interface {#IFDESCR} |
-ROW |4436 |27983 |Application|Interface {#IFDESCR} |
-ROW |4437 |27984 |Application|Interface {#IFDESCR} |
-ROW |4438 |27985 |Application|Interface {#IFDESCR} |
-ROW |4439 |27119 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4440 |27120 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4441 |27121 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4442 |27122 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4443 |27123 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4444 |27124 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4445 |27125 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4446 |27126 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4447 |27127 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4448 |29078 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4449 |29079 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4450 |29080 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4451 |29081 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4452 |29082 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4453 |29083 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4454 |29084 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4455 |29085 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4456 |29086 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4457 |30027 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4458 |30028 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4459 |30029 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4460 |30030 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4461 |30031 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4462 |30032 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4463 |30033 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4464 |30034 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4465 |30035 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4466 |30036 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4467 |30037 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4468 |30038 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4469 |30039 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4470 |30040 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4471 |30041 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4472 |30042 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
-ROW |4473 |30160 |Application|Filesystem {#FSNAME} |
-ROW |4474 |30161 |Application|Filesystem {#FSNAME} |
-ROW |4475 |30162 |Application|Filesystem {#FSNAME} |
-ROW |4476 |30166 |Application|Filesystem {#FSNAME} |
-ROW |4477 |30167 |Application|Filesystem {#FSNAME} |
-ROW |4478 |30168 |Application|Filesystem {#FSNAME} |
-ROW |4479 |30178 |Application|Filesystem {#FSNAME} |
-ROW |4480 |30179 |Application|Filesystem {#FSNAME} |
-ROW |4481 |30180 |Application|Filesystem {#FSNAME} |
-ROW |4482 |30184 |Application|Filesystem {#FSNAME} |
-ROW |4483 |30185 |Application|Filesystem {#FSNAME} |
-ROW |4484 |30186 |Application|Filesystem {#FSNAME} |
-ROW |4485 |30196 |Application|HAProxy frontend {#PXNAME} |
-ROW |4486 |30206 |Application|HAProxy frontend {#PXNAME} |
-ROW |4487 |30207 |Application|HAProxy frontend {#PXNAME} |
-ROW |4488 |30208 |Application|HAProxy frontend {#PXNAME} |
-ROW |4489 |30209 |Application|HAProxy frontend {#PXNAME} |
-ROW |4490 |30210 |Application|HAProxy frontend {#PXNAME} |
-ROW |4491 |30211 |Application|HAProxy frontend {#PXNAME} |
-ROW |4492 |30212 |Application|HAProxy frontend {#PXNAME} |
-ROW |4493 |30213 |Application|HAProxy frontend {#PXNAME} |
-ROW |4494 |30214 |Application|HAProxy frontend {#PXNAME} |
-ROW |4495 |30215 |Application|HAProxy frontend {#PXNAME} |
-ROW |4496 |30216 |Application|HAProxy frontend {#PXNAME} |
-ROW |4497 |30217 |Application|HAProxy frontend {#PXNAME} |
-ROW |4498 |30218 |Application|HAProxy frontend {#PXNAME} |
-ROW |4499 |30197 |Application|HAProxy backend {#PXNAME} |
-ROW |4500 |30198 |Application|HAProxy backend {#PXNAME} |
-ROW |4501 |30199 |Application|HAProxy backend {#PXNAME} |
-ROW |4502 |30200 |Application|HAProxy backend {#PXNAME} |
-ROW |4503 |30201 |Application|HAProxy backend {#PXNAME} |
-ROW |4504 |30202 |Application|HAProxy backend {#PXNAME} |
-ROW |4505 |30203 |Application|HAProxy backend {#PXNAME} |
-ROW |4506 |30204 |Application|HAProxy backend {#PXNAME} |
-ROW |4507 |30205 |Application|HAProxy backend {#PXNAME} |
-ROW |4508 |30219 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4509 |30220 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4510 |30221 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4511 |30222 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4512 |30223 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4513 |30224 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4514 |30225 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4515 |30226 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4516 |30227 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4517 |30228 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4518 |30229 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4519 |30239 |Application|HAProxy frontend {#PXNAME} |
-ROW |4520 |30249 |Application|HAProxy frontend {#PXNAME} |
-ROW |4521 |30250 |Application|HAProxy frontend {#PXNAME} |
-ROW |4522 |30251 |Application|HAProxy frontend {#PXNAME} |
-ROW |4523 |30252 |Application|HAProxy frontend {#PXNAME} |
-ROW |4524 |30253 |Application|HAProxy frontend {#PXNAME} |
-ROW |4525 |30254 |Application|HAProxy frontend {#PXNAME} |
-ROW |4526 |30255 |Application|HAProxy frontend {#PXNAME} |
-ROW |4527 |30256 |Application|HAProxy frontend {#PXNAME} |
-ROW |4528 |30257 |Application|HAProxy frontend {#PXNAME} |
-ROW |4529 |30258 |Application|HAProxy frontend {#PXNAME} |
-ROW |4530 |30259 |Application|HAProxy frontend {#PXNAME} |
-ROW |4531 |30260 |Application|HAProxy frontend {#PXNAME} |
-ROW |4532 |30261 |Application|HAProxy frontend {#PXNAME} |
-ROW |4533 |30240 |Application|HAProxy backend {#PXNAME} |
-ROW |4534 |30241 |Application|HAProxy backend {#PXNAME} |
-ROW |4535 |30242 |Application|HAProxy backend {#PXNAME} |
-ROW |4536 |30243 |Application|HAProxy backend {#PXNAME} |
-ROW |4537 |30244 |Application|HAProxy backend {#PXNAME} |
-ROW |4538 |30245 |Application|HAProxy backend {#PXNAME} |
-ROW |4539 |30246 |Application|HAProxy backend {#PXNAME} |
-ROW |4540 |30247 |Application|HAProxy backend {#PXNAME} |
-ROW |4541 |30248 |Application|HAProxy backend {#PXNAME} |
-ROW |4542 |30262 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4543 |30263 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4544 |30264 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4545 |30265 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4546 |30266 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4547 |30267 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4548 |30268 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4549 |30269 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4550 |30270 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4551 |30271 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4552 |30272 |Application|HAProxy {#PXNAME} {#SVNAME} |
-ROW |4553 |30348 |Application|Redis: DB {#DB} |
-ROW |4554 |30349 |Application|Redis: DB {#DB} |
-ROW |4555 |30350 |Application|Redis: DB {#DB} |
-ROW |4556 |30396 |Application|Redis: Slave {#SLAVE_IP}:{#SLAVE_PORT} |
-ROW |4557 |30573 |Application|Docker: Container {#NAME} |
-ROW |4558 |30574 |Application|Docker: Container {#NAME} |
-ROW |4559 |30575 |Application|Docker: Container {#NAME} |
-ROW |4560 |30576 |Application|Docker: Container {#NAME} |
-ROW |4561 |30577 |Application|Docker: Container {#NAME} |
-ROW |4562 |30578 |Application|Docker: Container {#NAME} |
-ROW |4563 |30579 |Application|Docker: Container {#NAME} |
-ROW |4564 |30580 |Application|Docker: Container {#NAME} |
-ROW |4565 |30581 |Application|Docker: Container {#NAME} |
-ROW |4566 |30582 |Application|Docker: Container {#NAME} |
-ROW |4567 |30583 |Application|Docker: Container {#NAME} |
-ROW |4568 |30584 |Application|Docker: Container {#NAME} |
-ROW |4569 |30585 |Application|Docker: Container {#NAME} |
-ROW |4570 |30586 |Application|Docker: Container {#NAME} |
-ROW |4571 |30587 |Application|Docker: Container {#NAME} |
-ROW |4572 |30588 |Application|Docker: Container {#NAME} |
-ROW |4573 |30589 |Application|Docker: Container {#NAME} |
-ROW |4574 |30590 |Application|Docker: Container {#NAME} |
-ROW |4575 |30591 |Application|Docker: Container {#NAME} |
-ROW |4576 |30592 |Application|Docker: Container {#NAME} |
-ROW |4577 |30593 |Application|Docker: Container {#NAME} |
-ROW |4578 |30594 |Application|Docker: Container {#NAME} |
-ROW |4579 |30595 |Application|Docker: Container {#NAME} |
-ROW |4580 |30596 |Application|Docker: Container {#NAME} |
-ROW |4581 |30597 |Application|Docker: Container {#NAME} |
-ROW |4582 |30598 |Application|Docker: Container {#NAME} |
-ROW |4583 |30599 |Application|Docker: Container {#NAME} |
-ROW |4584 |30600 |Application|Docker: Container {#NAME} |
-ROW |4585 |30601 |Application|Docker: Container {#NAME} |
-ROW |4586 |30602 |Application|Docker: Container {#NAME} |
-ROW |4587 |30603 |Application|Docker: Container {#NAME} |
-ROW |4588 |30604 |Application|Docker: Container {#NAME} |
-ROW |4589 |30605 |Application|Docker: Container {#NAME} |
-ROW |4590 |30606 |Application|Docker: Container {#NAME} |
-ROW |4591 |30607 |Application|Docker: Container {#NAME} |
-ROW |4592 |30608 |Application|Docker: Container {#NAME} |
-ROW |4593 |30609 |Application|Docker: Image {#NAME} |
-ROW |4594 |30610 |Application|Docker: Image {#NAME} |
-ROW |4595 |30688 |Application|IPMI {#SENSOR_TYPE} |
-ROW |4596 |30689 |Application|IPMI {#SENSOR_TYPE} |
-ROW |4597 |30714 |Application|ES {#ES.NODE} |
-ROW |4598 |30715 |Application|ES {#ES.NODE} |
-ROW |4599 |30716 |Application|ES {#ES.NODE} |
-ROW |4600 |30717 |Application|ES {#ES.NODE} |
-ROW |4601 |30718 |Application|ES {#ES.NODE} |
-ROW |4602 |30720 |Application|ES {#ES.NODE} |
-ROW |4603 |30721 |Application|ES {#ES.NODE} |
-ROW |4604 |30722 |Application|ES {#ES.NODE} |
-ROW |4605 |30723 |Application|ES {#ES.NODE} |
-ROW |4606 |30724 |Application|ES {#ES.NODE} |
-ROW |4607 |30725 |Application|ES {#ES.NODE} |
-ROW |4608 |30726 |Application|ES {#ES.NODE} |
-ROW |4609 |30727 |Application|ES {#ES.NODE} |
-ROW |4610 |30728 |Application|ES {#ES.NODE} |
-ROW |4611 |30729 |Application|ES {#ES.NODE} |
-ROW |4612 |30730 |Application|ES {#ES.NODE} |
-ROW |4613 |30731 |Application|ES {#ES.NODE} |
-ROW |4614 |30732 |Application|ES {#ES.NODE} |
-ROW |4615 |30733 |Application|ES {#ES.NODE} |
-ROW |4616 |30734 |Application|ES {#ES.NODE} |
-ROW |4617 |30735 |Application|ES {#ES.NODE} |
-ROW |4618 |30736 |Application|ES {#ES.NODE} |
-ROW |4619 |30737 |Application|ES {#ES.NODE} |
-ROW |4620 |30738 |Application|ES {#ES.NODE} |
-ROW |4621 |30740 |Application|ES {#ES.NODE} |
-ROW |4622 |30741 |Application|ES {#ES.NODE} |
-ROW |4623 |30742 |Application|ES {#ES.NODE} |
-ROW |4624 |30745 |Application|ES {#ES.NODE} |
-ROW |4625 |30748 |Application|ES {#ES.NODE} |
-ROW |4626 |30749 |Application|ES {#ES.NODE} |
-ROW |4627 |30750 |Application|ES {#ES.NODE} |
-ROW |4628 |30751 |Application|ES {#ES.NODE} |
-ROW |4629 |30752 |Application|ES {#ES.NODE} |
-ROW |4630 |30753 |Application|ES {#ES.NODE} |
-ROW |4631 |30755 |Application|ES {#ES.NODE} |
-ROW |4632 |30757 |Application|ES {#ES.NODE} |
-ROW |4633 |30758 |Application|ES {#ES.NODE} |
-ROW |4634 |30762 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4635 |30772 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4636 |30773 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4637 |30774 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4638 |30775 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4639 |30776 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4640 |30777 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4641 |30778 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4642 |30779 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4643 |30763 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4644 |30764 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4645 |30765 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4646 |30766 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4647 |30767 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4648 |30768 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4649 |30769 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4650 |30770 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4651 |30771 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4652 |30780 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4653 |30781 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4654 |30782 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4655 |30783 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4656 |30784 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4657 |30785 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4658 |30786 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4659 |30787 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4660 |30788 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4661 |30794 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4662 |30804 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4663 |30805 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4664 |30806 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4665 |30807 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4666 |30808 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4667 |30809 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4668 |30810 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4669 |30811 |Application|HAProxy TCP Frontend {#PXNAME} |
-ROW |4670 |30795 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4671 |30796 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4672 |30797 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4673 |30798 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4674 |30799 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4675 |30800 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4676 |30801 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4677 |30802 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4678 |30803 |Application|HAProxy TCP Backend {#PXNAME} |
-ROW |4679 |30812 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4680 |30813 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4681 |30814 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4682 |30815 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4683 |30816 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4684 |30817 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4685 |30818 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4686 |30819 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4687 |30820 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
-ROW |4688 |30877 |Application|ClickHouse: Dictionary "{#NAME}" |
-ROW |4689 |30878 |Application|ClickHouse: Dictionary "{#NAME}" |
-ROW |4690 |30879 |Application|ClickHouse: Dictionary "{#NAME}" |
-ROW |4691 |30880 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4692 |30881 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4693 |30882 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4694 |30883 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4695 |30884 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4696 |30885 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4697 |30886 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4698 |30887 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4699 |30888 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4700 |30889 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4701 |30890 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4702 |30891 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
-ROW |4703 |30892 |Application|ClickHouse: DB "{#DB}" |
-ROW |4704 |30893 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
-ROW |4705 |30894 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
-ROW |4706 |30895 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
-ROW |4707 |30964 |Application|Etcd peer {#ETCD.PEER} |
-ROW |4708 |30965 |Application|Etcd peer {#ETCD.PEER} |
-ROW |4709 |30966 |Application|Etcd peer {#ETCD.PEER} |
-ROW |4710 |30967 |Application|Etcd peer {#ETCD.PEER} |
-ROW |4711 |31006 |Application|{#APPPOOL} |
-ROW |4712 |31007 |Application|{#APPPOOL} |
-ROW |4713 |31008 |Application|{#APPPOOL} |
-ROW |4714 |31009 |Application|{#APPPOOL} |
-ROW |4715 |31048 |Application|{#APPPOOL} |
-ROW |4716 |31049 |Application|{#APPPOOL} |
-ROW |4717 |31050 |Application|{#APPPOOL} |
-ROW |4718 |31051 |Application|{#APPPOOL} |
-ROW |4719 |31133 |Application|MSSQL Availability Group \'{#GROUP_NAME}\' |
-ROW |4720 |31134 |Application|MSSQL Availability Group \'{#GROUP_NAME}\' |
-ROW |4721 |31135 |Application|MSSQL Availability Group \'{#GROUP_NAME}\' |
-ROW |4722 |31136 |Application|MSSQL Availability Group \'{#GROUP_NAME}\' |
-ROW |4723 |31137 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4724 |31138 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4725 |31139 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4726 |31140 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4727 |31141 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4728 |31142 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4729 |31143 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4730 |31144 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4731 |31145 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4732 |31146 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4733 |31147 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4734 |31148 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4735 |31149 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4736 |31150 |Application|MSSQL Database \'{#DBNAME}\' |
-ROW |4737 |31151 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\' |
-ROW |4738 |31152 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\' |
-ROW |4739 |31153 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Local DB \'{#DBNAME}\' |
-ROW |4740 |31154 |Application|MSSQL Mirroring \'{#DBNAME}\' |
-ROW |4741 |31155 |Application|MSSQL Mirroring \'{#DBNAME}\' |
-ROW |4742 |31156 |Application|MSSQL Mirroring \'{#DBNAME}\' |
-ROW |4743 |31157 |Application|MSSQL Mirroring \'{#DBNAME}\' |
-ROW |4744 |31158 |Application|MSSQL Mirroring \'{#DBNAME}\' |
-ROW |4745 |31161 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4746 |31162 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4747 |31163 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4748 |31164 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4749 |31165 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4750 |31166 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4751 |31167 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Replica \'{#REPLICA_NAME}\'|
-ROW |4752 |31258 |Application|Oracle Archivelog |
-ROW |4753 |31259 |Application|Oracle Archivelog |
-ROW |4754 |31260 |Application|Oracle Archivelog |
-ROW |4755 |31261 |Application|Oracle ASM |
-ROW |4756 |31262 |Application|Oracle ASM |
-ROW |4757 |31263 |Application|Oracle ASM |
-ROW |4758 |31264 |Application|Oracle {#TYPE} |
-ROW |4759 |31265 |Application|Oracle {#TYPE} |
-ROW |4760 |31266 |Application|Oracle {#TYPE} |
-ROW |4761 |31267 |Application|Oracle {#TYPE} |
-ROW |4762 |31268 |Application|Oracle PDB |
-ROW |4763 |31269 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4764 |31270 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4765 |31271 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4766 |31272 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4767 |31273 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4768 |33170 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4769 |33171 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4770 |31335 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4771 |31336 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4772 |31337 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4773 |31338 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4774 |31339 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4775 |31340 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4776 |31341 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4777 |31342 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4778 |31343 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4779 |31344 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4780 |31345 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4781 |31346 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4782 |31347 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4783 |31348 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4784 |31349 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4785 |31350 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4786 |31351 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4787 |31352 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4788 |31353 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4789 |31354 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4790 |31355 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4791 |31356 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4792 |31357 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4793 |31358 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4794 |31359 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4795 |31360 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4796 |31361 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4797 |31362 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4798 |31363 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4799 |31370 |Application|Disk {#DEVNAME} |
-ROW |4800 |31371 |Application|Disk {#DEVNAME} |
-ROW |4801 |31379 |Application|Disk {#DEVNAME} |
-ROW |4802 |31380 |Application|Disk {#DEVNAME} |
-ROW |4803 |31382 |Application|Disk {#DEVNAME} |
-ROW |4804 |31383 |Application|Disk {#DEVNAME} |
-ROW |4805 |31373 |Application|Disk {#DEVNAME} |
-ROW |4806 |31374 |Application|Disk {#DEVNAME} |
-ROW |4807 |31385 |Application|Disk {#DEVNAME} |
-ROW |4808 |31386 |Application|Disk {#DEVNAME} |
-ROW |4809 |31388 |Application|Disk {#DEVNAME} |
-ROW |4810 |31389 |Application|Disk {#DEVNAME} |
-ROW |4811 |31376 |Application|Disk {#DEVNAME} |
-ROW |4812 |31377 |Application|Disk {#DEVNAME} |
-ROW |4813 |31391 |Application|Disk {#DEVNAME} |
-ROW |4814 |31392 |Application|Disk {#DEVNAME} |
-ROW |4815 |31394 |Application|Disk {#DEVNAME} |
-ROW |4816 |31395 |Application|Disk {#DEVNAME} |
-ROW |4817 |31433 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4818 |31434 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4819 |31435 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4820 |31436 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4821 |31437 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4822 |31438 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4823 |31453 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4824 |31454 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4825 |31455 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4826 |31439 |Application|Disk {#DEVNAME} |
-ROW |4827 |31440 |Application|Disk {#DEVNAME} |
-ROW |4828 |31441 |Application|Disk {#DEVNAME} |
-ROW |4829 |31442 |Application|Disk {#DEVNAME} |
-ROW |4830 |33321 |Application|Disk {#DEVNAME} |
-ROW |4831 |33322 |Application|Disk {#DEVNAME} |
-ROW |4832 |33323 |Application|Disk {#DEVNAME} |
-ROW |4833 |33324 |Application|Disk {#DEVNAME} |
-ROW |4834 |31443 |Application|Disk {#DEVNAME} |
-ROW |4835 |31444 |Application|Disk {#DEVNAME} |
-ROW |4836 |31445 |Application|Disk {#DEVNAME} |
-ROW |4837 |31446 |Application|Disk {#DEVNAME} |
-ROW |4838 |33325 |Application|Disk {#DEVNAME} |
-ROW |4839 |33326 |Application|Disk {#DEVNAME} |
-ROW |4840 |33327 |Application|Disk {#DEVNAME} |
-ROW |4841 |33328 |Application|Disk {#DEVNAME} |
-ROW |4842 |31447 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4843 |31448 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4844 |31449 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4845 |31450 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4846 |31451 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4847 |31452 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4848 |31456 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4849 |31457 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4850 |31458 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4851 |31561 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4852 |31562 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4853 |31563 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4854 |31564 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4855 |31565 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4856 |31566 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4857 |31567 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4858 |31568 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4859 |31569 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4860 |31766 |Application|Oracle Archivelog |
-ROW |4861 |31767 |Application|Oracle Archivelog |
-ROW |4862 |31768 |Application|Oracle Archivelog |
-ROW |4863 |31769 |Application|Oracle {#TYPE} |
-ROW |4864 |31770 |Application|Oracle {#TYPE} |
-ROW |4865 |31771 |Application|Oracle {#TYPE} |
-ROW |4866 |31772 |Application|Oracle {#TYPE} |
-ROW |4867 |31773 |Application|Oracle ASM |
-ROW |4868 |31774 |Application|Oracle ASM |
-ROW |4869 |31775 |Application|Oracle ASM |
-ROW |4870 |31776 |Application|Oracle PDB |
-ROW |4871 |31777 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4872 |31778 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4873 |31779 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4874 |31780 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4875 |31781 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4876 |33168 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4877 |33169 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
-ROW |4878 |31807 |Application|Asterisk IAX trunks |
-ROW |4879 |31808 |Application|Asterisk IAX trunks |
-ROW |4880 |31809 |Application|Asterisk PJSIP trunks |
-ROW |4881 |31810 |Application|Asterisk PJSIP trunks |
-ROW |4882 |31811 |Application|Asterisk queue "{#QUEUE}" |
-ROW |4883 |31812 |Application|Asterisk queue "{#QUEUE}" |
-ROW |4884 |31813 |Application|Asterisk queue "{#QUEUE}" |
-ROW |4885 |31814 |Application|Asterisk SIP trunks |
-ROW |4886 |31815 |Application|Asterisk SIP trunks |
-ROW |4887 |31902 |Application|Disk {#DEVNAME} |
-ROW |4888 |31903 |Application|Disk {#DEVNAME} |
-ROW |4889 |31932 |Application|Disk {#DEVNAME} |
-ROW |4890 |31933 |Application|Disk {#DEVNAME} |
-ROW |4891 |31935 |Application|Disk {#DEVNAME} |
-ROW |4892 |31936 |Application|Disk {#DEVNAME} |
-ROW |4893 |31905 |Application|Filesystem {#FSNAME} |
-ROW |4894 |31906 |Application|Filesystem {#FSNAME} |
-ROW |4895 |31907 |Application|Filesystem {#FSNAME} |
-ROW |4896 |31908 |Application|Filesystem {#FSNAME} |
-ROW |4897 |31909 |Application|Interface {#IFNAME} |
-ROW |4898 |31910 |Application|Interface {#IFNAME} |
-ROW |4899 |31911 |Application|Interface {#IFNAME} |
-ROW |4900 |31912 |Application|Interface {#IFNAME} |
-ROW |4901 |31913 |Application|Interface {#IFNAME} |
-ROW |4902 |31914 |Application|Interface {#IFNAME} |
-ROW |4903 |31915 |Application|Interface {#IFNAME} |
-ROW |4904 |31916 |Application|Interface {#IFNAME} |
-ROW |4905 |31917 |Application|Disk {#DEVNAME} |
-ROW |4906 |31918 |Application|Disk {#DEVNAME} |
-ROW |4907 |31938 |Application|Disk {#DEVNAME} |
-ROW |4908 |31939 |Application|Disk {#DEVNAME} |
-ROW |4909 |31941 |Application|Disk {#DEVNAME} |
-ROW |4910 |31942 |Application|Disk {#DEVNAME} |
-ROW |4911 |31920 |Application|Filesystem {#FSNAME} |
-ROW |4912 |31921 |Application|Filesystem {#FSNAME} |
-ROW |4913 |31922 |Application|Filesystem {#FSNAME} |
-ROW |4914 |31923 |Application|Filesystem {#FSNAME} |
-ROW |4915 |31924 |Application|Interface {#IFNAME} |
-ROW |4916 |31925 |Application|Interface {#IFNAME} |
-ROW |4917 |31926 |Application|Interface {#IFNAME} |
-ROW |4918 |31927 |Application|Interface {#IFNAME} |
-ROW |4919 |31928 |Application|Interface {#IFNAME} |
-ROW |4920 |31929 |Application|Interface {#IFNAME} |
-ROW |4921 |31930 |Application|Interface {#IFNAME} |
-ROW |4922 |31931 |Application|Interface {#IFNAME} |
-ROW |4923 |32012 |Application|Filesystem {#FSNAME} |
-ROW |4924 |32013 |Application|Filesystem {#FSNAME} |
-ROW |4925 |32014 |Application|Filesystem {#FSNAME} |
-ROW |4926 |32015 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4927 |32016 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4928 |32017 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4929 |32018 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4930 |32019 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4931 |32020 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4932 |32040 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4933 |32041 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4934 |32042 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4935 |32021 |Application|Disk {#DEVNAME} |
-ROW |4936 |32022 |Application|Disk {#DEVNAME} |
-ROW |4937 |32023 |Application|Disk {#DEVNAME} |
-ROW |4938 |32024 |Application|Disk {#DEVNAME} |
-ROW |4939 |33329 |Application|Disk {#DEVNAME} |
-ROW |4940 |33330 |Application|Disk {#DEVNAME} |
-ROW |4941 |33331 |Application|Disk {#DEVNAME} |
-ROW |4942 |33332 |Application|Disk {#DEVNAME} |
-ROW |4943 |32026 |Application|Filesystem {#FSNAME} |
-ROW |4944 |32027 |Application|Filesystem {#FSNAME} |
-ROW |4945 |32028 |Application|Filesystem {#FSNAME} |
-ROW |4946 |32029 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4947 |32030 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4948 |32031 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4949 |32032 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4950 |32033 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4951 |32034 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4952 |32043 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4953 |32044 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4954 |32045 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4955 |32035 |Application|Disk {#DEVNAME} |
-ROW |4956 |32036 |Application|Disk {#DEVNAME} |
-ROW |4957 |32037 |Application|Disk {#DEVNAME} |
-ROW |4958 |32038 |Application|Disk {#DEVNAME} |
-ROW |4959 |33333 |Application|Disk {#DEVNAME} |
-ROW |4960 |33334 |Application|Disk {#DEVNAME} |
-ROW |4961 |33335 |Application|Disk {#DEVNAME} |
-ROW |4962 |33336 |Application|Disk {#DEVNAME} |
-ROW |4963 |32405 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4964 |32408 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4965 |32409 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4966 |32410 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4967 |32411 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4968 |32412 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4969 |32413 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4970 |32414 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4971 |32415 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4972 |32416 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4973 |32417 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4974 |32418 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4975 |32419 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4976 |32420 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4977 |32421 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4978 |32422 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4979 |32423 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4980 |32424 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4981 |32425 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4982 |32426 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4983 |32427 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4984 |32428 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4985 |32429 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4986 |32430 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4987 |32431 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4988 |32432 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4989 |32433 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4990 |32434 |Application|PostgreSQL: DB {#DBNAME} |
-ROW |4991 |32436 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4992 |32437 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4993 |32438 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4994 |32439 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |4995 |32442 |Application|{#JMXBROKERNAME} |
-ROW |4996 |32443 |Application|{#JMXBROKERNAME} |
-ROW |4997 |32444 |Application|{#JMXBROKERNAME} |
-ROW |4998 |32445 |Application|{#JMXBROKERNAME} |
-ROW |4999 |32446 |Application|{#JMXBROKERNAME} |
-ROW |5000 |32447 |Application|{#JMXBROKERNAME} |
-ROW |5001 |32448 |Application|{#JMXBROKERNAME} |
-ROW |5002 |32449 |Application|{#JMXBROKERNAME} |
-ROW |5003 |32450 |Application|{#JMXBROKERNAME} |
-ROW |5004 |32451 |Application|{#JMXBROKERNAME} |
-ROW |5005 |32452 |Application|{#JMXBROKERNAME} |
-ROW |5006 |32453 |Application|{#JMXBROKERNAME} |
-ROW |5007 |32454 |Application|{#JMXBROKERNAME} |
-ROW |5008 |32455 |Application|{#JMXBROKERNAME} |
-ROW |5009 |32456 |Application|{#JMXBROKERNAME} |
-ROW |5010 |32457 |Application|{#JMXBROKERNAME} |
-ROW |5011 |32458 |Application|{#JMXBROKERNAME} |
-ROW |5012 |32459 |Application|{#JMXBROKERNAME} |
-ROW |5013 |32460 |Application|{#JMXBROKERNAME} |
-ROW |5014 |32461 |Application|{#JMXBROKERNAME} |
-ROW |5015 |32462 |Application|{#JMXBROKERNAME} |
-ROW |5016 |32486 |Application|{#METRIC} |
-ROW |5017 |32487 |Application|{#METRIC} |
-ROW |5018 |32488 |Application|{#METRIC} |
-ROW |5019 |32489 |Application|{#METRIC} |
-ROW |5020 |32490 |Application|{#METRIC} |
-ROW |5021 |32491 |Application|{#METRIC} |
-ROW |5022 |32492 |Application|{#METRIC} |
-ROW |5023 |32493 |Application|{#METRIC} |
-ROW |5024 |32494 |Application|{#METRIC} |
-ROW |5025 |32495 |Application|{#METRIC} |
-ROW |5026 |32496 |Application|{#METRIC} |
-ROW |5027 |32497 |Application|{#METRIC} |
-ROW |5028 |32498 |Application|{#METRIC} |
-ROW |5029 |32499 |Application|{#METRIC} |
-ROW |5030 |32500 |Application|{#METRIC} |
-ROW |5031 |32501 |Application|{#METRIC} |
-ROW |5032 |32502 |Application|{#METRIC} |
-ROW |5033 |32503 |Application|{#METRIC} |
-ROW |5034 |32504 |Application|{#METRIC} |
-ROW |5035 |32505 |Application|{#METRIC} |
-ROW |5036 |32506 |Application|{#METRIC} |
-ROW |5037 |32507 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5038 |32508 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5039 |32509 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5040 |32510 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5041 |32511 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5042 |32512 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5043 |32513 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5044 |32514 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5045 |32515 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
-ROW |5046 |32170 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5047 |32171 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5048 |32172 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5049 |32173 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5050 |32174 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5051 |32175 |Application|Ceph {#HOST} OSD [{#CLASS}] |
-ROW |5052 |32528 |Application|Database {#INSTANCE} |
-ROW |5053 |32529 |Application|Database {#INSTANCE} |
-ROW |5054 |32530 |Application|Database {#INSTANCE} |
-ROW |5055 |32531 |Application|Database {#INSTANCE} |
-ROW |5056 |32532 |Application|Database {#INSTANCE} |
-ROW |5057 |32533 |Application|Database {#INSTANCE} |
-ROW |5058 |32534 |Application|Database {#INSTANCE} |
-ROW |5059 |32535 |Application|Database {#INSTANCE} |
-ROW |5060 |32536 |Application|Database {#INSTANCE} |
-ROW |5061 |32537 |Application|Database {#INSTANCE} |
-ROW |5062 |32538 |Application|Database {#INSTANCE} |
-ROW |5063 |32539 |Application|Database {#INSTANCE} |
-ROW |5064 |32540 |Application|Database {#INSTANCE} |
-ROW |5065 |32541 |Application|Database {#INSTANCE} |
-ROW |5066 |32542 |Application|Database {#INSTANCE} |
-ROW |5067 |32558 |Application|Database {#INSTANCE} |
-ROW |5068 |32559 |Application|Database {#INSTANCE} |
-ROW |5069 |32560 |Application|Database {#INSTANCE} |
-ROW |5070 |32561 |Application|Database {#INSTANCE} |
-ROW |5071 |32562 |Application|Database {#INSTANCE} |
-ROW |5072 |32563 |Application|Database {#INSTANCE} |
-ROW |5073 |32564 |Application|Database {#INSTANCE} |
-ROW |5074 |32565 |Application|Database {#INSTANCE} |
-ROW |5075 |32566 |Application|Database {#INSTANCE} |
-ROW |5076 |32567 |Application|Database {#INSTANCE} |
-ROW |5077 |32568 |Application|Database {#INSTANCE} |
-ROW |5078 |32569 |Application|Database {#INSTANCE} |
-ROW |5079 |32570 |Application|Database {#INSTANCE} |
-ROW |5080 |32571 |Application|Database {#INSTANCE} |
-ROW |5081 |32572 |Application|Database {#INSTANCE} |
-ROW |5082 |32672 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5083 |32673 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5084 |32674 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5085 |32675 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5086 |32676 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5087 |32677 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5088 |32678 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5089 |32679 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5090 |32680 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5091 |32681 |Application|Hadoop DataNode {#HOSTNAME} |
-ROW |5092 |32682 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5093 |32683 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5094 |32684 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5095 |32685 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5096 |32686 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5097 |32687 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5098 |32688 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5099 |32689 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5100 |32690 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5101 |32691 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5102 |32692 |Application|Hadoop NodeManager {#HOSTNAME} |
-ROW |5103 |32758 |Application|Kafka topic [{#JMXTOPIC}] |
-ROW |5104 |32759 |Application|Kafka topic [{#JMXTOPIC}] |
-ROW |5105 |32760 |Application|Kafka topic [{#JMXTOPIC}] |
-ROW |5106 |32761 |Application|Kafka topic [{#JMXTOPIC}] |
-ROW |5107 |32766 |Application|Tomcat: ProtocolHandler {#JMXVALUE} |
-ROW |5108 |32767 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5109 |32768 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5110 |32769 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5111 |32770 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5112 |32771 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5113 |32772 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
-ROW |5114 |32773 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
-ROW |5115 |32774 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
-ROW |5116 |32775 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
-ROW |5117 |32776 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
-ROW |5118 |32777 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5119 |32778 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5120 |32779 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
-ROW |5121 |32871 |Application|Vault: Token {#TOKEN_NAME} |
-ROW |5122 |32872 |Application|Vault: Token {#TOKEN_NAME} |
-ROW |5123 |32873 |Application|Vault: Token {#TOKEN_NAME} |
-ROW |5124 |32874 |Application|Vault: Mountpoint {#MOUNTPOINT} |
-ROW |5125 |32875 |Application|Vault: Mountpoint {#MOUNTPOINT} |
-ROW |5126 |32876 |Application|Vault: Replication |
-ROW |5127 |32877 |Application|Vault: Replication |
-ROW |5128 |32878 |Application|Vault: Replication |
-ROW |5129 |32879 |Application|Vault: Replication |
-ROW |5130 |32880 |Application|Vault: Replication |
-ROW |5131 |32881 |Application|Vault: Replication |
-ROW |5132 |32882 |Application|Vault: Replication |
-ROW |5133 |32883 |Application|Vault: Storage {#STORAGE} |
-ROW |5134 |32884 |Application|Vault: WAL |
-ROW |5135 |32885 |Application|Vault: WAL |
-ROW |5136 |32886 |Application|Vault: WAL |
-ROW |5137 |32887 |Application|Vault: WAL |
-ROW |5138 |32888 |Application|Vault: WAL |
-ROW |5139 |32889 |Application|Vault: WAL |
-ROW |5140 |33000 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5141 |33001 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5142 |33002 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5143 |33003 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5144 |33004 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5145 |33005 |Application|Zookeeper {#TYPE} {#CLIENT} |
-ROW |5146 |33096 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5147 |33097 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5148 |33098 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5149 |33099 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5150 |33100 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5151 |33101 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5152 |33102 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5153 |33103 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5154 |33104 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5155 |33105 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5156 |33106 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5157 |33107 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5158 |33108 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5159 |33109 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5160 |33110 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5161 |33111 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5162 |33112 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5163 |33113 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5164 |33114 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5165 |33115 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5166 |33116 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5167 |33117 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5168 |33118 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5169 |33119 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5170 |33120 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5171 |33121 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5172 |33122 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5173 |33123 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5174 |33124 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5175 |33125 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
-ROW |5176 |33178 |Application|PostgreSQL: Application {#APPLICATION} |
-ROW |5177 |33179 |Application|PostgreSQL: Application {#APPLICATION} |
-ROW |5178 |33180 |Application|PostgreSQL: Application {#APPLICATION} |
-ROW |5179 |33357 |Application|Node {#NODE.NAME} Health |
-ROW |5180 |33358 |Application|Node {#NODE.NAME} Health |
-ROW |5181 |33359 |Application|Node {#NODE.NAME} Health |
-ROW |5182 |33360 |Application|Node {#NODE.NAME} Health |
-ROW |5183 |33361 |Application|Node {#NODE.NAME} Health |
-ROW |5184 |33362 |Application|Node {#NODE.NAME} Health |
-ROW |5185 |33365 |Application|Node {#NODE.NAME} Health |
-ROW |5186 |33367 |Application|Node {#NODE.NAME} Health |
-ROW |5187 |33363 |Application|Node {#NODE.NAME} Inventory |
-ROW |5188 |33364 |Application|Node {#NODE.NAME} Inventory |
-ROW |5189 |33366 |Application|Node {#NODE.NAME} Inventory |
-ROW |5190 |33368 |Application|Node {#NODE.NAME} CPU |
-ROW |5191 |33369 |Application|{#VSERVER}{#FSNAME} |
-ROW |5192 |33370 |Application|{#VSERVER}{#FSNAME} |
-ROW |5193 |33371 |Application|{#VSERVER}{#FSNAME} |
-ROW |5194 |33372 |Application|{#VSERVER}{#FSNAME} |
-ROW |5195 |33373 |Application|{#VSERVER}{#FSNAME} |
-ROW |5196 |33374 |Application|{#VSERVER}{#FSNAME} |
-ROW |5197 |33375 |Application|Node {#NODE.NAME} HA |
-ROW |5198 |33376 |Application|Node {#NODE.NAME} HA |
-ROW |5199 |33377 |Application|{#IFDESCR} |
-ROW |5200 |33378 |Application|{#IFDESCR} |
-ROW |5201 |33379 |Application|{#IFDESCR} |
-ROW |5202 |33380 |Application|{#IFDESCR} |
-ROW |5203 |33381 |Application|{#IFDESCR} |
-ROW |5204 |33382 |Application|{#IFDESCR} |
-ROW |5205 |33383 |Application|{#IFDESCR} |
-ROW |5206 |33384 |Application|{#IFDESCR} |
-ROW |5207 |33385 |Application|{#IFDESCR} |
-ROW |5208 |33386 |Application|{#IFDESCR} |
-ROW |5209 |33387 |Application|{#IFDESCR} |
-ROW |5210 |33388 |Application|{#IFDESCR} |
-ROW |5211 |33467 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5212 |33468 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5213 |33469 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5214 |33470 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5215 |33471 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5216 |33472 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5217 |33473 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5218 |33474 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5219 |33475 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5220 |33476 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5221 |33477 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5222 |33478 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5223 |33479 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
-ROW |5224 |33480 |Application|Jenkins job [{#NAME}] |
-ROW |5225 |33481 |Application|Jenkins job [{#NAME}] |
-ROW |5226 |33482 |Application|Jenkins job [{#NAME}] |
-ROW |5227 |33483 |Application|Jenkins job [{#NAME}] |
-ROW |5228 |33484 |Application|Jenkins job [{#NAME}] |
-ROW |5229 |33485 |Application|Jenkins job [{#NAME}] |
-ROW |5230 |33486 |Application|Jenkins job [{#NAME}] |
-ROW |5231 |33487 |Application|Jenkins job [{#NAME}] |
-ROW |5232 |33488 |Application|Jenkins job [{#NAME}] |
-ROW |5233 |33489 |Application|Jenkins job [{#NAME}] |
-ROW |5234 |33490 |Application|Jenkins job [{#NAME}] |
-ROW |5235 |33524 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
-ROW |5236 |33525 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
-ROW |5237 |33526 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
-ROW |5238 |33527 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5239 |33528 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5240 |33529 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5241 |33530 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5242 |33531 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5243 |33532 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5244 |33533 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5245 |33534 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5246 |33535 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5247 |33536 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5248 |33537 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5249 |33538 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5250 |33539 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5251 |33540 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5252 |33541 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
-ROW |5253 |33552 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5254 |33553 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5255 |33554 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5256 |33555 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5257 |33556 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5258 |33557 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5259 |33558 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5260 |33559 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5261 |33560 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5262 |33561 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5263 |33562 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
-ROW |5264 |33563 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5265 |33564 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5266 |33565 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5267 |33566 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5268 |33567 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5269 |33568 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5270 |33569 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5271 |33570 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5272 |33571 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5273 |33572 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5274 |33573 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5275 |33574 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5276 |33575 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5277 |33576 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5278 |33577 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5279 |33578 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5280 |33579 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5281 |33580 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5282 |33581 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5283 |33582 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5284 |33584 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5285 |33585 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5286 |33586 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5287 |33587 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5288 |33588 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5289 |33589 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5290 |33590 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5291 |33591 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5292 |33592 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5293 |33593 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5294 |33594 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5295 |33595 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5296 |33596 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5297 |33597 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
-ROW |5298 |33598 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5299 |33599 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5300 |33600 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5301 |33601 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5302 |33602 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5303 |33603 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5304 |33604 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5305 |33605 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5306 |33606 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
-ROW |5307 |33607 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
-ROW |5308 |33608 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
-ROW |5309 |33609 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
-ROW |5310 |33610 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
-ROW |5311 |33611 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5312 |33612 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5313 |33613 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5314 |33614 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5315 |33615 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5316 |33616 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5317 |33617 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5318 |33618 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5319 |33619 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
-ROW |5320 |33635 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
-ROW |5321 |33636 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
-ROW |5322 |33637 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
-ROW |5323 |33659 |Application|{#DISKTYPE} {#NAME} |
-ROW |5324 |33660 |Application|{#DISKTYPE} {#NAME} |
-ROW |5325 |33661 |Application|{#DISKTYPE} {#NAME} |
-ROW |5326 |33662 |Application|{#DISKTYPE} {#NAME} |
-ROW |5327 |33663 |Application|{#DISKTYPE} {#NAME} |
-ROW |5328 |33664 |Application|{#DISKTYPE} {#NAME} |
-ROW |5329 |33665 |Application|{#DISKTYPE} {#NAME} |
-ROW |5330 |33666 |Application|{#DISKTYPE} {#NAME} |
-ROW |5331 |33667 |Application|{#DISKTYPE} {#NAME} |
-ROW |5332 |33671 |Application|{#DISKTYPE} {#NAME} |
-ROW |5333 |33672 |Application|{#DISKTYPE} {#NAME} |
-ROW |5334 |33673 |Application|{#DISKTYPE} {#NAME} |
-ROW |5335 |33674 |Application|{#DISKTYPE} {#NAME} |
-ROW |5336 |33675 |Application|{#DISKTYPE} {#NAME} |
-ROW |5337 |33676 |Application|{#DISKTYPE} {#NAME} |
-ROW |5338 |33677 |Application|{#DISKTYPE} {#NAME} |
-ROW |5339 |33678 |Application|{#DISKTYPE} {#NAME} |
-ROW |5340 |33679 |Application|{#DISKTYPE} {#NAME} |
-ROW |5341 |33703 |Application|BBU {#ID} |
-ROW |5342 |33704 |Application|BBU {#ID} |
-ROW |5343 |33705 |Application|Controller {#ID} |
-ROW |5344 |33706 |Application|Controller {#ID} |
-ROW |5345 |33707 |Application|Controller {#ID} |
-ROW |5346 |33708 |Application|Controller {#ID} |
-ROW |5347 |33709 |Application|Controller {#ID} |
-ROW |5348 |33710 |Application|Disk {#MODEL} |
-ROW |5349 |33712 |Application|Disk {#MODEL} |
-ROW |5350 |33713 |Application|Disk {#MODEL} |
-ROW |5351 |33711 |Application|Disk {#NAME} |
-ROW |5352 |33714 |Application|Enclosure {#NAME} |
-ROW |5353 |33715 |Application|Enclosure {#NAME} |
-ROW |5354 |33716 |Application|Enclosure {#NAME} |
-ROW |5355 |33717 |Application|FAN {#ID} |
-ROW |5356 |33718 |Application|FAN {#ID} |
-ROW |5357 |33719 |Application|LUN {#NAME} |
-ROW |5358 |33720 |Application|LUN {#NAME} |
-ROW |5359 |33721 |Application|LUN {#NAME} |
-ROW |5360 |33722 |Application|LUN {#NAME} |
-ROW |5361 |33723 |Application|LUN {#NAME} |
-ROW |5362 |33724 |Application|LUN {#NAME} |
-ROW |5363 |33725 |Application|LUN {#NAME} |
-ROW |5364 |33726 |Application|LUN {#NAME} |
-ROW |5365 |33727 |Application|LUN {#NAME} |
-ROW |5366 |33728 |Application|LUN {#NAME} |
-ROW |5367 |33729 |Application|LUN {#NAME} |
-ROW |5368 |33730 |Application|Node {#NODE} |
-ROW |5369 |33731 |Application|Node {#NODE} |
-ROW |5370 |33732 |Application|Node {#NODE} |
-ROW |5371 |33733 |Application|Node {#NODE} |
-ROW |5372 |33734 |Application|Node {#NODE} |
-ROW |5373 |33735 |Application|Node {#NODE} |
-ROW |5374 |33736 |Application|Node {#NODE} |
-ROW |5375 |33737 |Application|Node {#NODE} |
-ROW |5376 |33738 |Application|Pool {#MODEL} |
-ROW |5377 |33739 |Application|Pool {#MODEL} |
-ROW |5378 |33741 |Application|Pool {#MODEL} |
-ROW |5379 |33742 |Application|Pool {#MODEL} |
-ROW |5380 |33743 |Application|Pool {#MODEL} |
-ROW |5381 |33740 |Application|Pool {#NAME} |
-ROW |5382 |33814 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5383 |33815 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5384 |33816 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5385 |33817 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5386 |33818 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5387 |33819 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5388 |33820 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5389 |33821 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5390 |33822 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5391 |33823 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5392 |33824 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5393 |33825 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5394 |33826 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5395 |33827 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5396 |33828 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5397 |33829 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5398 |33830 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5399 |33831 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5400 |33832 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5401 |33833 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5402 |33834 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5403 |33835 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5404 |33836 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5405 |33837 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5406 |33838 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5407 |33839 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
-ROW |5408 |33840 |Application|MongoDB: {#DBNAME} |
-ROW |5409 |33841 |Application|MongoDB: {#DBNAME} |
-ROW |5410 |33842 |Application|MongoDB: {#DBNAME} |
-ROW |5411 |33843 |Application|MongoDB: {#DBNAME} |
-ROW |5412 |33844 |Application|MongoDB: {#DBNAME} |
-ROW |5413 |33845 |Application|MongoDB: {#DBNAME} |
-ROW |5414 |33846 |Application|MongoDB: {#DBNAME} |
-ROW |5415 |33847 |Application|MongoDB: {#DBNAME} |
-ROW |5416 |33848 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5417 |33849 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5418 |33850 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5419 |33851 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5420 |33852 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5421 |33853 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5422 |33854 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5423 |33855 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5424 |33856 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5425 |33857 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5426 |33858 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5427 |33859 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5428 |33860 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5429 |33861 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5430 |33862 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5431 |33863 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5432 |33864 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5433 |33865 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5434 |33866 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5435 |33867 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5436 |33868 |Application|MongoDB Replica Set: {#RS_NAME} |
-ROW |5437 |33926 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5438 |33927 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5439 |33928 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5440 |33929 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5441 |33930 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5442 |33931 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5443 |33932 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5444 |33933 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
-ROW |5445 |33934 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5446 |33935 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5447 |33936 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5448 |33937 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5449 |33938 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5450 |33939 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5451 |33940 |Application|MongoDB sharded cluster: {#DBNAME} |
-ROW |5452 |33942 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Non-Local DB \'{#DBNAME}\' |
-ROW |5453 |33943 |Application|MSSQL Available Group \'{#GROUP_NAME}\' Non-Local DB \'{#DBNAME}\' |
-ROW |5454 |33972 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5455 |33973 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5456 |33974 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5457 |33975 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5458 |33976 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5459 |33977 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5460 |33978 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5461 |33979 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5462 |33980 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5463 |33981 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5464 |34013 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5465 |34014 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5466 |34015 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5467 |34016 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5468 |34017 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5469 |34018 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5470 |34019 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5471 |34020 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5472 |34021 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5473 |34022 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5474 |34054 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5475 |34055 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5476 |34056 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5477 |34057 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5478 |34058 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5479 |34059 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5480 |34060 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5481 |34061 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5482 |34062 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5483 |34063 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5484 |34095 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5485 |34096 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5486 |34097 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5487 |34098 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5488 |34099 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5489 |34100 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5490 |34101 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5491 |34102 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5492 |34103 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5493 |34104 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5494 |34136 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5495 |34137 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5496 |34138 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5497 |34139 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5498 |34140 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5499 |34141 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5500 |34142 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5501 |34143 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5502 |34144 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5503 |34145 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5504 |34164 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5505 |34165 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5506 |34166 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5507 |34167 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5508 |34168 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5509 |34169 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5510 |34170 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5511 |34171 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5512 |34172 |Application|Interface {#IFNAME}({#IFALIAS}) |
-ROW |5513 |34173 |Application|Filesystem {#FSNAME} |
-ROW |5514 |34174 |Application|Filesystem {#FSNAME} |
-ROW |5515 |34175 |Application|Filesystem {#FSNAME} |
-ROW |5516 |34269 |Application|Volume "{#VOLUMENAME}" |
-ROW |5517 |34270 |Application|Volume "{#VOLUMENAME}" |
-ROW |5518 |34271 |Application|Volume "{#VOLUMENAME}" |
-ROW |5519 |34272 |Application|Volume "{#VOLUMENAME}" |
-ROW |5520 |34291 |Application|Volume "{#VOLUMENAME}" |
-ROW |5521 |34292 |Application|Volume "{#VOLUMENAME}" |
-ROW |5522 |34293 |Application|Volume "{#VOLUMENAME}" |
-ROW |5523 |34294 |Application|Volume "{#VOLUMENAME}" |
-ROW |5524 |34295 |Application|Volume "{#VOLUMENAME}" |
-ROW |5525 |34300 |Application|Volume "{#VOLUMENAME}" |
-ROW |5526 |34301 |Application|Volume "{#VOLUMENAME}" |
-ROW |5527 |34306 |Application|Volume "{#VOLUMENAME}" |
-ROW |5528 |34307 |Application|Volume "{#VOLUMENAME}" |
-ROW |5529 |34308 |Application|Volume "{#VOLUMENAME}" |
-ROW |5530 |34309 |Application|Volume "{#VOLUMENAME}" |
-ROW |5531 |34310 |Application|Volume "{#VOLUMENAME}" |
-ROW |5532 |34311 |Application|Volume "{#VOLUMENAME}" |
-ROW |5533 |34312 |Application|Volume "{#VOLUMENAME}" |
-ROW |5534 |34313 |Application|Volume "{#VOLUMENAME}" |
-ROW |5535 |34273 |Application|Chassis "{#ID}" |
-ROW |5536 |34274 |Application|Node "{#NODENAME}" disks |
-ROW |5537 |34275 |Application|Chassis "{#CHASSISID}" |
-ROW |5538 |34276 |Application|SVM "{#SVMNAME}" |
-ROW |5539 |34277 |Application|SVM "{#SVMNAME}" |
-ROW |5540 |34278 |Application|SVM "{#SVMNAME}" |
-ROW |5541 |34279 |Application|SVM "{#SVMNAME}" |
-ROW |5542 |34280 |Application|Node "{#NODENAME}" |
-ROW |5543 |34281 |Application|Node "{#NODENAME}" |
-ROW |5544 |34282 |Application|Node "{#NODENAME}" |
-ROW |5545 |34283 |Application|Node "{#NODENAME}" |
-ROW |5546 |34284 |Application|Node "{#NODENAME}" |
-ROW |5547 |34285 |Application|Node "{#NODENAME}" |
-ROW |5548 |34286 |Application|Node "{#NODENAME}" Ethernet ports |
-ROW |5549 |34287 |Application|Node "{#NODENAME}" FC ports |
-ROW |5550 |34288 |Application|Node "{#NODENAME}" FC ports |
-ROW |5551 |34289 |Application|SVM "{#SVMNAME}" |
-ROW |5552 |34290 |Application|SVM "{#SVMNAME}" |
+FIELDS|itemtagid|itemid|tag |value |
+ROW |1 |29124 |Application|CPU |
+ROW |2 |29125 |Application|CPU |
+ROW |3 |29126 |Application|CPU |
+ROW |4 |29127 |Application|CPU |
+ROW |5 |29128 |Application|CPU |
+ROW |6 |29129 |Application|CPU |
+ROW |7 |29130 |Application|CPU |
+ROW |8 |29131 |Application|CPU |
+ROW |9 |29132 |Application|CPU |
+ROW |10 |29133 |Application|CPU |
+ROW |11 |29134 |Application|CPU |
+ROW |12 |29135 |Application|CPU |
+ROW |13 |29136 |Application|CPU |
+ROW |14 |29137 |Application|CPU |
+ROW |15 |29138 |Application|CPU |
+ROW |16 |29139 |Application|CPU |
+ROW |17 |29199 |Application|CPU |
+ROW |18 |29148 |Application|General |
+ROW |19 |29149 |Application|General |
+ROW |20 |29150 |Application|General |
+ROW |21 |29151 |Application|General |
+ROW |22 |29152 |Application|General |
+ROW |23 |29153 |Application|General |
+ROW |24 |29154 |Application|General |
+ROW |25 |29155 |Application|General |
+ROW |26 |29156 |Application|General |
+ROW |27 |29158 |Application|Inventory |
+ROW |28 |29159 |Application|Inventory |
+ROW |29 |29160 |Application|Inventory |
+ROW |30 |29140 |Application|Memory |
+ROW |31 |29141 |Application|Memory |
+ROW |32 |29142 |Application|Memory |
+ROW |33 |29143 |Application|Memory |
+ROW |34 |29144 |Application|Memory |
+ROW |35 |29145 |Application|Memory |
+ROW |36 |31365 |Application|Memory |
+ROW |37 |10020 |Application|Monitoring agent |
+ROW |38 |10059 |Application|Monitoring agent |
+ROW |39 |23319 |Application|Monitoring agent |
+ROW |40 |29157 |Application|Security |
+ROW |41 |29147 |Application|Status |
+ROW |42 |29548 |Application|Status |
+ROW |43 |31375 |Application|Zabbix raw items |
+ROW |44 |31387 |Application|Zabbix raw items |
+ROW |45 |31390 |Application|Zabbix raw items |
+ROW |46 |10061 |Application|Zabbix server |
+ROW |47 |10062 |Application|Zabbix server |
+ROW |48 |10063 |Application|Zabbix server |
+ROW |49 |10064 |Application|Zabbix server |
+ROW |50 |10065 |Application|Zabbix server |
+ROW |51 |10066 |Application|Zabbix server |
+ROW |52 |22183 |Application|Zabbix server |
+ROW |53 |22185 |Application|Zabbix server |
+ROW |54 |22187 |Application|Zabbix server |
+ROW |55 |22189 |Application|Zabbix server |
+ROW |56 |22191 |Application|Zabbix server |
+ROW |57 |22196 |Application|Zabbix server |
+ROW |58 |22199 |Application|Zabbix server |
+ROW |59 |22219 |Application|Zabbix server |
+ROW |60 |22396 |Application|Zabbix server |
+ROW |61 |22399 |Application|Zabbix server |
+ROW |62 |22400 |Application|Zabbix server |
+ROW |63 |22401 |Application|Zabbix server |
+ROW |64 |22402 |Application|Zabbix server |
+ROW |65 |22404 |Application|Zabbix server |
+ROW |66 |22406 |Application|Zabbix server |
+ROW |67 |22408 |Application|Zabbix server |
+ROW |68 |22412 |Application|Zabbix server |
+ROW |69 |22414 |Application|Zabbix server |
+ROW |70 |22416 |Application|Zabbix server |
+ROW |71 |22418 |Application|Zabbix server |
+ROW |72 |22420 |Application|Zabbix server |
+ROW |73 |22422 |Application|Zabbix server |
+ROW |74 |22424 |Application|Zabbix server |
+ROW |75 |22426 |Application|Zabbix server |
+ROW |76 |22430 |Application|Zabbix server |
+ROW |77 |22689 |Application|Zabbix server |
+ROW |78 |23171 |Application|Zabbix server |
+ROW |79 |23251 |Application|Zabbix server |
+ROW |80 |23634 |Application|Zabbix server |
+ROW |81 |23661 |Application|Zabbix server |
+ROW |82 |23663 |Application|Zabbix server |
+ROW |83 |25366 |Application|Zabbix server |
+ROW |84 |25370 |Application|Zabbix server |
+ROW |85 |25665 |Application|Zabbix server |
+ROW |86 |25666 |Application|Zabbix server |
+ROW |87 |28248 |Application|Zabbix server |
+ROW |88 |28533 |Application|Zabbix server |
+ROW |89 |28535 |Application|Zabbix server |
+ROW |90 |28537 |Application|Zabbix server |
+ROW |91 |29822 |Application|Zabbix server |
+ROW |92 |33020 |Application|Zabbix server |
+ROW |93 |33021 |Application|Zabbix server |
+ROW |94 |33022 |Application|Zabbix server |
+ROW |95 |33023 |Application|Zabbix server |
+ROW |96 |10067 |Application|Zabbix proxy |
+ROW |97 |10068 |Application|Zabbix proxy |
+ROW |98 |10069 |Application|Zabbix proxy |
+ROW |99 |10070 |Application|Zabbix proxy |
+ROW |100 |10071 |Application|Zabbix proxy |
+ROW |101 |10072 |Application|Zabbix proxy |
+ROW |102 |23340 |Application|Zabbix proxy |
+ROW |103 |23341 |Application|Zabbix proxy |
+ROW |104 |23342 |Application|Zabbix proxy |
+ROW |105 |23343 |Application|Zabbix proxy |
+ROW |106 |23344 |Application|Zabbix proxy |
+ROW |107 |23345 |Application|Zabbix proxy |
+ROW |108 |23346 |Application|Zabbix proxy |
+ROW |109 |23347 |Application|Zabbix proxy |
+ROW |110 |23348 |Application|Zabbix proxy |
+ROW |111 |23349 |Application|Zabbix proxy |
+ROW |112 |23350 |Application|Zabbix proxy |
+ROW |113 |23351 |Application|Zabbix proxy |
+ROW |114 |23352 |Application|Zabbix proxy |
+ROW |115 |23353 |Application|Zabbix proxy |
+ROW |116 |23354 |Application|Zabbix proxy |
+ROW |117 |23355 |Application|Zabbix proxy |
+ROW |118 |23356 |Application|Zabbix proxy |
+ROW |119 |23357 |Application|Zabbix proxy |
+ROW |120 |23358 |Application|Zabbix proxy |
+ROW |121 |23359 |Application|Zabbix proxy |
+ROW |122 |23360 |Application|Zabbix proxy |
+ROW |123 |25368 |Application|Zabbix proxy |
+ROW |124 |25369 |Application|Zabbix proxy |
+ROW |125 |28250 |Application|Zabbix proxy |
+ROW |126 |28251 |Application|Zabbix proxy |
+ROW |127 |28617 |Application|Zabbix proxy |
+ROW |128 |28618 |Application|Zabbix proxy |
+ROW |129 |28619 |Application|Zabbix proxy |
+ROW |130 |33018 |Application|Zabbix proxy |
+ROW |131 |33019 |Application|Zabbix proxy |
+ROW |132 |22231 |Application|Monitoring agent |
+ROW |133 |22232 |Application|Monitoring agent |
+ROW |134 |23318 |Application|Monitoring agent |
+ROW |135 |29544 |Application|Status |
+ROW |136 |22840 |Application|CPU |
+ROW |137 |22841 |Application|CPU |
+ROW |138 |22842 |Application|CPU |
+ROW |139 |22843 |Application|CPU |
+ROW |140 |22844 |Application|CPU |
+ROW |141 |22845 |Application|CPU |
+ROW |142 |22846 |Application|CPU |
+ROW |143 |22848 |Application|CPU |
+ROW |144 |22851 |Application|CPU |
+ROW |145 |22852 |Application|CPU |
+ROW |146 |22868 |Application|Filesystems |
+ROW |147 |22869 |Application|Filesystems |
+ROW |148 |22870 |Application|Filesystems |
+ROW |149 |22871 |Application|Filesystems |
+ROW |150 |22872 |Application|Filesystems |
+ROW |151 |22839 |Application|General |
+ROW |152 |22853 |Application|General |
+ROW |153 |22854 |Application|General |
+ROW |154 |22858 |Application|General |
+ROW |155 |22859 |Application|General |
+ROW |156 |22855 |Application|Memory |
+ROW |157 |22856 |Application|Memory |
+ROW |158 |22857 |Application|Memory |
+ROW |159 |22862 |Application|Memory |
+ROW |160 |22863 |Application|Memory |
+ROW |161 |22833 |Application|Monitoring agent |
+ROW |162 |22834 |Application|Monitoring agent |
+ROW |163 |23320 |Application|Monitoring agent |
+ROW |164 |23075 |Application|Network interfaces |
+ROW |165 |23076 |Application|Network interfaces |
+ROW |166 |22835 |Application|OS |
+ROW |167 |22836 |Application|OS |
+ROW |168 |22839 |Application|OS |
+ROW |169 |22853 |Application|OS |
+ROW |170 |22854 |Application|OS |
+ROW |171 |22858 |Application|OS |
+ROW |172 |22859 |Application|OS |
+ROW |173 |22860 |Application|OS |
+ROW |174 |22840 |Application|Performance |
+ROW |175 |22841 |Application|Performance |
+ROW |176 |22842 |Application|Performance |
+ROW |177 |22843 |Application|Performance |
+ROW |178 |22844 |Application|Performance |
+ROW |179 |22845 |Application|Performance |
+ROW |180 |22846 |Application|Performance |
+ROW |181 |22848 |Application|Performance |
+ROW |182 |22851 |Application|Performance |
+ROW |183 |22852 |Application|Performance |
+ROW |184 |22837 |Application|Processes |
+ROW |185 |22838 |Application|Processes |
+ROW |186 |22860 |Application|Security |
+ROW |187 |22861 |Application|Security |
+ROW |188 |29549 |Application|Status |
+ROW |189 |22880 |Application|CPU |
+ROW |190 |22881 |Application|CPU |
+ROW |191 |22882 |Application|CPU |
+ROW |192 |22883 |Application|CPU |
+ROW |193 |22884 |Application|CPU |
+ROW |194 |22885 |Application|CPU |
+ROW |195 |22886 |Application|CPU |
+ROW |196 |22888 |Application|CPU |
+ROW |197 |22891 |Application|CPU |
+ROW |198 |22892 |Application|CPU |
+ROW |199 |22908 |Application|Filesystems |
+ROW |200 |22909 |Application|Filesystems |
+ROW |201 |22910 |Application|Filesystems |
+ROW |202 |22911 |Application|Filesystems |
+ROW |203 |22912 |Application|Filesystems |
+ROW |204 |22879 |Application|General |
+ROW |205 |22893 |Application|General |
+ROW |206 |22894 |Application|General |
+ROW |207 |22898 |Application|General |
+ROW |208 |22899 |Application|General |
+ROW |209 |22895 |Application|Memory |
+ROW |210 |22896 |Application|Memory |
+ROW |211 |22897 |Application|Memory |
+ROW |212 |22902 |Application|Memory |
+ROW |213 |22903 |Application|Memory |
+ROW |214 |22873 |Application|Monitoring agent |
+ROW |215 |22874 |Application|Monitoring agent |
+ROW |216 |23321 |Application|Monitoring agent |
+ROW |217 |23073 |Application|Network interfaces |
+ROW |218 |23074 |Application|Network interfaces |
+ROW |219 |22875 |Application|OS |
+ROW |220 |22876 |Application|OS |
+ROW |221 |22879 |Application|OS |
+ROW |222 |22893 |Application|OS |
+ROW |223 |22894 |Application|OS |
+ROW |224 |22898 |Application|OS |
+ROW |225 |22899 |Application|OS |
+ROW |226 |22900 |Application|OS |
+ROW |227 |22880 |Application|Performance |
+ROW |228 |22881 |Application|Performance |
+ROW |229 |22882 |Application|Performance |
+ROW |230 |22883 |Application|Performance |
+ROW |231 |22884 |Application|Performance |
+ROW |232 |22885 |Application|Performance |
+ROW |233 |22886 |Application|Performance |
+ROW |234 |22888 |Application|Performance |
+ROW |235 |22891 |Application|Performance |
+ROW |236 |22892 |Application|Performance |
+ROW |237 |22877 |Application|Processes |
+ROW |238 |22878 |Application|Processes |
+ROW |239 |22900 |Application|Security |
+ROW |240 |22901 |Application|Security |
+ROW |241 |29550 |Application|Status |
+ROW |242 |22920 |Application|CPU |
+ROW |243 |22921 |Application|CPU |
+ROW |244 |22922 |Application|CPU |
+ROW |245 |22923 |Application|CPU |
+ROW |246 |22924 |Application|CPU |
+ROW |247 |23108 |Application|CPU |
+ROW |248 |23109 |Application|CPU |
+ROW |249 |23110 |Application|CPU |
+ROW |250 |23111 |Application|CPU |
+ROW |251 |23112 |Application|CPU |
+ROW |252 |23113 |Application|CPU |
+ROW |253 |23114 |Application|CPU |
+ROW |254 |23115 |Application|CPU |
+ROW |255 |23118 |Application|CPU |
+ROW |256 |23119 |Application|CPU |
+ROW |257 |23120 |Application|CPU |
+ROW |258 |23121 |Application|CPU |
+ROW |259 |23123 |Application|CPU |
+ROW |260 |22948 |Application|Filesystems |
+ROW |261 |22949 |Application|Filesystems |
+ROW |262 |22950 |Application|Filesystems |
+ROW |263 |22951 |Application|Filesystems |
+ROW |264 |22952 |Application|Filesystems |
+ROW |265 |23116 |Application|Filesystems |
+ROW |266 |23117 |Application|Filesystems |
+ROW |267 |22933 |Application|General |
+ROW |268 |22934 |Application|General |
+ROW |269 |22938 |Application|General |
+ROW |270 |22939 |Application|General |
+ROW |271 |23108 |Application|Logical partitions |
+ROW |272 |23109 |Application|Logical partitions |
+ROW |273 |23111 |Application|Logical partitions |
+ROW |274 |23112 |Application|Logical partitions |
+ROW |275 |23118 |Application|Logical partitions |
+ROW |276 |22942 |Application|Memory |
+ROW |277 |22943 |Application|Memory |
+ROW |278 |23122 |Application|Memory |
+ROW |279 |23124 |Application|Memory |
+ROW |280 |23125 |Application|Memory |
+ROW |281 |23126 |Application|Memory |
+ROW |282 |23127 |Application|Memory |
+ROW |283 |23128 |Application|Memory |
+ROW |284 |23129 |Application|Memory |
+ROW |285 |23130 |Application|Memory |
+ROW |286 |23131 |Application|Memory |
+ROW |287 |22913 |Application|Monitoring agent |
+ROW |288 |22914 |Application|Monitoring agent |
+ROW |289 |23322 |Application|Monitoring agent |
+ROW |290 |22945 |Application|Network interfaces |
+ROW |291 |22946 |Application|Network interfaces |
+ROW |292 |22933 |Application|OS |
+ROW |293 |22934 |Application|OS |
+ROW |294 |22938 |Application|OS |
+ROW |295 |22939 |Application|OS |
+ROW |296 |22940 |Application|OS |
+ROW |297 |22920 |Application|Performance |
+ROW |298 |22921 |Application|Performance |
+ROW |299 |22922 |Application|Performance |
+ROW |300 |22923 |Application|Performance |
+ROW |301 |22924 |Application|Performance |
+ROW |302 |23108 |Application|Performance |
+ROW |303 |23109 |Application|Performance |
+ROW |304 |23110 |Application|Performance |
+ROW |305 |23111 |Application|Performance |
+ROW |306 |23112 |Application|Performance |
+ROW |307 |23113 |Application|Performance |
+ROW |308 |23114 |Application|Performance |
+ROW |309 |23115 |Application|Performance |
+ROW |310 |23116 |Application|Performance |
+ROW |311 |23117 |Application|Performance |
+ROW |312 |23119 |Application|Performance |
+ROW |313 |23120 |Application|Performance |
+ROW |314 |23121 |Application|Performance |
+ROW |315 |23122 |Application|Performance |
+ROW |316 |23123 |Application|Performance |
+ROW |317 |22917 |Application|Processes |
+ROW |318 |22918 |Application|Processes |
+ROW |319 |22940 |Application|Security |
+ROW |320 |22941 |Application|Security |
+ROW |321 |29551 |Application|Status |
+ROW |322 |22961 |Application|CPU |
+ROW |323 |22962 |Application|CPU |
+ROW |324 |22963 |Application|CPU |
+ROW |325 |22965 |Application|CPU |
+ROW |326 |22968 |Application|CPU |
+ROW |327 |22971 |Application|CPU |
+ROW |328 |22972 |Application|CPU |
+ROW |329 |22988 |Application|Filesystems |
+ROW |330 |22989 |Application|Filesystems |
+ROW |331 |22990 |Application|Filesystems |
+ROW |332 |22991 |Application|Filesystems |
+ROW |333 |22992 |Application|Filesystems |
+ROW |334 |22973 |Application|General |
+ROW |335 |22974 |Application|General |
+ROW |336 |22978 |Application|General |
+ROW |337 |22982 |Application|Memory |
+ROW |338 |22983 |Application|Memory |
+ROW |339 |22953 |Application|Monitoring agent |
+ROW |340 |22954 |Application|Monitoring agent |
+ROW |341 |23323 |Application|Monitoring agent |
+ROW |342 |22985 |Application|Network interfaces |
+ROW |343 |22986 |Application|Network interfaces |
+ROW |344 |22973 |Application|OS |
+ROW |345 |22974 |Application|OS |
+ROW |346 |22978 |Application|OS |
+ROW |347 |22980 |Application|OS |
+ROW |348 |22961 |Application|Performance |
+ROW |349 |22962 |Application|Performance |
+ROW |350 |22963 |Application|Performance |
+ROW |351 |22965 |Application|Performance |
+ROW |352 |22968 |Application|Performance |
+ROW |353 |22971 |Application|Performance |
+ROW |354 |22972 |Application|Performance |
+ROW |355 |22980 |Application|Security |
+ROW |356 |22981 |Application|Security |
+ROW |357 |29552 |Application|Status |
+ROW |358 |23000 |Application|CPU |
+ROW |359 |23001 |Application|CPU |
+ROW |360 |23002 |Application|CPU |
+ROW |361 |23003 |Application|CPU |
+ROW |362 |23004 |Application|CPU |
+ROW |363 |23005 |Application|CPU |
+ROW |364 |23007 |Application|CPU |
+ROW |365 |23011 |Application|CPU |
+ROW |366 |23012 |Application|CPU |
+ROW |367 |23028 |Application|Filesystems |
+ROW |368 |23029 |Application|Filesystems |
+ROW |369 |23030 |Application|Filesystems |
+ROW |370 |23031 |Application|Filesystems |
+ROW |371 |23032 |Application|Filesystems |
+ROW |372 |22999 |Application|General |
+ROW |373 |23013 |Application|General |
+ROW |374 |23014 |Application|General |
+ROW |375 |23018 |Application|General |
+ROW |376 |23019 |Application|General |
+ROW |377 |23015 |Application|Memory |
+ROW |378 |23016 |Application|Memory |
+ROW |379 |23017 |Application|Memory |
+ROW |380 |23022 |Application|Memory |
+ROW |381 |23023 |Application|Memory |
+ROW |382 |22993 |Application|Monitoring agent |
+ROW |383 |22994 |Application|Monitoring agent |
+ROW |384 |23324 |Application|Monitoring agent |
+ROW |385 |23025 |Application|Network interfaces |
+ROW |386 |23026 |Application|Network interfaces |
+ROW |387 |22996 |Application|OS |
+ROW |388 |22999 |Application|OS |
+ROW |389 |23013 |Application|OS |
+ROW |390 |23014 |Application|OS |
+ROW |391 |23018 |Application|OS |
+ROW |392 |23019 |Application|OS |
+ROW |393 |23020 |Application|OS |
+ROW |394 |23000 |Application|Performance |
+ROW |395 |23001 |Application|Performance |
+ROW |396 |23002 |Application|Performance |
+ROW |397 |23003 |Application|Performance |
+ROW |398 |23004 |Application|Performance |
+ROW |399 |23005 |Application|Performance |
+ROW |400 |23007 |Application|Performance |
+ROW |401 |23011 |Application|Performance |
+ROW |402 |23012 |Application|Performance |
+ROW |403 |22997 |Application|Processes |
+ROW |404 |22998 |Application|Processes |
+ROW |405 |23020 |Application|Security |
+ROW |406 |23021 |Application|Security |
+ROW |407 |29553 |Application|Status |
+ROW |408 |23041 |Application|CPU |
+ROW |409 |23042 |Application|CPU |
+ROW |410 |23043 |Application|CPU |
+ROW |411 |23068 |Application|Filesystems |
+ROW |412 |23069 |Application|Filesystems |
+ROW |413 |23070 |Application|Filesystems |
+ROW |414 |23071 |Application|Filesystems |
+ROW |415 |23072 |Application|Filesystems |
+ROW |416 |23039 |Application|General |
+ROW |417 |23053 |Application|General |
+ROW |418 |23054 |Application|General |
+ROW |419 |23058 |Application|General |
+ROW |420 |23059 |Application|General |
+ROW |421 |23062 |Application|Memory |
+ROW |422 |23063 |Application|Memory |
+ROW |423 |23033 |Application|Monitoring agent |
+ROW |424 |23034 |Application|Monitoring agent |
+ROW |425 |23325 |Application|Monitoring agent |
+ROW |426 |23077 |Application|Network interfaces |
+ROW |427 |23078 |Application|Network interfaces |
+ROW |428 |23035 |Application|OS |
+ROW |429 |23036 |Application|OS |
+ROW |430 |23039 |Application|OS |
+ROW |431 |23053 |Application|OS |
+ROW |432 |23054 |Application|OS |
+ROW |433 |23058 |Application|OS |
+ROW |434 |23059 |Application|OS |
+ROW |435 |23060 |Application|OS |
+ROW |436 |23041 |Application|Performance |
+ROW |437 |23042 |Application|Performance |
+ROW |438 |23043 |Application|Performance |
+ROW |439 |23060 |Application|Security |
+ROW |440 |23061 |Application|Security |
+ROW |441 |29554 |Application|Status |
+ROW |442 |29480 |Application|CPU |
+ROW |443 |29481 |Application|CPU |
+ROW |444 |29482 |Application|CPU |
+ROW |445 |29483 |Application|CPU |
+ROW |446 |29484 |Application|CPU |
+ROW |447 |29485 |Application|CPU |
+ROW |448 |30138 |Application|CPU |
+ROW |449 |31423 |Application|CPU |
+ROW |450 |29499 |Application|General |
+ROW |451 |29500 |Application|General |
+ROW |452 |29501 |Application|General |
+ROW |453 |29502 |Application|General |
+ROW |454 |29503 |Application|General |
+ROW |455 |29504 |Application|Inventory |
+ROW |456 |29486 |Application|Memory |
+ROW |457 |29487 |Application|Memory |
+ROW |458 |29488 |Application|Memory |
+ROW |459 |29489 |Application|Memory |
+ROW |460 |29492 |Application|Memory |
+ROW |461 |29493 |Application|Memory |
+ROW |462 |29494 |Application|Memory |
+ROW |463 |29495 |Application|Memory |
+ROW |464 |29496 |Application|Memory |
+ROW |465 |31424 |Application|Memory |
+ROW |466 |31425 |Application|Memory |
+ROW |467 |31428 |Application|Memory |
+ROW |468 |23160 |Application|Monitoring agent |
+ROW |469 |23161 |Application|Monitoring agent |
+ROW |470 |23326 |Application|Monitoring agent |
+ROW |471 |30426 |Application|Services |
+ROW |472 |29498 |Application|Status |
+ROW |473 |29555 |Application|Status |
+ROW |474 |31426 |Application|Zabbix raw items |
+ROW |475 |29161 |Application|CPU |
+ROW |476 |29162 |Application|CPU |
+ROW |477 |29163 |Application|CPU |
+ROW |478 |29164 |Application|CPU |
+ROW |479 |29165 |Application|CPU |
+ROW |480 |29166 |Application|CPU |
+ROW |481 |29167 |Application|CPU |
+ROW |482 |29168 |Application|CPU |
+ROW |483 |29169 |Application|CPU |
+ROW |484 |29170 |Application|CPU |
+ROW |485 |29171 |Application|CPU |
+ROW |486 |29172 |Application|CPU |
+ROW |487 |29173 |Application|CPU |
+ROW |488 |29174 |Application|CPU |
+ROW |489 |29175 |Application|CPU |
+ROW |490 |29176 |Application|CPU |
+ROW |491 |29200 |Application|CPU |
+ROW |492 |29185 |Application|General |
+ROW |493 |29186 |Application|General |
+ROW |494 |29187 |Application|General |
+ROW |495 |29188 |Application|General |
+ROW |496 |29189 |Application|General |
+ROW |497 |29190 |Application|General |
+ROW |498 |29191 |Application|General |
+ROW |499 |29192 |Application|General |
+ROW |500 |29193 |Application|General |
+ROW |501 |29195 |Application|Inventory |
+ROW |502 |29196 |Application|Inventory |
+ROW |503 |29197 |Application|Inventory |
+ROW |504 |29177 |Application|Memory |
+ROW |505 |29178 |Application|Memory |
+ROW |506 |29179 |Application|Memory |
+ROW |507 |29180 |Application|Memory |
+ROW |508 |29181 |Application|Memory |
+ROW |509 |29182 |Application|Memory |
+ROW |510 |31366 |Application|Memory |
+ROW |511 |23287 |Application|Monitoring agent |
+ROW |512 |23288 |Application|Monitoring agent |
+ROW |513 |23327 |Application|Monitoring agent |
+ROW |514 |29194 |Application|Security |
+ROW |515 |29184 |Application|Status |
+ROW |516 |29557 |Application|Status |
+ROW |517 |31378 |Application|Zabbix raw items |
+ROW |518 |31393 |Application|Zabbix raw items |
+ROW |519 |31396 |Application|Zabbix raw items |
+ROW |520 |10073 |Application|Zabbix server |
+ROW |521 |10074 |Application|Zabbix server |
+ROW |522 |10075 |Application|Zabbix server |
+ROW |523 |10076 |Application|Zabbix server |
+ROW |524 |10077 |Application|Zabbix server |
+ROW |525 |10078 |Application|Zabbix server |
+ROW |526 |23252 |Application|Zabbix server |
+ROW |527 |23253 |Application|Zabbix server |
+ROW |528 |23255 |Application|Zabbix server |
+ROW |529 |23256 |Application|Zabbix server |
+ROW |530 |23257 |Application|Zabbix server |
+ROW |531 |23258 |Application|Zabbix server |
+ROW |532 |23259 |Application|Zabbix server |
+ROW |533 |23260 |Application|Zabbix server |
+ROW |534 |23261 |Application|Zabbix server |
+ROW |535 |23262 |Application|Zabbix server |
+ROW |536 |23264 |Application|Zabbix server |
+ROW |537 |23265 |Application|Zabbix server |
+ROW |538 |23266 |Application|Zabbix server |
+ROW |539 |23267 |Application|Zabbix server |
+ROW |540 |23268 |Application|Zabbix server |
+ROW |541 |23269 |Application|Zabbix server |
+ROW |542 |23270 |Application|Zabbix server |
+ROW |543 |23271 |Application|Zabbix server |
+ROW |544 |23272 |Application|Zabbix server |
+ROW |545 |23273 |Application|Zabbix server |
+ROW |546 |23274 |Application|Zabbix server |
+ROW |547 |23275 |Application|Zabbix server |
+ROW |548 |23276 |Application|Zabbix server |
+ROW |549 |23277 |Application|Zabbix server |
+ROW |550 |23328 |Application|Zabbix server |
+ROW |551 |23620 |Application|Zabbix server |
+ROW |552 |23625 |Application|Zabbix server |
+ROW |553 |23628 |Application|Zabbix server |
+ROW |554 |23635 |Application|Zabbix server |
+ROW |555 |23662 |Application|Zabbix server |
+ROW |556 |23664 |Application|Zabbix server |
+ROW |557 |25367 |Application|Zabbix server |
+ROW |558 |25371 |Application|Zabbix server |
+ROW |559 |25667 |Application|Zabbix server |
+ROW |560 |25668 |Application|Zabbix server |
+ROW |561 |28249 |Application|Zabbix server |
+ROW |562 |28534 |Application|Zabbix server |
+ROW |563 |28536 |Application|Zabbix server |
+ROW |564 |28538 |Application|Zabbix server |
+ROW |565 |29823 |Application|Zabbix server |
+ROW |566 |33024 |Application|Zabbix server |
+ROW |567 |33025 |Application|Zabbix server |
+ROW |568 |33026 |Application|Zabbix server |
+ROW |569 |33027 |Application|Zabbix server |
+ROW |570 |23644 |Application|FTP service |
+ROW |571 |23645 |Application|HTTP service |
+ROW |572 |23646 |Application|HTTPS service |
+ROW |573 |23647 |Application|IMAP service |
+ROW |574 |23648 |Application|LDAP service |
+ROW |575 |23649 |Application|NNTP service |
+ROW |576 |23650 |Application|NTP service |
+ROW |577 |23651 |Application|POP service |
+ROW |578 |23652 |Application|SMTP service |
+ROW |579 |23653 |Application|SSH service |
+ROW |580 |23654 |Application|Telnet service |
+ROW |581 |31499 |Application|JMX |
+ROW |582 |31500 |Application|JMX |
+ROW |583 |31501 |Application|JMX |
+ROW |584 |31502 |Application|JMX |
+ROW |585 |31503 |Application|JMX |
+ROW |586 |31504 |Application|JMX |
+ROW |587 |31505 |Application|JMX |
+ROW |588 |31506 |Application|JMX |
+ROW |589 |31507 |Application|JMX |
+ROW |590 |31508 |Application|JMX |
+ROW |591 |31509 |Application|JMX |
+ROW |592 |31510 |Application|JMX |
+ROW |593 |31511 |Application|JMX |
+ROW |594 |31512 |Application|JMX |
+ROW |595 |31513 |Application|JMX |
+ROW |596 |31514 |Application|JMX |
+ROW |597 |31515 |Application|JMX |
+ROW |598 |31516 |Application|JMX |
+ROW |599 |31517 |Application|JMX |
+ROW |600 |31518 |Application|JMX |
+ROW |601 |31519 |Application|JMX |
+ROW |602 |31520 |Application|JMX |
+ROW |603 |31521 |Application|JMX |
+ROW |604 |31522 |Application|JMX |
+ROW |605 |31523 |Application|JMX |
+ROW |606 |31524 |Application|JMX |
+ROW |607 |31525 |Application|JMX |
+ROW |608 |31526 |Application|JMX |
+ROW |609 |31527 |Application|JMX |
+ROW |610 |31528 |Application|JMX |
+ROW |611 |31529 |Application|JMX |
+ROW |612 |31530 |Application|JMX |
+ROW |613 |31531 |Application|JMX |
+ROW |614 |31532 |Application|JMX |
+ROW |615 |31533 |Application|JMX |
+ROW |616 |31534 |Application|JMX |
+ROW |617 |31535 |Application|JMX |
+ROW |618 |31536 |Application|JMX |
+ROW |619 |31537 |Application|JMX |
+ROW |620 |31538 |Application|JMX |
+ROW |621 |31539 |Application|JMX |
+ROW |622 |31540 |Application|JMX |
+ROW |623 |31541 |Application|JMX |
+ROW |624 |31542 |Application|JMX |
+ROW |625 |31543 |Application|JMX |
+ROW |626 |31544 |Application|JMX |
+ROW |627 |31545 |Application|JMX |
+ROW |628 |31546 |Application|JMX |
+ROW |629 |31547 |Application|JMX |
+ROW |630 |31548 |Application|JMX |
+ROW |631 |31549 |Application|JMX |
+ROW |632 |31550 |Application|JMX |
+ROW |633 |31551 |Application|JMX |
+ROW |634 |31552 |Application|JMX |
+ROW |635 |31553 |Application|JMX |
+ROW |636 |26927 |Application|Fans |
+ROW |637 |26928 |Application|Temperature |
+ROW |638 |26925 |Application|Voltage |
+ROW |639 |26926 |Application|Voltage |
+ROW |640 |26929 |Application|Voltage |
+ROW |641 |26930 |Application|Voltage |
+ROW |642 |26931 |Application|Voltage |
+ROW |643 |26932 |Application|Voltage |
+ROW |644 |26935 |Application|Fans |
+ROW |645 |26936 |Application|Fans |
+ROW |646 |26933 |Application|Temperature |
+ROW |647 |26943 |Application|Temperature |
+ROW |648 |26934 |Application|Voltage |
+ROW |649 |26937 |Application|Voltage |
+ROW |650 |26938 |Application|Voltage |
+ROW |651 |26939 |Application|Voltage |
+ROW |652 |26940 |Application|Voltage |
+ROW |653 |26941 |Application|Voltage |
+ROW |654 |26942 |Application|Voltage |
+ROW |655 |31612 |Application|VMware |
+ROW |656 |31613 |Application|VMware |
+ROW |657 |31614 |Application|VMware |
+ROW |658 |31663 |Application|VMware |
+ROW |659 |31664 |Application|VMware |
+ROW |660 |31665 |Application|VMware |
+ROW |661 |31666 |Application|VMware |
+ROW |662 |31667 |Application|VMware |
+ROW |663 |32890 |Application|VMware |
+ROW |664 |32891 |Application|VMware |
+ROW |665 |32892 |Application|VMware |
+ROW |666 |32893 |Application|VMware |
+ROW |667 |32894 |Application|VMware |
+ROW |668 |32895 |Application|VMware |
+ROW |669 |32896 |Application|VMware |
+ROW |670 |32897 |Application|VMware |
+ROW |671 |32898 |Application|VMware |
+ROW |672 |32899 |Application|VMware |
+ROW |673 |32900 |Application|VMware |
+ROW |674 |32901 |Application|VMware |
+ROW |675 |32902 |Application|VMware |
+ROW |676 |32903 |Application|VMware |
+ROW |677 |32904 |Application|VMware |
+ROW |678 |32905 |Application|VMware |
+ROW |679 |32906 |Application|VMware |
+ROW |680 |32907 |Application|VMware |
+ROW |681 |32908 |Application|VMware |
+ROW |682 |32935 |Application|VMware |
+ROW |683 |32936 |Application|VMware |
+ROW |684 |32937 |Application|VMware |
+ROW |685 |32938 |Application|VMware |
+ROW |686 |32939 |Application|VMware |
+ROW |687 |32940 |Application|VMware |
+ROW |688 |32941 |Application|VMware |
+ROW |689 |32942 |Application|VMware |
+ROW |690 |32943 |Application|VMware |
+ROW |691 |32944 |Application|VMware |
+ROW |692 |32945 |Application|VMware |
+ROW |693 |32946 |Application|VMware |
+ROW |694 |33638 |Application|VMware |
+ROW |695 |33639 |Application|VMware |
+ROW |696 |33640 |Application|VMware |
+ROW |697 |33641 |Application|VMware |
+ROW |698 |33642 |Application|VMware |
+ROW |699 |33643 |Application|VMware |
+ROW |700 |33644 |Application|VMware |
+ROW |701 |33645 |Application|VMware |
+ROW |702 |33650 |Application|VMware |
+ROW |703 |33651 |Application|VMware |
+ROW |704 |33652 |Application|VMware |
+ROW |705 |33653 |Application|VMware |
+ROW |706 |33654 |Application|VMware |
+ROW |707 |32909 |Application|VMware |
+ROW |708 |32910 |Application|VMware |
+ROW |709 |32911 |Application|VMware |
+ROW |710 |32912 |Application|VMware |
+ROW |711 |32913 |Application|VMware |
+ROW |712 |32914 |Application|VMware |
+ROW |713 |32915 |Application|VMware |
+ROW |714 |32916 |Application|VMware |
+ROW |715 |32917 |Application|VMware |
+ROW |716 |32918 |Application|VMware |
+ROW |717 |32919 |Application|VMware |
+ROW |718 |32920 |Application|VMware |
+ROW |719 |32921 |Application|VMware |
+ROW |720 |32922 |Application|VMware |
+ROW |721 |32923 |Application|VMware |
+ROW |722 |32924 |Application|VMware |
+ROW |723 |32925 |Application|VMware |
+ROW |724 |32926 |Application|VMware |
+ROW |725 |32927 |Application|VMware |
+ROW |726 |32928 |Application|VMware |
+ROW |727 |32929 |Application|VMware |
+ROW |728 |32930 |Application|VMware |
+ROW |729 |32947 |Application|VMware |
+ROW |730 |32948 |Application|VMware |
+ROW |731 |32949 |Application|VMware |
+ROW |732 |32950 |Application|VMware |
+ROW |733 |33646 |Application|VMware |
+ROW |734 |33647 |Application|VMware |
+ROW |735 |33648 |Application|VMware |
+ROW |736 |33649 |Application|VMware |
+ROW |737 |33655 |Application|VMware |
+ROW |738 |30143 |Application|CPU |
+ROW |739 |30163 |Application|Memory |
+ROW |740 |30164 |Application|Memory |
+ROW |741 |30165 |Application|Memory |
+ROW |742 |27065 |Application|Status |
+ROW |743 |27066 |Application|Status |
+ROW |744 |27067 |Application|Status |
+ROW |745 |27152 |Application|General |
+ROW |746 |27157 |Application|General |
+ROW |747 |29845 |Application|General |
+ROW |748 |29846 |Application|General |
+ROW |749 |29847 |Application|General |
+ROW |750 |29848 |Application|General |
+ROW |751 |27149 |Application|Status |
+ROW |752 |27150 |Application|Status |
+ROW |753 |27151 |Application|Status |
+ROW |754 |27154 |Application|Status |
+ROW |755 |29844 |Application|Status |
+ROW |756 |27208 |Application|CPU |
+ROW |757 |27213 |Application|Fans |
+ROW |758 |27195 |Application|General |
+ROW |759 |27199 |Application|General |
+ROW |760 |29850 |Application|General |
+ROW |761 |29851 |Application|General |
+ROW |762 |29852 |Application|General |
+ROW |763 |29853 |Application|General |
+ROW |764 |27203 |Application|Inventory |
+ROW |765 |27214 |Application|Inventory |
+ROW |766 |30086 |Application|Inventory |
+ROW |767 |27207 |Application|Memory |
+ROW |768 |30087 |Application|Memory |
+ROW |769 |30088 |Application|Memory |
+ROW |770 |30089 |Application|Memory |
+ROW |771 |30091 |Application|Power supply |
+ROW |772 |30092 |Application|Power supply |
+ROW |773 |27192 |Application|Status |
+ROW |774 |27193 |Application|Status |
+ROW |775 |27194 |Application|Status |
+ROW |776 |27202 |Application|Status |
+ROW |777 |29849 |Application|Status |
+ROW |778 |27212 |Application|Temperature |
+ROW |779 |27240 |Application|CPU |
+ROW |780 |27249 |Application|Fans |
+ROW |781 |27250 |Application|Fans |
+ROW |782 |27228 |Application|General |
+ROW |783 |27232 |Application|General |
+ROW |784 |29855 |Application|General |
+ROW |785 |29856 |Application|General |
+ROW |786 |29857 |Application|General |
+ROW |787 |29858 |Application|General |
+ROW |788 |27236 |Application|Inventory |
+ROW |789 |27237 |Application|Inventory |
+ROW |790 |30093 |Application|Memory |
+ROW |791 |27248 |Application|Power supply |
+ROW |792 |27225 |Application|Status |
+ROW |793 |27226 |Application|Status |
+ROW |794 |27227 |Application|Status |
+ROW |795 |27235 |Application|Status |
+ROW |796 |27238 |Application|Status |
+ROW |797 |29854 |Application|Status |
+ROW |798 |27246 |Application|Temperature |
+ROW |799 |27247 |Application|Temperature |
+ROW |800 |27294 |Application|CPU |
+ROW |801 |30094 |Application|Memory |
+ROW |802 |27299 |Application|CPU |
+ROW |803 |27313 |Application|Fans |
+ROW |804 |27264 |Application|General |
+ROW |805 |27268 |Application|General |
+ROW |806 |29860 |Application|General |
+ROW |807 |29861 |Application|General |
+ROW |808 |29862 |Application|General |
+ROW |809 |29863 |Application|General |
+ROW |810 |27295 |Application|Inventory |
+ROW |811 |27296 |Application|Inventory |
+ROW |812 |30095 |Application|Memory |
+ROW |813 |27312 |Application|Power supply |
+ROW |814 |27261 |Application|Status |
+ROW |815 |27262 |Application|Status |
+ROW |816 |27263 |Application|Status |
+ROW |817 |27271 |Application|Status |
+ROW |818 |29859 |Application|Status |
+ROW |819 |27314 |Application|Temperature |
+ROW |820 |27315 |Application|Temperature |
+ROW |821 |27301 |Application|CPU |
+ROW |822 |27317 |Application|Fans |
+ROW |823 |27285 |Application|General |
+ROW |824 |27289 |Application|General |
+ROW |825 |29865 |Application|General |
+ROW |826 |29866 |Application|General |
+ROW |827 |29867 |Application|General |
+ROW |828 |29868 |Application|General |
+ROW |829 |27297 |Application|Inventory |
+ROW |830 |27319 |Application|Inventory |
+ROW |831 |27320 |Application|Inventory |
+ROW |832 |30096 |Application|Memory |
+ROW |833 |27316 |Application|Power supply |
+ROW |834 |27282 |Application|Status |
+ROW |835 |27283 |Application|Status |
+ROW |836 |27284 |Application|Status |
+ROW |837 |27292 |Application|Status |
+ROW |838 |29864 |Application|Status |
+ROW |839 |27318 |Application|Temperature |
+ROW |840 |27415 |Application|Memory |
+ROW |841 |27416 |Application|Memory |
+ROW |842 |30101 |Application|Memory |
+ROW |843 |27417 |Application|CPU |
+ROW |844 |27376 |Application|CPU |
+ROW |845 |27378 |Application|Inventory |
+ROW |846 |27379 |Application|Inventory |
+ROW |847 |27419 |Application|Inventory |
+ROW |848 |30097 |Application|Inventory |
+ROW |849 |27423 |Application|Fans |
+ROW |850 |27422 |Application|Power supply |
+ROW |851 |27420 |Application|Temperature |
+ROW |852 |27421 |Application|Temperature |
+ROW |853 |27427 |Application|CPU |
+ROW |854 |27432 |Application|Fans |
+ROW |855 |27336 |Application|General |
+ROW |856 |27340 |Application|General |
+ROW |857 |29870 |Application|General |
+ROW |858 |29871 |Application|General |
+ROW |859 |29872 |Application|General |
+ROW |860 |29873 |Application|General |
+ROW |861 |27385 |Application|Inventory |
+ROW |862 |27386 |Application|Inventory |
+ROW |863 |27428 |Application|Inventory |
+ROW |864 |30098 |Application|Inventory |
+ROW |865 |27425 |Application|Memory |
+ROW |866 |27426 |Application|Memory |
+ROW |867 |30102 |Application|Memory |
+ROW |868 |27431 |Application|Power supply |
+ROW |869 |27333 |Application|Status |
+ROW |870 |27334 |Application|Status |
+ROW |871 |27335 |Application|Status |
+ROW |872 |27343 |Application|Status |
+ROW |873 |29869 |Application|Status |
+ROW |874 |27429 |Application|Temperature |
+ROW |875 |27430 |Application|Temperature |
+ROW |876 |27380 |Application|CPU |
+ROW |877 |27449 |Application|Fans |
+ROW |878 |27368 |Application|General |
+ROW |879 |27372 |Application|General |
+ROW |880 |29875 |Application|General |
+ROW |881 |29876 |Application|General |
+ROW |882 |29877 |Application|General |
+ROW |883 |29878 |Application|General |
+ROW |884 |27382 |Application|Inventory |
+ROW |885 |27383 |Application|Inventory |
+ROW |886 |27445 |Application|Inventory |
+ROW |887 |30099 |Application|Inventory |
+ROW |888 |27443 |Application|Memory |
+ROW |889 |27444 |Application|Memory |
+ROW |890 |30103 |Application|Memory |
+ROW |891 |27448 |Application|Power supply |
+ROW |892 |27365 |Application|Status |
+ROW |893 |27366 |Application|Status |
+ROW |894 |27367 |Application|Status |
+ROW |895 |27375 |Application|Status |
+ROW |896 |29874 |Application|Status |
+ROW |897 |27446 |Application|Temperature |
+ROW |898 |27447 |Application|Temperature |
+ROW |899 |27478 |Application|CPU |
+ROW |900 |27480 |Application|Fans |
+ROW |901 |27465 |Application|General |
+ROW |902 |27469 |Application|General |
+ROW |903 |29880 |Application|General |
+ROW |904 |29881 |Application|General |
+ROW |905 |29882 |Application|General |
+ROW |906 |29883 |Application|General |
+ROW |907 |27481 |Application|Inventory |
+ROW |908 |27482 |Application|Inventory |
+ROW |909 |27483 |Application|Inventory |
+ROW |910 |27484 |Application|Inventory |
+ROW |911 |30105 |Application|Memory |
+ROW |912 |27479 |Application|Power supply |
+ROW |913 |27462 |Application|Status |
+ROW |914 |27463 |Application|Status |
+ROW |915 |27464 |Application|Status |
+ROW |916 |27472 |Application|Status |
+ROW |917 |29879 |Application|Status |
+ROW |918 |27485 |Application|Temperature |
+ROW |919 |27511 |Application|CPU |
+ROW |920 |27519 |Application|Fans |
+ROW |921 |27499 |Application|General |
+ROW |922 |27503 |Application|General |
+ROW |923 |29885 |Application|General |
+ROW |924 |29886 |Application|General |
+ROW |925 |29887 |Application|General |
+ROW |926 |29888 |Application|General |
+ROW |927 |27508 |Application|Inventory |
+ROW |928 |27509 |Application|Inventory |
+ROW |929 |27510 |Application|Inventory |
+ROW |930 |30106 |Application|Inventory |
+ROW |931 |30107 |Application|Memory |
+ROW |932 |27518 |Application|Power supply |
+ROW |933 |27496 |Application|Status |
+ROW |934 |27497 |Application|Status |
+ROW |935 |27498 |Application|Status |
+ROW |936 |27506 |Application|Status |
+ROW |937 |29884 |Application|Status |
+ROW |938 |27517 |Application|Temperature |
+ROW |939 |27547 |Application|CPU |
+ROW |940 |27555 |Application|Fans |
+ROW |941 |27535 |Application|General |
+ROW |942 |27539 |Application|General |
+ROW |943 |29890 |Application|General |
+ROW |944 |29891 |Application|General |
+ROW |945 |29892 |Application|General |
+ROW |946 |29893 |Application|General |
+ROW |947 |27543 |Application|Inventory |
+ROW |948 |27544 |Application|Inventory |
+ROW |949 |27545 |Application|Inventory |
+ROW |950 |27546 |Application|Inventory |
+ROW |951 |30108 |Application|Memory |
+ROW |952 |27554 |Application|Power supply |
+ROW |953 |27532 |Application|Status |
+ROW |954 |27533 |Application|Status |
+ROW |955 |27534 |Application|Status |
+ROW |956 |27542 |Application|Status |
+ROW |957 |29889 |Application|Status |
+ROW |958 |27553 |Application|Temperature |
+ROW |959 |27586 |Application|CPU |
+ROW |960 |27594 |Application|Fans |
+ROW |961 |27595 |Application|Fans |
+ROW |962 |27571 |Application|General |
+ROW |963 |27575 |Application|General |
+ROW |964 |29895 |Application|General |
+ROW |965 |29896 |Application|General |
+ROW |966 |29897 |Application|General |
+ROW |967 |29898 |Application|General |
+ROW |968 |27579 |Application|Inventory |
+ROW |969 |27580 |Application|Inventory |
+ROW |970 |27582 |Application|Inventory |
+ROW |971 |27583 |Application|Inventory |
+ROW |972 |30109 |Application|Inventory |
+ROW |973 |27591 |Application|Memory |
+ROW |974 |30110 |Application|Memory |
+ROW |975 |30111 |Application|Memory |
+ROW |976 |27593 |Application|Power supply |
+ROW |977 |27568 |Application|Status |
+ROW |978 |27569 |Application|Status |
+ROW |979 |27570 |Application|Status |
+ROW |980 |27578 |Application|Status |
+ROW |981 |29894 |Application|Status |
+ROW |982 |27584 |Application|Temperature |
+ROW |983 |27585 |Application|Temperature |
+ROW |984 |27634 |Application|General |
+ROW |985 |27638 |Application|General |
+ROW |986 |29900 |Application|General |
+ROW |987 |29901 |Application|General |
+ROW |988 |29902 |Application|General |
+ROW |989 |29903 |Application|General |
+ROW |990 |27631 |Application|Status |
+ROW |991 |27632 |Application|Status |
+ROW |992 |27633 |Application|Status |
+ROW |993 |27641 |Application|Status |
+ROW |994 |29899 |Application|Status |
+ROW |995 |27671 |Application|CPU |
+ROW |996 |27673 |Application|Fans |
+ROW |997 |27657 |Application|General |
+ROW |998 |27661 |Application|General |
+ROW |999 |29905 |Application|General |
+ROW |1000 |29906 |Application|General |
+ROW |1001 |29907 |Application|General |
+ROW |1002 |29908 |Application|General |
+ROW |1003 |27675 |Application|Inventory |
+ROW |1004 |27676 |Application|Inventory |
+ROW |1005 |27677 |Application|Inventory |
+ROW |1006 |27678 |Application|Inventory |
+ROW |1007 |27679 |Application|Inventory |
+ROW |1008 |30112 |Application|Memory |
+ROW |1009 |27674 |Application|Power supply |
+ROW |1010 |27654 |Application|Status |
+ROW |1011 |27655 |Application|Status |
+ROW |1012 |27656 |Application|Status |
+ROW |1013 |27664 |Application|Status |
+ROW |1014 |29904 |Application|Status |
+ROW |1015 |27672 |Application|Temperature |
+ROW |1016 |27753 |Application|CPU |
+ROW |1017 |27755 |Application|Fans |
+ROW |1018 |27737 |Application|General |
+ROW |1019 |27741 |Application|General |
+ROW |1020 |29910 |Application|General |
+ROW |1021 |29911 |Application|General |
+ROW |1022 |29912 |Application|General |
+ROW |1023 |29913 |Application|General |
+ROW |1024 |27748 |Application|Inventory |
+ROW |1025 |27749 |Application|Inventory |
+ROW |1026 |27750 |Application|Inventory |
+ROW |1027 |27754 |Application|Inventory |
+ROW |1028 |30116 |Application|Memory |
+ROW |1029 |27734 |Application|Status |
+ROW |1030 |27735 |Application|Status |
+ROW |1031 |27736 |Application|Status |
+ROW |1032 |27744 |Application|Status |
+ROW |1033 |29909 |Application|Status |
+ROW |1034 |27751 |Application|Temperature |
+ROW |1035 |27787 |Application|Fans |
+ROW |1036 |27769 |Application|General |
+ROW |1037 |27773 |Application|General |
+ROW |1038 |29915 |Application|General |
+ROW |1039 |29916 |Application|General |
+ROW |1040 |29917 |Application|General |
+ROW |1041 |29918 |Application|General |
+ROW |1042 |27777 |Application|Inventory |
+ROW |1043 |27778 |Application|Inventory |
+ROW |1044 |27785 |Application|Inventory |
+ROW |1045 |27786 |Application|Power supply |
+ROW |1046 |27766 |Application|Status |
+ROW |1047 |27767 |Application|Status |
+ROW |1048 |27768 |Application|Status |
+ROW |1049 |27776 |Application|Status |
+ROW |1050 |29914 |Application|Status |
+ROW |1051 |27783 |Application|Temperature |
+ROW |1052 |27784 |Application|Temperature |
+ROW |1053 |28894 |Application|CPU |
+ROW |1054 |27822 |Application|Fans |
+ROW |1055 |27803 |Application|General |
+ROW |1056 |27807 |Application|General |
+ROW |1057 |29920 |Application|General |
+ROW |1058 |29921 |Application|General |
+ROW |1059 |29922 |Application|General |
+ROW |1060 |29923 |Application|General |
+ROW |1061 |27812 |Application|Inventory |
+ROW |1062 |27813 |Application|Inventory |
+ROW |1063 |30117 |Application|Inventory |
+ROW |1064 |30118 |Application|Memory |
+ROW |1065 |27823 |Application|Power supply |
+ROW |1066 |27800 |Application|Status |
+ROW |1067 |27801 |Application|Status |
+ROW |1068 |27802 |Application|Status |
+ROW |1069 |27810 |Application|Status |
+ROW |1070 |27814 |Application|Status |
+ROW |1071 |29919 |Application|Status |
+ROW |1072 |27821 |Application|Temperature |
+ROW |1073 |27904 |Application|CPU |
+ROW |1074 |27885 |Application|General |
+ROW |1075 |27889 |Application|General |
+ROW |1076 |29925 |Application|General |
+ROW |1077 |29926 |Application|General |
+ROW |1078 |29927 |Application|General |
+ROW |1079 |29928 |Application|General |
+ROW |1080 |27893 |Application|Inventory |
+ROW |1081 |27894 |Application|Inventory |
+ROW |1082 |27895 |Application|Inventory |
+ROW |1083 |30119 |Application|Inventory |
+ROW |1084 |27898 |Application|Memory |
+ROW |1085 |27900 |Application|Memory |
+ROW |1086 |30120 |Application|Memory |
+ROW |1087 |27882 |Application|Status |
+ROW |1088 |27883 |Application|Status |
+ROW |1089 |27884 |Application|Status |
+ROW |1090 |27892 |Application|Status |
+ROW |1091 |29924 |Application|Status |
+ROW |1092 |27906 |Application|Storage |
+ROW |1093 |27907 |Application|Storage |
+ROW |1094 |27908 |Application|Storage |
+ROW |1095 |27905 |Application|Temperature |
+ROW |1096 |31560 |Application|Temperature |
+ROW |1097 |27936 |Application|CPU |
+ROW |1098 |27942 |Application|Fans |
+ROW |1099 |27922 |Application|General |
+ROW |1100 |27926 |Application|General |
+ROW |1101 |29930 |Application|General |
+ROW |1102 |29931 |Application|General |
+ROW |1103 |29932 |Application|General |
+ROW |1104 |29933 |Application|General |
+ROW |1105 |27930 |Application|Inventory |
+ROW |1106 |27931 |Application|Inventory |
+ROW |1107 |30121 |Application|Inventory |
+ROW |1108 |27935 |Application|Memory |
+ROW |1109 |30122 |Application|Memory |
+ROW |1110 |30123 |Application|Memory |
+ROW |1111 |27943 |Application|Power supply |
+ROW |1112 |27919 |Application|Status |
+ROW |1113 |27920 |Application|Status |
+ROW |1114 |27921 |Application|Status |
+ROW |1115 |27929 |Application|Status |
+ROW |1116 |29929 |Application|Status |
+ROW |1117 |27940 |Application|Temperature |
+ROW |1118 |27941 |Application|Temperature |
+ROW |1119 |27975 |Application|CPU |
+ROW |1120 |30129 |Application|Fans |
+ROW |1121 |27959 |Application|General |
+ROW |1122 |27963 |Application|General |
+ROW |1123 |29935 |Application|General |
+ROW |1124 |29936 |Application|General |
+ROW |1125 |29937 |Application|General |
+ROW |1126 |29938 |Application|General |
+ROW |1127 |27967 |Application|Inventory |
+ROW |1128 |27968 |Application|Inventory |
+ROW |1129 |27970 |Application|Inventory |
+ROW |1130 |27971 |Application|Inventory |
+ROW |1131 |30125 |Application|Inventory |
+ROW |1132 |27972 |Application|Memory |
+ROW |1133 |27973 |Application|Memory |
+ROW |1134 |30126 |Application|Memory |
+ROW |1135 |30130 |Application|Power supply |
+ROW |1136 |27956 |Application|Status |
+ROW |1137 |27957 |Application|Status |
+ROW |1138 |27958 |Application|Status |
+ROW |1139 |27966 |Application|Status |
+ROW |1140 |29934 |Application|Status |
+ROW |1141 |30124 |Application|Temperature |
+ROW |1142 |28003 |Application|CPU |
+ROW |1143 |27989 |Application|General |
+ROW |1144 |27993 |Application|General |
+ROW |1145 |29940 |Application|General |
+ROW |1146 |29941 |Application|General |
+ROW |1147 |29942 |Application|General |
+ROW |1148 |29943 |Application|General |
+ROW |1149 |27997 |Application|Inventory |
+ROW |1150 |27998 |Application|Inventory |
+ROW |1151 |27999 |Application|Inventory |
+ROW |1152 |28000 |Application|Inventory |
+ROW |1153 |30131 |Application|Memory |
+ROW |1154 |27986 |Application|Status |
+ROW |1155 |27987 |Application|Status |
+ROW |1156 |27988 |Application|Status |
+ROW |1157 |27996 |Application|Status |
+ROW |1158 |29939 |Application|Status |
+ROW |1159 |28031 |Application|CPU |
+ROW |1160 |28018 |Application|General |
+ROW |1161 |28022 |Application|General |
+ROW |1162 |29835 |Application|General |
+ROW |1163 |29836 |Application|General |
+ROW |1164 |29837 |Application|General |
+ROW |1165 |29838 |Application|General |
+ROW |1166 |28026 |Application|Inventory |
+ROW |1167 |28027 |Application|Inventory |
+ROW |1168 |30132 |Application|Memory |
+ROW |1169 |30133 |Application|Memory |
+ROW |1170 |30134 |Application|Memory |
+ROW |1171 |30135 |Application|Memory |
+ROW |1172 |30136 |Application|Memory |
+ROW |1173 |28015 |Application|Status |
+ROW |1174 |28016 |Application|Status |
+ROW |1175 |28017 |Application|Status |
+ROW |1176 |28025 |Application|Status |
+ROW |1177 |29834 |Application|Status |
+ROW |1178 |29002 |Application|CPU |
+ROW |1179 |29003 |Application|CPU |
+ROW |1180 |29004 |Application|CPU |
+ROW |1181 |29005 |Application|CPU |
+ROW |1182 |29006 |Application|CPU |
+ROW |1183 |29007 |Application|CPU |
+ROW |1184 |29034 |Application|CPU |
+ROW |1185 |29035 |Application|CPU |
+ROW |1186 |29036 |Application|CPU |
+ROW |1187 |29037 |Application|CPU |
+ROW |1188 |29038 |Application|CPU |
+ROW |1189 |29039 |Application|CPU |
+ROW |1190 |29040 |Application|CPU |
+ROW |1191 |29041 |Application|CPU |
+ROW |1192 |29042 |Application|CPU |
+ROW |1193 |29043 |Application|CPU |
+ROW |1194 |29049 |Application|CPU |
+ROW |1195 |28960 |Application|General |
+ROW |1196 |28964 |Application|General |
+ROW |1197 |29985 |Application|General |
+ROW |1198 |29986 |Application|General |
+ROW |1199 |29987 |Application|General |
+ROW |1200 |29988 |Application|General |
+ROW |1201 |28993 |Application|Memory |
+ROW |1202 |28994 |Application|Memory |
+ROW |1203 |28995 |Application|Memory |
+ROW |1204 |28996 |Application|Memory |
+ROW |1205 |28997 |Application|Memory |
+ROW |1206 |28998 |Application|Memory |
+ROW |1207 |28999 |Application|Memory |
+ROW |1208 |29000 |Application|Memory |
+ROW |1209 |29001 |Application|Memory |
+ROW |1210 |28957 |Application|Status |
+ROW |1211 |28958 |Application|Status |
+ROW |1212 |28959 |Application|Status |
+ROW |1213 |28967 |Application|Status |
+ROW |1214 |29984 |Application|Status |
+ROW |1215 |30145 |Application|CPU |
+ROW |1216 |29053 |Application|General |
+ROW |1217 |29057 |Application|General |
+ROW |1218 |29990 |Application|General |
+ROW |1219 |29991 |Application|General |
+ROW |1220 |29992 |Application|General |
+ROW |1221 |29993 |Application|General |
+ROW |1222 |30175 |Application|Memory |
+ROW |1223 |30176 |Application|Memory |
+ROW |1224 |30177 |Application|Memory |
+ROW |1225 |29050 |Application|Status |
+ROW |1226 |29051 |Application|Status |
+ROW |1227 |29052 |Application|Status |
+ROW |1228 |29060 |Application|Status |
+ROW |1229 |29989 |Application|Status |
+ROW |1230 |28143 |Application|CPU |
+ROW |1231 |28154 |Application|Fans |
+ROW |1232 |28133 |Application|General |
+ROW |1233 |28137 |Application|General |
+ROW |1234 |29945 |Application|General |
+ROW |1235 |29946 |Application|General |
+ROW |1236 |29947 |Application|General |
+ROW |1237 |29948 |Application|General |
+ROW |1238 |28141 |Application|Inventory |
+ROW |1239 |28142 |Application|Inventory |
+ROW |1240 |28157 |Application|Inventory |
+ROW |1241 |28158 |Application|Inventory |
+ROW |1242 |28153 |Application|Memory |
+ROW |1243 |30113 |Application|Memory |
+ROW |1244 |30114 |Application|Memory |
+ROW |1245 |30115 |Application|Memory |
+ROW |1246 |28155 |Application|Power supply |
+ROW |1247 |28130 |Application|Status |
+ROW |1248 |28131 |Application|Status |
+ROW |1249 |28132 |Application|Status |
+ROW |1250 |28140 |Application|Status |
+ROW |1251 |29944 |Application|Status |
+ROW |1252 |28150 |Application|Temperature |
+ROW |1253 |28156 |Application|Temperature |
+ROW |1254 |34154 |Application|CPU |
+ROW |1255 |28202 |Application|Fans |
+ROW |1256 |28203 |Application|Fans |
+ROW |1257 |34152 |Application|General |
+ROW |1258 |34153 |Application|General |
+ROW |1259 |34155 |Application|General |
+ROW |1260 |34156 |Application|General |
+ROW |1261 |34157 |Application|General |
+ROW |1262 |34158 |Application|General |
+ROW |1263 |28204 |Application|Inventory |
+ROW |1264 |28205 |Application|Inventory |
+ROW |1265 |34176 |Application|Memory |
+ROW |1266 |34177 |Application|Memory |
+ROW |1267 |34178 |Application|Memory |
+ROW |1268 |28206 |Application|Power supply |
+ROW |1269 |34149 |Application|Status |
+ROW |1270 |34150 |Application|Status |
+ROW |1271 |34151 |Application|Status |
+ROW |1272 |34159 |Application|Status |
+ROW |1273 |34160 |Application|Status |
+ROW |1274 |28200 |Application|Temperature |
+ROW |1275 |28201 |Application|Temperature |
+ROW |1276 |28246 |Application|CPU |
+ROW |1277 |28247 |Application|CPU |
+ROW |1278 |28215 |Application|Fans |
+ROW |1279 |28236 |Application|General |
+ROW |1280 |28240 |Application|General |
+ROW |1281 |29955 |Application|General |
+ROW |1282 |29956 |Application|General |
+ROW |1283 |29957 |Application|General |
+ROW |1284 |29958 |Application|General |
+ROW |1285 |28208 |Application|Inventory |
+ROW |1286 |28209 |Application|Inventory |
+ROW |1287 |28210 |Application|Inventory |
+ROW |1288 |30100 |Application|Inventory |
+ROW |1289 |28220 |Application|Memory |
+ROW |1290 |28222 |Application|Memory |
+ROW |1291 |30104 |Application|Memory |
+ROW |1292 |28216 |Application|Power supply |
+ROW |1293 |28233 |Application|Status |
+ROW |1294 |28234 |Application|Status |
+ROW |1295 |28235 |Application|Status |
+ROW |1296 |28243 |Application|Status |
+ROW |1297 |29954 |Application|Status |
+ROW |1298 |28217 |Application|Temperature |
+ROW |1299 |28218 |Application|Temperature |
+ROW |1300 |30146 |Application|CPU |
+ROW |1301 |28325 |Application|Fans |
+ROW |1302 |28326 |Application|Fans |
+ROW |1303 |28285 |Application|General |
+ROW |1304 |28289 |Application|General |
+ROW |1305 |29960 |Application|General |
+ROW |1306 |29961 |Application|General |
+ROW |1307 |29962 |Application|General |
+ROW |1308 |29963 |Application|General |
+ROW |1309 |28327 |Application|Inventory |
+ROW |1310 |28328 |Application|Inventory |
+ROW |1311 |30181 |Application|Memory |
+ROW |1312 |30182 |Application|Memory |
+ROW |1313 |30183 |Application|Memory |
+ROW |1314 |28329 |Application|Power supply |
+ROW |1315 |28282 |Application|Status |
+ROW |1316 |28283 |Application|Status |
+ROW |1317 |28284 |Application|Status |
+ROW |1318 |28292 |Application|Status |
+ROW |1319 |29959 |Application|Status |
+ROW |1320 |28323 |Application|Temperature |
+ROW |1321 |28324 |Application|Temperature |
+ROW |1322 |33183 |Application|Voltage |
+ROW |1323 |33181 |Application|Zabbix raw items |
+ROW |1324 |28374 |Application|Disk arrays |
+ROW |1325 |28375 |Application|Disk arrays |
+ROW |1326 |28376 |Application|Disk arrays |
+ROW |1327 |28359 |Application|Fans |
+ROW |1328 |28360 |Application|Fans |
+ROW |1329 |28333 |Application|General |
+ROW |1330 |28337 |Application|General |
+ROW |1331 |29965 |Application|General |
+ROW |1332 |29966 |Application|General |
+ROW |1333 |29967 |Application|General |
+ROW |1334 |29968 |Application|General |
+ROW |1335 |28342 |Application|Inventory |
+ROW |1336 |28344 |Application|Inventory |
+ROW |1337 |28345 |Application|Inventory |
+ROW |1338 |30141 |Application|Inventory |
+ROW |1339 |28361 |Application|Physical disks |
+ROW |1340 |28362 |Application|Physical disks |
+ROW |1341 |28363 |Application|Physical disks |
+ROW |1342 |28364 |Application|Physical disks |
+ROW |1343 |28365 |Application|Physical disks |
+ROW |1344 |28366 |Application|Physical disks |
+ROW |1345 |28367 |Application|Physical disks |
+ROW |1346 |28358 |Application|Power supply |
+ROW |1347 |28330 |Application|Status |
+ROW |1348 |28331 |Application|Status |
+ROW |1349 |28332 |Application|Status |
+ROW |1350 |28340 |Application|Status |
+ROW |1351 |28341 |Application|Status |
+ROW |1352 |29964 |Application|Status |
+ROW |1353 |28354 |Application|Temperature |
+ROW |1354 |28355 |Application|Temperature |
+ROW |1355 |28356 |Application|Temperature |
+ROW |1356 |28357 |Application|Temperature |
+ROW |1357 |28368 |Application|Virtual disks |
+ROW |1358 |28369 |Application|Virtual disks |
+ROW |1359 |28370 |Application|Virtual disks |
+ROW |1360 |28371 |Application|Virtual disks |
+ROW |1361 |28372 |Application|Virtual disks |
+ROW |1362 |28373 |Application|Virtual disks |
+ROW |1363 |28413 |Application|Disk arrays |
+ROW |1364 |28414 |Application|Disk arrays |
+ROW |1365 |28415 |Application|Disk arrays |
+ROW |1366 |28416 |Application|Disk arrays |
+ROW |1367 |28412 |Application|Fans |
+ROW |1368 |28380 |Application|General |
+ROW |1369 |28384 |Application|General |
+ROW |1370 |29970 |Application|General |
+ROW |1371 |29971 |Application|General |
+ROW |1372 |29972 |Application|General |
+ROW |1373 |29973 |Application|General |
+ROW |1374 |28390 |Application|Inventory |
+ROW |1375 |28391 |Application|Inventory |
+ROW |1376 |28417 |Application|Physical disks |
+ROW |1377 |28418 |Application|Physical disks |
+ROW |1378 |28419 |Application|Physical disks |
+ROW |1379 |28420 |Application|Physical disks |
+ROW |1380 |28421 |Application|Physical disks |
+ROW |1381 |28422 |Application|Physical disks |
+ROW |1382 |28411 |Application|Power supply |
+ROW |1383 |28377 |Application|Status |
+ROW |1384 |28378 |Application|Status |
+ROW |1385 |28379 |Application|Status |
+ROW |1386 |28387 |Application|Status |
+ROW |1387 |29969 |Application|Status |
+ROW |1388 |29994 |Application|Status |
+ROW |1389 |28388 |Application|Temperature |
+ROW |1390 |28404 |Application|Temperature |
+ROW |1391 |28405 |Application|Temperature |
+ROW |1392 |28406 |Application|Temperature |
+ROW |1393 |28407 |Application|Temperature |
+ROW |1394 |28408 |Application|Temperature |
+ROW |1395 |28409 |Application|Temperature |
+ROW |1396 |33621 |Application|Temperature |
+ROW |1397 |33622 |Application|Temperature |
+ROW |1398 |33623 |Application|Temperature |
+ROW |1399 |33624 |Application|Temperature |
+ROW |1400 |33625 |Application|Temperature |
+ROW |1401 |33626 |Application|Temperature |
+ROW |1402 |33627 |Application|Temperature |
+ROW |1403 |33628 |Application|Temperature |
+ROW |1404 |33629 |Application|Temperature |
+ROW |1405 |28423 |Application|Virtual disks |
+ROW |1406 |28424 |Application|Virtual disks |
+ROW |1407 |28425 |Application|Virtual disks |
+ROW |1408 |28478 |Application|Fans |
+ROW |1409 |28479 |Application|Fans |
+ROW |1410 |28457 |Application|General |
+ROW |1411 |28461 |Application|General |
+ROW |1412 |29975 |Application|General |
+ROW |1413 |29976 |Application|General |
+ROW |1414 |29977 |Application|General |
+ROW |1415 |29978 |Application|General |
+ROW |1416 |28466 |Application|Inventory |
+ROW |1417 |28467 |Application|Inventory |
+ROW |1418 |28480 |Application|Physical disks |
+ROW |1419 |28481 |Application|Physical disks |
+ROW |1420 |28477 |Application|Power supply |
+ROW |1421 |28454 |Application|Status |
+ROW |1422 |28455 |Application|Status |
+ROW |1423 |28456 |Application|Status |
+ROW |1424 |28464 |Application|Status |
+ROW |1425 |28465 |Application|Status |
+ROW |1426 |29974 |Application|Status |
+ROW |1427 |28474 |Application|Temperature |
+ROW |1428 |28475 |Application|Temperature |
+ROW |1429 |28476 |Application|Temperature |
+ROW |1430 |28496 |Application|Fans |
+ROW |1431 |28485 |Application|General |
+ROW |1432 |28489 |Application|General |
+ROW |1433 |29980 |Application|General |
+ROW |1434 |29981 |Application|General |
+ROW |1435 |29982 |Application|General |
+ROW |1436 |29983 |Application|General |
+ROW |1437 |28482 |Application|Status |
+ROW |1438 |28483 |Application|Status |
+ROW |1439 |28484 |Application|Status |
+ROW |1440 |28492 |Application|Status |
+ROW |1441 |29979 |Application|Status |
+ROW |1442 |28495 |Application|Temperature |
+ROW |1443 |28511 |Application|Tomcat |
+ROW |1444 |28539 |Application|Zabbix server |
+ROW |1445 |28540 |Application|Zabbix server |
+ROW |1446 |28541 |Application|Zabbix server |
+ROW |1447 |28542 |Application|Zabbix server |
+ROW |1448 |28543 |Application|Zabbix server |
+ROW |1449 |28544 |Application|Zabbix server |
+ROW |1450 |28545 |Application|Zabbix server |
+ROW |1451 |28546 |Application|Zabbix server |
+ROW |1452 |28547 |Application|Zabbix server |
+ROW |1453 |28548 |Application|Zabbix server |
+ROW |1454 |28549 |Application|Zabbix server |
+ROW |1455 |28550 |Application|Zabbix server |
+ROW |1456 |28551 |Application|Zabbix server |
+ROW |1457 |28552 |Application|Zabbix server |
+ROW |1458 |28553 |Application|Zabbix server |
+ROW |1459 |28554 |Application|Zabbix server |
+ROW |1460 |28555 |Application|Zabbix server |
+ROW |1461 |28556 |Application|Zabbix server |
+ROW |1462 |28557 |Application|Zabbix server |
+ROW |1463 |28558 |Application|Zabbix server |
+ROW |1464 |28559 |Application|Zabbix server |
+ROW |1465 |28560 |Application|Zabbix server |
+ROW |1466 |28561 |Application|Zabbix server |
+ROW |1467 |28562 |Application|Zabbix server |
+ROW |1468 |28563 |Application|Zabbix server |
+ROW |1469 |28564 |Application|Zabbix server |
+ROW |1470 |28565 |Application|Zabbix server |
+ROW |1471 |28566 |Application|Zabbix server |
+ROW |1472 |28567 |Application|Zabbix server |
+ROW |1473 |28568 |Application|Zabbix server |
+ROW |1474 |28569 |Application|Zabbix server |
+ROW |1475 |28570 |Application|Zabbix server |
+ROW |1476 |28571 |Application|Zabbix server |
+ROW |1477 |28572 |Application|Zabbix server |
+ROW |1478 |28573 |Application|Zabbix server |
+ROW |1479 |28574 |Application|Zabbix server |
+ROW |1480 |28575 |Application|Zabbix server |
+ROW |1481 |28576 |Application|Zabbix server |
+ROW |1482 |28577 |Application|Zabbix server |
+ROW |1483 |28578 |Application|Zabbix server |
+ROW |1484 |28579 |Application|Zabbix server |
+ROW |1485 |28580 |Application|Zabbix server |
+ROW |1486 |28581 |Application|Zabbix server |
+ROW |1487 |28582 |Application|Zabbix server |
+ROW |1488 |28583 |Application|Zabbix server |
+ROW |1489 |28584 |Application|Zabbix server |
+ROW |1490 |29821 |Application|Zabbix server |
+ROW |1491 |31053 |Application|Zabbix server |
+ROW |1492 |33014 |Application|Zabbix server |
+ROW |1493 |33015 |Application|Zabbix server |
+ROW |1494 |33016 |Application|Zabbix server |
+ROW |1495 |33017 |Application|Zabbix server |
+ROW |1496 |28585 |Application|Zabbix proxy |
+ROW |1497 |28586 |Application|Zabbix proxy |
+ROW |1498 |28587 |Application|Zabbix proxy |
+ROW |1499 |28588 |Application|Zabbix proxy |
+ROW |1500 |28589 |Application|Zabbix proxy |
+ROW |1501 |28590 |Application|Zabbix proxy |
+ROW |1502 |28591 |Application|Zabbix proxy |
+ROW |1503 |28592 |Application|Zabbix proxy |
+ROW |1504 |28593 |Application|Zabbix proxy |
+ROW |1505 |28594 |Application|Zabbix proxy |
+ROW |1506 |28595 |Application|Zabbix proxy |
+ROW |1507 |28596 |Application|Zabbix proxy |
+ROW |1508 |28597 |Application|Zabbix proxy |
+ROW |1509 |28598 |Application|Zabbix proxy |
+ROW |1510 |28599 |Application|Zabbix proxy |
+ROW |1511 |28600 |Application|Zabbix proxy |
+ROW |1512 |28601 |Application|Zabbix proxy |
+ROW |1513 |28602 |Application|Zabbix proxy |
+ROW |1514 |28603 |Application|Zabbix proxy |
+ROW |1515 |28604 |Application|Zabbix proxy |
+ROW |1516 |28605 |Application|Zabbix proxy |
+ROW |1517 |28606 |Application|Zabbix proxy |
+ROW |1518 |28607 |Application|Zabbix proxy |
+ROW |1519 |28608 |Application|Zabbix proxy |
+ROW |1520 |28609 |Application|Zabbix proxy |
+ROW |1521 |28610 |Application|Zabbix proxy |
+ROW |1522 |28611 |Application|Zabbix proxy |
+ROW |1523 |28612 |Application|Zabbix proxy |
+ROW |1524 |28613 |Application|Zabbix proxy |
+ROW |1525 |28614 |Application|Zabbix proxy |
+ROW |1526 |28615 |Application|Zabbix proxy |
+ROW |1527 |28616 |Application|Zabbix proxy |
+ROW |1528 |31052 |Application|Zabbix proxy |
+ROW |1529 |33012 |Application|Zabbix proxy |
+ROW |1530 |33013 |Application|Zabbix proxy |
+ROW |1531 |28743 |Application|Apache |
+ROW |1532 |28744 |Application|Apache |
+ROW |1533 |28745 |Application|Apache |
+ROW |1534 |28746 |Application|Apache |
+ROW |1535 |28747 |Application|Apache |
+ROW |1536 |28748 |Application|Apache |
+ROW |1537 |30897 |Application|Apache |
+ROW |1538 |30898 |Application|Apache |
+ROW |1539 |30899 |Application|Apache |
+ROW |1540 |30900 |Application|Apache |
+ROW |1541 |30901 |Application|Apache |
+ROW |1542 |30902 |Application|Apache |
+ROW |1543 |30903 |Application|Apache |
+ROW |1544 |30904 |Application|Apache |
+ROW |1545 |30905 |Application|Apache |
+ROW |1546 |30906 |Application|Apache |
+ROW |1547 |30907 |Application|Apache |
+ROW |1548 |30908 |Application|Apache |
+ROW |1549 |30909 |Application|Apache |
+ROW |1550 |30910 |Application|Apache |
+ROW |1551 |30911 |Application|Apache |
+ROW |1552 |30912 |Application|Apache |
+ROW |1553 |30913 |Application|Apache |
+ROW |1554 |30914 |Application|Apache |
+ROW |1555 |30915 |Application|Apache |
+ROW |1556 |30917 |Application|Apache |
+ROW |1557 |30918 |Application|Apache |
+ROW |1558 |30919 |Application|Apache |
+ROW |1559 |30920 |Application|Apache |
+ROW |1560 |30921 |Application|Apache |
+ROW |1561 |30922 |Application|Apache |
+ROW |1562 |30896 |Application|Zabbix raw items |
+ROW |1563 |28776 |Application|Apache |
+ROW |1564 |28777 |Application|Apache |
+ROW |1565 |28778 |Application|Apache |
+ROW |1566 |28779 |Application|Apache |
+ROW |1567 |28780 |Application|Apache |
+ROW |1568 |28781 |Application|Apache |
+ROW |1569 |28782 |Application|Apache |
+ROW |1570 |28783 |Application|Apache |
+ROW |1571 |28784 |Application|Apache |
+ROW |1572 |28785 |Application|Apache |
+ROW |1573 |28786 |Application|Apache |
+ROW |1574 |28787 |Application|Apache |
+ROW |1575 |28788 |Application|Apache |
+ROW |1576 |28789 |Application|Apache |
+ROW |1577 |28790 |Application|Apache |
+ROW |1578 |28791 |Application|Apache |
+ROW |1579 |28792 |Application|Apache |
+ROW |1580 |28793 |Application|Apache |
+ROW |1581 |28794 |Application|Apache |
+ROW |1582 |28795 |Application|Apache |
+ROW |1583 |28796 |Application|Apache |
+ROW |1584 |28798 |Application|Apache |
+ROW |1585 |28799 |Application|Apache |
+ROW |1586 |28800 |Application|Apache |
+ROW |1587 |28801 |Application|Apache |
+ROW |1588 |28802 |Application|Apache |
+ROW |1589 |28803 |Application|Apache |
+ROW |1590 |28775 |Application|Zabbix raw items |
+ROW |1591 |28805 |Application|Nginx |
+ROW |1592 |28806 |Application|Nginx |
+ROW |1593 |28807 |Application|Nginx |
+ROW |1594 |28808 |Application|Nginx |
+ROW |1595 |28809 |Application|Nginx |
+ROW |1596 |28810 |Application|Nginx |
+ROW |1597 |28811 |Application|Nginx |
+ROW |1598 |28812 |Application|Nginx |
+ROW |1599 |28813 |Application|Nginx |
+ROW |1600 |28814 |Application|Nginx |
+ROW |1601 |28815 |Application|Nginx |
+ROW |1602 |28816 |Application|Nginx |
+ROW |1603 |28817 |Application|Nginx |
+ROW |1604 |28818 |Application|Nginx |
+ROW |1605 |28819 |Application|Nginx |
+ROW |1606 |28820 |Application|Nginx |
+ROW |1607 |28804 |Application|Zabbix raw items |
+ROW |1608 |28822 |Application|Nginx |
+ROW |1609 |28823 |Application|Nginx |
+ROW |1610 |28824 |Application|Nginx |
+ROW |1611 |28825 |Application|Nginx |
+ROW |1612 |28826 |Application|Nginx |
+ROW |1613 |28827 |Application|Nginx |
+ROW |1614 |28828 |Application|Nginx |
+ROW |1615 |28829 |Application|Nginx |
+ROW |1616 |28830 |Application|Nginx |
+ROW |1617 |28831 |Application|Nginx |
+ROW |1618 |28832 |Application|Nginx |
+ROW |1619 |28833 |Application|Nginx |
+ROW |1620 |28821 |Application|Zabbix raw items |
+ROW |1621 |28978 |Application|Memory |
+ROW |1622 |28979 |Application|Memory |
+ROW |1623 |28980 |Application|Memory |
+ROW |1624 |28981 |Application|Memory |
+ROW |1625 |28982 |Application|Memory |
+ROW |1626 |28983 |Application|Memory |
+ROW |1627 |28984 |Application|Memory |
+ROW |1628 |28985 |Application|Memory |
+ROW |1629 |28986 |Application|Memory |
+ROW |1630 |28987 |Application|CPU |
+ROW |1631 |28988 |Application|CPU |
+ROW |1632 |28989 |Application|CPU |
+ROW |1633 |28990 |Application|CPU |
+ROW |1634 |28991 |Application|CPU |
+ROW |1635 |28992 |Application|CPU |
+ROW |1636 |29017 |Application|CPU |
+ROW |1637 |29018 |Application|CPU |
+ROW |1638 |29019 |Application|CPU |
+ROW |1639 |29020 |Application|CPU |
+ROW |1640 |29021 |Application|CPU |
+ROW |1641 |29022 |Application|CPU |
+ROW |1642 |29023 |Application|CPU |
+ROW |1643 |29024 |Application|CPU |
+ROW |1644 |29025 |Application|CPU |
+ROW |1645 |29026 |Application|CPU |
+ROW |1646 |29048 |Application|CPU |
+ROW |1647 |29087 |Application|CPU |
+ROW |1648 |29088 |Application|CPU |
+ROW |1649 |29089 |Application|CPU |
+ROW |1650 |29090 |Application|CPU |
+ROW |1651 |29091 |Application|CPU |
+ROW |1652 |29092 |Application|CPU |
+ROW |1653 |29093 |Application|CPU |
+ROW |1654 |29094 |Application|CPU |
+ROW |1655 |29095 |Application|CPU |
+ROW |1656 |29096 |Application|CPU |
+ROW |1657 |29097 |Application|CPU |
+ROW |1658 |29098 |Application|CPU |
+ROW |1659 |29099 |Application|CPU |
+ROW |1660 |29100 |Application|CPU |
+ROW |1661 |29101 |Application|CPU |
+ROW |1662 |29102 |Application|CPU |
+ROW |1663 |29198 |Application|CPU |
+ROW |1664 |29103 |Application|Memory |
+ROW |1665 |29104 |Application|Memory |
+ROW |1666 |29105 |Application|Memory |
+ROW |1667 |29106 |Application|Memory |
+ROW |1668 |29107 |Application|Memory |
+ROW |1669 |29108 |Application|Memory |
+ROW |1670 |31364 |Application|Memory |
+ROW |1671 |31372 |Application|Zabbix raw items |
+ROW |1672 |31381 |Application|Zabbix raw items |
+ROW |1673 |31384 |Application|Zabbix raw items |
+ROW |1674 |29111 |Application|General |
+ROW |1675 |29112 |Application|General |
+ROW |1676 |29113 |Application|General |
+ROW |1677 |29114 |Application|General |
+ROW |1678 |29115 |Application|General |
+ROW |1679 |29116 |Application|General |
+ROW |1680 |29117 |Application|General |
+ROW |1681 |29118 |Application|General |
+ROW |1682 |29119 |Application|General |
+ROW |1683 |29121 |Application|Inventory |
+ROW |1684 |29122 |Application|Inventory |
+ROW |1685 |29123 |Application|Inventory |
+ROW |1686 |29120 |Application|Security |
+ROW |1687 |29110 |Application|Status |
+ROW |1688 |29399 |Application|CPU |
+ROW |1689 |29405 |Application|CPU |
+ROW |1690 |29406 |Application|CPU |
+ROW |1691 |29407 |Application|CPU |
+ROW |1692 |29408 |Application|CPU |
+ROW |1693 |29409 |Application|CPU |
+ROW |1694 |29410 |Application|CPU |
+ROW |1695 |29411 |Application|CPU |
+ROW |1696 |29412 |Application|CPU |
+ROW |1697 |29413 |Application|CPU |
+ROW |1698 |29416 |Application|CPU |
+ROW |1699 |29417 |Application|CPU |
+ROW |1700 |29418 |Application|CPU |
+ROW |1701 |29419 |Application|CPU |
+ROW |1702 |29420 |Application|CPU |
+ROW |1703 |29426 |Application|CPU |
+ROW |1704 |29427 |Application|CPU |
+ROW |1705 |29398 |Application|General |
+ROW |1706 |29404 |Application|General |
+ROW |1707 |29414 |Application|General |
+ROW |1708 |29423 |Application|General |
+ROW |1709 |29424 |Application|General |
+ROW |1710 |29425 |Application|General |
+ROW |1711 |29422 |Application|Inventory |
+ROW |1712 |29428 |Application|Inventory |
+ROW |1713 |29396 |Application|Memory |
+ROW |1714 |29397 |Application|Memory |
+ROW |1715 |29400 |Application|Memory |
+ROW |1716 |29401 |Application|Memory |
+ROW |1717 |29402 |Application|Memory |
+ROW |1718 |29403 |Application|Memory |
+ROW |1719 |29415 |Application|Monitoring agent |
+ROW |1720 |29421 |Application|Status |
+ROW |1721 |29395 |Application|Zabbix raw items |
+ROW |1722 |29450 |Application|Zabbix raw items |
+ROW |1723 |29451 |Application|Zabbix raw items |
+ROW |1724 |29454 |Application|CPU |
+ROW |1725 |29455 |Application|CPU |
+ROW |1726 |29456 |Application|CPU |
+ROW |1727 |29457 |Application|CPU |
+ROW |1728 |29458 |Application|CPU |
+ROW |1729 |29459 |Application|CPU |
+ROW |1730 |30137 |Application|CPU |
+ROW |1731 |31419 |Application|CPU |
+ROW |1732 |29460 |Application|Memory |
+ROW |1733 |29461 |Application|Memory |
+ROW |1734 |29462 |Application|Memory |
+ROW |1735 |29463 |Application|Memory |
+ROW |1736 |29466 |Application|Memory |
+ROW |1737 |29467 |Application|Memory |
+ROW |1738 |29468 |Application|Memory |
+ROW |1739 |29469 |Application|Memory |
+ROW |1740 |29470 |Application|Memory |
+ROW |1741 |31420 |Application|Memory |
+ROW |1742 |31421 |Application|Memory |
+ROW |1743 |31427 |Application|Memory |
+ROW |1744 |29473 |Application|General |
+ROW |1745 |29474 |Application|General |
+ROW |1746 |29475 |Application|General |
+ROW |1747 |29476 |Application|General |
+ROW |1748 |29477 |Application|General |
+ROW |1749 |29478 |Application|Inventory |
+ROW |1750 |29472 |Application|Status |
+ROW |1751 |31422 |Application|Zabbix raw items |
+ROW |1752 |29545 |Application|Monitoring agent |
+ROW |1753 |29546 |Application|Monitoring agent |
+ROW |1754 |29547 |Application|Status |
+ROW |1755 |30000 |Application|RabbitMQ |
+ROW |1756 |30001 |Application|RabbitMQ |
+ROW |1757 |30002 |Application|RabbitMQ |
+ROW |1758 |30003 |Application|RabbitMQ |
+ROW |1759 |30004 |Application|RabbitMQ |
+ROW |1760 |30005 |Application|RabbitMQ |
+ROW |1761 |30006 |Application|RabbitMQ |
+ROW |1762 |30007 |Application|RabbitMQ |
+ROW |1763 |30008 |Application|RabbitMQ |
+ROW |1764 |30009 |Application|RabbitMQ |
+ROW |1765 |30010 |Application|RabbitMQ |
+ROW |1766 |30011 |Application|RabbitMQ |
+ROW |1767 |30012 |Application|RabbitMQ |
+ROW |1768 |30013 |Application|RabbitMQ |
+ROW |1769 |30014 |Application|RabbitMQ |
+ROW |1770 |30015 |Application|RabbitMQ |
+ROW |1771 |30016 |Application|RabbitMQ |
+ROW |1772 |30017 |Application|RabbitMQ |
+ROW |1773 |30018 |Application|RabbitMQ |
+ROW |1774 |30019 |Application|RabbitMQ |
+ROW |1775 |30020 |Application|RabbitMQ |
+ROW |1776 |30021 |Application|RabbitMQ |
+ROW |1777 |30022 |Application|RabbitMQ |
+ROW |1778 |30023 |Application|RabbitMQ |
+ROW |1779 |33747 |Application|RabbitMQ |
+ROW |1780 |29998 |Application|Zabbix raw items |
+ROW |1781 |29999 |Application|Zabbix raw items |
+ROW |1782 |29655 |Application|RabbitMQ |
+ROW |1783 |29656 |Application|RabbitMQ |
+ROW |1784 |29657 |Application|RabbitMQ |
+ROW |1785 |29658 |Application|RabbitMQ |
+ROW |1786 |29659 |Application|RabbitMQ |
+ROW |1787 |29660 |Application|RabbitMQ |
+ROW |1788 |29687 |Application|RabbitMQ |
+ROW |1789 |29688 |Application|RabbitMQ |
+ROW |1790 |29691 |Application|RabbitMQ |
+ROW |1791 |29692 |Application|RabbitMQ |
+ROW |1792 |29693 |Application|RabbitMQ |
+ROW |1793 |29694 |Application|RabbitMQ |
+ROW |1794 |29695 |Application|RabbitMQ |
+ROW |1795 |29696 |Application|RabbitMQ |
+ROW |1796 |29697 |Application|RabbitMQ |
+ROW |1797 |29698 |Application|RabbitMQ |
+ROW |1798 |29699 |Application|RabbitMQ |
+ROW |1799 |29700 |Application|RabbitMQ |
+ROW |1800 |29701 |Application|RabbitMQ |
+ROW |1801 |30024 |Application|RabbitMQ |
+ROW |1802 |30025 |Application|RabbitMQ |
+ROW |1803 |33748 |Application|RabbitMQ |
+ROW |1804 |33749 |Application|RabbitMQ |
+ROW |1805 |33750 |Application|RabbitMQ |
+ROW |1806 |33751 |Application|RabbitMQ |
+ROW |1807 |33752 |Application|RabbitMQ |
+ROW |1808 |33753 |Application|RabbitMQ |
+ROW |1809 |29653 |Application|Zabbix raw items |
+ROW |1810 |29654 |Application|Zabbix raw items |
+ROW |1811 |29661 |Application|Zabbix raw items |
+ROW |1812 |29746 |Application|RabbitMQ |
+ROW |1813 |29747 |Application|RabbitMQ |
+ROW |1814 |29748 |Application|RabbitMQ |
+ROW |1815 |29749 |Application|RabbitMQ |
+ROW |1816 |29750 |Application|RabbitMQ |
+ROW |1817 |29751 |Application|RabbitMQ |
+ROW |1818 |29752 |Application|RabbitMQ |
+ROW |1819 |29753 |Application|RabbitMQ |
+ROW |1820 |29754 |Application|RabbitMQ |
+ROW |1821 |29755 |Application|RabbitMQ |
+ROW |1822 |29756 |Application|RabbitMQ |
+ROW |1823 |29757 |Application|RabbitMQ |
+ROW |1824 |29758 |Application|RabbitMQ |
+ROW |1825 |29759 |Application|RabbitMQ |
+ROW |1826 |29760 |Application|RabbitMQ |
+ROW |1827 |29761 |Application|RabbitMQ |
+ROW |1828 |29762 |Application|RabbitMQ |
+ROW |1829 |29763 |Application|RabbitMQ |
+ROW |1830 |29764 |Application|RabbitMQ |
+ROW |1831 |29765 |Application|RabbitMQ |
+ROW |1832 |29766 |Application|RabbitMQ |
+ROW |1833 |29767 |Application|RabbitMQ |
+ROW |1834 |29768 |Application|RabbitMQ |
+ROW |1835 |29769 |Application|RabbitMQ |
+ROW |1836 |33757 |Application|RabbitMQ |
+ROW |1837 |29738 |Application|Zabbix raw items |
+ROW |1838 |29739 |Application|Zabbix raw items |
+ROW |1839 |29742 |Application|RabbitMQ |
+ROW |1840 |29743 |Application|RabbitMQ |
+ROW |1841 |29771 |Application|RabbitMQ |
+ROW |1842 |29772 |Application|RabbitMQ |
+ROW |1843 |29773 |Application|RabbitMQ |
+ROW |1844 |29774 |Application|RabbitMQ |
+ROW |1845 |29775 |Application|RabbitMQ |
+ROW |1846 |29776 |Application|RabbitMQ |
+ROW |1847 |29777 |Application|RabbitMQ |
+ROW |1848 |29779 |Application|RabbitMQ |
+ROW |1849 |29780 |Application|RabbitMQ |
+ROW |1850 |29781 |Application|RabbitMQ |
+ROW |1851 |29782 |Application|RabbitMQ |
+ROW |1852 |29783 |Application|RabbitMQ |
+ROW |1853 |29784 |Application|RabbitMQ |
+ROW |1854 |30044 |Application|RabbitMQ |
+ROW |1855 |30045 |Application|RabbitMQ |
+ROW |1856 |33758 |Application|RabbitMQ |
+ROW |1857 |33759 |Application|RabbitMQ |
+ROW |1858 |33760 |Application|RabbitMQ |
+ROW |1859 |33761 |Application|RabbitMQ |
+ROW |1860 |33762 |Application|RabbitMQ |
+ROW |1861 |33763 |Application|RabbitMQ |
+ROW |1862 |29741 |Application|Zabbix raw items |
+ROW |1863 |29745 |Application|Zabbix raw items |
+ROW |1864 |30043 |Application|Zabbix raw items |
+ROW |1865 |30083 |Application|Disk arrays |
+ROW |1866 |30084 |Application|Disk arrays |
+ROW |1867 |30085 |Application|Disk arrays |
+ROW |1868 |30075 |Application|Fans |
+ROW |1869 |30049 |Application|General |
+ROW |1870 |30050 |Application|General |
+ROW |1871 |30051 |Application|General |
+ROW |1872 |30052 |Application|General |
+ROW |1873 |30053 |Application|General |
+ROW |1874 |30054 |Application|General |
+ROW |1875 |30073 |Application|Inventory |
+ROW |1876 |30074 |Application|Inventory |
+ROW |1877 |30076 |Application|Physical disks |
+ROW |1878 |30077 |Application|Physical disks |
+ROW |1879 |30078 |Application|Physical disks |
+ROW |1880 |30079 |Application|Physical disks |
+ROW |1881 |30071 |Application|Power supply |
+ROW |1882 |30046 |Application|Status |
+ROW |1883 |30047 |Application|Status |
+ROW |1884 |30048 |Application|Status |
+ROW |1885 |30055 |Application|Status |
+ROW |1886 |30056 |Application|Status |
+ROW |1887 |30072 |Application|Status |
+ROW |1888 |30066 |Application|Temperature |
+ROW |1889 |30067 |Application|Temperature |
+ROW |1890 |30068 |Application|Temperature |
+ROW |1891 |30069 |Application|Temperature |
+ROW |1892 |30070 |Application|Temperature |
+ROW |1893 |30080 |Application|Virtual disks |
+ROW |1894 |30081 |Application|Virtual disks |
+ROW |1895 |30082 |Application|Virtual disks |
+ROW |1896 |30142 |Application|CPU |
+ROW |1897 |30157 |Application|Memory |
+ROW |1898 |30158 |Application|Memory |
+ROW |1899 |30159 |Application|Memory |
+ROW |1900 |30187 |Application|HAProxy |
+ROW |1901 |30188 |Application|HAProxy |
+ROW |1902 |30191 |Application|HAProxy |
+ROW |1903 |30192 |Application|HAProxy |
+ROW |1904 |30189 |Application|Zabbix raw items |
+ROW |1905 |30190 |Application|Zabbix raw items |
+ROW |1906 |30234 |Application|HAProxy |
+ROW |1907 |30235 |Application|HAProxy |
+ROW |1908 |30789 |Application|HAProxy |
+ROW |1909 |30790 |Application|HAProxy |
+ROW |1910 |30230 |Application|Zabbix raw items |
+ROW |1911 |30231 |Application|Zabbix raw items |
+ROW |1912 |30273 |Application|Redis |
+ROW |1913 |30274 |Application|Redis |
+ROW |1914 |30277 |Application|Redis |
+ROW |1915 |30278 |Application|Redis |
+ROW |1916 |30279 |Application|Redis |
+ROW |1917 |30280 |Application|Redis |
+ROW |1918 |30281 |Application|Redis |
+ROW |1919 |30282 |Application|Redis |
+ROW |1920 |30283 |Application|Redis |
+ROW |1921 |30284 |Application|Redis |
+ROW |1922 |30285 |Application|Redis |
+ROW |1923 |30286 |Application|Redis |
+ROW |1924 |30287 |Application|Redis |
+ROW |1925 |30288 |Application|Redis |
+ROW |1926 |30289 |Application|Redis |
+ROW |1927 |30290 |Application|Redis |
+ROW |1928 |30291 |Application|Redis |
+ROW |1929 |30292 |Application|Redis |
+ROW |1930 |30293 |Application|Redis |
+ROW |1931 |30294 |Application|Redis |
+ROW |1932 |30295 |Application|Redis |
+ROW |1933 |30296 |Application|Redis |
+ROW |1934 |30297 |Application|Redis |
+ROW |1935 |30298 |Application|Redis |
+ROW |1936 |30299 |Application|Redis |
+ROW |1937 |30300 |Application|Redis |
+ROW |1938 |30301 |Application|Redis |
+ROW |1939 |30302 |Application|Redis |
+ROW |1940 |30303 |Application|Redis |
+ROW |1941 |30304 |Application|Redis |
+ROW |1942 |30305 |Application|Redis |
+ROW |1943 |30306 |Application|Redis |
+ROW |1944 |30307 |Application|Redis |
+ROW |1945 |30308 |Application|Redis |
+ROW |1946 |30309 |Application|Redis |
+ROW |1947 |30310 |Application|Redis |
+ROW |1948 |30311 |Application|Redis |
+ROW |1949 |30312 |Application|Redis |
+ROW |1950 |30313 |Application|Redis |
+ROW |1951 |30314 |Application|Redis |
+ROW |1952 |30315 |Application|Redis |
+ROW |1953 |30316 |Application|Redis |
+ROW |1954 |30317 |Application|Redis |
+ROW |1955 |30318 |Application|Redis |
+ROW |1956 |30319 |Application|Redis |
+ROW |1957 |30320 |Application|Redis |
+ROW |1958 |30321 |Application|Redis |
+ROW |1959 |30322 |Application|Redis |
+ROW |1960 |30323 |Application|Redis |
+ROW |1961 |30324 |Application|Redis |
+ROW |1962 |30325 |Application|Redis |
+ROW |1963 |30326 |Application|Redis |
+ROW |1964 |30327 |Application|Redis |
+ROW |1965 |30328 |Application|Redis |
+ROW |1966 |30329 |Application|Redis |
+ROW |1967 |30330 |Application|Redis |
+ROW |1968 |30331 |Application|Redis |
+ROW |1969 |30332 |Application|Redis |
+ROW |1970 |30333 |Application|Redis |
+ROW |1971 |30334 |Application|Redis |
+ROW |1972 |30335 |Application|Redis |
+ROW |1973 |30336 |Application|Redis |
+ROW |1974 |30344 |Application|Redis |
+ROW |1975 |30345 |Application|Redis |
+ROW |1976 |30346 |Application|Redis |
+ROW |1977 |30347 |Application|Redis |
+ROW |1978 |30351 |Application|Redis |
+ROW |1979 |30352 |Application|Redis |
+ROW |1980 |30353 |Application|Redis |
+ROW |1981 |30354 |Application|Redis |
+ROW |1982 |30355 |Application|Redis |
+ROW |1983 |30356 |Application|Redis |
+ROW |1984 |30357 |Application|Redis |
+ROW |1985 |30358 |Application|Redis |
+ROW |1986 |30359 |Application|Redis |
+ROW |1987 |30360 |Application|Redis |
+ROW |1988 |30361 |Application|Redis |
+ROW |1989 |30362 |Application|Redis |
+ROW |1990 |30363 |Application|Redis |
+ROW |1991 |30364 |Application|Redis |
+ROW |1992 |30365 |Application|Redis |
+ROW |1993 |30366 |Application|Redis |
+ROW |1994 |30367 |Application|Redis |
+ROW |1995 |30368 |Application|Redis |
+ROW |1996 |30369 |Application|Redis |
+ROW |1997 |30370 |Application|Redis |
+ROW |1998 |30371 |Application|Redis |
+ROW |1999 |30372 |Application|Redis |
+ROW |2000 |30373 |Application|Redis |
+ROW |2001 |30374 |Application|Redis |
+ROW |2002 |30375 |Application|Redis |
+ROW |2003 |30376 |Application|Redis |
+ROW |2004 |30377 |Application|Redis |
+ROW |2005 |30378 |Application|Redis |
+ROW |2006 |30379 |Application|Redis |
+ROW |2007 |30380 |Application|Redis |
+ROW |2008 |30381 |Application|Redis |
+ROW |2009 |30382 |Application|Redis |
+ROW |2010 |30383 |Application|Redis |
+ROW |2011 |30384 |Application|Redis |
+ROW |2012 |30385 |Application|Redis |
+ROW |2013 |30386 |Application|Redis |
+ROW |2014 |30387 |Application|Redis |
+ROW |2015 |30388 |Application|Redis |
+ROW |2016 |30389 |Application|Redis |
+ROW |2017 |30390 |Application|Redis |
+ROW |2018 |30391 |Application|Redis |
+ROW |2019 |30392 |Application|Redis |
+ROW |2020 |30393 |Application|Redis |
+ROW |2021 |30394 |Application|Redis |
+ROW |2022 |30395 |Application|Redis |
+ROW |2023 |30397 |Application|Redis |
+ROW |2024 |30398 |Application|Redis |
+ROW |2025 |30399 |Application|Redis |
+ROW |2026 |30400 |Application|Redis |
+ROW |2027 |30401 |Application|Redis |
+ROW |2028 |30402 |Application|Redis |
+ROW |2029 |30403 |Application|Redis |
+ROW |2030 |30404 |Application|Redis |
+ROW |2031 |30275 |Application|Zabbix raw items |
+ROW |2032 |30276 |Application|Zabbix raw items |
+ROW |2033 |30425 |Application|Services |
+ROW |2034 |30431 |Application|MySQL |
+ROW |2035 |30432 |Application|MySQL |
+ROW |2036 |30434 |Application|MySQL |
+ROW |2037 |30435 |Application|MySQL |
+ROW |2038 |30437 |Application|MySQL |
+ROW |2039 |30438 |Application|MySQL |
+ROW |2040 |30439 |Application|MySQL |
+ROW |2041 |30440 |Application|MySQL |
+ROW |2042 |30441 |Application|MySQL |
+ROW |2043 |30442 |Application|MySQL |
+ROW |2044 |30444 |Application|MySQL |
+ROW |2045 |30445 |Application|MySQL |
+ROW |2046 |30446 |Application|MySQL |
+ROW |2047 |30447 |Application|MySQL |
+ROW |2048 |30449 |Application|MySQL |
+ROW |2049 |30450 |Application|MySQL |
+ROW |2050 |30451 |Application|MySQL |
+ROW |2051 |30452 |Application|MySQL |
+ROW |2052 |30453 |Application|MySQL |
+ROW |2053 |30454 |Application|MySQL |
+ROW |2054 |30455 |Application|MySQL |
+ROW |2055 |30456 |Application|MySQL |
+ROW |2056 |30457 |Application|MySQL |
+ROW |2057 |30458 |Application|MySQL |
+ROW |2058 |30459 |Application|MySQL |
+ROW |2059 |30460 |Application|MySQL |
+ROW |2060 |30461 |Application|MySQL |
+ROW |2061 |30462 |Application|MySQL |
+ROW |2062 |30463 |Application|MySQL |
+ROW |2063 |30464 |Application|MySQL |
+ROW |2064 |30465 |Application|MySQL |
+ROW |2065 |30466 |Application|MySQL |
+ROW |2066 |30470 |Application|MySQL |
+ROW |2067 |30471 |Application|MySQL |
+ROW |2068 |30474 |Application|MySQL |
+ROW |2069 |30476 |Application|MySQL |
+ROW |2070 |30477 |Application|MySQL |
+ROW |2071 |30478 |Application|MySQL |
+ROW |2072 |31168 |Application|MySQL |
+ROW |2073 |31169 |Application|MySQL |
+ROW |2074 |31170 |Application|MySQL |
+ROW |2075 |31171 |Application|MySQL |
+ROW |2076 |33126 |Application|MySQL |
+ROW |2077 |33127 |Application|MySQL |
+ROW |2078 |33128 |Application|MySQL |
+ROW |2079 |33129 |Application|MySQL |
+ROW |2080 |33130 |Application|MySQL |
+ROW |2081 |33131 |Application|MySQL |
+ROW |2082 |33132 |Application|MySQL |
+ROW |2083 |33134 |Application|MySQL |
+ROW |2084 |33135 |Application|MySQL |
+ROW |2085 |33136 |Application|MySQL |
+ROW |2086 |33137 |Application|MySQL |
+ROW |2087 |33138 |Application|MySQL |
+ROW |2088 |33139 |Application|MySQL |
+ROW |2089 |30433 |Application|Zabbix raw items |
+ROW |2090 |30436 |Application|Zabbix raw items |
+ROW |2091 |30443 |Application|Zabbix raw items |
+ROW |2092 |30475 |Application|Zabbix raw items |
+ROW |2093 |30480 |Application|MySQL |
+ROW |2094 |30481 |Application|MySQL |
+ROW |2095 |30482 |Application|MySQL |
+ROW |2096 |30483 |Application|MySQL |
+ROW |2097 |30484 |Application|MySQL |
+ROW |2098 |30486 |Application|MySQL |
+ROW |2099 |30488 |Application|MySQL |
+ROW |2100 |30489 |Application|MySQL |
+ROW |2101 |30490 |Application|MySQL |
+ROW |2102 |30491 |Application|MySQL |
+ROW |2103 |30492 |Application|MySQL |
+ROW |2104 |30493 |Application|MySQL |
+ROW |2105 |30494 |Application|MySQL |
+ROW |2106 |30495 |Application|MySQL |
+ROW |2107 |30496 |Application|MySQL |
+ROW |2108 |30497 |Application|MySQL |
+ROW |2109 |30499 |Application|MySQL |
+ROW |2110 |30500 |Application|MySQL |
+ROW |2111 |30503 |Application|MySQL |
+ROW |2112 |30504 |Application|MySQL |
+ROW |2113 |30505 |Application|MySQL |
+ROW |2114 |30506 |Application|MySQL |
+ROW |2115 |30507 |Application|MySQL |
+ROW |2116 |30508 |Application|MySQL |
+ROW |2117 |30509 |Application|MySQL |
+ROW |2118 |30510 |Application|MySQL |
+ROW |2119 |30512 |Application|MySQL |
+ROW |2120 |30513 |Application|MySQL |
+ROW |2121 |30514 |Application|MySQL |
+ROW |2122 |30515 |Application|MySQL |
+ROW |2123 |30516 |Application|MySQL |
+ROW |2124 |30517 |Application|MySQL |
+ROW |2125 |30518 |Application|MySQL |
+ROW |2126 |30519 |Application|MySQL |
+ROW |2127 |30522 |Application|MySQL |
+ROW |2128 |30524 |Application|MySQL |
+ROW |2129 |30525 |Application|MySQL |
+ROW |2130 |30526 |Application|MySQL |
+ROW |2131 |31176 |Application|MySQL |
+ROW |2132 |31177 |Application|MySQL |
+ROW |2133 |31178 |Application|MySQL |
+ROW |2134 |31179 |Application|MySQL |
+ROW |2135 |33154 |Application|MySQL |
+ROW |2136 |33155 |Application|MySQL |
+ROW |2137 |33156 |Application|MySQL |
+ROW |2138 |33157 |Application|MySQL |
+ROW |2139 |33158 |Application|MySQL |
+ROW |2140 |33159 |Application|MySQL |
+ROW |2141 |33160 |Application|MySQL |
+ROW |2142 |33162 |Application|MySQL |
+ROW |2143 |33163 |Application|MySQL |
+ROW |2144 |33164 |Application|MySQL |
+ROW |2145 |33165 |Application|MySQL |
+ROW |2146 |33166 |Application|MySQL |
+ROW |2147 |33167 |Application|MySQL |
+ROW |2148 |30479 |Application|Zabbix raw items |
+ROW |2149 |30485 |Application|Zabbix raw items |
+ROW |2150 |30487 |Application|Zabbix raw items |
+ROW |2151 |30523 |Application|Zabbix raw items |
+ROW |2152 |30530 |Application|Docker |
+ROW |2153 |30532 |Application|Docker |
+ROW |2154 |30533 |Application|Docker |
+ROW |2155 |30534 |Application|Docker |
+ROW |2156 |30535 |Application|Docker |
+ROW |2157 |30536 |Application|Docker |
+ROW |2158 |30537 |Application|Docker |
+ROW |2159 |30538 |Application|Docker |
+ROW |2160 |30539 |Application|Docker |
+ROW |2161 |30540 |Application|Docker |
+ROW |2162 |30541 |Application|Docker |
+ROW |2163 |30542 |Application|Docker |
+ROW |2164 |30543 |Application|Docker |
+ROW |2165 |30544 |Application|Docker |
+ROW |2166 |30545 |Application|Docker |
+ROW |2167 |30546 |Application|Docker |
+ROW |2168 |30547 |Application|Docker |
+ROW |2169 |30548 |Application|Docker |
+ROW |2170 |30549 |Application|Docker |
+ROW |2171 |30550 |Application|Docker |
+ROW |2172 |30551 |Application|Docker |
+ROW |2173 |30552 |Application|Docker |
+ROW |2174 |30553 |Application|Docker |
+ROW |2175 |30554 |Application|Docker |
+ROW |2176 |30555 |Application|Docker |
+ROW |2177 |30556 |Application|Docker |
+ROW |2178 |30557 |Application|Docker |
+ROW |2179 |30558 |Application|Docker |
+ROW |2180 |30559 |Application|Docker |
+ROW |2181 |30560 |Application|Docker |
+ROW |2182 |30561 |Application|Docker |
+ROW |2183 |30562 |Application|Docker |
+ROW |2184 |30563 |Application|Docker |
+ROW |2185 |30564 |Application|Docker |
+ROW |2186 |30565 |Application|Docker |
+ROW |2187 |30566 |Application|Docker |
+ROW |2188 |30567 |Application|Docker |
+ROW |2189 |30568 |Application|Docker |
+ROW |2190 |30569 |Application|Docker |
+ROW |2191 |30570 |Application|Docker |
+ROW |2192 |30527 |Application|Zabbix raw items |
+ROW |2193 |30528 |Application|Zabbix raw items |
+ROW |2194 |30529 |Application|Zabbix raw items |
+ROW |2195 |30531 |Application|Zabbix raw items |
+ROW |2196 |30611 |Application|Memcached |
+ROW |2197 |30613 |Application|Memcached |
+ROW |2198 |30614 |Application|Memcached |
+ROW |2199 |30615 |Application|Memcached |
+ROW |2200 |30616 |Application|Memcached |
+ROW |2201 |30617 |Application|Memcached |
+ROW |2202 |30618 |Application|Memcached |
+ROW |2203 |30619 |Application|Memcached |
+ROW |2204 |30620 |Application|Memcached |
+ROW |2205 |30621 |Application|Memcached |
+ROW |2206 |30622 |Application|Memcached |
+ROW |2207 |30623 |Application|Memcached |
+ROW |2208 |30624 |Application|Memcached |
+ROW |2209 |30625 |Application|Memcached |
+ROW |2210 |30626 |Application|Memcached |
+ROW |2211 |30627 |Application|Memcached |
+ROW |2212 |30628 |Application|Memcached |
+ROW |2213 |30629 |Application|Memcached |
+ROW |2214 |30630 |Application|Memcached |
+ROW |2215 |30631 |Application|Memcached |
+ROW |2216 |30632 |Application|Memcached |
+ROW |2217 |30633 |Application|Memcached |
+ROW |2218 |30634 |Application|Memcached |
+ROW |2219 |30635 |Application|Memcached |
+ROW |2220 |30636 |Application|Memcached |
+ROW |2221 |30612 |Application|Zabbix raw items |
+ROW |2222 |30637 |Application|MySQL |
+ROW |2223 |30638 |Application|MySQL |
+ROW |2224 |30640 |Application|MySQL |
+ROW |2225 |30641 |Application|MySQL |
+ROW |2226 |30643 |Application|MySQL |
+ROW |2227 |30644 |Application|MySQL |
+ROW |2228 |30645 |Application|MySQL |
+ROW |2229 |30646 |Application|MySQL |
+ROW |2230 |30647 |Application|MySQL |
+ROW |2231 |30648 |Application|MySQL |
+ROW |2232 |30650 |Application|MySQL |
+ROW |2233 |30651 |Application|MySQL |
+ROW |2234 |30652 |Application|MySQL |
+ROW |2235 |30653 |Application|MySQL |
+ROW |2236 |30655 |Application|MySQL |
+ROW |2237 |30656 |Application|MySQL |
+ROW |2238 |30657 |Application|MySQL |
+ROW |2239 |30658 |Application|MySQL |
+ROW |2240 |30659 |Application|MySQL |
+ROW |2241 |30660 |Application|MySQL |
+ROW |2242 |30661 |Application|MySQL |
+ROW |2243 |30662 |Application|MySQL |
+ROW |2244 |30663 |Application|MySQL |
+ROW |2245 |30664 |Application|MySQL |
+ROW |2246 |30665 |Application|MySQL |
+ROW |2247 |30666 |Application|MySQL |
+ROW |2248 |30667 |Application|MySQL |
+ROW |2249 |30668 |Application|MySQL |
+ROW |2250 |30669 |Application|MySQL |
+ROW |2251 |30670 |Application|MySQL |
+ROW |2252 |30671 |Application|MySQL |
+ROW |2253 |30672 |Application|MySQL |
+ROW |2254 |30676 |Application|MySQL |
+ROW |2255 |30677 |Application|MySQL |
+ROW |2256 |30680 |Application|MySQL |
+ROW |2257 |30682 |Application|MySQL |
+ROW |2258 |30683 |Application|MySQL |
+ROW |2259 |30684 |Application|MySQL |
+ROW |2260 |31172 |Application|MySQL |
+ROW |2261 |31173 |Application|MySQL |
+ROW |2262 |31174 |Application|MySQL |
+ROW |2263 |31175 |Application|MySQL |
+ROW |2264 |33140 |Application|MySQL |
+ROW |2265 |33141 |Application|MySQL |
+ROW |2266 |33142 |Application|MySQL |
+ROW |2267 |33143 |Application|MySQL |
+ROW |2268 |33144 |Application|MySQL |
+ROW |2269 |33145 |Application|MySQL |
+ROW |2270 |33146 |Application|MySQL |
+ROW |2271 |33148 |Application|MySQL |
+ROW |2272 |33149 |Application|MySQL |
+ROW |2273 |33150 |Application|MySQL |
+ROW |2274 |33151 |Application|MySQL |
+ROW |2275 |33152 |Application|MySQL |
+ROW |2276 |33153 |Application|MySQL |
+ROW |2277 |30639 |Application|Zabbix raw items |
+ROW |2278 |30642 |Application|Zabbix raw items |
+ROW |2279 |30649 |Application|Zabbix raw items |
+ROW |2280 |30681 |Application|Zabbix raw items |
+ROW |2281 |30685 |Application|Zabbix raw items |
+ROW |2282 |30690 |Application|ES cluster |
+ROW |2283 |30692 |Application|ES cluster |
+ROW |2284 |30695 |Application|ES cluster |
+ROW |2285 |30696 |Application|ES cluster |
+ROW |2286 |30697 |Application|ES cluster |
+ROW |2287 |30698 |Application|ES cluster |
+ROW |2288 |30699 |Application|ES cluster |
+ROW |2289 |30700 |Application|ES cluster |
+ROW |2290 |30701 |Application|ES cluster |
+ROW |2291 |30702 |Application|ES cluster |
+ROW |2292 |30703 |Application|ES cluster |
+ROW |2293 |30704 |Application|ES cluster |
+ROW |2294 |30705 |Application|ES cluster |
+ROW |2295 |30706 |Application|ES cluster |
+ROW |2296 |30707 |Application|ES cluster |
+ROW |2297 |30708 |Application|ES cluster |
+ROW |2298 |30709 |Application|ES cluster |
+ROW |2299 |30710 |Application|ES cluster |
+ROW |2300 |30711 |Application|ES cluster |
+ROW |2301 |30712 |Application|ES cluster |
+ROW |2302 |30691 |Application|Zabbix raw items |
+ROW |2303 |30693 |Application|Zabbix raw items |
+ROW |2304 |30694 |Application|Zabbix raw items |
+ROW |2305 |30719 |Application|Zabbix raw items |
+ROW |2306 |30739 |Application|Zabbix raw items |
+ROW |2307 |30743 |Application|Zabbix raw items |
+ROW |2308 |30744 |Application|Zabbix raw items |
+ROW |2309 |30746 |Application|Zabbix raw items |
+ROW |2310 |30747 |Application|Zabbix raw items |
+ROW |2311 |30754 |Application|Zabbix raw items |
+ROW |2312 |30756 |Application|Zabbix raw items |
+ROW |2313 |30821 |Application|ClickHouse |
+ROW |2314 |30822 |Application|ClickHouse |
+ROW |2315 |30827 |Application|ClickHouse |
+ROW |2316 |30831 |Application|ClickHouse |
+ROW |2317 |30832 |Application|ClickHouse |
+ROW |2318 |30833 |Application|ClickHouse |
+ROW |2319 |30834 |Application|ClickHouse |
+ROW |2320 |30835 |Application|ClickHouse |
+ROW |2321 |30837 |Application|ClickHouse |
+ROW |2322 |30838 |Application|ClickHouse |
+ROW |2323 |30839 |Application|ClickHouse |
+ROW |2324 |30841 |Application|ClickHouse |
+ROW |2325 |30846 |Application|ClickHouse |
+ROW |2326 |30847 |Application|ClickHouse |
+ROW |2327 |30848 |Application|ClickHouse |
+ROW |2328 |30849 |Application|ClickHouse |
+ROW |2329 |30850 |Application|ClickHouse |
+ROW |2330 |30851 |Application|ClickHouse |
+ROW |2331 |30852 |Application|ClickHouse |
+ROW |2332 |30853 |Application|ClickHouse |
+ROW |2333 |30854 |Application|ClickHouse |
+ROW |2334 |30855 |Application|ClickHouse |
+ROW |2335 |30856 |Application|ClickHouse |
+ROW |2336 |30857 |Application|ClickHouse |
+ROW |2337 |30858 |Application|ClickHouse |
+ROW |2338 |30859 |Application|ClickHouse |
+ROW |2339 |30860 |Application|ClickHouse |
+ROW |2340 |30861 |Application|ClickHouse |
+ROW |2341 |30862 |Application|ClickHouse |
+ROW |2342 |30863 |Application|ClickHouse |
+ROW |2343 |30864 |Application|ClickHouse |
+ROW |2344 |30865 |Application|ClickHouse |
+ROW |2345 |30866 |Application|ClickHouse |
+ROW |2346 |30867 |Application|ClickHouse |
+ROW |2347 |30868 |Application|ClickHouse |
+ROW |2348 |30869 |Application|ClickHouse |
+ROW |2349 |30870 |Application|ClickHouse |
+ROW |2350 |30871 |Application|ClickHouse |
+ROW |2351 |30872 |Application|ClickHouse |
+ROW |2352 |31054 |Application|ClickHouse |
+ROW |2353 |30836 |Application|ClickHouse ZooKeeper |
+ROW |2355 |30842 |Application|ClickHouse ZooKeeper |
+ROW |2356 |30843 |Application|ClickHouse ZooKeeper |
+ROW |2357 |30844 |Application|ClickHouse ZooKeeper |
+ROW |2358 |30845 |Application|ClickHouse ZooKeeper |
+ROW |2359 |30873 |Application|ClickHouse ZooKeeper |
+ROW |2360 |30823 |Application|Zabbix raw items |
+ROW |2361 |30824 |Application|Zabbix raw items |
+ROW |2362 |30825 |Application|Zabbix raw items |
+ROW |2363 |30826 |Application|Zabbix raw items |
+ROW |2364 |30828 |Application|Zabbix raw items |
+ROW |2365 |30829 |Application|Zabbix raw items |
+ROW |2366 |30830 |Application|Zabbix raw items |
+ROW |2367 |30923 |Application|Etcd |
+ROW |2368 |30924 |Application|Etcd |
+ROW |2369 |30927 |Application|Etcd |
+ROW |2370 |30928 |Application|Etcd |
+ROW |2371 |30929 |Application|Etcd |
+ROW |2372 |30930 |Application|Etcd |
+ROW |2373 |30931 |Application|Etcd |
+ROW |2374 |30932 |Application|Etcd |
+ROW |2375 |30933 |Application|Etcd |
+ROW |2376 |30934 |Application|Etcd |
+ROW |2377 |30935 |Application|Etcd |
+ROW |2378 |30936 |Application|Etcd |
+ROW |2379 |30937 |Application|Etcd |
+ROW |2380 |30938 |Application|Etcd |
+ROW |2381 |30939 |Application|Etcd |
+ROW |2382 |30940 |Application|Etcd |
+ROW |2383 |30941 |Application|Etcd |
+ROW |2384 |30942 |Application|Etcd |
+ROW |2385 |30943 |Application|Etcd |
+ROW |2386 |30944 |Application|Etcd |
+ROW |2387 |30945 |Application|Etcd |
+ROW |2388 |30946 |Application|Etcd |
+ROW |2389 |30947 |Application|Etcd |
+ROW |2390 |30948 |Application|Etcd |
+ROW |2391 |30949 |Application|Etcd |
+ROW |2392 |30950 |Application|Etcd |
+ROW |2393 |30951 |Application|Etcd |
+ROW |2394 |30952 |Application|Etcd |
+ROW |2395 |30953 |Application|Etcd |
+ROW |2396 |30954 |Application|Etcd |
+ROW |2397 |30955 |Application|Etcd |
+ROW |2398 |30956 |Application|Etcd |
+ROW |2399 |30957 |Application|Etcd |
+ROW |2400 |30958 |Application|Etcd |
+ROW |2401 |30959 |Application|Etcd |
+ROW |2402 |30960 |Application|Etcd |
+ROW |2403 |30963 |Application|Etcd |
+ROW |2404 |30925 |Application|Zabbix raw items |
+ROW |2405 |30926 |Application|Zabbix raw items |
+ROW |2406 |30968 |Application|IIS |
+ROW |2407 |30969 |Application|IIS |
+ROW |2408 |30970 |Application|IIS |
+ROW |2409 |30971 |Application|IIS |
+ROW |2410 |30972 |Application|IIS |
+ROW |2411 |30973 |Application|IIS |
+ROW |2412 |30974 |Application|IIS |
+ROW |2413 |30975 |Application|IIS |
+ROW |2414 |30976 |Application|IIS |
+ROW |2415 |30977 |Application|IIS |
+ROW |2416 |30978 |Application|IIS |
+ROW |2417 |30979 |Application|IIS |
+ROW |2418 |30980 |Application|IIS |
+ROW |2419 |30981 |Application|IIS |
+ROW |2420 |30982 |Application|IIS |
+ROW |2421 |30983 |Application|IIS |
+ROW |2422 |30984 |Application|IIS |
+ROW |2423 |30985 |Application|IIS |
+ROW |2424 |30986 |Application|IIS |
+ROW |2425 |30987 |Application|IIS |
+ROW |2426 |30988 |Application|IIS |
+ROW |2427 |30989 |Application|IIS |
+ROW |2428 |30990 |Application|IIS |
+ROW |2429 |30991 |Application|IIS |
+ROW |2430 |30992 |Application|IIS |
+ROW |2431 |30993 |Application|IIS |
+ROW |2432 |30994 |Application|IIS |
+ROW |2433 |30995 |Application|IIS |
+ROW |2434 |30996 |Application|IIS |
+ROW |2435 |30997 |Application|IIS |
+ROW |2436 |30998 |Application|IIS |
+ROW |2437 |30999 |Application|IIS |
+ROW |2438 |31000 |Application|IIS |
+ROW |2439 |31001 |Application|IIS |
+ROW |2440 |31002 |Application|IIS |
+ROW |2441 |31003 |Application|IIS |
+ROW |2442 |31004 |Application|IIS |
+ROW |2443 |31010 |Application|IIS |
+ROW |2444 |31011 |Application|IIS |
+ROW |2445 |31012 |Application|IIS |
+ROW |2446 |31013 |Application|IIS |
+ROW |2447 |31014 |Application|IIS |
+ROW |2448 |31015 |Application|IIS |
+ROW |2449 |31016 |Application|IIS |
+ROW |2450 |31017 |Application|IIS |
+ROW |2451 |31018 |Application|IIS |
+ROW |2452 |31019 |Application|IIS |
+ROW |2453 |31020 |Application|IIS |
+ROW |2454 |31021 |Application|IIS |
+ROW |2455 |31022 |Application|IIS |
+ROW |2456 |31023 |Application|IIS |
+ROW |2457 |31024 |Application|IIS |
+ROW |2458 |31025 |Application|IIS |
+ROW |2459 |31026 |Application|IIS |
+ROW |2460 |31027 |Application|IIS |
+ROW |2461 |31028 |Application|IIS |
+ROW |2462 |31029 |Application|IIS |
+ROW |2463 |31030 |Application|IIS |
+ROW |2464 |31031 |Application|IIS |
+ROW |2465 |31032 |Application|IIS |
+ROW |2466 |31033 |Application|IIS |
+ROW |2467 |31034 |Application|IIS |
+ROW |2468 |31035 |Application|IIS |
+ROW |2469 |31036 |Application|IIS |
+ROW |2470 |31037 |Application|IIS |
+ROW |2471 |31038 |Application|IIS |
+ROW |2472 |31039 |Application|IIS |
+ROW |2473 |31040 |Application|IIS |
+ROW |2474 |31041 |Application|IIS |
+ROW |2475 |31042 |Application|IIS |
+ROW |2476 |31043 |Application|IIS |
+ROW |2477 |31044 |Application|IIS |
+ROW |2478 |31045 |Application|IIS |
+ROW |2479 |31046 |Application|IIS |
+ROW |2480 |31056 |Application|MSSQL |
+ROW |2481 |31057 |Application|MSSQL |
+ROW |2482 |31058 |Application|MSSQL |
+ROW |2483 |31060 |Application|MSSQL |
+ROW |2484 |31061 |Application|MSSQL |
+ROW |2485 |31062 |Application|MSSQL |
+ROW |2486 |31063 |Application|MSSQL |
+ROW |2487 |31064 |Application|MSSQL |
+ROW |2488 |31065 |Application|MSSQL |
+ROW |2489 |31066 |Application|MSSQL |
+ROW |2490 |31067 |Application|MSSQL |
+ROW |2491 |31068 |Application|MSSQL |
+ROW |2492 |31069 |Application|MSSQL |
+ROW |2493 |31070 |Application|MSSQL |
+ROW |2494 |31071 |Application|MSSQL |
+ROW |2495 |31072 |Application|MSSQL |
+ROW |2496 |31073 |Application|MSSQL |
+ROW |2497 |31074 |Application|MSSQL |
+ROW |2498 |31075 |Application|MSSQL |
+ROW |2499 |31076 |Application|MSSQL |
+ROW |2500 |31077 |Application|MSSQL |
+ROW |2501 |31078 |Application|MSSQL |
+ROW |2502 |31079 |Application|MSSQL |
+ROW |2503 |31080 |Application|MSSQL |
+ROW |2504 |31081 |Application|MSSQL |
+ROW |2505 |31082 |Application|MSSQL |
+ROW |2506 |31083 |Application|MSSQL |
+ROW |2507 |31084 |Application|MSSQL |
+ROW |2508 |31085 |Application|MSSQL |
+ROW |2509 |31086 |Application|MSSQL |
+ROW |2510 |31087 |Application|MSSQL |
+ROW |2511 |31088 |Application|MSSQL |
+ROW |2512 |31089 |Application|MSSQL |
+ROW |2513 |31090 |Application|MSSQL |
+ROW |2514 |31092 |Application|MSSQL |
+ROW |2515 |31095 |Application|MSSQL |
+ROW |2516 |31096 |Application|MSSQL |
+ROW |2517 |31097 |Application|MSSQL |
+ROW |2518 |31098 |Application|MSSQL |
+ROW |2519 |31099 |Application|MSSQL |
+ROW |2520 |31100 |Application|MSSQL |
+ROW |2521 |31101 |Application|MSSQL |
+ROW |2522 |31102 |Application|MSSQL |
+ROW |2523 |31103 |Application|MSSQL |
+ROW |2524 |31104 |Application|MSSQL |
+ROW |2525 |31105 |Application|MSSQL |
+ROW |2526 |31106 |Application|MSSQL |
+ROW |2527 |31107 |Application|MSSQL |
+ROW |2528 |31108 |Application|MSSQL |
+ROW |2529 |31109 |Application|MSSQL |
+ROW |2530 |31110 |Application|MSSQL |
+ROW |2531 |31111 |Application|MSSQL |
+ROW |2532 |31112 |Application|MSSQL |
+ROW |2533 |31113 |Application|MSSQL |
+ROW |2534 |31114 |Application|MSSQL |
+ROW |2535 |31115 |Application|MSSQL |
+ROW |2536 |31116 |Application|MSSQL |
+ROW |2537 |31117 |Application|MSSQL |
+ROW |2538 |31118 |Application|MSSQL |
+ROW |2539 |31119 |Application|MSSQL |
+ROW |2540 |31120 |Application|MSSQL |
+ROW |2541 |31121 |Application|MSSQL |
+ROW |2542 |31554 |Application|MSSQL |
+ROW |2543 |31555 |Application|MSSQL |
+ROW |2544 |31556 |Application|MSSQL |
+ROW |2545 |31055 |Application|Zabbix raw items |
+ROW |2546 |31059 |Application|Zabbix raw items |
+ROW |2547 |31091 |Application|Zabbix raw items |
+ROW |2548 |31093 |Application|Zabbix raw items |
+ROW |2549 |31094 |Application|Zabbix raw items |
+ROW |2550 |31128 |Application|Zabbix raw items |
+ROW |2551 |31129 |Application|Zabbix raw items |
+ROW |2552 |31130 |Application|Zabbix raw items |
+ROW |2553 |31132 |Application|Zabbix raw items |
+ROW |2554 |33941 |Application|Zabbix raw items |
+ROW |2555 |31183 |Application|Oracle |
+ROW |2556 |31184 |Application|Oracle |
+ROW |2557 |31189 |Application|Oracle |
+ROW |2558 |31190 |Application|Oracle |
+ROW |2559 |31191 |Application|Oracle |
+ROW |2560 |31192 |Application|Oracle |
+ROW |2561 |31193 |Application|Oracle |
+ROW |2562 |31194 |Application|Oracle |
+ROW |2563 |31195 |Application|Oracle |
+ROW |2564 |31196 |Application|Oracle |
+ROW |2565 |31197 |Application|Oracle |
+ROW |2566 |31198 |Application|Oracle |
+ROW |2567 |31199 |Application|Oracle |
+ROW |2568 |31200 |Application|Oracle |
+ROW |2569 |31201 |Application|Oracle |
+ROW |2570 |31202 |Application|Oracle |
+ROW |2571 |31203 |Application|Oracle |
+ROW |2572 |31204 |Application|Oracle |
+ROW |2573 |31205 |Application|Oracle |
+ROW |2574 |31206 |Application|Oracle |
+ROW |2575 |31207 |Application|Oracle |
+ROW |2576 |31208 |Application|Oracle |
+ROW |2577 |31209 |Application|Oracle |
+ROW |2578 |31210 |Application|Oracle |
+ROW |2579 |31211 |Application|Oracle |
+ROW |2580 |31212 |Application|Oracle |
+ROW |2581 |31213 |Application|Oracle |
+ROW |2582 |31214 |Application|Oracle |
+ROW |2583 |31215 |Application|Oracle |
+ROW |2584 |31216 |Application|Oracle |
+ROW |2585 |31217 |Application|Oracle |
+ROW |2586 |31218 |Application|Oracle |
+ROW |2587 |31219 |Application|Oracle |
+ROW |2588 |31220 |Application|Oracle |
+ROW |2589 |31221 |Application|Oracle |
+ROW |2590 |31222 |Application|Oracle |
+ROW |2591 |31223 |Application|Oracle |
+ROW |2592 |31224 |Application|Oracle |
+ROW |2593 |31225 |Application|Oracle |
+ROW |2594 |31226 |Application|Oracle |
+ROW |2595 |31227 |Application|Oracle |
+ROW |2596 |31228 |Application|Oracle |
+ROW |2597 |31229 |Application|Oracle |
+ROW |2598 |31230 |Application|Oracle |
+ROW |2599 |31231 |Application|Oracle |
+ROW |2600 |31232 |Application|Oracle |
+ROW |2601 |31233 |Application|Oracle |
+ROW |2602 |31234 |Application|Oracle |
+ROW |2603 |31235 |Application|Oracle |
+ROW |2604 |31236 |Application|Oracle |
+ROW |2605 |31237 |Application|Oracle |
+ROW |2606 |31238 |Application|Oracle |
+ROW |2607 |31239 |Application|Oracle |
+ROW |2608 |31240 |Application|Oracle |
+ROW |2609 |31241 |Application|Oracle |
+ROW |2610 |31242 |Application|Oracle |
+ROW |2611 |31243 |Application|Oracle |
+ROW |2612 |31244 |Application|Oracle |
+ROW |2613 |31245 |Application|Oracle |
+ROW |2614 |31246 |Application|Oracle |
+ROW |2615 |31247 |Application|Oracle |
+ROW |2616 |31248 |Application|Oracle |
+ROW |2617 |31249 |Application|Oracle |
+ROW |2618 |31250 |Application|Oracle |
+ROW |2619 |31251 |Application|Oracle |
+ROW |2620 |31252 |Application|Oracle |
+ROW |2621 |31180 |Application|Zabbix raw items |
+ROW |2622 |31181 |Application|Zabbix raw items |
+ROW |2623 |31182 |Application|Zabbix raw items |
+ROW |2624 |31185 |Application|Zabbix raw items |
+ROW |2625 |31186 |Application|Zabbix raw items |
+ROW |2626 |31187 |Application|Zabbix raw items |
+ROW |2627 |31188 |Application|Zabbix raw items |
+ROW |2628 |31275 |Application|PostgreSQL |
+ROW |2629 |31282 |Application|PostgreSQL |
+ROW |2630 |31283 |Application|PostgreSQL |
+ROW |2631 |31284 |Application|PostgreSQL |
+ROW |2632 |31285 |Application|PostgreSQL |
+ROW |2633 |31286 |Application|PostgreSQL |
+ROW |2634 |31287 |Application|PostgreSQL |
+ROW |2635 |31288 |Application|PostgreSQL |
+ROW |2636 |31291 |Application|PostgreSQL |
+ROW |2637 |31293 |Application|PostgreSQL |
+ROW |2638 |31294 |Application|PostgreSQL |
+ROW |2639 |31295 |Application|PostgreSQL |
+ROW |2640 |31296 |Application|PostgreSQL |
+ROW |2641 |31297 |Application|PostgreSQL |
+ROW |2642 |31298 |Application|PostgreSQL |
+ROW |2643 |31299 |Application|PostgreSQL |
+ROW |2644 |31300 |Application|PostgreSQL |
+ROW |2645 |31301 |Application|PostgreSQL |
+ROW |2646 |31302 |Application|PostgreSQL |
+ROW |2647 |31303 |Application|PostgreSQL |
+ROW |2648 |31304 |Application|PostgreSQL |
+ROW |2649 |31305 |Application|PostgreSQL |
+ROW |2650 |31306 |Application|PostgreSQL |
+ROW |2651 |31307 |Application|PostgreSQL |
+ROW |2652 |31309 |Application|PostgreSQL |
+ROW |2653 |31310 |Application|PostgreSQL |
+ROW |2654 |31311 |Application|PostgreSQL |
+ROW |2655 |31312 |Application|PostgreSQL |
+ROW |2656 |31313 |Application|PostgreSQL |
+ROW |2657 |31314 |Application|PostgreSQL |
+ROW |2658 |31315 |Application|PostgreSQL |
+ROW |2659 |31316 |Application|PostgreSQL |
+ROW |2660 |31317 |Application|PostgreSQL |
+ROW |2661 |31318 |Application|PostgreSQL |
+ROW |2662 |31319 |Application|PostgreSQL |
+ROW |2663 |31320 |Application|PostgreSQL |
+ROW |2664 |31321 |Application|PostgreSQL |
+ROW |2665 |31322 |Application|PostgreSQL |
+ROW |2666 |31323 |Application|PostgreSQL |
+ROW |2667 |31324 |Application|PostgreSQL |
+ROW |2668 |31325 |Application|PostgreSQL |
+ROW |2669 |31326 |Application|PostgreSQL |
+ROW |2670 |31327 |Application|PostgreSQL |
+ROW |2671 |31328 |Application|PostgreSQL |
+ROW |2672 |31329 |Application|PostgreSQL |
+ROW |2673 |31330 |Application|PostgreSQL |
+ROW |2674 |31331 |Application|PostgreSQL |
+ROW |2675 |31332 |Application|PostgreSQL |
+ROW |2676 |31333 |Application|PostgreSQL |
+ROW |2677 |33172 |Application|PostgreSQL |
+ROW |2678 |33173 |Application|PostgreSQL |
+ROW |2679 |33174 |Application|PostgreSQL |
+ROW |2680 |33176 |Application|PostgreSQL |
+ROW |2681 |31274 |Application|Zabbix raw items |
+ROW |2682 |31276 |Application|Zabbix raw items |
+ROW |2683 |31277 |Application|Zabbix raw items |
+ROW |2684 |31279 |Application|Zabbix raw items |
+ROW |2685 |31280 |Application|Zabbix raw items |
+ROW |2686 |31289 |Application|Zabbix raw items |
+ROW |2687 |31290 |Application|Zabbix raw items |
+ROW |2688 |33175 |Application|Zabbix raw items |
+ROW |2689 |31572 |Application|PHP-FPM |
+ROW |2690 |31573 |Application|PHP-FPM |
+ROW |2691 |31574 |Application|PHP-FPM |
+ROW |2692 |31575 |Application|PHP-FPM |
+ROW |2693 |31576 |Application|PHP-FPM |
+ROW |2694 |31577 |Application|PHP-FPM |
+ROW |2695 |31578 |Application|PHP-FPM |
+ROW |2696 |31579 |Application|PHP-FPM |
+ROW |2697 |31580 |Application|PHP-FPM |
+ROW |2698 |31581 |Application|PHP-FPM |
+ROW |2699 |31582 |Application|PHP-FPM |
+ROW |2700 |31583 |Application|PHP-FPM |
+ROW |2701 |31584 |Application|PHP-FPM |
+ROW |2702 |31585 |Application|PHP-FPM |
+ROW |2703 |31586 |Application|PHP-FPM |
+ROW |2704 |31587 |Application|PHP-FPM |
+ROW |2705 |31588 |Application|PHP-FPM |
+ROW |2706 |31589 |Application|PHP-FPM |
+ROW |2707 |31590 |Application|PHP-FPM |
+ROW |2708 |31591 |Application|PHP-FPM |
+ROW |2709 |31592 |Application|PHP-FPM |
+ROW |2710 |31570 |Application|Zabbix raw items |
+ROW |2711 |31571 |Application|Zabbix raw items |
+ROW |2712 |31593 |Application|PHP-FPM |
+ROW |2713 |31596 |Application|PHP-FPM |
+ROW |2714 |31597 |Application|PHP-FPM |
+ROW |2715 |31598 |Application|PHP-FPM |
+ROW |2716 |31599 |Application|PHP-FPM |
+ROW |2717 |31600 |Application|PHP-FPM |
+ROW |2718 |31601 |Application|PHP-FPM |
+ROW |2719 |31602 |Application|PHP-FPM |
+ROW |2720 |31603 |Application|PHP-FPM |
+ROW |2721 |31604 |Application|PHP-FPM |
+ROW |2722 |31605 |Application|PHP-FPM |
+ROW |2723 |31606 |Application|PHP-FPM |
+ROW |2724 |31607 |Application|PHP-FPM |
+ROW |2725 |31608 |Application|PHP-FPM |
+ROW |2726 |31609 |Application|PHP-FPM |
+ROW |2727 |31610 |Application|PHP-FPM |
+ROW |2728 |31611 |Application|PHP-FPM |
+ROW |2729 |31594 |Application|Zabbix raw items |
+ROW |2730 |31595 |Application|Zabbix raw items |
+ROW |2731 |31684 |Application|Oracle |
+ROW |2732 |31685 |Application|Oracle |
+ROW |2733 |31687 |Application|Oracle |
+ROW |2734 |31695 |Application|Oracle |
+ROW |2735 |31696 |Application|Oracle |
+ROW |2736 |31701 |Application|Oracle |
+ROW |2737 |31702 |Application|Oracle |
+ROW |2738 |31703 |Application|Oracle |
+ROW |2739 |31704 |Application|Oracle |
+ROW |2740 |31705 |Application|Oracle |
+ROW |2741 |31706 |Application|Oracle |
+ROW |2742 |31707 |Application|Oracle |
+ROW |2743 |31708 |Application|Oracle |
+ROW |2744 |31709 |Application|Oracle |
+ROW |2745 |31710 |Application|Oracle |
+ROW |2746 |31711 |Application|Oracle |
+ROW |2747 |31712 |Application|Oracle |
+ROW |2748 |31713 |Application|Oracle |
+ROW |2749 |31714 |Application|Oracle |
+ROW |2750 |31715 |Application|Oracle |
+ROW |2751 |31716 |Application|Oracle |
+ROW |2752 |31717 |Application|Oracle |
+ROW |2753 |31718 |Application|Oracle |
+ROW |2754 |31719 |Application|Oracle |
+ROW |2755 |31720 |Application|Oracle |
+ROW |2756 |31721 |Application|Oracle |
+ROW |2757 |31722 |Application|Oracle |
+ROW |2758 |31723 |Application|Oracle |
+ROW |2759 |31724 |Application|Oracle |
+ROW |2760 |31725 |Application|Oracle |
+ROW |2761 |31726 |Application|Oracle |
+ROW |2762 |31727 |Application|Oracle |
+ROW |2763 |31728 |Application|Oracle |
+ROW |2764 |31729 |Application|Oracle |
+ROW |2765 |31730 |Application|Oracle |
+ROW |2766 |31731 |Application|Oracle |
+ROW |2767 |31732 |Application|Oracle |
+ROW |2768 |31733 |Application|Oracle |
+ROW |2769 |31734 |Application|Oracle |
+ROW |2770 |31735 |Application|Oracle |
+ROW |2771 |31736 |Application|Oracle |
+ROW |2772 |31737 |Application|Oracle |
+ROW |2773 |31738 |Application|Oracle |
+ROW |2774 |31739 |Application|Oracle |
+ROW |2775 |31740 |Application|Oracle |
+ROW |2776 |31741 |Application|Oracle |
+ROW |2777 |31742 |Application|Oracle |
+ROW |2778 |31743 |Application|Oracle |
+ROW |2779 |31744 |Application|Oracle |
+ROW |2780 |31745 |Application|Oracle |
+ROW |2781 |31746 |Application|Oracle |
+ROW |2782 |31747 |Application|Oracle |
+ROW |2783 |31748 |Application|Oracle |
+ROW |2784 |31749 |Application|Oracle |
+ROW |2785 |31750 |Application|Oracle |
+ROW |2786 |31751 |Application|Oracle |
+ROW |2787 |31752 |Application|Oracle |
+ROW |2788 |31753 |Application|Oracle |
+ROW |2789 |31754 |Application|Oracle |
+ROW |2790 |31755 |Application|Oracle |
+ROW |2791 |31756 |Application|Oracle |
+ROW |2792 |31757 |Application|Oracle |
+ROW |2793 |31758 |Application|Oracle |
+ROW |2794 |31759 |Application|Oracle |
+ROW |2795 |31760 |Application|Oracle |
+ROW |2796 |31686 |Application|Zabbix raw items |
+ROW |2797 |31688 |Application|Zabbix raw items |
+ROW |2798 |31689 |Application|Zabbix raw items |
+ROW |2799 |31690 |Application|Zabbix raw items |
+ROW |2800 |31691 |Application|Zabbix raw items |
+ROW |2801 |31692 |Application|Zabbix raw items |
+ROW |2802 |31693 |Application|Zabbix raw items |
+ROW |2803 |31694 |Application|Zabbix raw items |
+ROW |2804 |31697 |Application|Zabbix raw items |
+ROW |2805 |31698 |Application|Zabbix raw items |
+ROW |2806 |31699 |Application|Zabbix raw items |
+ROW |2807 |31700 |Application|Zabbix raw items |
+ROW |2808 |31782 |Application|Asterisk |
+ROW |2809 |31783 |Application|Asterisk |
+ROW |2810 |31785 |Application|Asterisk |
+ROW |2811 |31786 |Application|Asterisk |
+ROW |2812 |31787 |Application|Asterisk |
+ROW |2813 |31788 |Application|Asterisk |
+ROW |2814 |31789 |Application|Asterisk |
+ROW |2815 |31790 |Application|Asterisk |
+ROW |2816 |31791 |Application|Asterisk |
+ROW |2817 |31792 |Application|Asterisk |
+ROW |2818 |31793 |Application|Asterisk |
+ROW |2819 |31794 |Application|Asterisk |
+ROW |2820 |31795 |Application|Asterisk |
+ROW |2821 |31796 |Application|Asterisk |
+ROW |2822 |31797 |Application|Asterisk |
+ROW |2823 |31798 |Application|Asterisk |
+ROW |2824 |31799 |Application|Asterisk |
+ROW |2825 |31800 |Application|Asterisk |
+ROW |2826 |31801 |Application|Asterisk |
+ROW |2827 |31802 |Application|Asterisk |
+ROW |2828 |33389 |Application|Asterisk |
+ROW |2829 |33390 |Application|Asterisk |
+ROW |2830 |31784 |Application|Zabbix raw items |
+ROW |2831 |31904 |Application|Zabbix raw items |
+ROW |2832 |31934 |Application|Zabbix raw items |
+ROW |2833 |31937 |Application|Zabbix raw items |
+ROW |2834 |31820 |Application|CPU |
+ROW |2835 |31821 |Application|CPU |
+ROW |2836 |31822 |Application|CPU |
+ROW |2837 |31823 |Application|CPU |
+ROW |2838 |31824 |Application|CPU |
+ROW |2839 |31825 |Application|CPU |
+ROW |2840 |31826 |Application|CPU |
+ROW |2841 |31827 |Application|CPU |
+ROW |2842 |31828 |Application|CPU |
+ROW |2843 |31829 |Application|CPU |
+ROW |2844 |31830 |Application|CPU |
+ROW |2845 |31831 |Application|CPU |
+ROW |2846 |31832 |Application|CPU |
+ROW |2847 |31833 |Application|CPU |
+ROW |2848 |31834 |Application|CPU |
+ROW |2849 |31835 |Application|CPU |
+ROW |2850 |31892 |Application|CPU |
+ROW |2851 |31836 |Application|General |
+ROW |2852 |31837 |Application|General |
+ROW |2853 |31838 |Application|General |
+ROW |2854 |31839 |Application|General |
+ROW |2855 |31840 |Application|General |
+ROW |2856 |31841 |Application|General |
+ROW |2857 |31842 |Application|General |
+ROW |2858 |31846 |Application|General |
+ROW |2859 |31848 |Application|General |
+ROW |2860 |31843 |Application|Inventory |
+ROW |2861 |31844 |Application|Inventory |
+ROW |2862 |31845 |Application|Inventory |
+ROW |2863 |31849 |Application|Security |
+ROW |2864 |31847 |Application|Status |
+ROW |2865 |31850 |Application|Memory |
+ROW |2866 |31851 |Application|Memory |
+ROW |2867 |31852 |Application|Memory |
+ROW |2868 |31853 |Application|Memory |
+ROW |2869 |31854 |Application|Memory |
+ROW |2870 |31855 |Application|Memory |
+ROW |2871 |31893 |Application|Memory |
+ROW |2872 |31856 |Application|CPU |
+ROW |2873 |31857 |Application|CPU |
+ROW |2874 |31858 |Application|CPU |
+ROW |2875 |31859 |Application|CPU |
+ROW |2876 |31860 |Application|CPU |
+ROW |2877 |31861 |Application|CPU |
+ROW |2878 |31862 |Application|CPU |
+ROW |2879 |31863 |Application|CPU |
+ROW |2880 |31864 |Application|CPU |
+ROW |2881 |31865 |Application|CPU |
+ROW |2882 |31866 |Application|CPU |
+ROW |2883 |31867 |Application|CPU |
+ROW |2884 |31868 |Application|CPU |
+ROW |2885 |31869 |Application|CPU |
+ROW |2886 |31870 |Application|CPU |
+ROW |2887 |31871 |Application|CPU |
+ROW |2888 |31894 |Application|CPU |
+ROW |2889 |31872 |Application|General |
+ROW |2890 |31873 |Application|General |
+ROW |2891 |31874 |Application|General |
+ROW |2892 |31875 |Application|General |
+ROW |2893 |31876 |Application|General |
+ROW |2894 |31877 |Application|General |
+ROW |2895 |31878 |Application|General |
+ROW |2896 |31882 |Application|General |
+ROW |2897 |31884 |Application|General |
+ROW |2898 |31879 |Application|Inventory |
+ROW |2899 |31880 |Application|Inventory |
+ROW |2900 |31881 |Application|Inventory |
+ROW |2901 |31886 |Application|Memory |
+ROW |2902 |31887 |Application|Memory |
+ROW |2903 |31888 |Application|Memory |
+ROW |2904 |31889 |Application|Memory |
+ROW |2905 |31890 |Application|Memory |
+ROW |2906 |31891 |Application|Memory |
+ROW |2907 |31895 |Application|Memory |
+ROW |2908 |31816 |Application|Monitoring agent |
+ROW |2909 |31817 |Application|Monitoring agent |
+ROW |2910 |31818 |Application|Monitoring agent |
+ROW |2911 |31885 |Application|Security |
+ROW |2912 |31819 |Application|Status |
+ROW |2913 |31883 |Application|Status |
+ROW |2914 |31919 |Application|Zabbix raw items |
+ROW |2915 |31940 |Application|Zabbix raw items |
+ROW |2916 |31943 |Application|Zabbix raw items |
+ROW |2917 |31948 |Application|CPU |
+ROW |2918 |31949 |Application|CPU |
+ROW |2919 |31950 |Application|CPU |
+ROW |2920 |31951 |Application|CPU |
+ROW |2921 |31952 |Application|CPU |
+ROW |2922 |31953 |Application|CPU |
+ROW |2923 |31954 |Application|CPU |
+ROW |2924 |31955 |Application|CPU |
+ROW |2925 |31956 |Application|General |
+ROW |2926 |31957 |Application|General |
+ROW |2927 |31958 |Application|General |
+ROW |2928 |31959 |Application|General |
+ROW |2929 |31961 |Application|General |
+ROW |2930 |31960 |Application|Inventory |
+ROW |2931 |31962 |Application|Status |
+ROW |2932 |31963 |Application|Memory |
+ROW |2933 |31964 |Application|Memory |
+ROW |2934 |31965 |Application|Memory |
+ROW |2935 |31966 |Application|Memory |
+ROW |2936 |31967 |Application|Memory |
+ROW |2937 |31968 |Application|Memory |
+ROW |2938 |31969 |Application|Memory |
+ROW |2939 |31970 |Application|Memory |
+ROW |2940 |31971 |Application|Memory |
+ROW |2941 |31972 |Application|Memory |
+ROW |2942 |31973 |Application|Memory |
+ROW |2943 |32002 |Application|Memory |
+ROW |2944 |31974 |Application|Zabbix raw items |
+ROW |2945 |32025 |Application|Services |
+ROW |2946 |31975 |Application|CPU |
+ROW |2947 |31976 |Application|CPU |
+ROW |2948 |31977 |Application|CPU |
+ROW |2949 |31978 |Application|CPU |
+ROW |2950 |31979 |Application|CPU |
+ROW |2951 |31980 |Application|CPU |
+ROW |2952 |31981 |Application|CPU |
+ROW |2953 |31982 |Application|CPU |
+ROW |2954 |31983 |Application|General |
+ROW |2955 |31984 |Application|General |
+ROW |2956 |31985 |Application|General |
+ROW |2957 |31986 |Application|General |
+ROW |2958 |31988 |Application|General |
+ROW |2959 |31987 |Application|Inventory |
+ROW |2960 |31990 |Application|Memory |
+ROW |2961 |31991 |Application|Memory |
+ROW |2962 |31992 |Application|Memory |
+ROW |2963 |31993 |Application|Memory |
+ROW |2964 |31994 |Application|Memory |
+ROW |2965 |31995 |Application|Memory |
+ROW |2966 |31996 |Application|Memory |
+ROW |2967 |31997 |Application|Memory |
+ROW |2968 |31998 |Application|Memory |
+ROW |2969 |31999 |Application|Memory |
+ROW |2970 |32000 |Application|Memory |
+ROW |2971 |32003 |Application|Memory |
+ROW |2972 |31944 |Application|Monitoring agent |
+ROW |2973 |31945 |Application|Monitoring agent |
+ROW |2974 |31946 |Application|Monitoring agent |
+ROW |2975 |32039 |Application|Services |
+ROW |2976 |31947 |Application|Status |
+ROW |2977 |31989 |Application|Status |
+ROW |2978 |32001 |Application|Zabbix raw items |
+ROW |2979 |32120 |Application|Ceph |
+ROW |2980 |32122 |Application|Ceph |
+ROW |2981 |32123 |Application|Ceph |
+ROW |2982 |32124 |Application|Ceph |
+ROW |2983 |32125 |Application|Ceph |
+ROW |2984 |32126 |Application|Ceph |
+ROW |2985 |32127 |Application|Ceph |
+ROW |2986 |32128 |Application|Ceph |
+ROW |2987 |32129 |Application|Ceph |
+ROW |2988 |32130 |Application|Ceph |
+ROW |2989 |32131 |Application|Ceph |
+ROW |2990 |32132 |Application|Ceph |
+ROW |2991 |32133 |Application|Ceph |
+ROW |2992 |32134 |Application|Ceph |
+ROW |2993 |32135 |Application|Ceph |
+ROW |2994 |32136 |Application|Ceph |
+ROW |2995 |32137 |Application|Ceph |
+ROW |2996 |32138 |Application|Ceph |
+ROW |2997 |32139 |Application|Ceph |
+ROW |2998 |32140 |Application|Ceph |
+ROW |2999 |32141 |Application|Ceph |
+ROW |3000 |32142 |Application|Ceph |
+ROW |3001 |32143 |Application|Ceph |
+ROW |3002 |32144 |Application|Ceph |
+ROW |3003 |32145 |Application|Ceph |
+ROW |3004 |32146 |Application|Ceph |
+ROW |3005 |32147 |Application|Ceph |
+ROW |3006 |32148 |Application|Ceph |
+ROW |3007 |32149 |Application|Ceph |
+ROW |3008 |32150 |Application|Ceph |
+ROW |3009 |32151 |Application|Ceph |
+ROW |3010 |32152 |Application|Ceph |
+ROW |3011 |32153 |Application|Ceph |
+ROW |3012 |32154 |Application|Ceph |
+ROW |3013 |32155 |Application|Ceph |
+ROW |3014 |32156 |Application|Ceph |
+ROW |3015 |32157 |Application|Ceph |
+ROW |3016 |32158 |Application|Ceph |
+ROW |3017 |32159 |Application|Ceph |
+ROW |3018 |32160 |Application|Ceph |
+ROW |3019 |32161 |Application|Ceph |
+ROW |3020 |32162 |Application|Ceph |
+ROW |3021 |32163 |Application|Ceph |
+ROW |3022 |32164 |Application|Ceph |
+ROW |3023 |32165 |Application|Ceph |
+ROW |3024 |32166 |Application|Ceph |
+ROW |3025 |32167 |Application|Ceph |
+ROW |3026 |32117 |Application|Zabbix raw items |
+ROW |3027 |32118 |Application|Zabbix raw items |
+ROW |3028 |32119 |Application|Zabbix raw items |
+ROW |3029 |32121 |Application|Zabbix raw items |
+ROW |3030 |32239 |Application|Squid |
+ROW |3031 |32240 |Application|Squid |
+ROW |3032 |32241 |Application|Squid |
+ROW |3033 |32242 |Application|Squid |
+ROW |3034 |32243 |Application|Squid |
+ROW |3035 |32244 |Application|Squid |
+ROW |3036 |32245 |Application|Squid |
+ROW |3037 |32246 |Application|Squid |
+ROW |3038 |32247 |Application|Squid |
+ROW |3039 |32248 |Application|Squid |
+ROW |3040 |32249 |Application|Squid |
+ROW |3041 |32250 |Application|Squid |
+ROW |3042 |32251 |Application|Squid |
+ROW |3043 |32252 |Application|Squid |
+ROW |3044 |32253 |Application|Squid |
+ROW |3045 |32254 |Application|Squid |
+ROW |3046 |32255 |Application|Squid |
+ROW |3047 |32256 |Application|Squid |
+ROW |3048 |32257 |Application|Squid |
+ROW |3049 |32258 |Application|Squid |
+ROW |3050 |32259 |Application|Squid |
+ROW |3051 |32260 |Application|Squid |
+ROW |3052 |32261 |Application|Squid |
+ROW |3053 |32262 |Application|Squid |
+ROW |3054 |32263 |Application|Squid |
+ROW |3055 |32264 |Application|Squid |
+ROW |3056 |32265 |Application|Squid |
+ROW |3057 |32266 |Application|Squid |
+ROW |3058 |32267 |Application|Squid |
+ROW |3059 |32268 |Application|Squid |
+ROW |3060 |32269 |Application|Squid |
+ROW |3061 |32270 |Application|Squid |
+ROW |3062 |32271 |Application|Squid |
+ROW |3063 |32272 |Application|Squid |
+ROW |3064 |32273 |Application|Squid |
+ROW |3065 |32274 |Application|Squid |
+ROW |3066 |32275 |Application|Squid |
+ROW |3067 |32276 |Application|Squid |
+ROW |3068 |32277 |Application|Squid |
+ROW |3069 |32278 |Application|Squid |
+ROW |3070 |32279 |Application|Squid |
+ROW |3071 |32280 |Application|Squid |
+ROW |3072 |32281 |Application|Squid |
+ROW |3073 |32282 |Application|Squid |
+ROW |3074 |32283 |Application|Squid |
+ROW |3075 |32284 |Application|Squid |
+ROW |3076 |32285 |Application|Squid |
+ROW |3077 |32286 |Application|Squid |
+ROW |3078 |32287 |Application|Squid |
+ROW |3079 |32288 |Application|Squid |
+ROW |3080 |32289 |Application|Squid |
+ROW |3081 |32290 |Application|Squid |
+ROW |3082 |32291 |Application|Squid |
+ROW |3083 |32292 |Application|Squid |
+ROW |3084 |32366 |Application|PostgreSQL |
+ROW |3085 |32367 |Application|PostgreSQL |
+ROW |3086 |32369 |Application|PostgreSQL |
+ROW |3087 |32370 |Application|PostgreSQL |
+ROW |3088 |32371 |Application|PostgreSQL |
+ROW |3089 |32372 |Application|PostgreSQL |
+ROW |3090 |32373 |Application|PostgreSQL |
+ROW |3091 |32374 |Application|PostgreSQL |
+ROW |3092 |32377 |Application|PostgreSQL |
+ROW |3093 |32378 |Application|PostgreSQL |
+ROW |3094 |32381 |Application|PostgreSQL |
+ROW |3095 |32382 |Application|PostgreSQL |
+ROW |3096 |32383 |Application|PostgreSQL |
+ROW |3097 |32384 |Application|PostgreSQL |
+ROW |3098 |32385 |Application|PostgreSQL |
+ROW |3099 |32386 |Application|PostgreSQL |
+ROW |3100 |32387 |Application|PostgreSQL |
+ROW |3101 |32388 |Application|PostgreSQL |
+ROW |3102 |32389 |Application|PostgreSQL |
+ROW |3103 |32390 |Application|PostgreSQL |
+ROW |3104 |32391 |Application|PostgreSQL |
+ROW |3105 |32392 |Application|PostgreSQL |
+ROW |3106 |32393 |Application|PostgreSQL |
+ROW |3107 |32394 |Application|PostgreSQL |
+ROW |3108 |32395 |Application|PostgreSQL |
+ROW |3109 |32396 |Application|PostgreSQL |
+ROW |3110 |32397 |Application|PostgreSQL |
+ROW |3111 |32398 |Application|PostgreSQL |
+ROW |3112 |32399 |Application|PostgreSQL |
+ROW |3113 |32400 |Application|PostgreSQL |
+ROW |3114 |32401 |Application|PostgreSQL |
+ROW |3115 |32402 |Application|PostgreSQL |
+ROW |3116 |32403 |Application|PostgreSQL |
+ROW |3117 |32364 |Application|Zabbix raw items |
+ROW |3118 |32365 |Application|Zabbix raw items |
+ROW |3119 |32368 |Application|Zabbix raw items |
+ROW |3120 |32375 |Application|Zabbix raw items |
+ROW |3121 |32376 |Application|Zabbix raw items |
+ROW |3122 |32379 |Application|Zabbix raw items |
+ROW |3123 |32380 |Application|Zabbix raw items |
+ROW |3124 |32406 |Application|Zabbix raw items |
+ROW |3125 |32407 |Application|Zabbix raw items |
+ROW |3126 |32463 |Application|Zabbix raw items |
+ROW |3127 |32464 |Application|Zabbix raw items |
+ROW |3128 |32516 |Application|MS Exchange |
+ROW |3129 |32517 |Application|MS Exchange |
+ROW |3130 |32518 |Application|MS Exchange |
+ROW |3131 |32519 |Application|MS Exchange |
+ROW |3132 |32520 |Application|MS Exchange |
+ROW |3133 |32521 |Application|MS Exchange |
+ROW |3134 |32522 |Application|MS Exchange |
+ROW |3135 |32523 |Application|MS Exchange |
+ROW |3136 |32524 |Application|MS Exchange |
+ROW |3137 |32543 |Application|MS Exchange |
+ROW |3138 |32544 |Application|MS Exchange |
+ROW |3139 |32545 |Application|MS Exchange |
+ROW |3140 |32546 |Application|MS Exchange |
+ROW |3141 |32547 |Application|MS Exchange |
+ROW |3142 |32548 |Application|MS Exchange |
+ROW |3143 |32549 |Application|MS Exchange |
+ROW |3144 |32550 |Application|MS Exchange |
+ROW |3145 |32551 |Application|MS Exchange |
+ROW |3146 |32552 |Application|MS Exchange |
+ROW |3147 |32553 |Application|MS Exchange |
+ROW |3148 |32554 |Application|MS Exchange |
+ROW |3149 |32573 |Application|MS Exchange |
+ROW |3150 |32574 |Application|MS Exchange |
+ROW |3151 |32575 |Application|MS Exchange |
+ROW |3152 |32576 |Application|GitLab |
+ROW |3153 |32577 |Application|GitLab |
+ROW |3154 |32579 |Application|GitLab |
+ROW |3155 |32580 |Application|GitLab |
+ROW |3156 |32581 |Application|GitLab |
+ROW |3157 |32582 |Application|GitLab |
+ROW |3158 |32583 |Application|GitLab |
+ROW |3159 |32584 |Application|GitLab |
+ROW |3160 |32585 |Application|GitLab |
+ROW |3161 |32586 |Application|GitLab |
+ROW |3162 |32587 |Application|GitLab |
+ROW |3163 |32588 |Application|GitLab |
+ROW |3164 |32589 |Application|GitLab |
+ROW |3165 |32590 |Application|GitLab |
+ROW |3166 |32591 |Application|GitLab |
+ROW |3167 |32592 |Application|GitLab |
+ROW |3168 |32593 |Application|GitLab |
+ROW |3169 |32594 |Application|GitLab |
+ROW |3170 |32595 |Application|GitLab |
+ROW |3171 |32596 |Application|GitLab |
+ROW |3172 |32597 |Application|GitLab |
+ROW |3173 |32598 |Application|GitLab |
+ROW |3174 |32599 |Application|GitLab |
+ROW |3175 |32600 |Application|GitLab |
+ROW |3176 |32601 |Application|GitLab |
+ROW |3177 |32602 |Application|GitLab |
+ROW |3178 |32603 |Application|GitLab |
+ROW |3179 |32604 |Application|GitLab |
+ROW |3180 |32605 |Application|GitLab |
+ROW |3181 |32606 |Application|GitLab |
+ROW |3182 |32607 |Application|GitLab |
+ROW |3183 |32608 |Application|GitLab |
+ROW |3184 |32609 |Application|GitLab |
+ROW |3185 |32610 |Application|GitLab |
+ROW |3186 |32611 |Application|GitLab |
+ROW |3187 |32612 |Application|GitLab |
+ROW |3188 |32613 |Application|GitLab |
+ROW |3189 |32614 |Application|GitLab |
+ROW |3190 |32615 |Application|GitLab |
+ROW |3191 |32616 |Application|GitLab |
+ROW |3192 |32617 |Application|GitLab |
+ROW |3193 |32618 |Application|GitLab |
+ROW |3194 |32621 |Application|GitLab: Puma stats |
+ROW |3195 |32622 |Application|GitLab: Puma stats |
+ROW |3196 |32623 |Application|GitLab: Puma stats |
+ROW |3197 |32624 |Application|GitLab: Puma stats |
+ROW |3198 |32625 |Application|GitLab: Puma stats |
+ROW |3199 |32626 |Application|GitLab: Puma stats |
+ROW |3200 |32627 |Application|GitLab: Puma stats |
+ROW |3201 |32628 |Application|GitLab: Puma stats |
+ROW |3202 |32629 |Application|GitLab: Puma stats |
+ROW |3203 |32630 |Application|GitLab: Puma stats |
+ROW |3204 |32631 |Application|GitLab: Unicorn stats |
+ROW |3205 |32632 |Application|GitLab: Unicorn stats |
+ROW |3206 |32633 |Application|GitLab: Unicorn stats |
+ROW |3207 |32578 |Application|Zabbix raw items |
+ROW |3208 |32636 |Application|Hadoop |
+ROW |3209 |32637 |Application|Hadoop |
+ROW |3210 |32638 |Application|Hadoop |
+ROW |3211 |32640 |Application|Hadoop |
+ROW |3212 |32642 |Application|Hadoop |
+ROW |3213 |32643 |Application|Hadoop |
+ROW |3214 |32644 |Application|Hadoop |
+ROW |3215 |32645 |Application|Hadoop |
+ROW |3216 |32646 |Application|Hadoop |
+ROW |3217 |32647 |Application|Hadoop |
+ROW |3218 |32648 |Application|Hadoop |
+ROW |3219 |32649 |Application|Hadoop |
+ROW |3220 |32650 |Application|Hadoop |
+ROW |3221 |32651 |Application|Hadoop |
+ROW |3222 |32652 |Application|Hadoop |
+ROW |3223 |32653 |Application|Hadoop |
+ROW |3224 |32654 |Application|Hadoop |
+ROW |3225 |32655 |Application|Hadoop |
+ROW |3226 |32656 |Application|Hadoop |
+ROW |3227 |32657 |Application|Hadoop |
+ROW |3228 |32658 |Application|Hadoop |
+ROW |3229 |32659 |Application|Hadoop |
+ROW |3230 |32660 |Application|Hadoop |
+ROW |3231 |32661 |Application|Hadoop |
+ROW |3232 |32662 |Application|Hadoop |
+ROW |3233 |32663 |Application|Hadoop |
+ROW |3234 |32664 |Application|Hadoop |
+ROW |3235 |32665 |Application|Hadoop |
+ROW |3236 |32666 |Application|Hadoop |
+ROW |3237 |32667 |Application|Hadoop |
+ROW |3238 |32634 |Application|Zabbix raw items |
+ROW |3239 |32635 |Application|Zabbix raw items |
+ROW |3240 |32639 |Application|Zabbix raw items |
+ROW |3241 |32641 |Application|Zabbix raw items |
+ROW |3242 |32670 |Application|Zabbix raw items |
+ROW |3243 |32671 |Application|Zabbix raw items |
+ROW |3244 |32693 |Application|Kafka |
+ROW |3245 |32694 |Application|Kafka |
+ROW |3246 |32695 |Application|Kafka |
+ROW |3247 |32696 |Application|Kafka |
+ROW |3248 |32697 |Application|Kafka |
+ROW |3249 |32698 |Application|Kafka |
+ROW |3250 |32699 |Application|Kafka |
+ROW |3251 |32700 |Application|Kafka |
+ROW |3252 |32701 |Application|Kafka |
+ROW |3253 |32702 |Application|Kafka |
+ROW |3254 |32703 |Application|Kafka |
+ROW |3255 |32704 |Application|Kafka |
+ROW |3256 |32705 |Application|Kafka |
+ROW |3257 |32706 |Application|Kafka |
+ROW |3258 |32707 |Application|Kafka |
+ROW |3259 |32708 |Application|Kafka |
+ROW |3260 |32709 |Application|Kafka |
+ROW |3261 |32710 |Application|Kafka |
+ROW |3262 |32711 |Application|Kafka |
+ROW |3263 |32712 |Application|Kafka |
+ROW |3264 |32713 |Application|Kafka |
+ROW |3265 |32714 |Application|Kafka |
+ROW |3266 |32715 |Application|Kafka |
+ROW |3267 |32716 |Application|Kafka |
+ROW |3268 |32717 |Application|Kafka |
+ROW |3269 |32718 |Application|Kafka |
+ROW |3270 |32719 |Application|Kafka |
+ROW |3271 |32720 |Application|Kafka |
+ROW |3272 |32721 |Application|Kafka |
+ROW |3273 |32722 |Application|Kafka |
+ROW |3274 |32723 |Application|Kafka |
+ROW |3275 |32724 |Application|Kafka |
+ROW |3276 |32725 |Application|Kafka |
+ROW |3277 |32726 |Application|Kafka |
+ROW |3278 |32727 |Application|Kafka |
+ROW |3279 |32728 |Application|Kafka |
+ROW |3280 |32729 |Application|Kafka |
+ROW |3281 |32730 |Application|Kafka |
+ROW |3282 |32731 |Application|Kafka |
+ROW |3283 |32732 |Application|Kafka |
+ROW |3284 |32733 |Application|Kafka |
+ROW |3285 |32734 |Application|Kafka |
+ROW |3286 |32735 |Application|Kafka |
+ROW |3287 |32736 |Application|Kafka |
+ROW |3288 |32737 |Application|Kafka |
+ROW |3289 |32738 |Application|Kafka |
+ROW |3290 |32739 |Application|Kafka |
+ROW |3291 |32740 |Application|Kafka |
+ROW |3292 |32741 |Application|Kafka |
+ROW |3293 |32742 |Application|Kafka |
+ROW |3294 |32743 |Application|Kafka |
+ROW |3295 |32744 |Application|Kafka |
+ROW |3296 |32745 |Application|Kafka |
+ROW |3297 |32746 |Application|Kafka |
+ROW |3298 |32747 |Application|Kafka |
+ROW |3299 |32748 |Application|Kafka |
+ROW |3300 |32749 |Application|Kafka |
+ROW |3301 |32750 |Application|Kafka |
+ROW |3302 |32751 |Application|Kafka |
+ROW |3303 |32752 |Application|Kafka |
+ROW |3304 |32753 |Application|Kafka |
+ROW |3305 |32754 |Application|Kafka |
+ROW |3306 |32784 |Application|Vault |
+ROW |3307 |32785 |Application|Vault |
+ROW |3308 |32786 |Application|Vault |
+ROW |3309 |32787 |Application|Vault |
+ROW |3310 |32788 |Application|Vault |
+ROW |3311 |32789 |Application|Vault |
+ROW |3312 |32790 |Application|Vault |
+ROW |3313 |32791 |Application|Vault |
+ROW |3314 |32792 |Application|Vault |
+ROW |3315 |32793 |Application|Vault |
+ROW |3316 |32794 |Application|Vault |
+ROW |3317 |32796 |Application|Vault |
+ROW |3318 |32797 |Application|Vault |
+ROW |3319 |32798 |Application|Vault |
+ROW |3320 |32799 |Application|Vault |
+ROW |3321 |32800 |Application|Vault |
+ROW |3322 |32801 |Application|Vault |
+ROW |3323 |32802 |Application|Vault |
+ROW |3324 |32804 |Application|Vault |
+ROW |3325 |32805 |Application|Vault |
+ROW |3326 |32806 |Application|Vault |
+ROW |3327 |32807 |Application|Vault |
+ROW |3328 |32808 |Application|Vault |
+ROW |3329 |32809 |Application|Vault |
+ROW |3330 |32810 |Application|Vault |
+ROW |3331 |32811 |Application|Vault |
+ROW |3332 |32812 |Application|Vault |
+ROW |3333 |32813 |Application|Vault |
+ROW |3334 |32814 |Application|Vault |
+ROW |3335 |32815 |Application|Vault |
+ROW |3336 |32816 |Application|Vault |
+ROW |3337 |32817 |Application|Vault |
+ROW |3338 |32818 |Application|Vault |
+ROW |3339 |32819 |Application|Vault |
+ROW |3340 |32820 |Application|Vault |
+ROW |3341 |32821 |Application|Vault |
+ROW |3342 |32822 |Application|Vault |
+ROW |3343 |32823 |Application|Vault |
+ROW |3344 |32824 |Application|Vault |
+ROW |3345 |32825 |Application|Vault |
+ROW |3346 |32826 |Application|Vault |
+ROW |3347 |32827 |Application|Vault |
+ROW |3348 |32828 |Application|Vault |
+ROW |3349 |32829 |Application|Vault |
+ROW |3350 |32830 |Application|Vault |
+ROW |3351 |32831 |Application|Vault |
+ROW |3352 |32832 |Application|Vault |
+ROW |3353 |32833 |Application|Vault |
+ROW |3354 |32834 |Application|Vault |
+ROW |3355 |32835 |Application|Vault |
+ROW |3356 |32836 |Application|Vault |
+ROW |3357 |32837 |Application|Vault |
+ROW |3358 |32838 |Application|Vault |
+ROW |3359 |32839 |Application|Vault |
+ROW |3360 |32840 |Application|Vault |
+ROW |3361 |32841 |Application|Vault |
+ROW |3362 |32842 |Application|Vault |
+ROW |3363 |32843 |Application|Vault |
+ROW |3364 |32844 |Application|Vault |
+ROW |3365 |32847 |Application|Vault |
+ROW |3366 |32848 |Application|Vault |
+ROW |3367 |32849 |Application|Vault |
+ROW |3368 |32851 |Application|Vault |
+ROW |3369 |32852 |Application|Vault |
+ROW |3370 |32853 |Application|Vault |
+ROW |3371 |32854 |Application|Vault |
+ROW |3372 |32855 |Application|Vault |
+ROW |3373 |32856 |Application|Vault |
+ROW |3374 |32857 |Application|Vault |
+ROW |3375 |32858 |Application|Vault |
+ROW |3376 |32859 |Application|Vault |
+ROW |3377 |32860 |Application|Vault |
+ROW |3378 |32861 |Application|Vault |
+ROW |3379 |32862 |Application|Vault |
+ROW |3380 |32863 |Application|Vault |
+ROW |3381 |32864 |Application|Vault |
+ROW |3382 |32865 |Application|Vault |
+ROW |3383 |32780 |Application|Zabbix raw items |
+ROW |3384 |32781 |Application|Zabbix raw items |
+ROW |3385 |32782 |Application|Zabbix raw items |
+ROW |3386 |32783 |Application|Zabbix raw items |
+ROW |3387 |32795 |Application|Zabbix raw items |
+ROW |3388 |32803 |Application|Zabbix raw items |
+ROW |3389 |32845 |Application|Zabbix raw items |
+ROW |3390 |32846 |Application|Zabbix raw items |
+ROW |3391 |32850 |Application|Zabbix raw items |
+ROW |3392 |32951 |Application|VMware |
+ROW |3393 |32952 |Application|VMware |
+ROW |3394 |32953 |Application|VMware |
+ROW |3395 |32958 |Application|VMware |
+ROW |3396 |32959 |Application|VMware |
+ROW |3397 |32960 |Application|VMware |
+ROW |3398 |32961 |Application|VMware |
+ROW |3399 |32962 |Application|VMware |
+ROW |3400 |32963 |Application|Zabbix raw items |
+ROW |3401 |32964 |Application|Zabbix raw items |
+ROW |3402 |32965 |Application|Zookeeper |
+ROW |3403 |32966 |Application|Zookeeper |
+ROW |3404 |32967 |Application|Zookeeper |
+ROW |3405 |32968 |Application|Zookeeper |
+ROW |3406 |32969 |Application|Zookeeper |
+ROW |3407 |32970 |Application|Zookeeper |
+ROW |3408 |32971 |Application|Zookeeper |
+ROW |3409 |32972 |Application|Zookeeper |
+ROW |3410 |32973 |Application|Zookeeper |
+ROW |3411 |32974 |Application|Zookeeper |
+ROW |3412 |32975 |Application|Zookeeper |
+ROW |3413 |32976 |Application|Zookeeper |
+ROW |3414 |32977 |Application|Zookeeper |
+ROW |3415 |32978 |Application|Zookeeper |
+ROW |3416 |32979 |Application|Zookeeper |
+ROW |3417 |32980 |Application|Zookeeper |
+ROW |3418 |32981 |Application|Zookeeper |
+ROW |3419 |32982 |Application|Zookeeper |
+ROW |3420 |32983 |Application|Zookeeper |
+ROW |3421 |32984 |Application|Zookeeper |
+ROW |3422 |32985 |Application|Zookeeper |
+ROW |3423 |32986 |Application|Zookeeper |
+ROW |3424 |32987 |Application|Zookeeper |
+ROW |3425 |32988 |Application|Zookeeper |
+ROW |3426 |32989 |Application|Zookeeper |
+ROW |3427 |32990 |Application|Zookeeper |
+ROW |3428 |32991 |Application|Zookeeper |
+ROW |3429 |32992 |Application|Zookeeper |
+ROW |3430 |32993 |Application|Zookeeper |
+ROW |3431 |32994 |Application|Zookeeper |
+ROW |3432 |32995 |Application|Zookeeper |
+ROW |3433 |32996 |Application|Zookeeper |
+ROW |3434 |32997 |Application|Zookeeper |
+ROW |3435 |33006 |Application|Zookeeper |
+ROW |3436 |33007 |Application|Zookeeper |
+ROW |3437 |33008 |Application|Zookeeper |
+ROW |3438 |33009 |Application|Zookeeper |
+ROW |3439 |33010 |Application|Zookeeper |
+ROW |3440 |33011 |Application|Zookeeper |
+ROW |3441 |33028 |Application|Cassandra |
+ROW |3442 |33029 |Application|Cassandra |
+ROW |3443 |33030 |Application|Cassandra |
+ROW |3444 |33031 |Application|Cassandra |
+ROW |3445 |33032 |Application|Cassandra |
+ROW |3446 |33033 |Application|Cassandra |
+ROW |3447 |33034 |Application|Cassandra |
+ROW |3448 |33035 |Application|Cassandra |
+ROW |3449 |33036 |Application|Cassandra |
+ROW |3450 |33037 |Application|Cassandra |
+ROW |3451 |33038 |Application|Cassandra |
+ROW |3452 |33039 |Application|Cassandra |
+ROW |3453 |33040 |Application|Cassandra |
+ROW |3454 |33041 |Application|Cassandra |
+ROW |3455 |33042 |Application|Cassandra |
+ROW |3456 |33043 |Application|Cassandra |
+ROW |3457 |33044 |Application|Cassandra |
+ROW |3458 |33045 |Application|Cassandra |
+ROW |3459 |33046 |Application|Cassandra |
+ROW |3460 |33047 |Application|Cassandra |
+ROW |3461 |33048 |Application|Cassandra |
+ROW |3462 |33049 |Application|Cassandra |
+ROW |3463 |33050 |Application|Cassandra |
+ROW |3464 |33051 |Application|Cassandra |
+ROW |3465 |33052 |Application|Cassandra |
+ROW |3466 |33053 |Application|Cassandra |
+ROW |3467 |33054 |Application|Cassandra |
+ROW |3468 |33055 |Application|Cassandra |
+ROW |3469 |33056 |Application|Cassandra |
+ROW |3470 |33057 |Application|Cassandra |
+ROW |3471 |33058 |Application|Cassandra |
+ROW |3472 |33059 |Application|Cassandra |
+ROW |3473 |33060 |Application|Cassandra |
+ROW |3474 |33061 |Application|Cassandra |
+ROW |3475 |33062 |Application|Cassandra |
+ROW |3476 |33063 |Application|Cassandra |
+ROW |3477 |33064 |Application|Cassandra |
+ROW |3478 |33065 |Application|Cassandra |
+ROW |3479 |33066 |Application|Cassandra |
+ROW |3480 |33067 |Application|Cassandra |
+ROW |3481 |33068 |Application|Cassandra |
+ROW |3482 |33069 |Application|Cassandra |
+ROW |3483 |33070 |Application|Cassandra |
+ROW |3484 |33071 |Application|Cassandra |
+ROW |3485 |33072 |Application|Cassandra |
+ROW |3486 |33073 |Application|Cassandra |
+ROW |3487 |33074 |Application|Cassandra |
+ROW |3488 |33075 |Application|Cassandra |
+ROW |3489 |33076 |Application|Cassandra |
+ROW |3490 |33077 |Application|Cassandra |
+ROW |3491 |33078 |Application|Cassandra |
+ROW |3492 |33079 |Application|Cassandra |
+ROW |3493 |33080 |Application|Cassandra |
+ROW |3494 |33081 |Application|Cassandra |
+ROW |3495 |33082 |Application|Cassandra |
+ROW |3496 |33083 |Application|Cassandra |
+ROW |3497 |33084 |Application|Cassandra |
+ROW |3498 |33085 |Application|Cassandra |
+ROW |3499 |33086 |Application|Cassandra |
+ROW |3500 |33087 |Application|Cassandra |
+ROW |3501 |33088 |Application|Cassandra |
+ROW |3502 |33089 |Application|Cassandra |
+ROW |3503 |33090 |Application|Cassandra |
+ROW |3504 |33091 |Application|Cassandra |
+ROW |3505 |33092 |Application|Cassandra |
+ROW |3506 |33093 |Application|Cassandra |
+ROW |3507 |33094 |Application|Cassandra |
+ROW |3508 |33184 |Application|Array |
+ROW |3509 |33195 |Application|Array |
+ROW |3510 |33202 |Application|Array |
+ROW |3511 |33203 |Application|Array |
+ROW |3512 |33188 |Application|Battery |
+ROW |3513 |33199 |Application|Battery |
+ROW |3514 |33200 |Application|Battery |
+ROW |3515 |33206 |Application|Battery |
+ROW |3516 |33196 |Application|Counter |
+ROW |3517 |33197 |Application|Counter |
+ROW |3518 |33198 |Application|Counter |
+ROW |3519 |33185 |Application|Load |
+ROW |3520 |33193 |Application|Load |
+ROW |3521 |33194 |Application|Load |
+ROW |3522 |33189 |Application|Status |
+ROW |3523 |33190 |Application|Status |
+ROW |3524 |33191 |Application|Status |
+ROW |3525 |33192 |Application|Status |
+ROW |3526 |33186 |Application|Temperature |
+ROW |3527 |33187 |Application|Temperature |
+ROW |3528 |33204 |Application|Temperature |
+ROW |3529 |33201 |Application|Zabbix raw items |
+ROW |3530 |33207 |Application|Array |
+ROW |3531 |33211 |Application|Battery |
+ROW |3532 |33222 |Application|Battery |
+ROW |3533 |33223 |Application|Battery |
+ROW |3534 |33226 |Application|Battery |
+ROW |3535 |33219 |Application|Counter |
+ROW |3536 |33220 |Application|Counter |
+ROW |3537 |33221 |Application|Counter |
+ROW |3538 |33215 |Application|Load |
+ROW |3539 |33217 |Application|Load |
+ROW |3540 |33218 |Application|Load |
+ROW |3541 |33208 |Application|Status |
+ROW |3542 |33212 |Application|Status |
+ROW |3543 |33213 |Application|Status |
+ROW |3544 |33214 |Application|Status |
+ROW |3545 |33209 |Application|Temperature |
+ROW |3546 |33210 |Application|Temperature |
+ROW |3547 |33224 |Application|Temperature |
+ROW |3548 |33216 |Application|Zabbix raw items |
+ROW |3549 |33227 |Application|Array |
+ROW |3550 |33238 |Application|Array |
+ROW |3551 |33245 |Application|Array |
+ROW |3552 |33246 |Application|Array |
+ROW |3553 |33231 |Application|Battery |
+ROW |3554 |33242 |Application|Battery |
+ROW |3555 |33243 |Application|Battery |
+ROW |3556 |33249 |Application|Battery |
+ROW |3557 |33239 |Application|Counter |
+ROW |3558 |33240 |Application|Counter |
+ROW |3559 |33241 |Application|Counter |
+ROW |3560 |33228 |Application|Load |
+ROW |3561 |33236 |Application|Load |
+ROW |3562 |33237 |Application|Load |
+ROW |3563 |33232 |Application|Status |
+ROW |3564 |33233 |Application|Status |
+ROW |3565 |33234 |Application|Status |
+ROW |3566 |33235 |Application|Status |
+ROW |3567 |33229 |Application|Temperature |
+ROW |3568 |33230 |Application|Temperature |
+ROW |3569 |33247 |Application|Temperature |
+ROW |3570 |33244 |Application|Zabbix raw items |
+ROW |3571 |33258 |Application|Battery |
+ROW |3572 |33251 |Application|Load |
+ROW |3573 |33252 |Application|Load |
+ROW |3574 |33253 |Application|Status |
+ROW |3575 |33254 |Application|Status |
+ROW |3576 |33255 |Application|Status |
+ROW |3577 |33256 |Application|Temperature |
+ROW |3578 |33250 |Application|Zabbix raw items |
+ROW |3579 |33259 |Application|Array |
+ROW |3580 |33268 |Application|Array |
+ROW |3581 |33272 |Application|Array |
+ROW |3582 |33273 |Application|Array |
+ROW |3583 |33274 |Application|Array |
+ROW |3584 |33262 |Application|Battery |
+ROW |3585 |33267 |Application|Battery |
+ROW |3586 |33269 |Application|Battery |
+ROW |3587 |33270 |Application|Battery |
+ROW |3588 |33277 |Application|Battery |
+ROW |3589 |33260 |Application|Counter |
+ROW |3590 |33266 |Application|Counter |
+ROW |3591 |33263 |Application|Status |
+ROW |3592 |33264 |Application|Status |
+ROW |3593 |33265 |Application|Status |
+ROW |3594 |33261 |Application|Temperature |
+ROW |3595 |33275 |Application|Temperature |
+ROW |3596 |33271 |Application|Zabbix raw items |
+ROW |3597 |33278 |Application|Array |
+ROW |3598 |33287 |Application|Array |
+ROW |3599 |33291 |Application|Array |
+ROW |3600 |33292 |Application|Array |
+ROW |3601 |33293 |Application|Array |
+ROW |3602 |33281 |Application|Battery |
+ROW |3603 |33286 |Application|Battery |
+ROW |3604 |33288 |Application|Battery |
+ROW |3605 |33289 |Application|Battery |
+ROW |3606 |33296 |Application|Battery |
+ROW |3607 |33279 |Application|Counter |
+ROW |3608 |33285 |Application|Counter |
+ROW |3609 |33282 |Application|Status |
+ROW |3610 |33283 |Application|Status |
+ROW |3611 |33284 |Application|Status |
+ROW |3612 |33280 |Application|Temperature |
+ROW |3613 |33294 |Application|Temperature |
+ROW |3614 |33290 |Application|Zabbix raw items |
+ROW |3615 |33313 |Application|Array |
+ROW |3616 |33312 |Application|Battery |
+ROW |3617 |33314 |Application|Battery |
+ROW |3618 |33315 |Application|Battery |
+ROW |3619 |33316 |Application|Battery |
+ROW |3620 |33299 |Application|Counter |
+ROW |3621 |33300 |Application|Counter |
+ROW |3622 |33317 |Application|Load |
+ROW |3623 |33318 |Application|Load |
+ROW |3624 |33319 |Application|Load |
+ROW |3625 |33320 |Application|Load |
+ROW |3626 |33298 |Application|Status |
+ROW |3627 |33301 |Application|Status |
+ROW |3628 |33302 |Application|Status |
+ROW |3629 |33303 |Application|Status |
+ROW |3630 |33304 |Application|Temperature |
+ROW |3631 |33305 |Application|Temperature |
+ROW |3632 |33297 |Application|Zabbix raw items |
+ROW |3633 |33340 |Application|General |
+ROW |3634 |33341 |Application|General |
+ROW |3635 |33342 |Application|General |
+ROW |3636 |33343 |Application|General |
+ROW |3637 |33344 |Application|General |
+ROW |3638 |33345 |Application|General |
+ROW |3639 |33348 |Application|NetApp FAS3220 |
+ROW |3640 |33349 |Application|NetApp FAS3220 |
+ROW |3641 |33350 |Application|NetApp FAS3220 |
+ROW |3642 |33351 |Application|NetApp FAS3220 |
+ROW |3643 |33337 |Application|Status |
+ROW |3644 |33338 |Application|Status |
+ROW |3645 |33339 |Application|Status |
+ROW |3646 |33346 |Application|Status |
+ROW |3647 |33347 |Application|Status |
+ROW |3648 |33392 |Application|Jenkins |
+ROW |3649 |33396 |Application|Jenkins |
+ROW |3650 |33397 |Application|Jenkins |
+ROW |3651 |33398 |Application|Jenkins |
+ROW |3652 |33399 |Application|Jenkins |
+ROW |3653 |33400 |Application|Jenkins |
+ROW |3654 |33401 |Application|Jenkins |
+ROW |3655 |33402 |Application|Jenkins |
+ROW |3656 |33403 |Application|Jenkins |
+ROW |3657 |33404 |Application|Jenkins |
+ROW |3658 |33405 |Application|Jenkins |
+ROW |3659 |33406 |Application|Jenkins |
+ROW |3660 |33407 |Application|Jenkins |
+ROW |3661 |33408 |Application|Jenkins |
+ROW |3662 |33409 |Application|Jenkins |
+ROW |3663 |33410 |Application|Jenkins |
+ROW |3664 |33411 |Application|Jenkins |
+ROW |3665 |33412 |Application|Jenkins |
+ROW |3666 |33413 |Application|Jenkins |
+ROW |3667 |33414 |Application|Jenkins |
+ROW |3668 |33415 |Application|Jenkins |
+ROW |3669 |33416 |Application|Jenkins |
+ROW |3670 |33417 |Application|Jenkins |
+ROW |3671 |33418 |Application|Jenkins |
+ROW |3672 |33419 |Application|Jenkins |
+ROW |3673 |33420 |Application|Jenkins |
+ROW |3674 |33421 |Application|Jenkins |
+ROW |3675 |33422 |Application|Jenkins |
+ROW |3676 |33423 |Application|Jenkins |
+ROW |3677 |33424 |Application|Jenkins |
+ROW |3678 |33425 |Application|Jenkins |
+ROW |3679 |33426 |Application|Jenkins |
+ROW |3680 |33427 |Application|Jenkins |
+ROW |3681 |33428 |Application|Jenkins |
+ROW |3682 |33429 |Application|Jenkins |
+ROW |3683 |33430 |Application|Jenkins |
+ROW |3684 |33431 |Application|Jenkins |
+ROW |3685 |33432 |Application|Jenkins |
+ROW |3686 |33433 |Application|Jenkins |
+ROW |3687 |33434 |Application|Jenkins |
+ROW |3688 |33435 |Application|Jenkins |
+ROW |3689 |33436 |Application|Jenkins |
+ROW |3690 |33437 |Application|Jenkins |
+ROW |3691 |33438 |Application|Jenkins |
+ROW |3692 |33439 |Application|Jenkins |
+ROW |3693 |33440 |Application|Jenkins |
+ROW |3694 |33441 |Application|Jenkins |
+ROW |3695 |33442 |Application|Jenkins |
+ROW |3696 |33443 |Application|Jenkins |
+ROW |3697 |33444 |Application|Jenkins |
+ROW |3698 |33445 |Application|Jenkins |
+ROW |3699 |33446 |Application|Jenkins |
+ROW |3700 |33447 |Application|Jenkins |
+ROW |3701 |33448 |Application|Jenkins |
+ROW |3702 |33449 |Application|Jenkins |
+ROW |3703 |33450 |Application|Jenkins |
+ROW |3704 |33451 |Application|Jenkins |
+ROW |3705 |33452 |Application|Jenkins |
+ROW |3706 |33453 |Application|Jenkins |
+ROW |3707 |33454 |Application|Jenkins |
+ROW |3708 |33455 |Application|Jenkins |
+ROW |3709 |33456 |Application|Jenkins |
+ROW |3710 |33457 |Application|Jenkins |
+ROW |3711 |33458 |Application|Jenkins |
+ROW |3712 |33459 |Application|Jenkins |
+ROW |3713 |33460 |Application|Jenkins |
+ROW |3714 |33461 |Application|Jenkins |
+ROW |3715 |33462 |Application|Jenkins |
+ROW |3716 |33463 |Application|Jenkins |
+ROW |3717 |33464 |Application|Jenkins |
+ROW |3718 |33391 |Application|Zabbix raw items |
+ROW |3719 |33393 |Application|Zabbix raw items |
+ROW |3720 |33394 |Application|Zabbix raw items |
+ROW |3721 |33395 |Application|Zabbix raw items |
+ROW |3722 |33518 |Application|CPU |
+ROW |3723 |33494 |Application|Hikvision camera |
+ROW |3724 |33495 |Application|Hikvision camera |
+ROW |3725 |33496 |Application|Hikvision camera |
+ROW |3726 |33497 |Application|Hikvision camera |
+ROW |3727 |33498 |Application|Hikvision camera |
+ROW |3728 |33499 |Application|Hikvision camera |
+ROW |3729 |33500 |Application|Hikvision camera |
+ROW |3730 |33502 |Application|Hikvision camera |
+ROW |3731 |33503 |Application|Hikvision camera |
+ROW |3732 |33507 |Application|Hikvision camera |
+ROW |3733 |33508 |Application|Hikvision camera |
+ROW |3734 |33509 |Application|Hikvision camera |
+ROW |3735 |33510 |Application|Hikvision camera |
+ROW |3736 |33511 |Application|Hikvision camera |
+ROW |3737 |33512 |Application|Hikvision camera |
+ROW |3738 |33513 |Application|Hikvision camera |
+ROW |3739 |33514 |Application|Hikvision camera |
+ROW |3740 |33515 |Application|Hikvision camera |
+ROW |3741 |33516 |Application|Hikvision camera |
+ROW |3742 |33517 |Application|Hikvision camera |
+ROW |3743 |33501 |Application|Memory |
+ROW |3744 |33504 |Application|Status |
+ROW |3745 |33505 |Application|Status |
+ROW |3746 |33506 |Application|Status |
+ROW |3747 |33519 |Application|Status |
+ROW |3748 |33491 |Application|Zabbix raw items |
+ROW |3749 |33492 |Application|Zabbix raw items |
+ROW |3750 |33493 |Application|Zabbix raw items |
+ROW |3751 |33522 |Application|Zabbix raw items |
+ROW |3752 |33523 |Application|Zabbix raw items |
+ROW |3753 |33631 |Application|Sharepoint |
+ROW |3754 |33632 |Application|Sharepoint |
+ROW |3755 |33633 |Application|Sharepoint |
+ROW |3756 |33630 |Application|Zabbix raw items |
+ROW |3757 |33656 |Application|Zabbix raw items |
+ROW |3758 |33668 |Application|Zabbix raw items |
+ROW |3759 |33683 |Application|General |
+ROW |3760 |33684 |Application|General |
+ROW |3761 |33685 |Application|General |
+ROW |3762 |33686 |Application|General |
+ROW |3763 |33687 |Application|General |
+ROW |3764 |33688 |Application|General |
+ROW |3765 |33691 |Application|Huawei |
+ROW |3766 |33692 |Application|Huawei |
+ROW |3767 |33693 |Application|Huawei |
+ROW |3768 |33694 |Application|Huawei |
+ROW |3769 |33680 |Application|Status |
+ROW |3770 |33681 |Application|Status |
+ROW |3771 |33682 |Application|Status |
+ROW |3772 |33689 |Application|Status |
+ROW |3773 |33690 |Application|Status |
+ROW |3774 |33766 |Application|MongoDB |
+ROW |3775 |33769 |Application|MongoDB |
+ROW |3776 |33770 |Application|MongoDB |
+ROW |3777 |33771 |Application|MongoDB |
+ROW |3778 |33772 |Application|MongoDB |
+ROW |3779 |33773 |Application|MongoDB |
+ROW |3780 |33774 |Application|MongoDB |
+ROW |3781 |33775 |Application|MongoDB |
+ROW |3782 |33776 |Application|MongoDB |
+ROW |3783 |33777 |Application|MongoDB |
+ROW |3784 |33778 |Application|MongoDB |
+ROW |3785 |33779 |Application|MongoDB |
+ROW |3786 |33780 |Application|MongoDB |
+ROW |3787 |33781 |Application|MongoDB |
+ROW |3788 |33782 |Application|MongoDB |
+ROW |3789 |33783 |Application|MongoDB |
+ROW |3790 |33784 |Application|MongoDB |
+ROW |3791 |33785 |Application|MongoDB |
+ROW |3792 |33786 |Application|MongoDB |
+ROW |3793 |33787 |Application|MongoDB |
+ROW |3794 |33788 |Application|MongoDB |
+ROW |3795 |33789 |Application|MongoDB |
+ROW |3796 |33790 |Application|MongoDB |
+ROW |3797 |33791 |Application|MongoDB |
+ROW |3798 |33792 |Application|MongoDB |
+ROW |3799 |33793 |Application|MongoDB |
+ROW |3800 |33794 |Application|MongoDB |
+ROW |3801 |33795 |Application|MongoDB |
+ROW |3802 |33796 |Application|MongoDB |
+ROW |3803 |33797 |Application|MongoDB |
+ROW |3804 |33798 |Application|MongoDB |
+ROW |3805 |33799 |Application|MongoDB |
+ROW |3806 |33800 |Application|MongoDB |
+ROW |3807 |33801 |Application|MongoDB |
+ROW |3808 |33802 |Application|MongoDB |
+ROW |3809 |33803 |Application|MongoDB |
+ROW |3810 |33804 |Application|MongoDB |
+ROW |3811 |33805 |Application|MongoDB |
+ROW |3812 |33806 |Application|MongoDB |
+ROW |3813 |33807 |Application|MongoDB |
+ROW |3814 |33869 |Application|MongoDB |
+ROW |3815 |33870 |Application|MongoDB |
+ROW |3816 |33871 |Application|MongoDB |
+ROW |3817 |33872 |Application|MongoDB |
+ROW |3818 |33873 |Application|MongoDB |
+ROW |3819 |33874 |Application|MongoDB |
+ROW |3820 |33875 |Application|MongoDB |
+ROW |3821 |33876 |Application|MongoDB |
+ROW |3822 |33877 |Application|MongoDB |
+ROW |3823 |33878 |Application|MongoDB |
+ROW |3824 |33879 |Application|MongoDB |
+ROW |3825 |33880 |Application|MongoDB |
+ROW |3826 |33881 |Application|MongoDB |
+ROW |3827 |33882 |Application|MongoDB |
+ROW |3828 |33883 |Application|MongoDB |
+ROW |3829 |33884 |Application|MongoDB |
+ROW |3830 |33885 |Application|MongoDB |
+ROW |3831 |33764 |Application|Zabbix raw items |
+ROW |3832 |33765 |Application|Zabbix raw items |
+ROW |3833 |33767 |Application|Zabbix raw items |
+ROW |3834 |33768 |Application|Zabbix raw items |
+ROW |3835 |33812 |Application|Zabbix raw items |
+ROW |3836 |33813 |Application|Zabbix raw items |
+ROW |3837 |33886 |Application|MongoDB sharded cluster |
+ROW |3838 |33888 |Application|MongoDB sharded cluster |
+ROW |3840 |33891 |Application|MongoDB sharded cluster |
+ROW |3841 |33892 |Application|MongoDB sharded cluster |
+ROW |3842 |33893 |Application|MongoDB sharded cluster |
+ROW |3843 |33894 |Application|MongoDB sharded cluster |
+ROW |3844 |33895 |Application|MongoDB sharded cluster |
+ROW |3845 |33896 |Application|MongoDB sharded cluster |
+ROW |3846 |33897 |Application|MongoDB sharded cluster |
+ROW |3847 |33898 |Application|MongoDB sharded cluster |
+ROW |3848 |33899 |Application|MongoDB sharded cluster |
+ROW |3849 |33900 |Application|MongoDB sharded cluster |
+ROW |3850 |33901 |Application|MongoDB sharded cluster |
+ROW |3851 |33902 |Application|MongoDB sharded cluster |
+ROW |3852 |33903 |Application|MongoDB sharded cluster |
+ROW |3853 |33904 |Application|MongoDB sharded cluster |
+ROW |3854 |33905 |Application|MongoDB sharded cluster |
+ROW |3855 |33906 |Application|MongoDB sharded cluster |
+ROW |3856 |33907 |Application|MongoDB sharded cluster |
+ROW |3857 |33908 |Application|MongoDB sharded cluster |
+ROW |3858 |33909 |Application|MongoDB sharded cluster |
+ROW |3859 |33910 |Application|MongoDB sharded cluster |
+ROW |3860 |33911 |Application|MongoDB sharded cluster |
+ROW |3861 |33912 |Application|MongoDB sharded cluster |
+ROW |3862 |33913 |Application|MongoDB sharded cluster |
+ROW |3863 |33914 |Application|MongoDB sharded cluster |
+ROW |3864 |33915 |Application|MongoDB sharded cluster |
+ROW |3865 |33916 |Application|MongoDB sharded cluster |
+ROW |3866 |33917 |Application|MongoDB sharded cluster |
+ROW |3867 |33918 |Application|MongoDB sharded cluster |
+ROW |3868 |33919 |Application|MongoDB sharded cluster |
+ROW |3869 |33887 |Application|Zabbix raw items |
+ROW |3870 |33889 |Application|Zabbix raw items |
+ROW |3871 |33924 |Application|Zabbix raw items |
+ROW |3872 |33925 |Application|Zabbix raw items |
+ROW |3873 |33966 |Application|CPU |
+ROW |3874 |33968 |Application|Fans |
+ROW |3875 |33947 |Application|General |
+ROW |3876 |33948 |Application|General |
+ROW |3877 |33949 |Application|General |
+ROW |3878 |33952 |Application|General |
+ROW |3879 |33953 |Application|General |
+ROW |3880 |33954 |Application|General |
+ROW |3881 |33950 |Application|Inventory |
+ROW |3882 |33951 |Application|Inventory |
+ROW |3883 |33955 |Application|Inventory |
+ROW |3884 |33967 |Application|Inventory |
+ROW |3885 |33969 |Application|Memory |
+ROW |3886 |33970 |Application|Memory |
+ROW |3887 |33971 |Application|Memory |
+ROW |3888 |33982 |Application|Power supply |
+ROW |3889 |33944 |Application|Status |
+ROW |3890 |33945 |Application|Status |
+ROW |3891 |33946 |Application|Status |
+ROW |3892 |33956 |Application|Status |
+ROW |3893 |33957 |Application|Status |
+ROW |3894 |33983 |Application|Temperature |
+ROW |3895 |33984 |Application|Temperature |
+ROW |3896 |34007 |Application|CPU |
+ROW |3897 |34009 |Application|Fans |
+ROW |3898 |33988 |Application|General |
+ROW |3899 |33989 |Application|General |
+ROW |3900 |33990 |Application|General |
+ROW |3901 |33993 |Application|General |
+ROW |3902 |33994 |Application|General |
+ROW |3903 |33995 |Application|General |
+ROW |3904 |33991 |Application|Inventory |
+ROW |3905 |33992 |Application|Inventory |
+ROW |3906 |33996 |Application|Inventory |
+ROW |3907 |34008 |Application|Inventory |
+ROW |3908 |34010 |Application|Memory |
+ROW |3909 |34011 |Application|Memory |
+ROW |3910 |34012 |Application|Memory |
+ROW |3911 |34023 |Application|Power supply |
+ROW |3912 |33985 |Application|Status |
+ROW |3913 |33986 |Application|Status |
+ROW |3914 |33987 |Application|Status |
+ROW |3915 |33997 |Application|Status |
+ROW |3916 |33998 |Application|Status |
+ROW |3917 |34024 |Application|Temperature |
+ROW |3918 |34025 |Application|Temperature |
+ROW |3919 |34048 |Application|CPU |
+ROW |3920 |34050 |Application|Fans |
+ROW |3921 |34029 |Application|General |
+ROW |3922 |34030 |Application|General |
+ROW |3923 |34031 |Application|General |
+ROW |3924 |34034 |Application|General |
+ROW |3925 |34035 |Application|General |
+ROW |3926 |34036 |Application|General |
+ROW |3927 |34032 |Application|Inventory |
+ROW |3928 |34033 |Application|Inventory |
+ROW |3929 |34037 |Application|Inventory |
+ROW |3930 |34049 |Application|Inventory |
+ROW |3931 |34051 |Application|Memory |
+ROW |3932 |34052 |Application|Memory |
+ROW |3933 |34053 |Application|Memory |
+ROW |3934 |34064 |Application|Power supply |
+ROW |3935 |34026 |Application|Status |
+ROW |3936 |34027 |Application|Status |
+ROW |3937 |34028 |Application|Status |
+ROW |3938 |34038 |Application|Status |
+ROW |3939 |34039 |Application|Status |
+ROW |3940 |34065 |Application|Temperature |
+ROW |3941 |34066 |Application|Temperature |
+ROW |3942 |34089 |Application|CPU |
+ROW |3943 |34091 |Application|Fans |
+ROW |3944 |34070 |Application|General |
+ROW |3945 |34071 |Application|General |
+ROW |3946 |34072 |Application|General |
+ROW |3947 |34075 |Application|General |
+ROW |3948 |34076 |Application|General |
+ROW |3949 |34077 |Application|General |
+ROW |3950 |34073 |Application|Inventory |
+ROW |3951 |34074 |Application|Inventory |
+ROW |3952 |34078 |Application|Inventory |
+ROW |3953 |34090 |Application|Inventory |
+ROW |3954 |34092 |Application|Memory |
+ROW |3955 |34093 |Application|Memory |
+ROW |3956 |34094 |Application|Memory |
+ROW |3957 |34105 |Application|Power supply |
+ROW |3958 |34067 |Application|Status |
+ROW |3959 |34068 |Application|Status |
+ROW |3960 |34069 |Application|Status |
+ROW |3961 |34079 |Application|Status |
+ROW |3962 |34080 |Application|Status |
+ROW |3963 |34106 |Application|Temperature |
+ROW |3964 |34107 |Application|Temperature |
+ROW |3965 |34130 |Application|CPU |
+ROW |3966 |34132 |Application|Fans |
+ROW |3967 |34111 |Application|General |
+ROW |3968 |34112 |Application|General |
+ROW |3969 |34113 |Application|General |
+ROW |3970 |34116 |Application|General |
+ROW |3971 |34117 |Application|General |
+ROW |3972 |34118 |Application|General |
+ROW |3973 |34114 |Application|Inventory |
+ROW |3974 |34115 |Application|Inventory |
+ROW |3975 |34119 |Application|Inventory |
+ROW |3976 |34131 |Application|Inventory |
+ROW |3977 |34133 |Application|Memory |
+ROW |3978 |34134 |Application|Memory |
+ROW |3979 |34135 |Application|Memory |
+ROW |3980 |34146 |Application|Power supply |
+ROW |3981 |34108 |Application|Status |
+ROW |3982 |34109 |Application|Status |
+ROW |3983 |34110 |Application|Status |
+ROW |3984 |34120 |Application|Status |
+ROW |3985 |34121 |Application|Status |
+ROW |3986 |34147 |Application|Temperature |
+ROW |3987 |34148 |Application|Temperature |
+ROW |4030 |34227 |Application|General |
+ROW |4031 |34236 |Application|General |
+ROW |4032 |34237 |Application|General |
+ROW |4033 |34239 |Application|General |
+ROW |4034 |34240 |Application|General |
+ROW |4035 |34241 |Application|General |
+ROW |4036 |34242 |Application|General |
+ROW |4037 |34243 |Application|General |
+ROW |4038 |34244 |Application|General |
+ROW |4039 |34245 |Application|General |
+ROW |4040 |34246 |Application|General |
+ROW |4041 |34248 |Application|General |
+ROW |4042 |34249 |Application|General |
+ROW |4043 |34251 |Application|General |
+ROW |4044 |34252 |Application|General |
+ROW |4045 |34253 |Application|General |
+ROW |4046 |34226 |Application|Zabbix raw items |
+ROW |4047 |34228 |Application|Zabbix raw items |
+ROW |4048 |34229 |Application|Zabbix raw items |
+ROW |4049 |34230 |Application|Zabbix raw items |
+ROW |4050 |34231 |Application|Zabbix raw items |
+ROW |4051 |34232 |Application|Zabbix raw items |
+ROW |4052 |34233 |Application|Zabbix raw items |
+ROW |4053 |34234 |Application|Zabbix raw items |
+ROW |4054 |34235 |Application|Zabbix raw items |
+ROW |4055 |34238 |Application|Zabbix raw items |
+ROW |4056 |34247 |Application|Zabbix raw items |
+ROW |4057 |34250 |Application|Zabbix raw items |
+ROW |4058 |34254 |Application|Zabbix raw items |
+ROW |4059 |34255 |Application|Zabbix raw items |
+ROW |4060 |34256 |Application|Zabbix raw items |
+ROW |4061 |34257 |Application|Zabbix raw items |
+ROW |4062 |34258 |Application|Zabbix raw items |
+ROW |4063 |34259 |Application|Zabbix raw items |
+ROW |4064 |34296 |Application|Zabbix raw items |
+ROW |4065 |34297 |Application|Zabbix raw items |
+ROW |4066 |34298 |Application|Zabbix raw items |
+ROW |4067 |34299 |Application|Zabbix raw items |
+ROW |4068 |34302 |Application|Zabbix raw items |
+ROW |4069 |34303 |Application|Zabbix raw items |
+ROW |4070 |34304 |Application|Zabbix raw items |
+ROW |4071 |34305 |Application|Zabbix raw items |
+ROW |4072 |29014 |Application|Disk {#DEVNAME} |
+ROW |4073 |29015 |Application|Disk {#DEVNAME} |
+ROW |4074 |29016 |Application|Disk {#DEVNAME} |
+ROW |4075 |29027 |Application|Filesystem {#FSNAME} |
+ROW |4076 |29028 |Application|Filesystem {#FSNAME} |
+ROW |4077 |29029 |Application|Filesystem {#FSNAME} |
+ROW |4078 |29030 |Application|Filesystem {#FSNAME} |
+ROW |4079 |29031 |Application|Disk {#DEVNAME} |
+ROW |4080 |29032 |Application|Disk {#DEVNAME} |
+ROW |4081 |29033 |Application|Disk {#DEVNAME} |
+ROW |4082 |29044 |Application|Filesystem {#FSNAME} |
+ROW |4083 |29045 |Application|Filesystem {#FSNAME} |
+ROW |4084 |29046 |Application|Filesystem {#FSNAME} |
+ROW |4085 |29047 |Application|Filesystem {#FSNAME} |
+ROW |4086 |29210 |Application|Filesystem {#FSNAME} |
+ROW |4087 |29211 |Application|Filesystem {#FSNAME} |
+ROW |4088 |29212 |Application|Filesystem {#FSNAME} |
+ROW |4089 |29213 |Application|Filesystem {#FSNAME} |
+ROW |4090 |29216 |Application|Interface {#IFNAME} |
+ROW |4091 |29217 |Application|Interface {#IFNAME} |
+ROW |4092 |29218 |Application|Interface {#IFNAME} |
+ROW |4093 |29219 |Application|Interface {#IFNAME} |
+ROW |4094 |29220 |Application|Interface {#IFNAME} |
+ROW |4095 |29221 |Application|Interface {#IFNAME} |
+ROW |4096 |29222 |Application|Interface {#IFNAME} |
+ROW |4097 |29223 |Application|Interface {#IFNAME} |
+ROW |4098 |29224 |Application|Filesystem {#FSNAME} |
+ROW |4099 |29225 |Application|Filesystem {#FSNAME} |
+ROW |4100 |29226 |Application|Filesystem {#FSNAME} |
+ROW |4101 |29227 |Application|Filesystem {#FSNAME} |
+ROW |4102 |29230 |Application|Interface {#IFNAME} |
+ROW |4103 |29231 |Application|Interface {#IFNAME} |
+ROW |4104 |29232 |Application|Interface {#IFNAME} |
+ROW |4105 |29233 |Application|Interface {#IFNAME} |
+ROW |4106 |29234 |Application|Interface {#IFNAME} |
+ROW |4107 |29235 |Application|Interface {#IFNAME} |
+ROW |4108 |29236 |Application|Interface {#IFNAME} |
+ROW |4109 |29237 |Application|Interface {#IFNAME} |
+ROW |4110 |29238 |Application|Filesystem {#FSNAME} |
+ROW |4111 |29239 |Application|Filesystem {#FSNAME} |
+ROW |4112 |29240 |Application|Filesystem {#FSNAME} |
+ROW |4113 |29241 |Application|Filesystem {#FSNAME} |
+ROW |4114 |29244 |Application|Interface {#IFNAME} |
+ROW |4115 |29245 |Application|Interface {#IFNAME} |
+ROW |4116 |29246 |Application|Interface {#IFNAME} |
+ROW |4117 |29247 |Application|Interface {#IFNAME} |
+ROW |4118 |29248 |Application|Interface {#IFNAME} |
+ROW |4119 |29249 |Application|Interface {#IFNAME} |
+ROW |4120 |29250 |Application|Interface {#IFNAME} |
+ROW |4121 |29251 |Application|Interface {#IFNAME} |
+ROW |4122 |29432 |Application|Filesystem {#FSNAME} |
+ROW |4123 |29433 |Application|Filesystem {#FSNAME} |
+ROW |4124 |29445 |Application|Filesystem {#FSNAME} |
+ROW |4125 |29446 |Application|Filesystem {#FSNAME} |
+ROW |4126 |29447 |Application|Filesystem {#FSNAME} |
+ROW |4127 |29434 |Application|Disk {#DEVNAME} |
+ROW |4128 |29435 |Application|Disk {#DEVNAME} |
+ROW |4129 |29448 |Application|Disk {#DEVNAME} |
+ROW |4130 |29449 |Application|Disk {#DEVNAME} |
+ROW |4131 |29452 |Application|Disk {#DEVNAME} |
+ROW |4132 |29453 |Application|Disk {#DEVNAME} |
+ROW |4133 |29436 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4134 |29437 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4135 |29438 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4136 |29439 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4137 |29440 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4138 |29441 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4139 |29442 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4140 |29443 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4141 |29444 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4142 |29512 |Application|Filesystem {#FSNAME} |
+ROW |4143 |29513 |Application|Filesystem {#FSNAME} |
+ROW |4144 |29514 |Application|Filesystem {#FSNAME} |
+ROW |4145 |29521 |Application|Filesystem {#FSNAME} |
+ROW |4146 |29522 |Application|Filesystem {#FSNAME} |
+ROW |4147 |29523 |Application|Filesystem {#FSNAME} |
+ROW |4148 |29720 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4149 |29721 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4150 |29722 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4151 |29723 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4152 |29724 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4153 |29725 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4154 |29726 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4155 |29727 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4156 |29728 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4157 |29729 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4158 |29730 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4159 |29731 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4160 |29732 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4161 |29733 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4162 |29734 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4163 |29735 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4164 |29736 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4165 |29737 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4166 |29787 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4167 |29788 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4168 |29789 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4169 |29790 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4170 |29791 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4171 |29792 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4172 |29793 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4173 |29794 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4174 |29795 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4175 |29796 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4176 |29797 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4177 |29798 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4178 |29799 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4179 |29800 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4180 |29801 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4181 |29802 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4182 |29803 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4183 |29804 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4184 |29805 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4185 |29806 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4186 |29807 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4187 |29808 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4188 |29809 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4189 |29810 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4190 |29811 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4191 |29812 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4192 |29813 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4193 |29814 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4194 |29815 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4195 |29816 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4196 |29817 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4197 |29818 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4198 |29819 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4199 |29820 |Application|RabbitMQ: Queue "{#VHOST}/{#QUEUE}" |
+ROW |4200 |27032 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4201 |27191 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4202 |27332 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4203 |27461 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4204 |27531 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4205 |27567 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4206 |27630 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4207 |27653 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4208 |27733 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4209 |27799 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4210 |27955 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4211 |28129 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4212 |28281 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4213 |28956 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4214 |27099 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4215 |27100 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4216 |27101 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4217 |27102 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4218 |27103 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4219 |27104 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4220 |27105 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4221 |27106 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4222 |27107 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4223 |27181 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4224 |27182 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4225 |27183 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4226 |27184 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4227 |27185 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4228 |27186 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4229 |27187 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4230 |27188 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4231 |27189 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4232 |27216 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4233 |27217 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4234 |27218 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4235 |27219 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4236 |27220 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4237 |27221 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4238 |27222 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4239 |27223 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4240 |27224 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4241 |27252 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4242 |27253 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4243 |27254 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4244 |27255 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4245 |27256 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4246 |27257 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4247 |27258 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4248 |27259 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4249 |27260 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4250 |27273 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4251 |27274 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4252 |27275 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4253 |27276 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4254 |27277 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4255 |27278 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4256 |27279 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4257 |27280 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4258 |27281 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4259 |27322 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4260 |27323 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4261 |27324 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4262 |27325 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4263 |27326 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4264 |27327 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4265 |27328 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4266 |27329 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4267 |27330 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4268 |27451 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4269 |27452 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4270 |27453 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4271 |27454 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4272 |27455 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4273 |27456 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4274 |27457 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4275 |27458 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4276 |27459 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4277 |27487 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4278 |27488 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4279 |27489 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4280 |27490 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4281 |27491 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4282 |27492 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4283 |27493 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4284 |27494 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4285 |27495 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4286 |27521 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4287 |27522 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4288 |27523 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4289 |27524 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4290 |27525 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4291 |27526 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4292 |27527 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4293 |27528 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4294 |27529 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4295 |27557 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4296 |27558 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4297 |27559 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4298 |27560 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4299 |27561 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4300 |27562 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4301 |27563 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4302 |27564 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4303 |27565 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4304 |27643 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4305 |27644 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4306 |27645 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4307 |27646 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4308 |27647 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4309 |27648 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4310 |27649 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4311 |27650 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4312 |27651 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4313 |27723 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4314 |27724 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4315 |27725 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4316 |27726 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4317 |27727 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4318 |27728 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4319 |27729 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4320 |27730 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4321 |27731 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4322 |27757 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4323 |27758 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4324 |27759 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4325 |27760 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4326 |27761 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4327 |27762 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4328 |27763 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4329 |27764 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4330 |27765 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4331 |27789 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4332 |27790 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4333 |27791 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4334 |27792 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4335 |27793 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4336 |27794 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4337 |27795 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4338 |27796 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4339 |27797 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4340 |27873 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4341 |27874 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4342 |27875 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4343 |27876 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4344 |27877 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4345 |27878 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4346 |27879 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4347 |27880 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4348 |27881 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4349 |27910 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4350 |27911 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4351 |27912 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4352 |27913 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4353 |27914 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4354 |27915 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4355 |27916 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4356 |27917 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4357 |27918 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4358 |27945 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4359 |27946 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4360 |27947 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4361 |27948 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4362 |27949 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4363 |27950 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4364 |27951 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4365 |27952 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4366 |27953 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4367 |28119 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4368 |28120 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4369 |28121 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4370 |28122 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4371 |28123 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4372 |28124 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4373 |28125 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4374 |28126 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4375 |28127 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4376 |28224 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4377 |28225 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4378 |28226 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4379 |28227 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4380 |28228 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4381 |28229 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4382 |28230 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4383 |28231 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4384 |28232 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4385 |28294 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4386 |28295 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4387 |28296 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4388 |28297 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4389 |28298 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4390 |28299 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4391 |28300 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4392 |28301 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4393 |28302 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4394 |28969 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4395 |28970 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4396 |28971 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4397 |28972 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4398 |28973 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4399 |28974 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4400 |28975 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4401 |28976 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4402 |28977 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4403 |28006 |Application|Interface {#IFDESCR} |
+ROW |4404 |28007 |Application|Interface {#IFDESCR} |
+ROW |4405 |28008 |Application|Interface {#IFDESCR} |
+ROW |4406 |28009 |Application|Interface {#IFDESCR} |
+ROW |4407 |28010 |Application|Interface {#IFDESCR} |
+ROW |4408 |28011 |Application|Interface {#IFDESCR} |
+ROW |4409 |28012 |Application|Interface {#IFDESCR} |
+ROW |4410 |28013 |Application|Interface {#IFDESCR} |
+ROW |4411 |28014 |Application|Interface {#IFDESCR} |
+ROW |4412 |27079 |Application|Interface {#IFDESCR} |
+ROW |4413 |27080 |Application|Interface {#IFDESCR} |
+ROW |4414 |27081 |Application|Interface {#IFDESCR} |
+ROW |4415 |27082 |Application|Interface {#IFDESCR} |
+ROW |4416 |27083 |Application|Interface {#IFDESCR} |
+ROW |4417 |27084 |Application|Interface {#IFDESCR} |
+ROW |4418 |27085 |Application|Interface {#IFDESCR} |
+ROW |4419 |27086 |Application|Interface {#IFDESCR} |
+ROW |4420 |27087 |Application|Interface {#IFDESCR} |
+ROW |4421 |27620 |Application|Interface {#IFDESCR} |
+ROW |4422 |27621 |Application|Interface {#IFDESCR} |
+ROW |4423 |27622 |Application|Interface {#IFDESCR} |
+ROW |4424 |27623 |Application|Interface {#IFDESCR} |
+ROW |4425 |27624 |Application|Interface {#IFDESCR} |
+ROW |4426 |27625 |Application|Interface {#IFDESCR} |
+ROW |4427 |27626 |Application|Interface {#IFDESCR} |
+ROW |4428 |27627 |Application|Interface {#IFDESCR} |
+ROW |4429 |27628 |Application|Interface {#IFDESCR} |
+ROW |4430 |27977 |Application|Interface {#IFDESCR} |
+ROW |4431 |27978 |Application|Interface {#IFDESCR} |
+ROW |4432 |27979 |Application|Interface {#IFDESCR} |
+ROW |4433 |27980 |Application|Interface {#IFDESCR} |
+ROW |4434 |27981 |Application|Interface {#IFDESCR} |
+ROW |4435 |27982 |Application|Interface {#IFDESCR} |
+ROW |4436 |27983 |Application|Interface {#IFDESCR} |
+ROW |4437 |27984 |Application|Interface {#IFDESCR} |
+ROW |4438 |27985 |Application|Interface {#IFDESCR} |
+ROW |4439 |27119 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4440 |27120 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4441 |27121 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4442 |27122 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4443 |27123 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4444 |27124 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4445 |27125 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4446 |27126 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4447 |27127 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4448 |29078 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4449 |29079 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4450 |29080 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4451 |29081 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4452 |29082 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4453 |29083 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4454 |29084 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4455 |29085 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4456 |29086 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4457 |30027 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4458 |30028 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4459 |30029 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4460 |30030 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4461 |30031 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4462 |30032 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4463 |30033 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4464 |30034 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4465 |30035 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4466 |30036 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4467 |30037 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4468 |30038 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4469 |30039 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4470 |30040 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4471 |30041 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4472 |30042 |Application|RabbitMQ: Exchange "{#VHOST}/{#EXCHANGE}/{#TYPE}" |
+ROW |4473 |30160 |Application|Filesystem {#FSNAME} |
+ROW |4474 |30161 |Application|Filesystem {#FSNAME} |
+ROW |4475 |30162 |Application|Filesystem {#FSNAME} |
+ROW |4476 |30166 |Application|Filesystem {#FSNAME} |
+ROW |4477 |30167 |Application|Filesystem {#FSNAME} |
+ROW |4478 |30168 |Application|Filesystem {#FSNAME} |
+ROW |4479 |30178 |Application|Filesystem {#FSNAME} |
+ROW |4480 |30179 |Application|Filesystem {#FSNAME} |
+ROW |4481 |30180 |Application|Filesystem {#FSNAME} |
+ROW |4482 |30184 |Application|Filesystem {#FSNAME} |
+ROW |4483 |30185 |Application|Filesystem {#FSNAME} |
+ROW |4484 |30186 |Application|Filesystem {#FSNAME} |
+ROW |4485 |30196 |Application|HAProxy frontend {#PXNAME} |
+ROW |4486 |30206 |Application|HAProxy frontend {#PXNAME} |
+ROW |4487 |30207 |Application|HAProxy frontend {#PXNAME} |
+ROW |4488 |30208 |Application|HAProxy frontend {#PXNAME} |
+ROW |4489 |30209 |Application|HAProxy frontend {#PXNAME} |
+ROW |4490 |30210 |Application|HAProxy frontend {#PXNAME} |
+ROW |4491 |30211 |Application|HAProxy frontend {#PXNAME} |
+ROW |4492 |30212 |Application|HAProxy frontend {#PXNAME} |
+ROW |4493 |30213 |Application|HAProxy frontend {#PXNAME} |
+ROW |4494 |30214 |Application|HAProxy frontend {#PXNAME} |
+ROW |4495 |30215 |Application|HAProxy frontend {#PXNAME} |
+ROW |4496 |30216 |Application|HAProxy frontend {#PXNAME} |
+ROW |4497 |30217 |Application|HAProxy frontend {#PXNAME} |
+ROW |4498 |30218 |Application|HAProxy frontend {#PXNAME} |
+ROW |4499 |30197 |Application|HAProxy backend {#PXNAME} |
+ROW |4500 |30198 |Application|HAProxy backend {#PXNAME} |
+ROW |4501 |30199 |Application|HAProxy backend {#PXNAME} |
+ROW |4502 |30200 |Application|HAProxy backend {#PXNAME} |
+ROW |4503 |30201 |Application|HAProxy backend {#PXNAME} |
+ROW |4504 |30202 |Application|HAProxy backend {#PXNAME} |
+ROW |4505 |30203 |Application|HAProxy backend {#PXNAME} |
+ROW |4506 |30204 |Application|HAProxy backend {#PXNAME} |
+ROW |4507 |30205 |Application|HAProxy backend {#PXNAME} |
+ROW |4508 |30219 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4509 |30220 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4510 |30221 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4511 |30222 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4512 |30223 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4513 |30224 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4514 |30225 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4515 |30226 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4516 |30227 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4517 |30228 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4518 |30229 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4519 |30239 |Application|HAProxy frontend {#PXNAME} |
+ROW |4520 |30249 |Application|HAProxy frontend {#PXNAME} |
+ROW |4521 |30250 |Application|HAProxy frontend {#PXNAME} |
+ROW |4522 |30251 |Application|HAProxy frontend {#PXNAME} |
+ROW |4523 |30252 |Application|HAProxy frontend {#PXNAME} |
+ROW |4524 |30253 |Application|HAProxy frontend {#PXNAME} |
+ROW |4525 |30254 |Application|HAProxy frontend {#PXNAME} |
+ROW |4526 |30255 |Application|HAProxy frontend {#PXNAME} |
+ROW |4527 |30256 |Application|HAProxy frontend {#PXNAME} |
+ROW |4528 |30257 |Application|HAProxy frontend {#PXNAME} |
+ROW |4529 |30258 |Application|HAProxy frontend {#PXNAME} |
+ROW |4530 |30259 |Application|HAProxy frontend {#PXNAME} |
+ROW |4531 |30260 |Application|HAProxy frontend {#PXNAME} |
+ROW |4532 |30261 |Application|HAProxy frontend {#PXNAME} |
+ROW |4533 |30240 |Application|HAProxy backend {#PXNAME} |
+ROW |4534 |30241 |Application|HAProxy backend {#PXNAME} |
+ROW |4535 |30242 |Application|HAProxy backend {#PXNAME} |
+ROW |4536 |30243 |Application|HAProxy backend {#PXNAME} |
+ROW |4537 |30244 |Application|HAProxy backend {#PXNAME} |
+ROW |4538 |30245 |Application|HAProxy backend {#PXNAME} |
+ROW |4539 |30246 |Application|HAProxy backend {#PXNAME} |
+ROW |4540 |30247 |Application|HAProxy backend {#PXNAME} |
+ROW |4541 |30248 |Application|HAProxy backend {#PXNAME} |
+ROW |4542 |30262 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4543 |30263 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4544 |30264 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4545 |30265 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4546 |30266 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4547 |30267 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4548 |30268 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4549 |30269 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4550 |30270 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4551 |30271 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4552 |30272 |Application|HAProxy {#PXNAME} {#SVNAME} |
+ROW |4553 |30348 |Application|Redis: DB {#DB} |
+ROW |4554 |30349 |Application|Redis: DB {#DB} |
+ROW |4555 |30350 |Application|Redis: DB {#DB} |
+ROW |4556 |30396 |Application|Redis: Slave {#SLAVE_IP}:{#SLAVE_PORT} |
+ROW |4557 |30573 |Application|Docker: Container {#NAME} |
+ROW |4558 |30574 |Application|Docker: Container {#NAME} |
+ROW |4559 |30575 |Application|Docker: Container {#NAME} |
+ROW |4560 |30576 |Application|Docker: Container {#NAME} |
+ROW |4561 |30577 |Application|Docker: Container {#NAME} |
+ROW |4562 |30578 |Application|Docker: Container {#NAME} |
+ROW |4563 |30579 |Application|Docker: Container {#NAME} |
+ROW |4564 |30580 |Application|Docker: Container {#NAME} |
+ROW |4565 |30581 |Application|Docker: Container {#NAME} |
+ROW |4566 |30582 |Application|Docker: Container {#NAME} |
+ROW |4567 |30583 |Application|Docker: Container {#NAME} |
+ROW |4568 |30584 |Application|Docker: Container {#NAME} |
+ROW |4569 |30585 |Application|Docker: Container {#NAME} |
+ROW |4570 |30586 |Application|Docker: Container {#NAME} |
+ROW |4571 |30587 |Application|Docker: Container {#NAME} |
+ROW |4572 |30588 |Application|Docker: Container {#NAME} |
+ROW |4573 |30589 |Application|Docker: Container {#NAME} |
+ROW |4574 |30590 |Application|Docker: Container {#NAME} |
+ROW |4575 |30591 |Application|Docker: Container {#NAME} |
+ROW |4576 |30592 |Application|Docker: Container {#NAME} |
+ROW |4577 |30593 |Application|Docker: Container {#NAME} |
+ROW |4578 |30594 |Application|Docker: Container {#NAME} |
+ROW |4579 |30595 |Application|Docker: Container {#NAME} |
+ROW |4580 |30596 |Application|Docker: Container {#NAME} |
+ROW |4581 |30597 |Application|Docker: Container {#NAME} |
+ROW |4582 |30598 |Application|Docker: Container {#NAME} |
+ROW |4583 |30599 |Application|Docker: Container {#NAME} |
+ROW |4584 |30600 |Application|Docker: Container {#NAME} |
+ROW |4585 |30601 |Application|Docker: Container {#NAME} |
+ROW |4586 |30602 |Application|Docker: Container {#NAME} |
+ROW |4587 |30603 |Application|Docker: Container {#NAME} |
+ROW |4588 |30604 |Application|Docker: Container {#NAME} |
+ROW |4589 |30605 |Application|Docker: Container {#NAME} |
+ROW |4590 |30606 |Application|Docker: Container {#NAME} |
+ROW |4591 |30607 |Application|Docker: Container {#NAME} |
+ROW |4592 |30608 |Application|Docker: Container {#NAME} |
+ROW |4593 |30609 |Application|Docker: Image {#NAME} |
+ROW |4594 |30610 |Application|Docker: Image {#NAME} |
+ROW |4595 |30688 |Application|IPMI {#SENSOR_TYPE} |
+ROW |4596 |30689 |Application|IPMI {#SENSOR_TYPE} |
+ROW |4597 |30714 |Application|ES {#ES.NODE} |
+ROW |4598 |30715 |Application|ES {#ES.NODE} |
+ROW |4599 |30716 |Application|ES {#ES.NODE} |
+ROW |4600 |30717 |Application|ES {#ES.NODE} |
+ROW |4601 |30718 |Application|ES {#ES.NODE} |
+ROW |4602 |30720 |Application|ES {#ES.NODE} |
+ROW |4603 |30721 |Application|ES {#ES.NODE} |
+ROW |4604 |30722 |Application|ES {#ES.NODE} |
+ROW |4605 |30723 |Application|ES {#ES.NODE} |
+ROW |4606 |30724 |Application|ES {#ES.NODE} |
+ROW |4607 |30725 |Application|ES {#ES.NODE} |
+ROW |4608 |30726 |Application|ES {#ES.NODE} |
+ROW |4609 |30727 |Application|ES {#ES.NODE} |
+ROW |4610 |30728 |Application|ES {#ES.NODE} |
+ROW |4611 |30729 |Application|ES {#ES.NODE} |
+ROW |4612 |30730 |Application|ES {#ES.NODE} |
+ROW |4613 |30731 |Application|ES {#ES.NODE} |
+ROW |4614 |30732 |Application|ES {#ES.NODE} |
+ROW |4615 |30733 |Application|ES {#ES.NODE} |
+ROW |4616 |30734 |Application|ES {#ES.NODE} |
+ROW |4617 |30735 |Application|ES {#ES.NODE} |
+ROW |4618 |30736 |Application|ES {#ES.NODE} |
+ROW |4619 |30737 |Application|ES {#ES.NODE} |
+ROW |4620 |30738 |Application|ES {#ES.NODE} |
+ROW |4621 |30740 |Application|ES {#ES.NODE} |
+ROW |4622 |30741 |Application|ES {#ES.NODE} |
+ROW |4623 |30742 |Application|ES {#ES.NODE} |
+ROW |4624 |30745 |Application|ES {#ES.NODE} |
+ROW |4625 |30748 |Application|ES {#ES.NODE} |
+ROW |4626 |30749 |Application|ES {#ES.NODE} |
+ROW |4627 |30750 |Application|ES {#ES.NODE} |
+ROW |4628 |30751 |Application|ES {#ES.NODE} |
+ROW |4629 |30752 |Application|ES {#ES.NODE} |
+ROW |4630 |30753 |Application|ES {#ES.NODE} |
+ROW |4631 |30755 |Application|ES {#ES.NODE} |
+ROW |4632 |30757 |Application|ES {#ES.NODE} |
+ROW |4633 |30758 |Application|ES {#ES.NODE} |
+ROW |4634 |30762 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4635 |30772 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4636 |30773 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4637 |30774 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4638 |30775 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4639 |30776 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4640 |30777 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4641 |30778 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4642 |30779 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4643 |30763 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4644 |30764 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4645 |30765 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4646 |30766 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4647 |30767 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4648 |30768 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4649 |30769 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4650 |30770 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4651 |30771 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4652 |30780 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4653 |30781 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4654 |30782 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4655 |30783 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4656 |30784 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4657 |30785 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4658 |30786 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4659 |30787 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4660 |30788 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4661 |30794 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4662 |30804 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4663 |30805 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4664 |30806 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4665 |30807 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4666 |30808 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4667 |30809 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4668 |30810 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4669 |30811 |Application|HAProxy TCP Frontend {#PXNAME} |
+ROW |4670 |30795 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4671 |30796 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4672 |30797 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4673 |30798 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4674 |30799 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4675 |30800 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4676 |30801 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4677 |30802 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4678 |30803 |Application|HAProxy TCP Backend {#PXNAME} |
+ROW |4679 |30812 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4680 |30813 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4681 |30814 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4682 |30815 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4683 |30816 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4684 |30817 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4685 |30818 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4686 |30819 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4687 |30820 |Application|HAProxy TCP {#PXNAME} {#SVNAME} |
+ROW |4688 |30877 |Application|ClickHouse: Dictionary "{#NAME}" |
+ROW |4689 |30878 |Application|ClickHouse: Dictionary "{#NAME}" |
+ROW |4690 |30879 |Application|ClickHouse: Dictionary "{#NAME}" |
+ROW |4691 |30880 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4692 |30881 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4693 |30882 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4694 |30883 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4695 |30884 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4696 |30885 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4697 |30886 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4698 |30887 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4699 |30888 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4700 |30889 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4701 |30890 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4702 |30891 |Application|ClickHouse: "{#DB}.{#TABLE}" replica status |
+ROW |4703 |30892 |Application|ClickHouse: DB "{#DB}" |
+ROW |4704 |30893 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
+ROW |4705 |30894 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
+ROW |4706 |30895 |Application|ClickHouse: Table "{#DB}.{#TABLE}" |
+ROW |4707 |30964 |Application|Etcd peer {#ETCD.PEER} |
+ROW |4708 |30965 |Application|Etcd peer {#ETCD.PEER} |
+ROW |4709 |30966 |Application|Etcd peer {#ETCD.PEER} |
+ROW |4710 |30967 |Application|Etcd peer {#ETCD.PEER} |
+ROW |4711 |31006 |Application|{#APPPOOL} |
+ROW |4712 |31007 |Application|{#APPPOOL} |
+ROW |4713 |31008 |Application|{#APPPOOL} |
+ROW |4714 |31009 |Application|{#APPPOOL} |
+ROW |4715 |31048 |Application|{#APPPOOL} |
+ROW |4716 |31049 |Application|{#APPPOOL} |
+ROW |4717 |31050 |Application|{#APPPOOL} |
+ROW |4718 |31051 |Application|{#APPPOOL} |
+ROW |4752 |31258 |Application|Oracle Archivelog |
+ROW |4753 |31259 |Application|Oracle Archivelog |
+ROW |4754 |31260 |Application|Oracle Archivelog |
+ROW |4755 |31261 |Application|Oracle ASM |
+ROW |4756 |31262 |Application|Oracle ASM |
+ROW |4757 |31263 |Application|Oracle ASM |
+ROW |4758 |31264 |Application|Oracle {#TYPE} |
+ROW |4759 |31265 |Application|Oracle {#TYPE} |
+ROW |4760 |31266 |Application|Oracle {#TYPE} |
+ROW |4761 |31267 |Application|Oracle {#TYPE} |
+ROW |4762 |31268 |Application|Oracle PDB |
+ROW |4763 |31269 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4764 |31270 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4765 |31271 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4766 |31272 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4767 |31273 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4768 |33170 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4769 |33171 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4770 |31335 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4771 |31336 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4772 |31337 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4773 |31338 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4774 |31339 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4775 |31340 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4776 |31341 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4777 |31342 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4778 |31343 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4779 |31344 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4780 |31345 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4781 |31346 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4782 |31347 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4783 |31348 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4784 |31349 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4785 |31350 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4786 |31351 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4787 |31352 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4788 |31353 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4789 |31354 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4790 |31355 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4791 |31356 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4792 |31357 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4793 |31358 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4794 |31359 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4795 |31360 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4796 |31361 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4797 |31362 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4798 |31363 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4799 |31370 |Application|Disk {#DEVNAME} |
+ROW |4800 |31371 |Application|Disk {#DEVNAME} |
+ROW |4801 |31379 |Application|Disk {#DEVNAME} |
+ROW |4802 |31380 |Application|Disk {#DEVNAME} |
+ROW |4803 |31382 |Application|Disk {#DEVNAME} |
+ROW |4804 |31383 |Application|Disk {#DEVNAME} |
+ROW |4805 |31373 |Application|Disk {#DEVNAME} |
+ROW |4806 |31374 |Application|Disk {#DEVNAME} |
+ROW |4807 |31385 |Application|Disk {#DEVNAME} |
+ROW |4808 |31386 |Application|Disk {#DEVNAME} |
+ROW |4809 |31388 |Application|Disk {#DEVNAME} |
+ROW |4810 |31389 |Application|Disk {#DEVNAME} |
+ROW |4811 |31376 |Application|Disk {#DEVNAME} |
+ROW |4812 |31377 |Application|Disk {#DEVNAME} |
+ROW |4813 |31391 |Application|Disk {#DEVNAME} |
+ROW |4814 |31392 |Application|Disk {#DEVNAME} |
+ROW |4815 |31394 |Application|Disk {#DEVNAME} |
+ROW |4816 |31395 |Application|Disk {#DEVNAME} |
+ROW |4817 |31433 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4818 |31434 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4819 |31435 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4820 |31436 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4821 |31437 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4822 |31438 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4823 |31453 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4824 |31454 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4825 |31455 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4826 |31439 |Application|Disk {#DEVNAME} |
+ROW |4827 |31440 |Application|Disk {#DEVNAME} |
+ROW |4828 |31441 |Application|Disk {#DEVNAME} |
+ROW |4829 |31442 |Application|Disk {#DEVNAME} |
+ROW |4830 |33321 |Application|Disk {#DEVNAME} |
+ROW |4831 |33322 |Application|Disk {#DEVNAME} |
+ROW |4832 |33323 |Application|Disk {#DEVNAME} |
+ROW |4833 |33324 |Application|Disk {#DEVNAME} |
+ROW |4834 |31443 |Application|Disk {#DEVNAME} |
+ROW |4835 |31444 |Application|Disk {#DEVNAME} |
+ROW |4836 |31445 |Application|Disk {#DEVNAME} |
+ROW |4837 |31446 |Application|Disk {#DEVNAME} |
+ROW |4838 |33325 |Application|Disk {#DEVNAME} |
+ROW |4839 |33326 |Application|Disk {#DEVNAME} |
+ROW |4840 |33327 |Application|Disk {#DEVNAME} |
+ROW |4841 |33328 |Application|Disk {#DEVNAME} |
+ROW |4842 |31447 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4843 |31448 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4844 |31449 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4845 |31450 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4846 |31451 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4847 |31452 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4848 |31456 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4849 |31457 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4850 |31458 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4851 |31561 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4852 |31562 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4853 |31563 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4854 |31564 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4855 |31565 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4856 |31566 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4857 |31567 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4858 |31568 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4859 |31569 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4860 |31766 |Application|Oracle Archivelog |
+ROW |4861 |31767 |Application|Oracle Archivelog |
+ROW |4862 |31768 |Application|Oracle Archivelog |
+ROW |4863 |31769 |Application|Oracle {#TYPE} |
+ROW |4864 |31770 |Application|Oracle {#TYPE} |
+ROW |4865 |31771 |Application|Oracle {#TYPE} |
+ROW |4866 |31772 |Application|Oracle {#TYPE} |
+ROW |4867 |31773 |Application|Oracle ASM |
+ROW |4868 |31774 |Application|Oracle ASM |
+ROW |4869 |31775 |Application|Oracle ASM |
+ROW |4870 |31776 |Application|Oracle PDB |
+ROW |4871 |31777 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4872 |31778 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4873 |31779 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4874 |31780 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4875 |31781 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4876 |33168 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4877 |33169 |Application|Oracle {#CONTENTS} Tablespaces. {#TABLESPACE} |
+ROW |4878 |31807 |Application|Asterisk IAX trunks |
+ROW |4879 |31808 |Application|Asterisk IAX trunks |
+ROW |4880 |31809 |Application|Asterisk PJSIP trunks |
+ROW |4881 |31810 |Application|Asterisk PJSIP trunks |
+ROW |4882 |31811 |Application|Asterisk queue "{#QUEUE}" |
+ROW |4883 |31812 |Application|Asterisk queue "{#QUEUE}" |
+ROW |4884 |31813 |Application|Asterisk queue "{#QUEUE}" |
+ROW |4885 |31814 |Application|Asterisk SIP trunks |
+ROW |4886 |31815 |Application|Asterisk SIP trunks |
+ROW |4887 |31902 |Application|Disk {#DEVNAME} |
+ROW |4888 |31903 |Application|Disk {#DEVNAME} |
+ROW |4889 |31932 |Application|Disk {#DEVNAME} |
+ROW |4890 |31933 |Application|Disk {#DEVNAME} |
+ROW |4891 |31935 |Application|Disk {#DEVNAME} |
+ROW |4892 |31936 |Application|Disk {#DEVNAME} |
+ROW |4893 |31905 |Application|Filesystem {#FSNAME} |
+ROW |4894 |31906 |Application|Filesystem {#FSNAME} |
+ROW |4895 |31907 |Application|Filesystem {#FSNAME} |
+ROW |4896 |31908 |Application|Filesystem {#FSNAME} |
+ROW |4897 |31909 |Application|Interface {#IFNAME} |
+ROW |4898 |31910 |Application|Interface {#IFNAME} |
+ROW |4899 |31911 |Application|Interface {#IFNAME} |
+ROW |4900 |31912 |Application|Interface {#IFNAME} |
+ROW |4901 |31913 |Application|Interface {#IFNAME} |
+ROW |4902 |31914 |Application|Interface {#IFNAME} |
+ROW |4903 |31915 |Application|Interface {#IFNAME} |
+ROW |4904 |31916 |Application|Interface {#IFNAME} |
+ROW |4905 |31917 |Application|Disk {#DEVNAME} |
+ROW |4906 |31918 |Application|Disk {#DEVNAME} |
+ROW |4907 |31938 |Application|Disk {#DEVNAME} |
+ROW |4908 |31939 |Application|Disk {#DEVNAME} |
+ROW |4909 |31941 |Application|Disk {#DEVNAME} |
+ROW |4910 |31942 |Application|Disk {#DEVNAME} |
+ROW |4911 |31920 |Application|Filesystem {#FSNAME} |
+ROW |4912 |31921 |Application|Filesystem {#FSNAME} |
+ROW |4913 |31922 |Application|Filesystem {#FSNAME} |
+ROW |4914 |31923 |Application|Filesystem {#FSNAME} |
+ROW |4915 |31924 |Application|Interface {#IFNAME} |
+ROW |4916 |31925 |Application|Interface {#IFNAME} |
+ROW |4917 |31926 |Application|Interface {#IFNAME} |
+ROW |4918 |31927 |Application|Interface {#IFNAME} |
+ROW |4919 |31928 |Application|Interface {#IFNAME} |
+ROW |4920 |31929 |Application|Interface {#IFNAME} |
+ROW |4921 |31930 |Application|Interface {#IFNAME} |
+ROW |4922 |31931 |Application|Interface {#IFNAME} |
+ROW |4923 |32012 |Application|Filesystem {#FSNAME} |
+ROW |4924 |32013 |Application|Filesystem {#FSNAME} |
+ROW |4925 |32014 |Application|Filesystem {#FSNAME} |
+ROW |4926 |32015 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4927 |32016 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4928 |32017 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4929 |32018 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4930 |32019 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4931 |32020 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4932 |32040 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4933 |32041 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4934 |32042 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4935 |32021 |Application|Disk {#DEVNAME} |
+ROW |4936 |32022 |Application|Disk {#DEVNAME} |
+ROW |4937 |32023 |Application|Disk {#DEVNAME} |
+ROW |4938 |32024 |Application|Disk {#DEVNAME} |
+ROW |4939 |33329 |Application|Disk {#DEVNAME} |
+ROW |4940 |33330 |Application|Disk {#DEVNAME} |
+ROW |4941 |33331 |Application|Disk {#DEVNAME} |
+ROW |4942 |33332 |Application|Disk {#DEVNAME} |
+ROW |4943 |32026 |Application|Filesystem {#FSNAME} |
+ROW |4944 |32027 |Application|Filesystem {#FSNAME} |
+ROW |4945 |32028 |Application|Filesystem {#FSNAME} |
+ROW |4946 |32029 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4947 |32030 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4948 |32031 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4949 |32032 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4950 |32033 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4951 |32034 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4952 |32043 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4953 |32044 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4954 |32045 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4955 |32035 |Application|Disk {#DEVNAME} |
+ROW |4956 |32036 |Application|Disk {#DEVNAME} |
+ROW |4957 |32037 |Application|Disk {#DEVNAME} |
+ROW |4958 |32038 |Application|Disk {#DEVNAME} |
+ROW |4959 |33333 |Application|Disk {#DEVNAME} |
+ROW |4960 |33334 |Application|Disk {#DEVNAME} |
+ROW |4961 |33335 |Application|Disk {#DEVNAME} |
+ROW |4962 |33336 |Application|Disk {#DEVNAME} |
+ROW |4963 |32405 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4964 |32408 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4965 |32409 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4966 |32410 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4967 |32411 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4968 |32412 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4969 |32413 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4970 |32414 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4971 |32415 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4972 |32416 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4973 |32417 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4974 |32418 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4975 |32419 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4976 |32420 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4977 |32421 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4978 |32422 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4979 |32423 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4980 |32424 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4981 |32425 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4982 |32426 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4983 |32427 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4984 |32428 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4985 |32429 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4986 |32430 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4987 |32431 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4988 |32432 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4989 |32433 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4990 |32434 |Application|PostgreSQL: DB {#DBNAME} |
+ROW |4991 |32436 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4992 |32437 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4993 |32438 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4994 |32439 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |4995 |32442 |Application|{#JMXBROKERNAME} |
+ROW |4996 |32443 |Application|{#JMXBROKERNAME} |
+ROW |4997 |32444 |Application|{#JMXBROKERNAME} |
+ROW |4998 |32445 |Application|{#JMXBROKERNAME} |
+ROW |4999 |32446 |Application|{#JMXBROKERNAME} |
+ROW |5000 |32447 |Application|{#JMXBROKERNAME} |
+ROW |5001 |32448 |Application|{#JMXBROKERNAME} |
+ROW |5002 |32449 |Application|{#JMXBROKERNAME} |
+ROW |5003 |32450 |Application|{#JMXBROKERNAME} |
+ROW |5004 |32451 |Application|{#JMXBROKERNAME} |
+ROW |5005 |32452 |Application|{#JMXBROKERNAME} |
+ROW |5006 |32453 |Application|{#JMXBROKERNAME} |
+ROW |5007 |32454 |Application|{#JMXBROKERNAME} |
+ROW |5008 |32455 |Application|{#JMXBROKERNAME} |
+ROW |5009 |32456 |Application|{#JMXBROKERNAME} |
+ROW |5010 |32457 |Application|{#JMXBROKERNAME} |
+ROW |5011 |32458 |Application|{#JMXBROKERNAME} |
+ROW |5012 |32459 |Application|{#JMXBROKERNAME} |
+ROW |5013 |32460 |Application|{#JMXBROKERNAME} |
+ROW |5014 |32461 |Application|{#JMXBROKERNAME} |
+ROW |5015 |32462 |Application|{#JMXBROKERNAME} |
+ROW |5016 |32486 |Application|{#METRIC} |
+ROW |5017 |32487 |Application|{#METRIC} |
+ROW |5018 |32488 |Application|{#METRIC} |
+ROW |5019 |32489 |Application|{#METRIC} |
+ROW |5020 |32490 |Application|{#METRIC} |
+ROW |5021 |32491 |Application|{#METRIC} |
+ROW |5022 |32492 |Application|{#METRIC} |
+ROW |5023 |32493 |Application|{#METRIC} |
+ROW |5024 |32494 |Application|{#METRIC} |
+ROW |5025 |32495 |Application|{#METRIC} |
+ROW |5026 |32496 |Application|{#METRIC} |
+ROW |5027 |32497 |Application|{#METRIC} |
+ROW |5028 |32498 |Application|{#METRIC} |
+ROW |5029 |32499 |Application|{#METRIC} |
+ROW |5030 |32500 |Application|{#METRIC} |
+ROW |5031 |32501 |Application|{#METRIC} |
+ROW |5032 |32502 |Application|{#METRIC} |
+ROW |5033 |32503 |Application|{#METRIC} |
+ROW |5034 |32504 |Application|{#METRIC} |
+ROW |5035 |32505 |Application|{#METRIC} |
+ROW |5036 |32506 |Application|{#METRIC} |
+ROW |5037 |32507 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5038 |32508 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5039 |32509 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5040 |32510 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5041 |32511 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5042 |32512 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5043 |32513 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5044 |32514 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5045 |32515 |Application|Ceph CRUSH [{#CRUSHRULE}] Pool |
+ROW |5046 |32170 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5047 |32171 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5048 |32172 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5049 |32173 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5050 |32174 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5051 |32175 |Application|Ceph {#HOST} OSD [{#CLASS}] |
+ROW |5052 |32528 |Application|Database {#INSTANCE} |
+ROW |5053 |32529 |Application|Database {#INSTANCE} |
+ROW |5054 |32530 |Application|Database {#INSTANCE} |
+ROW |5055 |32531 |Application|Database {#INSTANCE} |
+ROW |5056 |32532 |Application|Database {#INSTANCE} |
+ROW |5057 |32533 |Application|Database {#INSTANCE} |
+ROW |5058 |32534 |Application|Database {#INSTANCE} |
+ROW |5059 |32535 |Application|Database {#INSTANCE} |
+ROW |5060 |32536 |Application|Database {#INSTANCE} |
+ROW |5061 |32537 |Application|Database {#INSTANCE} |
+ROW |5062 |32538 |Application|Database {#INSTANCE} |
+ROW |5063 |32539 |Application|Database {#INSTANCE} |
+ROW |5064 |32540 |Application|Database {#INSTANCE} |
+ROW |5065 |32541 |Application|Database {#INSTANCE} |
+ROW |5066 |32542 |Application|Database {#INSTANCE} |
+ROW |5067 |32558 |Application|Database {#INSTANCE} |
+ROW |5068 |32559 |Application|Database {#INSTANCE} |
+ROW |5069 |32560 |Application|Database {#INSTANCE} |
+ROW |5070 |32561 |Application|Database {#INSTANCE} |
+ROW |5071 |32562 |Application|Database {#INSTANCE} |
+ROW |5072 |32563 |Application|Database {#INSTANCE} |
+ROW |5073 |32564 |Application|Database {#INSTANCE} |
+ROW |5074 |32565 |Application|Database {#INSTANCE} |
+ROW |5075 |32566 |Application|Database {#INSTANCE} |
+ROW |5076 |32567 |Application|Database {#INSTANCE} |
+ROW |5077 |32568 |Application|Database {#INSTANCE} |
+ROW |5078 |32569 |Application|Database {#INSTANCE} |
+ROW |5079 |32570 |Application|Database {#INSTANCE} |
+ROW |5080 |32571 |Application|Database {#INSTANCE} |
+ROW |5081 |32572 |Application|Database {#INSTANCE} |
+ROW |5082 |32672 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5083 |32673 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5084 |32674 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5085 |32675 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5086 |32676 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5087 |32677 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5088 |32678 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5089 |32679 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5090 |32680 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5091 |32681 |Application|Hadoop DataNode {#HOSTNAME} |
+ROW |5092 |32682 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5093 |32683 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5094 |32684 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5095 |32685 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5096 |32686 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5097 |32687 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5098 |32688 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5099 |32689 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5100 |32690 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5101 |32691 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5102 |32692 |Application|Hadoop NodeManager {#HOSTNAME} |
+ROW |5103 |32758 |Application|Kafka topic [{#JMXTOPIC}] |
+ROW |5104 |32759 |Application|Kafka topic [{#JMXTOPIC}] |
+ROW |5105 |32760 |Application|Kafka topic [{#JMXTOPIC}] |
+ROW |5106 |32761 |Application|Kafka topic [{#JMXTOPIC}] |
+ROW |5107 |32766 |Application|Tomcat: ProtocolHandler {#JMXVALUE} |
+ROW |5108 |32767 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5109 |32768 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5110 |32769 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5111 |32770 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5112 |32771 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5113 |32772 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
+ROW |5114 |32773 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
+ROW |5115 |32774 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
+ROW |5116 |32775 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
+ROW |5117 |32776 |Application|Tomcat: Context {#JMXHOST}{#JMXCONTEXT} |
+ROW |5118 |32777 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5119 |32778 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5120 |32779 |Application|Tomcat: {#JMXTYPE} {#JMXNAME} |
+ROW |5121 |32871 |Application|Vault: Token {#TOKEN_NAME} |
+ROW |5122 |32872 |Application|Vault: Token {#TOKEN_NAME} |
+ROW |5123 |32873 |Application|Vault: Token {#TOKEN_NAME} |
+ROW |5124 |32874 |Application|Vault: Mountpoint {#MOUNTPOINT} |
+ROW |5125 |32875 |Application|Vault: Mountpoint {#MOUNTPOINT} |
+ROW |5126 |32876 |Application|Vault: Replication |
+ROW |5127 |32877 |Application|Vault: Replication |
+ROW |5128 |32878 |Application|Vault: Replication |
+ROW |5129 |32879 |Application|Vault: Replication |
+ROW |5130 |32880 |Application|Vault: Replication |
+ROW |5131 |32881 |Application|Vault: Replication |
+ROW |5132 |32882 |Application|Vault: Replication |
+ROW |5133 |32883 |Application|Vault: Storage {#STORAGE} |
+ROW |5134 |32884 |Application|Vault: WAL |
+ROW |5135 |32885 |Application|Vault: WAL |
+ROW |5136 |32886 |Application|Vault: WAL |
+ROW |5137 |32887 |Application|Vault: WAL |
+ROW |5138 |32888 |Application|Vault: WAL |
+ROW |5139 |32889 |Application|Vault: WAL |
+ROW |5140 |33000 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5141 |33001 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5142 |33002 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5143 |33003 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5144 |33004 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5145 |33005 |Application|Zookeeper {#TYPE} {#CLIENT} |
+ROW |5146 |33096 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5147 |33097 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5148 |33098 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5149 |33099 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5150 |33100 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5151 |33101 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5152 |33102 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5153 |33103 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5154 |33104 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5155 |33105 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5156 |33106 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5157 |33107 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5158 |33108 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5159 |33109 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5160 |33110 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5161 |33111 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5162 |33112 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5163 |33113 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5164 |33114 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5165 |33115 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5166 |33116 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5167 |33117 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5168 |33118 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5169 |33119 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5170 |33120 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5171 |33121 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5172 |33122 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5173 |33123 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5174 |33124 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5175 |33125 |Application|Cassandra table {#JMXKEYSPACE}.{#JMXSCOPE} |
+ROW |5176 |33178 |Application|PostgreSQL: Application {#APPLICATION} |
+ROW |5177 |33179 |Application|PostgreSQL: Application {#APPLICATION} |
+ROW |5178 |33180 |Application|PostgreSQL: Application {#APPLICATION} |
+ROW |5179 |33357 |Application|Node {#NODE.NAME} Health |
+ROW |5180 |33358 |Application|Node {#NODE.NAME} Health |
+ROW |5181 |33359 |Application|Node {#NODE.NAME} Health |
+ROW |5182 |33360 |Application|Node {#NODE.NAME} Health |
+ROW |5183 |33361 |Application|Node {#NODE.NAME} Health |
+ROW |5184 |33362 |Application|Node {#NODE.NAME} Health |
+ROW |5185 |33365 |Application|Node {#NODE.NAME} Health |
+ROW |5186 |33367 |Application|Node {#NODE.NAME} Health |
+ROW |5187 |33363 |Application|Node {#NODE.NAME} Inventory |
+ROW |5188 |33364 |Application|Node {#NODE.NAME} Inventory |
+ROW |5189 |33366 |Application|Node {#NODE.NAME} Inventory |
+ROW |5190 |33368 |Application|Node {#NODE.NAME} CPU |
+ROW |5191 |33369 |Application|{#VSERVER}{#FSNAME} |
+ROW |5192 |33370 |Application|{#VSERVER}{#FSNAME} |
+ROW |5193 |33371 |Application|{#VSERVER}{#FSNAME} |
+ROW |5194 |33372 |Application|{#VSERVER}{#FSNAME} |
+ROW |5195 |33373 |Application|{#VSERVER}{#FSNAME} |
+ROW |5196 |33374 |Application|{#VSERVER}{#FSNAME} |
+ROW |5197 |33375 |Application|Node {#NODE.NAME} HA |
+ROW |5198 |33376 |Application|Node {#NODE.NAME} HA |
+ROW |5199 |33377 |Application|{#IFDESCR} |
+ROW |5200 |33378 |Application|{#IFDESCR} |
+ROW |5201 |33379 |Application|{#IFDESCR} |
+ROW |5202 |33380 |Application|{#IFDESCR} |
+ROW |5203 |33381 |Application|{#IFDESCR} |
+ROW |5204 |33382 |Application|{#IFDESCR} |
+ROW |5205 |33383 |Application|{#IFDESCR} |
+ROW |5206 |33384 |Application|{#IFDESCR} |
+ROW |5207 |33385 |Application|{#IFDESCR} |
+ROW |5208 |33386 |Application|{#IFDESCR} |
+ROW |5209 |33387 |Application|{#IFDESCR} |
+ROW |5210 |33388 |Application|{#IFDESCR} |
+ROW |5211 |33467 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5212 |33468 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5213 |33469 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5214 |33470 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5215 |33471 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5216 |33472 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5217 |33473 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5218 |33474 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5219 |33475 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5220 |33476 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5221 |33477 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5222 |33478 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5223 |33479 |Application|Jenkins: Computer [{#DISPLAY_NAME}] |
+ROW |5224 |33480 |Application|Jenkins job [{#NAME}] |
+ROW |5225 |33481 |Application|Jenkins job [{#NAME}] |
+ROW |5226 |33482 |Application|Jenkins job [{#NAME}] |
+ROW |5227 |33483 |Application|Jenkins job [{#NAME}] |
+ROW |5228 |33484 |Application|Jenkins job [{#NAME}] |
+ROW |5229 |33485 |Application|Jenkins job [{#NAME}] |
+ROW |5230 |33486 |Application|Jenkins job [{#NAME}] |
+ROW |5231 |33487 |Application|Jenkins job [{#NAME}] |
+ROW |5232 |33488 |Application|Jenkins job [{#NAME}] |
+ROW |5233 |33489 |Application|Jenkins job [{#NAME}] |
+ROW |5234 |33490 |Application|Jenkins job [{#NAME}] |
+ROW |5235 |33524 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
+ROW |5236 |33525 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
+ROW |5237 |33526 |Application|Hikvision camera: PTZ channel "{#PTZ_CHANNEL_ID}" |
+ROW |5238 |33527 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5239 |33528 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5240 |33529 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5241 |33530 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5242 |33531 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5243 |33532 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5244 |33533 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5245 |33534 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5246 |33535 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5247 |33536 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5248 |33537 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5249 |33538 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5250 |33539 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5251 |33540 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5252 |33541 |Application|Hikvision camera: Streaming channel "{#CHANNEL_ID}" |
+ROW |5253 |33552 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5254 |33553 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5255 |33554 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5256 |33555 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5257 |33556 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5258 |33557 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5259 |33558 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5260 |33559 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5261 |33560 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5262 |33561 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5263 |33562 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Data region [{#JMXNAME}] |
+ROW |5264 |33563 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5265 |33564 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5266 |33565 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5267 |33566 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5268 |33567 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5269 |33568 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5270 |33569 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5271 |33570 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5272 |33571 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5273 |33572 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5274 |33573 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5275 |33574 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5276 |33575 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5277 |33576 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5278 |33577 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5279 |33578 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5280 |33579 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5281 |33580 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5282 |33581 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5283 |33582 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5284 |33584 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5285 |33585 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5286 |33586 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5287 |33587 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5288 |33588 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5289 |33589 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5290 |33590 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5291 |33591 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5292 |33592 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5293 |33593 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5294 |33594 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5295 |33595 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5296 |33596 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5297 |33597 |Application|Ignite instance [{#JMXIGNITEINSTANCENAME}] |
+ROW |5298 |33598 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5299 |33599 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5300 |33600 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5301 |33601 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5302 |33602 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5303 |33603 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5304 |33604 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5305 |33605 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5306 |33606 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXNAME}] |
+ROW |5307 |33607 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
+ROW |5308 |33608 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
+ROW |5309 |33609 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
+ROW |5310 |33610 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Thread pool [{#JMXNAME}] |
+ROW |5311 |33611 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5312 |33612 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5313 |33613 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5314 |33614 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5315 |33615 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5316 |33616 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5317 |33617 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5318 |33618 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5319 |33619 |Application|Ignite [{#JMXIGNITEINSTANCENAME}]: Cache group [{#JMXGROUP}] |
+ROW |5320 |33635 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
+ROW |5321 |33636 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
+ROW |5322 |33637 |Application|Sharepoint object [{#SHAREPOINT.LLD.FULL_PATH}]" |
+ROW |5323 |33659 |Application|{#DISKTYPE} {#NAME} |
+ROW |5324 |33660 |Application|{#DISKTYPE} {#NAME} |
+ROW |5325 |33661 |Application|{#DISKTYPE} {#NAME} |
+ROW |5326 |33662 |Application|{#DISKTYPE} {#NAME} |
+ROW |5327 |33663 |Application|{#DISKTYPE} {#NAME} |
+ROW |5328 |33664 |Application|{#DISKTYPE} {#NAME} |
+ROW |5329 |33665 |Application|{#DISKTYPE} {#NAME} |
+ROW |5330 |33666 |Application|{#DISKTYPE} {#NAME} |
+ROW |5331 |33667 |Application|{#DISKTYPE} {#NAME} |
+ROW |5332 |33671 |Application|{#DISKTYPE} {#NAME} |
+ROW |5333 |33672 |Application|{#DISKTYPE} {#NAME} |
+ROW |5334 |33673 |Application|{#DISKTYPE} {#NAME} |
+ROW |5335 |33674 |Application|{#DISKTYPE} {#NAME} |
+ROW |5336 |33675 |Application|{#DISKTYPE} {#NAME} |
+ROW |5337 |33676 |Application|{#DISKTYPE} {#NAME} |
+ROW |5338 |33677 |Application|{#DISKTYPE} {#NAME} |
+ROW |5339 |33678 |Application|{#DISKTYPE} {#NAME} |
+ROW |5340 |33679 |Application|{#DISKTYPE} {#NAME} |
+ROW |5341 |33703 |Application|BBU {#ID} |
+ROW |5342 |33704 |Application|BBU {#ID} |
+ROW |5343 |33705 |Application|Controller {#ID} |
+ROW |5344 |33706 |Application|Controller {#ID} |
+ROW |5345 |33707 |Application|Controller {#ID} |
+ROW |5346 |33708 |Application|Controller {#ID} |
+ROW |5347 |33709 |Application|Controller {#ID} |
+ROW |5348 |33710 |Application|Disk {#MODEL} |
+ROW |5349 |33712 |Application|Disk {#MODEL} |
+ROW |5350 |33713 |Application|Disk {#MODEL} |
+ROW |5351 |33711 |Application|Disk {#NAME} |
+ROW |5352 |33714 |Application|Enclosure {#NAME} |
+ROW |5353 |33715 |Application|Enclosure {#NAME} |
+ROW |5354 |33716 |Application|Enclosure {#NAME} |
+ROW |5355 |33717 |Application|FAN {#ID} |
+ROW |5356 |33718 |Application|FAN {#ID} |
+ROW |5357 |33719 |Application|LUN {#NAME} |
+ROW |5358 |33720 |Application|LUN {#NAME} |
+ROW |5359 |33721 |Application|LUN {#NAME} |
+ROW |5360 |33722 |Application|LUN {#NAME} |
+ROW |5361 |33723 |Application|LUN {#NAME} |
+ROW |5362 |33724 |Application|LUN {#NAME} |
+ROW |5363 |33725 |Application|LUN {#NAME} |
+ROW |5364 |33726 |Application|LUN {#NAME} |
+ROW |5365 |33727 |Application|LUN {#NAME} |
+ROW |5366 |33728 |Application|LUN {#NAME} |
+ROW |5367 |33729 |Application|LUN {#NAME} |
+ROW |5368 |33730 |Application|Node {#NODE} |
+ROW |5369 |33731 |Application|Node {#NODE} |
+ROW |5370 |33732 |Application|Node {#NODE} |
+ROW |5371 |33733 |Application|Node {#NODE} |
+ROW |5372 |33734 |Application|Node {#NODE} |
+ROW |5373 |33735 |Application|Node {#NODE} |
+ROW |5374 |33736 |Application|Node {#NODE} |
+ROW |5375 |33737 |Application|Node {#NODE} |
+ROW |5376 |33738 |Application|Pool {#MODEL} |
+ROW |5377 |33739 |Application|Pool {#MODEL} |
+ROW |5378 |33741 |Application|Pool {#MODEL} |
+ROW |5379 |33742 |Application|Pool {#MODEL} |
+ROW |5380 |33743 |Application|Pool {#MODEL} |
+ROW |5381 |33740 |Application|Pool {#NAME} |
+ROW |5382 |33814 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5383 |33815 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5384 |33816 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5385 |33817 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5386 |33818 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5387 |33819 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5388 |33820 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5389 |33821 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5390 |33822 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5391 |33823 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5392 |33824 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5393 |33825 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5394 |33826 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5395 |33827 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5396 |33828 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5397 |33829 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5398 |33830 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5399 |33831 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5400 |33832 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5401 |33833 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5402 |33834 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5403 |33835 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5404 |33836 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5405 |33837 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5406 |33838 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5407 |33839 |Application|MongoDB: {#DBNAME}.{#COLLECTION} |
+ROW |5408 |33840 |Application|MongoDB: {#DBNAME} |
+ROW |5409 |33841 |Application|MongoDB: {#DBNAME} |
+ROW |5410 |33842 |Application|MongoDB: {#DBNAME} |
+ROW |5411 |33843 |Application|MongoDB: {#DBNAME} |
+ROW |5412 |33844 |Application|MongoDB: {#DBNAME} |
+ROW |5413 |33845 |Application|MongoDB: {#DBNAME} |
+ROW |5414 |33846 |Application|MongoDB: {#DBNAME} |
+ROW |5415 |33847 |Application|MongoDB: {#DBNAME} |
+ROW |5416 |33848 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5417 |33849 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5418 |33850 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5419 |33851 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5420 |33852 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5421 |33853 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5422 |33854 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5423 |33855 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5424 |33856 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5425 |33857 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5426 |33858 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5427 |33859 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5428 |33860 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5429 |33861 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5430 |33862 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5431 |33863 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5432 |33864 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5433 |33865 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5434 |33866 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5435 |33867 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5436 |33868 |Application|MongoDB Replica Set: {#RS_NAME} |
+ROW |5437 |33926 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5438 |33927 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5439 |33928 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5440 |33929 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5441 |33930 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5442 |33931 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5443 |33932 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5444 |33933 |Application|MongoDB sharded cluster: {#DBNAME}.{#COLLECTION} |
+ROW |5445 |33934 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5446 |33935 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5447 |33936 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5448 |33937 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5449 |33938 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5450 |33939 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5451 |33940 |Application|MongoDB sharded cluster: {#DBNAME} |
+ROW |5454 |33972 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5455 |33973 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5456 |33974 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5457 |33975 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5458 |33976 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5459 |33977 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5460 |33978 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5461 |33979 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5462 |33980 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5463 |33981 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5464 |34013 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5465 |34014 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5466 |34015 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5467 |34016 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5468 |34017 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5469 |34018 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5470 |34019 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5471 |34020 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5472 |34021 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5473 |34022 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5474 |34054 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5475 |34055 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5476 |34056 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5477 |34057 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5478 |34058 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5479 |34059 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5480 |34060 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5481 |34061 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5482 |34062 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5483 |34063 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5484 |34095 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5485 |34096 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5486 |34097 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5487 |34098 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5488 |34099 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5489 |34100 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5490 |34101 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5491 |34102 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5492 |34103 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5493 |34104 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5494 |34136 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5495 |34137 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5496 |34138 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5497 |34139 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5498 |34140 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5499 |34141 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5500 |34142 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5501 |34143 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5502 |34144 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5503 |34145 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5504 |34164 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5505 |34165 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5506 |34166 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5507 |34167 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5508 |34168 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5509 |34169 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5510 |34170 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5511 |34171 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5512 |34172 |Application|Interface {#IFNAME}({#IFALIAS}) |
+ROW |5513 |34173 |Application|Filesystem {#FSNAME} |
+ROW |5514 |34174 |Application|Filesystem {#FSNAME} |
+ROW |5515 |34175 |Application|Filesystem {#FSNAME} |
+ROW |5516 |34269 |Application|Volume "{#VOLUMENAME}" |
+ROW |5517 |34270 |Application|Volume "{#VOLUMENAME}" |
+ROW |5518 |34271 |Application|Volume "{#VOLUMENAME}" |
+ROW |5519 |34272 |Application|Volume "{#VOLUMENAME}" |
+ROW |5520 |34291 |Application|Volume "{#VOLUMENAME}" |
+ROW |5521 |34292 |Application|Volume "{#VOLUMENAME}" |
+ROW |5522 |34293 |Application|Volume "{#VOLUMENAME}" |
+ROW |5523 |34294 |Application|Volume "{#VOLUMENAME}" |
+ROW |5524 |34295 |Application|Volume "{#VOLUMENAME}" |
+ROW |5525 |34300 |Application|Volume "{#VOLUMENAME}" |
+ROW |5526 |34301 |Application|Volume "{#VOLUMENAME}" |
+ROW |5527 |34306 |Application|Volume "{#VOLUMENAME}" |
+ROW |5528 |34307 |Application|Volume "{#VOLUMENAME}" |
+ROW |5529 |34308 |Application|Volume "{#VOLUMENAME}" |
+ROW |5530 |34309 |Application|Volume "{#VOLUMENAME}" |
+ROW |5531 |34310 |Application|Volume "{#VOLUMENAME}" |
+ROW |5532 |34311 |Application|Volume "{#VOLUMENAME}" |
+ROW |5533 |34312 |Application|Volume "{#VOLUMENAME}" |
+ROW |5534 |34313 |Application|Volume "{#VOLUMENAME}" |
+ROW |5535 |34273 |Application|Chassis "{#ID}" |
+ROW |5536 |34274 |Application|Node "{#NODENAME}" disks |
+ROW |5537 |34275 |Application|Chassis "{#CHASSISID}" |
+ROW |5538 |34276 |Application|SVM "{#SVMNAME}" |
+ROW |5539 |34277 |Application|SVM "{#SVMNAME}" |
+ROW |5540 |34278 |Application|SVM "{#SVMNAME}" |
+ROW |5541 |34279 |Application|SVM "{#SVMNAME}" |
+ROW |5542 |34280 |Application|Node "{#NODENAME}" |
+ROW |5543 |34281 |Application|Node "{#NODENAME}" |
+ROW |5544 |34282 |Application|Node "{#NODENAME}" |
+ROW |5545 |34283 |Application|Node "{#NODENAME}" |
+ROW |5546 |34284 |Application|Node "{#NODENAME}" |
+ROW |5547 |34285 |Application|Node "{#NODENAME}" |
+ROW |5548 |34286 |Application|Node "{#NODENAME}" Ethernet ports |
+ROW |5549 |34287 |Application|Node "{#NODENAME}" FC ports |
+ROW |5550 |34288 |Application|Node "{#NODENAME}" FC ports |
+ROW |5551 |34289 |Application|SVM "{#SVMNAME}" |
+ROW |5552 |34290 |Application|SVM "{#SVMNAME}" |
+ROW |5553 |34314 |Application|Zabbix server |
+ROW |5554 |34315 |Application|Zabbix server |
+ROW |5555 |34316 |Application|Zabbix server |
+ROW |5556 |34317 |Application|Zabbix server |
+ROW |5557 |34318 |Application|Zabbix server |
+ROW |5558 |34319 |Application|Zabbix server |
+ROW |5559 |34320 |Application|ClickHouse ZooKeeper |
+ROW |5560 |34321 |Application|MongoDB sharded cluster |
+ROW |5561 |34322 |Application|Zabbix raw items |
+ROW |5562 |34323 |Application|Zabbix raw items |
+ROW |5563 |34325 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5564 |34326 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5565 |34327 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5566 |34328 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5567 |34329 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5568 |34330 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5569 |34331 |Application|MSSQL Job '{#JOBNAME}' |
+ROW |5570 |34332 |Application|MSSQL Job '{#JOBNAME}' |
+ROW |5571 |34333 |Application|MSSQL Job '{#JOBNAME}' |
+ROW |5572 |34334 |Application|MSSQL Job '{#JOBNAME}' |
+ROW |5573 |34335 |Application|MSSQL Job '{#JOBNAME}' |
+ROW |5574 |31133 |Application|MSSQL Availability Group '{#GROUP_NAME}' |
+ROW |5575 |31134 |Application|MSSQL Availability Group '{#GROUP_NAME}' |
+ROW |5576 |31135 |Application|MSSQL Availability Group '{#GROUP_NAME}' |
+ROW |5577 |31136 |Application|MSSQL Availability Group '{#GROUP_NAME}' |
+ROW |5578 |31137 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5579 |31138 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5580 |31139 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5581 |31140 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5582 |31141 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5583 |31142 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5584 |31143 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5585 |31144 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5586 |31145 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5587 |31146 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5588 |31147 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5589 |31148 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5590 |31149 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5591 |31150 |Application|MSSQL Database '{#DBNAME}' |
+ROW |5592 |31151 |Application|MSSQL Available Group '{#GROUP_NAME}' Local DB '{#DBNAME}' |
+ROW |5593 |31152 |Application|MSSQL Available Group '{#GROUP_NAME}' Local DB '{#DBNAME}' |
+ROW |5594 |31153 |Application|MSSQL Available Group '{#GROUP_NAME}' Local DB '{#DBNAME}' |
+ROW |5595 |31154 |Application|MSSQL Mirroring '{#DBNAME}' |
+ROW |5596 |31155 |Application|MSSQL Mirroring '{#DBNAME}' |
+ROW |5597 |31156 |Application|MSSQL Mirroring '{#DBNAME}' |
+ROW |5598 |31157 |Application|MSSQL Mirroring '{#DBNAME}' |
+ROW |5599 |31158 |Application|MSSQL Mirroring '{#DBNAME}' |
+ROW |5600 |31161 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5601 |31162 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5602 |31163 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5603 |31164 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5604 |31165 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5605 |31166 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5606 |31167 |Application|MSSQL Available Group '{#GROUP_NAME}' Replica '{#REPLICA_NAME}'|
+ROW |5607 |33942 |Application|MSSQL Available Group '{#GROUP_NAME}' Non-Local DB '{#DBNAME}' |
+ROW |5608 |33943 |Application|MSSQL Available Group '{#GROUP_NAME}' Non-Local DB '{#DBNAME}' |
+ROW |5609 |34336 |Application|Zabbix raw items |
+ROW |5610 |34337 |Application|Zabbix raw items |
+ROW |5611 |34338 |Application|PD instance |
+ROW |5612 |34339 |Application|PD instance |
+ROW |5613 |34340 |Application|PD instance |
+ROW |5614 |34341 |Application|PD instance |
+ROW |5615 |34348 |Application|TiDB cluster |
+ROW |5616 |34349 |Application|TiDB cluster |
+ROW |5617 |34350 |Application|TiDB cluster |
+ROW |5618 |34351 |Application|TiDB cluster |
+ROW |5619 |34352 |Application|TiDB cluster |
+ROW |5620 |34353 |Application|TiDB cluster |
+ROW |5621 |34354 |Application|TiDB cluster |
+ROW |5622 |34355 |Application|TiDB cluster |
+ROW |5623 |34356 |Application|TiDB cluster |
+ROW |5624 |34357 |Application|TiDB cluster |
+ROW |5625 |34358 |Application|TiDB cluster |
+ROW |5626 |34359 |Application|PD instance |
+ROW |5627 |34360 |Application|TiDB Store [{#STORE_ADDRESS}] |
+ROW |5628 |34361 |Application|TiDB Store [{#STORE_ADDRESS}] |
+ROW |5629 |34362 |Application|TiDB Store [{#STORE_ADDRESS}] |
+ROW |5630 |34363 |Application|TiDB Store [{#STORE_ADDRESS}] |
+ROW |5631 |34364 |Application|TiDB cluster |
+ROW |5632 |34365 |Application|TiDB cluster |
+ROW |5633 |34366 |Application|TiDB cluster |
+ROW |5634 |34367 |Application|Zabbix raw items |
+ROW |5635 |34368 |Application|Zabbix raw items |
+ROW |5636 |34369 |Application|TiDB node |
+ROW |5637 |34370 |Application|TiDB node |
+ROW |5638 |34371 |Application|TiDB node |
+ROW |5639 |34372 |Application|TiDB node |
+ROW |5640 |34373 |Application|TiDB node |
+ROW |5641 |34374 |Application|TiDB node |
+ROW |5642 |34375 |Application|TiDB node |
+ROW |5643 |34376 |Application|TiDB node |
+ROW |5644 |34377 |Application|TiDB node |
+ROW |5645 |34378 |Application|TiDB node |
+ROW |5646 |34379 |Application|TiDB node |
+ROW |5647 |34380 |Application|TiDB node |
+ROW |5648 |34381 |Application|TiDB node |
+ROW |5649 |34382 |Application|TiDB node |
+ROW |5650 |34383 |Application|TiDB node |
+ROW |5651 |34384 |Application|TiDB node |
+ROW |5652 |34385 |Application|TiDB node |
+ROW |5653 |34386 |Application|TiDB node |
+ROW |5654 |34387 |Application|TiDB node |
+ROW |5655 |34388 |Application|TiDB node |
+ROW |5656 |34389 |Application|TiDB node |
+ROW |5657 |34390 |Application|TiDB node |
+ROW |5658 |34391 |Application|TiDB node |
+ROW |5659 |34392 |Application|TiDB node |
+ROW |5660 |34393 |Application|TiDB node |
+ROW |5661 |34394 |Application|TiDB node |
+ROW |5662 |34395 |Application|TiDB node |
+ROW |5663 |34396 |Application|TiDB node |
+ROW |5664 |34397 |Application|TiDB node |
+ROW |5665 |34398 |Application|TiDB node |
+ROW |5666 |34405 |Application|TiDB node |
+ROW |5667 |34406 |Application|TiDB node |
+ROW |5668 |34407 |Application|TiDB node |
+ROW |5669 |34408 |Application|TiDB node |
+ROW |5670 |34409 |Application|TiDB node |
+ROW |5671 |34410 |Application|TiDB node |
+ROW |5672 |34411 |Application|TiDB node |
+ROW |5673 |34412 |Application|Zabbix raw items |
+ROW |5674 |34413 |Application|TiKV node |
+ROW |5675 |34414 |Application|TiKV node |
+ROW |5676 |34415 |Application|TiKV node |
+ROW |5677 |34416 |Application|TiKV node |
+ROW |5678 |34417 |Application|TiKV node |
+ROW |5679 |34418 |Application|TiKV node |
+ROW |5680 |34419 |Application|TiKV node |
+ROW |5681 |34420 |Application|TiKV node |
+ROW |5682 |34421 |Application|TiKV node |
+ROW |5683 |34422 |Application|TiKV node |
+ROW |5684 |34423 |Application|TiKV node |
+ROW |5685 |34424 |Application|TiKV node |
+ROW |5686 |34425 |Application|TiKV node |
+ROW |5687 |34426 |Application|TiKV node |
+ROW |5688 |34427 |Application|TiKV node |
+ROW |5689 |34428 |Application|TiKV node |
+ROW |5690 |34429 |Application|TiKV node |
+ROW |5691 |34430 |Application|TiKV node |
+ROW |5692 |34431 |Application|TiKV node |
+ROW |5693 |34432 |Application|TiKV node |
+ROW |5694 |34433 |Application|TiKV node |
+ROW |5695 |34434 |Application|TiKV node |
+ROW |5696 |34435 |Application|TiKV node |
+ROW |5697 |34436 |Application|TiKV node |
+ROW |5698 |34437 |Application|TiKV node |
+ROW |5699 |34438 |Application|TiKV node |
+ROW |5700 |34439 |Application|TiKV node |
+ROW |5701 |34444 |Application|TiKV node |
+ROW |5702 |34445 |Application|TiKV node |
+ROW |5703 |34446 |Application|TiKV node |
+ROW |5704 |34447 |Application|TiKV node |
+ROW |5705 |34448 |Application|TiKV node |
+ROW |5706 |34449 |Application|TiKV node |
+ROW |5707 |34450 |Application|TiKV node |
+ROW |5708 |34451 |Status | |
+ROW |5709 |34452 |Status | |
+ROW |5710 |34453 |Status | |
+ROW |5711 |34454 |General | |
+ROW |5712 |34455 |General | |
+ROW |5713 |34456 |General | |
+ROW |5714 |34457 |General | |
+ROW |5715 |34458 |General | |
+ROW |5716 |34459 |General | |
+ROW |5717 |34460 |General | |
+ROW |5718 |34461 |General | |
+ROW |5719 |34462 |Status | |
+ROW |5720 |34463 |Status | |
+ROW |5721 |34464 |Status | |
+ROW |5722 |34465 |Status | |
+ROW |5723 |34466 |Status | |
+ROW |5724 |34467 |Status | |
+ROW |5725 |34468 |Status | |
+ROW |5726 |34469 |Status | |
+ROW |5727 |34470 |Status | |
+ROW |5728 |34471 |Status | |
+ROW |5729 |34472 |Status | |
+ROW |5730 |34473 |Status | |
+ROW |5731 |34474 |Status | |
+ROW |5732 |34475 |Status | |
+ROW |5733 |34482 |Status | |
+ROW |5734 |34483 |Status | |
+ROW |5735 |34484 |Status | |
+ROW |5736 |34485 |Status | |
+ROW |5737 |34486 |Status | |
+ROW |5738 |34487 |General | |
+ROW |5739 |34488 |Status | |
+ROW |5740 |34489 |Status | |
+ROW |5741 |34490 |Status | |
+ROW |5742 |34491 |Status | |
+ROW |5743 |34492 |Status | |
+ROW |5744 |34493 |Status | |
+ROW |5745 |34494 |Status | |
+ROW |5746 |34495 |Status | |
+ROW |5747 |34496 |Status | |
+ROW |5748 |34497 |Status | |
+ROW |5749 |34498 |Status | |
+ROW |5750 |34499 |Status | |
+ROW |5751 |34500 |Status | |
+ROW |5752 |34501 |Status | |
+ROW |5753 |34502 |General | |
+ROW |5754 |34503 |General | |
+ROW |5755 |34504 |General | |
+ROW |5756 |34505 |General | |
+ROW |5757 |34506 |General | |
+ROW |5758 |34507 |General | |
+ROW |5759 |34508 |General | |
+ROW |5760 |34509 |General | |
+ROW |5761 |34510 |Status | |
+ROW |5762 |34511 |Status | |
+ROW |5763 |34512 |Status | |
+ROW |5764 |34513 |Status | |
+ROW |5765 |34514 |Status | |
+ROW |5766 |34515 |Status | |
+ROW |5767 |34516 |Status | |
+ROW |5768 |34517 |Status | |
+ROW |5769 |34518 |Status | |
+ROW |5770 |34519 |Status | |
+ROW |5771 |34520 |Status | |
+ROW |5772 |34521 |Status | |
+ROW |5773 |34522 |Status | |
+ROW |5774 |34523 |Status | |
+ROW |5775 |34530 |Status | |
+ROW |5776 |34531 |Status | |
+ROW |5777 |34532 |Status | |
+ROW |5778 |34533 |Status | |
+ROW |5779 |34534 |Status | |
+ROW |5780 |34535 |General | |
+ROW |5781 |34536 |Status | |
+ROW |5782 |34537 |Status | |
+ROW |5783 |34538 |Status | |
+ROW |5784 |34539 |Status | |
+ROW |5785 |34540 |Status | |
+ROW |5786 |34541 |Status | |
+ROW |5787 |34542 |Status | |
+ROW |5788 |34543 |Status | |
+ROW |5789 |34544 |Status | |
+ROW |5790 |34545 |Status | |
+ROW |5791 |34546 |Status | |
+ROW |5792 |34547 |Status | |
+ROW |5793 |34548 |Status | |
+ROW |5794 |34549 |Status | |
+ROW |5795 |34550 |General | |
+ROW |5796 |34551 |General | |
+ROW |5797 |34552 |General | |
+ROW |5798 |34553 |General | |
+ROW |5799 |34554 |General | |
+ROW |5800 |34555 |General | |
+ROW |5801 |34556 |General | |
+ROW |5802 |34557 |General | |
+ROW |5803 |34558 |Status | |
+ROW |5804 |34559 |Status | |
+ROW |5805 |34560 |Status | |
+ROW |5806 |34561 |Status | |
+ROW |5807 |34562 |Status | |
+ROW |5808 |34563 |Status | |
+ROW |5809 |34564 |Status | |
+ROW |5810 |34565 |Status | |
+ROW |5811 |34566 |Status | |
+ROW |5812 |34567 |Status | |
+ROW |5813 |34568 |Status | |
+ROW |5814 |34569 |Status | |
+ROW |5815 |34570 |Status | |
+ROW |5816 |34571 |Status | |
+ROW |5817 |34578 |Status | |
+ROW |5818 |34579 |Status | |
+ROW |5819 |34580 |Status | |
+ROW |5820 |34581 |Status | |
+ROW |5821 |34582 |Status | |
+ROW |5822 |34583 |General | |
+ROW |5823 |34584 |Status | |
+ROW |5824 |34585 |Status | |
+ROW |5825 |34586 |Status | |
+ROW |5826 |34587 |Status | |
+ROW |5827 |34588 |Status | |
+ROW |5828 |34589 |Status | |
+ROW |5829 |34590 |Status | |
+ROW |5830 |34591 |Status | |
+ROW |5831 |34592 |Status | |
+ROW |5832 |34593 |Status | |
+ROW |5833 |34594 |Status | |
+ROW |5834 |34595 |Status | |
+ROW |5835 |34596 |Status | |
+ROW |5836 |34597 |Status | |
+ROW |5837 |34598 |General | |
+ROW |5838 |34599 |General | |
+ROW |5839 |34600 |General | |
+ROW |5840 |34601 |General | |
+ROW |5841 |34602 |General | |
+ROW |5842 |34603 |General | |
+ROW |5843 |34604 |General | |
+ROW |5844 |34605 |General | |
+ROW |5845 |34606 |Status | |
+ROW |5846 |34607 |Status | |
+ROW |5847 |34608 |Status | |
+ROW |5848 |34609 |Status | |
+ROW |5849 |34610 |Status | |
+ROW |5850 |34611 |Status | |
+ROW |5851 |34612 |Status | |
+ROW |5852 |34613 |Status | |
+ROW |5853 |34614 |Status | |
+ROW |5854 |34615 |Status | |
+ROW |5855 |34616 |Status | |
+ROW |5856 |34617 |Status | |
+ROW |5857 |34618 |Status | |
+ROW |5858 |34619 |Status | |
+ROW |5859 |34626 |Status | |
+ROW |5860 |34627 |Status | |
+ROW |5861 |34628 |Status | |
+ROW |5862 |34629 |Status | |
+ROW |5863 |34630 |Status | |
+ROW |5864 |34631 |General | |
+ROW |5865 |34632 |Status | |
+ROW |5866 |34633 |Status | |
+ROW |5867 |34634 |Status | |
+ROW |5868 |34635 |Status | |
+ROW |5869 |34636 |Status | |
+ROW |5870 |34637 |Status | |
+ROW |5871 |34638 |Status | |
+ROW |5872 |34639 |Status | |
+ROW |5873 |34640 |Status | |
+ROW |5874 |34641 |Status | |
+ROW |5875 |34642 |Status | |
+ROW |5876 |34643 |Status | |
+ROW |5877 |34644 |Status | |
+ROW |5878 |34645 |Status | |
+ROW |5879 |34646 |General | |
+ROW |5880 |34647 |General | |
+ROW |5881 |34648 |General | |
+ROW |5882 |34649 |General | |
+ROW |5883 |34650 |General | |
+ROW |5884 |34651 |General | |
+ROW |5885 |34652 |General | |
+ROW |5886 |34653 |General | |
+ROW |5887 |34654 |Status | |
+ROW |5888 |34655 |Status | |
+ROW |5889 |34656 |Status | |
+ROW |5890 |34657 |Status | |
+ROW |5891 |34658 |Status | |
+ROW |5892 |34659 |Status | |
+ROW |5893 |34660 |Status | |
+ROW |5894 |34661 |Status | |
+ROW |5895 |34662 |Status | |
+ROW |5896 |34663 |Status | |
+ROW |5897 |34664 |Status | |
+ROW |5898 |34665 |Status | |
+ROW |5899 |34666 |Status | |
+ROW |5900 |34667 |Status | |
+ROW |5901 |34674 |Status | |
+ROW |5902 |34675 |Status | |
+ROW |5903 |34676 |Status | |
+ROW |5904 |34677 |Status | |
+ROW |5905 |34678 |Status | |
+ROW |5906 |34679 |General | |
+ROW |5907 |34680 |Status | |
+ROW |5908 |34681 |Status | |
+ROW |5909 |34682 |Status | |
+ROW |5910 |34683 |Status | |
+ROW |5911 |34684 |Status | |
+ROW |5912 |34685 |Status | |
+ROW |5913 |34686 |Status | |
+ROW |5914 |34687 |Status | |
+ROW |5915 |34688 |Status | |
+ROW |5916 |34689 |Status | |
+ROW |5917 |34690 |Status | |
+ROW |5918 |34691 |Status | |
+ROW |5919 |34692 |Status | |
+ROW |5920 |34693 |Status | |
+ROW |5921 |34694 |General | |
+ROW |5922 |34695 |General | |
+ROW |5923 |34696 |General | |
+ROW |5924 |34697 |General | |
+ROW |5925 |34698 |General | |
+ROW |5926 |34699 |General | |
+ROW |5927 |34700 |General | |
+ROW |5928 |34701 |General | |
+ROW |5929 |34702 |Status | |
+ROW |5930 |34703 |Status | |
+ROW |5931 |34704 |Status | |
+ROW |5932 |34705 |Status | |
+ROW |5933 |34706 |Status | |
+ROW |5934 |34707 |Status | |
+ROW |5935 |34708 |Status | |
+ROW |5936 |34709 |Status | |
+ROW |5937 |34710 |Status | |
+ROW |5938 |34711 |Status | |
+ROW |5939 |34712 |Status | |
+ROW |5940 |34713 |Status | |
+ROW |5941 |34714 |Status | |
+ROW |5942 |34715 |Status | |
+ROW |5943 |34722 |Status | |
+ROW |5944 |34723 |Status | |
+ROW |5945 |34724 |Status | |
+ROW |5946 |34725 |Status | |
+ROW |5947 |34726 |Status | |
+ROW |5948 |34727 |General | |
+ROW |5949 |34728 |Status | |
+ROW |5950 |34729 |Status | |
+ROW |5951 |34730 |Status | |
+ROW |5952 |34731 |Status | |
+ROW |5953 |34732 |Status | |
+ROW |5954 |34733 |Status | |
+ROW |5955 |34734 |Status | |
+ROW |5956 |34735 |Status | |
+ROW |5957 |34736 |Status | |
+ROW |5958 |34737 |Status | |
+ROW |5959 |34738 |Status | |
+ROW |5960 |34739 |Status | |
+ROW |5961 |34740 |Status | |
+ROW |5962 |34741 |Status | |
+ROW |5963 |34742 |General | |
+ROW |5964 |34743 |General | |
+ROW |5965 |34744 |General | |
+ROW |5966 |34745 |General | |
+ROW |5967 |34746 |General | |
+ROW |5968 |34747 |General | |
+ROW |5969 |34748 |General | |
+ROW |5970 |34749 |General | |
+ROW |5971 |34750 |Status | |
+ROW |5972 |34751 |Status | |
+ROW |5973 |34752 |Status | |
+ROW |5974 |34753 |Status | |
+ROW |5975 |34754 |Status | |
+ROW |5976 |34755 |Status | |
+ROW |5977 |34756 |Status | |
+ROW |5978 |34757 |Status | |
+ROW |5979 |34758 |Status | |
+ROW |5980 |34759 |Status | |
+ROW |5981 |34760 |Status | |
+ROW |5982 |34761 |Status | |
+ROW |5983 |34762 |Status | |
+ROW |5984 |34763 |Status | |
+ROW |5985 |34770 |Status | |
+ROW |5986 |34771 |Status | |
+ROW |5987 |34772 |Status | |
+ROW |5988 |34773 |Status | |
+ROW |5989 |34774 |Status | |
+ROW |5990 |34775 |General | |
+ROW |5991 |34776 |Status | |
+ROW |5992 |34777 |Status | |
+ROW |5993 |34778 |Status | |
+ROW |5994 |34779 |Status | |
+ROW |5995 |34780 |Status | |
+ROW |5996 |34781 |Status | |
+ROW |5997 |34782 |Status | |
+ROW |5998 |34783 |Status | |
+ROW |5999 |34784 |Status | |
+ROW |6000 |34785 |Status | |
+ROW |6001 |34786 |Status | |
+ROW |6002 |34787 |Status | |
+ROW |6003 |34788 |General | |
+ROW |6004 |34180 |Status | |
+ROW |6005 |34181 |Status | |
+ROW |6006 |34182 |General | |
+ROW |6007 |34183 |General | |
+ROW |6008 |34185 |General | |
+ROW |6009 |34186 |General | |
+ROW |6010 |34187 |General | |
+ROW |6011 |34188 |General | |
+ROW |6012 |34189 |General | |
+ROW |6013 |34190 |Status | |
+ROW |6014 |34191 |Status | |
+ROW |6015 |34192 |Status | |
+ROW |6016 |34193 |Status | |
+ROW |6017 |34194 |Status | |
+ROW |6018 |34195 |Status | |
+ROW |6019 |34196 |Status | |
+ROW |6020 |34200 |Status | |
+ROW |6021 |34201 |Status | |
+ROW |6022 |34202 |Status | |
+ROW |6023 |34203 |Status | |
+ROW |6024 |34204 |Status | |
+ROW |6025 |34205 |Status | |
+ROW |6026 |34206 |Status | |
+ROW |6027 |34790 |Status | |
+ROW |6028 |34791 |Status | |
+ROW |6029 |34792 |Status | |
+ROW |6030 |34212 |Status | |
+ROW |6031 |34213 |Status | |
+ROW |6032 |34214 |Status | |
+ROW |6033 |34215 |Status | |
+ROW |6034 |34216 |Status | |
+ROW |6035 |34217 |General | |
+ROW |6036 |34218 |Status | |
+ROW |6037 |34219 |Status | |
+ROW |6038 |34220 |Status | |
+ROW |6039 |34221 |Status | |
+ROW |6040 |34222 |Status | |
+ROW |6041 |34223 |Status | |
+ROW |6042 |34224 |Status | |
+ROW |6043 |34225 |Status | |
+ROW |6044 |34793 |Status | |
+ROW |6045 |34794 |Status | |
+ROW |6046 |34795 |Status | |
+ROW |6047 |34796 |General | |
+ROW |6048 |34797 |General | |
+ROW |6049 |34798 |General | |
+ROW |6050 |34799 |General | |
+ROW |6051 |34800 |General | |
+ROW |6052 |34801 |General | |
+ROW |6053 |34802 |General | |
+ROW |6054 |34803 |General | |
+ROW |6055 |34804 |Status | |
+ROW |6056 |34805 |Status | |
+ROW |6057 |34806 |Status | |
+ROW |6058 |34807 |Status | |
+ROW |6059 |34808 |Status | |
+ROW |6060 |34809 |Status | |
+ROW |6061 |34810 |Status | |
+ROW |6062 |34811 |Status | |
+ROW |6063 |34812 |Status | |
+ROW |6064 |34813 |Status | |
+ROW |6065 |34814 |Status | |
+ROW |6066 |34815 |Status | |
+ROW |6067 |34816 |Status | |
+ROW |6068 |34817 |Status | |
+ROW |6069 |34824 |Status | |
+ROW |6070 |34825 |Status | |
+ROW |6071 |34826 |Status | |
+ROW |6072 |34827 |Status | |
+ROW |6073 |34828 |Status | |
+ROW |6074 |34829 |General | |
+ROW |6075 |34830 |Status | |
+ROW |6076 |34831 |Status | |
+ROW |6077 |34832 |Status | |
+ROW |6078 |34833 |Status | |
+ROW |6079 |34834 |Status | |
+ROW |6080 |34835 |Status | |
+ROW |6081 |34836 |Status | |
+ROW |6082 |34837 |Status | |
+ROW |6083 |34838 |Status | |
+ROW |6084 |34839 |Status | |
+ROW |6085 |34840 |Status | |
+ROW |6086 |34841 |Status | |
+ROW |6087 |34842 |Status | |
+ROW |6088 |34843 |Status | |
+ROW |6089 |34844 |General | |
+ROW |6090 |34845 |General | |
+ROW |6091 |34846 |General | |
+ROW |6092 |34847 |General | |
+ROW |6093 |34848 |General | |
+ROW |6094 |34849 |General | |
+ROW |6095 |34850 |General | |
+ROW |6096 |34851 |General | |
+ROW |6097 |34852 |Status | |
+ROW |6098 |34853 |Status | |
+ROW |6099 |34854 |Status | |
+ROW |6100 |34855 |Status | |
+ROW |6101 |34856 |Status | |
+ROW |6102 |34857 |Status | |
+ROW |6103 |34858 |Status | |
+ROW |6104 |34859 |Status | |
+ROW |6105 |34860 |Status | |
+ROW |6106 |34861 |Status | |
+ROW |6107 |34862 |Status | |
+ROW |6108 |34863 |Status | |
+ROW |6109 |34864 |Status | |
+ROW |6110 |34865 |Status | |
+ROW |6111 |34872 |Status | |
+ROW |6112 |34873 |Status | |
+ROW |6113 |34874 |Status | |
+ROW |6114 |34875 |Status | |
+ROW |6115 |34876 |Status | |
+ROW |6116 |34877 |General | |
+ROW |6117 |34878 |Status | |
+ROW |6118 |34879 |Status | |
+ROW |6119 |34880 |Status | |
+ROW |6120 |34881 |Status | |
+ROW |6121 |34882 |Status | |
+ROW |6122 |34883 |Status | |
+ROW |6123 |34884 |Status | |
+ROW |6124 |34885 |Status | |
+ROW |6125 |34886 |Status | |
+ROW |6126 |34887 |Status | |
+ROW |6127 |34888 |Status | |
+ROW |6128 |34889 |Status | |
+ROW |6129 |34890 |Status | |
+ROW |6130 |34891 |Status | |
+ROW |6131 |34892 |General | |
+ROW |6132 |34893 |General | |
+ROW |6133 |34894 |General | |
+ROW |6134 |34895 |General | |
+ROW |6135 |34896 |General | |
+ROW |6136 |34897 |General | |
+ROW |6137 |34898 |General | |
+ROW |6138 |34899 |General | |
+ROW |6139 |34900 |Status | |
+ROW |6140 |34901 |Status | |
+ROW |6141 |34902 |Status | |
+ROW |6142 |34903 |Status | |
+ROW |6143 |34904 |Status | |
+ROW |6144 |34905 |Status | |
+ROW |6145 |34906 |Status | |
+ROW |6146 |34907 |Status | |
+ROW |6147 |34908 |Status | |
+ROW |6148 |34909 |Status | |
+ROW |6149 |34910 |Status | |
+ROW |6150 |34911 |Status | |
+ROW |6151 |34912 |Status | |
+ROW |6152 |34913 |Status | |
+ROW |6153 |34920 |Status | |
+ROW |6154 |34921 |Status | |
+ROW |6155 |34922 |Status | |
+ROW |6156 |34923 |Status | |
+ROW |6157 |34924 |Status | |
+ROW |6158 |34925 |General | |
+ROW |6159 |34926 |Status | |
+ROW |6160 |34927 |Status | |
+ROW |6161 |34928 |Status | |
+ROW |6162 |34929 |Status | |
+ROW |6163 |34930 |Status | |
+ROW |6164 |34931 |Status | |
+ROW |6165 |34932 |Status | |
+ROW |6166 |34933 |Status | |
+ROW |6167 |34934 |Status | |
+ROW |6168 |34935 |Status | |
+ROW |6169 |34936 |Status | |