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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorContinuous Integration <ci@zabbix.com>2021-04-26 18:49:51 +0300
committerContinuous Integration <ci@zabbix.com>2021-04-26 18:49:51 +0300
commitd11100d34cc6ebb24c78adce809e5909caab2aa7 (patch)
tree19ad9f1239952339f98f2441490fbe14abe2ca3b
parent1d2e2e754b144c9a874be6f94e2b03c3e3791210 (diff)
.......... [ZBXNEXT-826] automatic deployment of official Zabbix templates and media types5.4.0beta3
-rw-r--r--create/src/data.tmpl6
-rw-r--r--create/src/templates.tmpl21563
2 files changed, 12749 insertions, 8820 deletions
diff --git a/create/src/data.tmpl b/create/src/data.tmpl
index 3c1d713e4a5..ac8851b79d2 100644
--- a/create/src/data.tmpl
+++ b/create/src/data.tmpl
@@ -66,9 +66,9 @@ 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 |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} | |
ROW |13 |4 |Jira with CustomFields | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var Jira = {&eol; params: {},&eol;&eol; setParams: function (params) {&eol; if (typeof params !== 'object') {&eol; return;&eol; }&eol;&eol; Jira.params = params;&eol; if (typeof Jira.params.url === 'string') {&eol; if (!Jira.params.url.endsWith('/')) {&eol; Jira.params.url += '/';&eol; }&eol;&eol; Jira.params.url += 'rest/api/latest/';&eol; }&eol; },&eol;&eol; setProxy: function (HTTPProxy) {&eol; Jira.HTTPProxy = HTTPProxy;&eol; },&eol;&eol; setTags: function(event_tags_json) {&eol; if (typeof event_tags_json !== 'undefined' && event_tags_json !== ''&eol; && event_tags_json !== '{EVENT.TAGSJSON}') {&eol; try {&eol; var tags = JSON.parse(event_tags_json),&eol; label;&eol;&eol; Jira.labels = [];&eol;&eol; tags.forEach(function (tag) {&eol; if (typeof tag.tag !== 'undefined' && typeof tag.value !== 'undefined' ) {&eol; label = (tag.tag + (tag.value ? (':' + tag.value) : '')).replace(/\s/g, '_');&eol; if (label.length < 256) {&eol; Jira.labels.push(label);&eol; }&eol; }&eol; });&eol; }&eol; catch (error) {&eol; // Code is not missing here.&eol; }&eol; }&eol; },&eol;&eol; escapeMarkup: function (str) {&eol; var length = str.length,&eol; result = '',&eol; markup = ['{', '&pipe;', '}', '~', '_', '\\', '[', ']', '^', '<', '>', '?', '!', '#', '+', '*', '&'];&eol;&eol; for (var i = 0; i < length; i++) {&eol; var char = str[i];&eol;&eol; result += (markup.indexOf(char) !== -1) ? ('&#' + str[i].charCodeAt() + ';') : char;&eol; }&eol;&eol; return result;&eol; },&eol;&eol; addCustomFields: function (data, fields) {&eol; if (typeof fields === 'object' && Object.keys(fields).length) {&eol; var schema = Jira.getSchema(),&eol; path = ['projects', 0, 'issuetypes', 0, 'fields'],&eol; field;&eol;&eol; while ((field = path.shift()) !== undefined) {&eol; schema = schema[field];&eol; if (typeof schema === 'undefined') {&eol; schema = null;&eol; break;&eol; }&eol; }&eol;&eol; if (schema) {&eol; Object.keys(fields)&eol; .forEach(function(field) {&eol; data.fields[field] = fields[field];&eol;&eol; if (typeof schema[field] === 'object' && typeof schema[field].schema === 'object'&eol; && (schema[field].schema.type === 'number' &pipe;&pipe; schema[field].schema.type === 'datetime')) {&eol; switch (schema[field].schema.type) {&eol; case 'number':&eol; data.fields[field] = parseInt(fields[field]);&eol; break;&eol;&eol; case 'datetime':&eol; if (fields[field].match(/\d+[.-]\d+[.-]\d+T\d+:\d+:\d+/) !== null) {&eol; data.fields[field] = fields[field].replace(/\./g, '-');&eol; }&eol; else {&eol; delete data.fields[field];&eol; }&eol; break;&eol; }&eol; }&eol; });&eol; }&eol; else {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to retrieve field schema.');&eol; }&eol; }&eol;&eol; return data;&eol; },&eol;&eol; request: function (method, query, data) {&eol; ['url', 'user', 'password', 'project_key', 'issue_type'].forEach(function (field) {&eol; if (typeof Jira.params !== 'object' &pipe;&pipe; typeof Jira.params[field] === 'undefined'&eol; &pipe;&pipe; Jira.params[field] === '' ) {&eol; throw 'Required Jira param is not set: "' + field + '".';&eol; }&eol; });&eol;&eol; var response,&eol; url = Jira.params.url + query,&eol; request = new CurlHttpRequest();&eol;&eol; request.AddHeader('Content-Type: application/json');&eol; request.AddHeader('Authorization: Basic ' + btoa(Jira.params.user + ':' + Jira.params.password));&eol;&eol; if (typeof Jira.HTTPProxy !== 'undefined' && Jira.HTTPProxy !== '') {&eol; request.SetProxy(Jira.HTTPProxy);&eol; }&eol;&eol; if (typeof data !== 'undefined') {&eol; data = JSON.stringify(data);&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Sending request: ' + url + ((typeof data === 'string') ? ('\n' + data) : ''));&eol;&eol; switch (method) {&eol; case 'get':&eol; response = request.Get(url, data);&eol; break;&eol;&eol; case 'post':&eol; response = request.Post(url, data);&eol; break;&eol;&eol; case 'put':&eol; response = request.Put(url, data);&eol; break;&eol;&eol; default:&eol; throw 'Unsupported HTTP request method: ' + method;&eol; }&eol;&eol; Zabbix.Log(4, '[ Jira Webhook ] Received response with status code ' + request.Status() + '\n' + response);&eol;&eol; if (response !== null) {&eol; try {&eol; response = JSON.parse(response);&eol; }&eol; catch (error) {&eol; Zabbix.Log(4, '[ Jira Webhook ] Failed to parse response received from Jira');&eol; response = null;&eol; }&eol; }&eol;&eol; if (request.Status() < 200 &pipe;&pipe; request.Status() >= 300) {&eol; var message = 'Request failed with status code ' + request.Status();&eol;&eol; if (response !== null && typeof response.errors !== 'undefined'&eol; && Object.keys(response.errors).length > 0) {&eol; message += ': ' + JSON.stringify(response.errors);&eol; }&eol; else if (response !== null && typeof response.errorMessages !== 'undefined'&eol; && Object.keys(response.errorMessages).length > 0) {&eol; message += ': ' + JSON.stringify(response.errorMessages);&eol; }&eol;&eol; throw message + ' Check debug log for more information.';&eol; }&eol;&eol; return {&eol; status: request.Status(),&eol; response: response&eol; };&eol; },&eol;&eol; getSchema: function() {&eol; var result = Jira.request('get', 'issue/createmeta?expand=projects.issuetypes.fields&projectKeys=' +&eol; Jira.params.project_key + '&issuetypeNames=' + Jira.params.issue_type);&eol;&eol; return result.response;&eol; },&eol;&eol; createIssue: function(summary, description, fields) {&eol; var data = {&eol; fields: {&eol; project: {&eol; key: Jira.params.project_key&eol; },&eol; issuetype: {&eol; name: Jira.params.issue_type&eol; },&eol; summary: summary,&eol; description: description&eol; }&eol; };&eol;&eol; if (Jira.labels && Jira.labels.length > 0) {&eol; data.fields.labels = Jira.labels;&eol; }&eol; var result = Jira.request('post', 'issue', Jira.addCustomFields(data, fields));&eol;&eol; if (typeof result.response !== 'object' &pipe;&pipe; typeof result.response.key === 'undefined') {&eol; throw 'Cannot create Jira issue. Check debug log for more information.';&eol; }&eol;&eol; return result.response.key;&eol; },&eol;&eol; updateIssue: function(summary, fields, update) {&eol; var data = {fields: {}};&eol;&eol; if (summary) {&eol; data.fields.summary = summary;&eol; }&eol;&eol; Jira.request('put', 'issue/' + Jira.params.issue_key, Jira.addCustomFields(data, fields));&eol; Jira.commentIssue(update);&eol; },&eol;&eol; commentIssue: function(update) {&eol; var data = {};&eol;&eol; if (typeof update === 'string') {&eol; data.body = update;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; else if (update.status === '1') {&eol; data.body = update.user + ' ' + update.action + '.';&eol;&eol; if (update.message) {&eol; data.body += '\nMessage: {quote}' + Jira.escapeMarkup(update.message) + '{quote}';&eol; }&eol;&eol; Jira.request('post', 'issue/' + Jira.params.issue_key + '/comment', data);&eol; }&eol; }&eol;};&eol;&eol;try {&eol; var params = JSON.parse(value),&eol; fields = {},&eol; jira = {},&eol; update = {},&eol; result = {tags: {}},&eol; required_params = ['alert_subject', 'summary', 'event_recovery_value', 'event_source', 'event_value'];&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('jira_')) {&eol; jira[key.substring(5)] = params[key];&eol; }&eol; else if (key.startsWith('customfield_')) {&eol; fields[key] = params[key];&eol; }&eol; else if (key.startsWith('event_update_')) {&eol; update[key.substring(13)] = params[key];&eol; }&eol; else if (required_params.indexOf(key) !== -1 && params[key] === '') {&eol; throw 'Parameter "' + key + '" can\'t be empty.';&eol; }&eol; });&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: ' + params.event_source + '\nMust be 0-3.';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: ' + params.event_value + '\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: ' + params.event_update_status + '\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_source !== '0' && params.event_recovery_value === '0') {&eol; throw 'Recovery operations are supported only for trigger-based actions.';&eol; }&eol;&eol; Jira.setParams(jira);&eol; Jira.setProxy(params.HTTPProxy);&eol; Jira.setTags(params.event_tags_json);&eol;&eol; // Create issue for non trigger-based events.&eol; if (params.event_source !== '0' && params.event_recovery_value !== '0') {&eol; Jira.createIssue(params.alert_subject, params.alert_message);&eol; }&eol; // Create issue for trigger-based events.&eol; else if (params.event_value === '1' && update.status === '0' && !jira.issue_key.startsWith(jira.project_key)) {&eol; var key = Jira.createIssue(params.alert_subject,&eol; (Object.keys(fields).length ? params.trigger_description : params.alert_message), fields);&eol;&eol;&eol; result.tags.__zbx_jira_issuekey = key;&eol; result.tags.__zbx_jira_issuelink = params.jira_url +&eol; (params.jira_url.endsWith('/') ? '' : '/') + 'browse/' + key;&eol; }&eol; // Update created issue for trigger-based event.&eol; else {&eol; if (!jira.issue_key.startsWith(jira.project_key)) {&eol; throw 'Incorrect Issue key given: ' + jira.issue_key;&eol; }&eol; Jira.updateIssue(params.alert_subject, fields,&eol; ((params.event_value === '0' && !Object.keys(fields).length)&eol; ? params.alert_message : update));&eol; }&eol;&eol; return JSON.stringify(result);&eol;}&eol;catch (error) {&eol; Zabbix.Log(3, '[ Jira Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |1 |1 |{EVENT.TAGS.__zbx_jira_issuelink} |Jira: {EVENT.TAGS.__zbx_jira_issuekey} | |
ROW |14 |4 |MS Teams | | | | | | | |0 |25 |0 |0 |0 |0 | |1 |3 |10s |1 |var SEVERITY_COLORS = [&eol; '#97AAB3', // Not classified.&eol; '#7499FF', // Information.&eol; '#FFC859', // Warning.&eol; '#FFA059', // Average.&eol; '#E97659', // High.&eol; '#E45959', // Disaster.&eol; '#009900', // Resolved.&eol; '#000000' // Default.&eol;];&eol;&eol;try {&eol; var params = JSON.parse(value);&eol;&eol; if (typeof params.teams_endpoint !== 'string' &pipe;&pipe; params.teams_endpoint.trim() === '') {&eol; throw 'Cannot get teams_endpoint';&eol; }&eol; else if (!params.teams_endpoint.startsWith('http')) {&eol; throw 'Invalid MS Teams webhook URL: ' + params.teams_endpoint;&eol; }&eol;&eol; params.zabbix_url = (params.zabbix_url.endsWith('/'))&eol; ? params.zabbix_url.slice(0, -1) : params.zabbix_url;&eol;&eol; if ([0, 1, 2, 3].indexOf(parseInt(params.event_source)) === -1) {&eol; throw 'Incorrect "event_source" parameter given: "' + params.event_source + '".\nMust be 0-3.';&eol; }&eol;&eol; // Set "use_default_message" to true for non trigger-based events.&eol; if (params.event_source !== '0') {&eol; params.use_default_message = 'true';&eol; }&eol;&eol; // Check {EVENT.VALUE} for trigger-based and internal events.&eol; if (params.event_value !== '0' && params.event_value !== '1'&eol; && (params.event_source === '0' &pipe;&pipe; params.event_source === '3')) {&eol; throw 'Incorrect "event_value" parameter given: "' + params.event_value + '".\nMust be 0 or 1.';&eol; }&eol;&eol; // Check {EVENT.UPDATE.STATUS} only for trigger-based events.&eol; if (params.event_update_status !== '0' && params.event_update_status !== '1' && params.event_source === '0') {&eol; throw 'Incorrect "event_update_status" parameter given: "' + params.event_update_status + '".\nMust be 0 or 1.';&eol; }&eol;&eol; if (params.event_value == 0) {&eol; params.event_nseverity = '6';&eol; }&eol;&eol; if (!SEVERITY_COLORS[params.event_nseverity]) {&eol; params.event_nseverity = '7';&eol; }&eol;&eol; var request = new HttpRequest(),&eol; facts = [],&eol; body = {&eol; themeColor: SEVERITY_COLORS[params.event_nseverity].replace('#', ''),&eol; summary: 'Zabbix',&eol; sections: [&eol; {&eol; markdown: 'false',&eol; activityTitle: params.alert_subject,&eol; activitySubtitle: 'On ' + params.host_name + ' [' + params.host_ip + ']',&eol; text: (params.use_default_message.toLowerCase() == 'true')&eol; ? params.alert_message&eol; : params.trigger_description&eol; }&eol; ],&eol; potentialAction: [&eol; {&eol; '@type': 'OpenUri',&eol; name: (params.event_source === '0')&eol; ? 'Event Info'&eol; : 'Zabbix Home',&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: (params.event_source === '0')&eol; ? params.zabbix_url + '/tr_events.php?triggerid=' +&eol; params.trigger_id + '&eventid=' + params.event_id&eol; : params.zabbix_url&eol; }&eol; ]&eol; }&eol; ]&eol; };&eol;&eol; if (params.use_default_message.toLowerCase() !== 'true') {&eol; // Problem message.&eol; if (params.event_value === '1' && params.event_update_status === '0') {&eol; facts.push({&eol; name: 'Event time',&eol; value: params.event_time + ' ' + params.event_date&eol; });&eol; }&eol; // Update message.&eol; else if (params.event_update_status === '1') {&eol; body.sections[0].text = params.event_update_user + ' ' + params.event_update_action + '.';&eol;&eol; if (params.event_update_message) {&eol; body.sections[0].text += '<br>Message:<br>' + params.event_update_message;&eol; }&eol;&eol; facts.push({&eol; name: 'Event update time',&eol; value: params.event_update_time + ' ' + params.event_update_date&eol; });&eol; }&eol; // Resolved message.&eol; else {&eol; facts.push({&eol; name: 'Recovery time',&eol; value: params.event_recovery_time + ' ' + params.event_recovery_date&eol; });&eol; }&eol;&eol; if (params.event_severity && params.event_severity !== '{EVENT.SEVERITY}') {&eol; facts.push({&eol; name: 'Severity',&eol; value: params.event_severity&eol; });&eol; }&eol;&eol;&eol; if (params.event_opdata && params.event_opdata !== '{EVENT.OPDATA}') {&eol; facts.push({&eol; name: 'Operational data',&eol; value: params.event_opdata&eol; });&eol; }&eol;&eol; if (params.event_tags && params.event_tags !== '{EVENT.TAGS}') {&eol; facts.push({&eol; name: 'Event tags',&eol; value: params.event_tags&eol; });&eol; }&eol;&eol; Object.keys(params)&eol; .forEach(function (key) {&eol; if (key.startsWith('fact_') && params[key] !== '') {&eol; facts.push({&eol; name: key.substring(5),&eol; value: params[key]&eol; });&eol; }&eol; else if (key.startsWith('openUri_') && params[key] !== '' && !params[key].startsWith('{')) {&eol; body.potentialAction.push({&eol; '@type': 'OpenUri',&eol; name: key.substring(8),&eol; targets: [&eol; {&eol; os: 'default',&eol; uri: params[key]&eol; }&eol; ]&eol; });&eol; }&eol; });&eol; body.sections[0].facts = facts;&eol; }&eol;&eol; body.sections[0].text = body.sections[0].text.replace(/(?:\r\n&pipe;\r&pipe;\n)/g, '<br>');&eol;&eol; request.addHeader('Content-Type: application/json');&eol;&eol; if (typeof params.HTTPProxy === 'string' && params.HTTPProxy !== '') {&eol; request.setProxy(params.HTTPProxy);&eol; }&eol;&eol; Zabbix.log(4, '[ MS Teams Webhook ] JSON: ' + JSON.stringify(body));&eol;&eol; var response = request.post(params.teams_endpoint, JSON.stringify(body));&eol;&eol; Zabbix.log(4, '[ MS Teams Webhook ] Response: ' + response);&eol;&eol; if (response === '1') {&eol; return 'OK';&eol; }&eol; else {&eol; Zabbix.log(4, '[ MS Teams Webhook ] FAILED with response: ' + response);&eol; throw response;&eol; }&eol;}&eol;catch (error) {&eol; Zabbix.log(3, '[ MS Teams Webhook ] ERROR: ' + error);&eol; throw 'Sending failed: ' + error;&eol;}|30s |0 |0 | | | |
@@ -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/templates.tmpl b/create/src/templates.tmpl
index 9f4bb916a79..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 |
@@ -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 |
@@ -1462,19 +1539,19 @@ ROW |30432 |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 |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 |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 |
@@ -1491,10 +1568,10 @@ ROW |30638 |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 |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,10 +1579,10 @@ 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 |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 |
@@ -1612,9 +1689,9 @@ ROW |31051 |7 |
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) - 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 TCP port. |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 the existed availability groups. |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,7 +1733,7 @@ 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 |
@@ -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 |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 percent. |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 |
@@ -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,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of innodb_log_file_size. Innodb_log_file_size is size in bytes of each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
-ROW |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 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,1h)) / {$MYSQL.INNODB_LOG_FILES} | |0 | | | | |0 |NULL |Calculated by (innodb_os_log_written-innodb_os_log_written(time shift -1h))/{$MYSQL.INNODB_LOG_FILES} value of innodb_log_file_size. Innodb_log_file_size is size in bytes of each InnoDB redo log file in the log group. The combined size can be no more than 512GB. Larger values mean less disk I/O due to less flushing checkpoint activity, but also slower recovery from a crash. |0 |30d |0 | |NULL |3s | | | |200 |1 |0 | |0 |0 |0 |0 |0 |0 |0 |
+ROW |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 |
@@ -2984,45 +3061,40 @@ ROW |34175 |20 |1.3.6.1.2.1.25.2.3.1.6.{#SNMPINDEX}
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 |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 |
@@ -3057,6 +3129,502 @@ ROW |34269 |15 |
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|
@@ -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|
@@ -7049,7 +7742,6 @@ 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 | |
@@ -7062,7 +7754,6 @@ ROW |16730 |{19570}=1
ROW |16732 |{19572}=0 |MySQL: Service is down | |0 |4 | |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |16733 |{19573}=1 and {19574}>0 |MySQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MySQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |16734 |{19575}>{$MYSQL.ABORTED_CONN.MAX.WARN} |MySQL: Server has aborted connections (over {$MYSQL.ABORTED_CONN.MAX.WARN} for 5m) | |0 |3 |The number of failed attempts to connect to the MySQL server is more than {$MYSQL.ABORTED_CONN.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |16735 |{19576}<{$MYSQL.BUFF_UTIL.MIN.WARN} |MySQL: Buffer pool utilization is too low (less {$MYSQL.BUFF_UTIL.MIN.WARN}% for 5m) | |0 |2 |The buffer pool utilization is less than {$MYSQL.BUFF_UTIL.MIN.WARN}% in the last 5 minutes. This means that there is a lot of unused RAM allocated for the buffer pool, which you can easily reallocate at the moment. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |16736 |{19577}>0 |MySQL: Refused connections (max_connections limit reached) | |0 |3 |Number of refused connections due to the max_connections limit being reached. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |16737 |{19578}>{$MYSQL.SLOW_QUERIES.MAX.WARN} |MySQL: Server has slow queries (over {$MYSQL.SLOW_QUERIES.MAX.WARN} for 5m) | |0 |2 |The number of slow queries is more than {$MYSQL.SLOW_QUERIES.MAX.WARN} in the last 5 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |16738 |{19579}<10m |MySQL: Service has been restarted (uptime < 10m) | |0 |1 |MySQL uptime is less than 10 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 | |
@@ -7078,13 +7769,12 @@ ROW |16747 |{19590}=1 and {19591}>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}=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 | |
@@ -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 | |
@@ -7224,12 +7914,10 @@ ROW |16938 |{19856}>{$MSSQL.PAGE_WRITES.MAX}
ROW |16939 |{19857}<10m |MSSQL: has been restarted (uptime < 10m) | |0 |1 |Uptime is less than 10 minutes |NULL |0 |0 |0 | |0 | |1 | |0 | |
ROW |16940 |{19858}=1 |MSSQL: Failed to fetch info data (or no data for 30m) | |0 |1 |Zabbix has not received data for items for the last 30 minutes. |NULL |0 |0 |0 | |0 | |0 | |0 | |
ROW |16941 |{19859}=1 and {19860}>0 |MSSQL: Version has changed (new version value received: {ITEM.VALUE}) | |0 |1 |MSSQL version has changed. Ack to close. |NULL |0 |0 |0 | |0 | |1 | |0 | |
-ROW |16942 |{19861}>{$MSSQL.WORK_FILES.MAX} |MSSQL: Number work files created per second is high (over {$MSSQL.WORK_FILES.MAX} for 5m) | |0 |3 |Too many work files created per second to store temporary results for hash joins and hash aggregates. |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |16943 |{19862}>{$MSSQL.WORK_TABLES.MAX} |MSSQL: Number work tables created per second is high (over {$MSSQL.WORK_TABLES.MAX} for 5m) | |0 |3 |Too many work tables created per second to store temporary results for query spool, lob variables, XML variables, and cursors. |NULL |0 |0 |0 | |0 | |0 | |0 | |
-ROW |16944 |{19863}<{$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT} |MSSQL: Percentage of work tables available from the work table cache is low (below {$MSSQL.WORKTABLES_FROM_CACHE_RATIO.MIN.CRIT}% for 5m) | |0 |4 |A value less than 90% may indicate insufcient memory, since execution plans are being dropped, or may indicate, on 32-bit systems, the need for an upgrade to a 64-bit system |NULL |0 |0 |0 | |0 | |0 | |0 | |
+ROW |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 | |
@@ -7269,7 +7957,6 @@ ROW |16988 |{19916} * 100 / {19917} > {$ORACLE.PGA.USE.MAX.WARN}
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 | |
@@ -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 | |
@@ -7408,7 +8095,6 @@ ROW |17177 |{20196}=1 and {20197}>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 | |
@@ -7477,7 +8163,6 @@ ROW |17356 |{20545}=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 | |
@@ -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 | |
@@ -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 | |
@@ -8053,7 +8733,7 @@ ROW |17978 |{21277}/{21278}*100>{$IGNITE.CHECKPOINT.PUSED.MAX.WARN}
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 | |
@@ -8205,7 +8885,7 @@ ROW |18236 |{21763}=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}=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 do not send to the secondary databases. |NULL |0 |2 |0 | |0 | |0 | |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 | |
@@ -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}=1 and {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 | |
@@ -8427,6 +9102,392 @@ ROW |18518 |({22348}=1 and {22349}="down")
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|
@@ -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|
@@ -8953,769 +10016,778 @@ 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 |
@@ -11086,7 +12158,6 @@ 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 |
@@ -11101,7 +12172,6 @@ ROW |19572 |30481 |16732 |last |
ROW |19573 |30480 |16733 |diff | |
ROW |19574 |30480 |16733 |strlen | |
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 | |
@@ -11129,7 +12199,6 @@ ROW |19600 |30615 |16754 |last |
ROW |19601 |30636 |16755 |diff | |
ROW |19602 |30636 |16755 |strlen | |
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 |
@@ -11343,8 +12412,6 @@ ROW |19857 |31082 |16939 |last |
ROW |19858 |31082 |16940 |nodata |30m |
ROW |19859 |31085 |16941 |diff | |
ROW |19860 |31085 |16941 |strlen | |
-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 | |
@@ -11396,7 +12463,6 @@ ROW |19919 |31244 |16989 |strlen |
ROW |19920 |31245 |16990 |diff | |
ROW |19921 |31245 |16990 |strlen | |
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 |
@@ -11581,7 +12647,6 @@ ROW |20198 |31749 |17178 |diff |
ROW |20199 |31749 |17178 |strlen | |
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 |
@@ -11747,8 +12812,6 @@ 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 | |
@@ -11791,21 +12854,16 @@ ROW |20622 |32446 |17414 |min |{$ACTIVEMQ.STORE.TIME:"{#JMXBROKERN
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 |
@@ -11846,8 +12904,6 @@ 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 | |
@@ -13182,9 +14238,6 @@ 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} |
@@ -13201,12 +14254,9 @@ ROW |22311 |34191 |18490 |last |
ROW |22312 |34191 |18491 |last | |
ROW |22313 |34191 |18492 |last | |
ROW |22314 |34191 |18493 |last | |
-ROW |22315 |34184 |18494 |diff | |
-ROW |22316 |34184 |18494 |strlen | |
ROW |22317 |34181 |18495 |last | |
ROW |22318 |34206 |18496 |max |{$SNMP.TIMEOUT} |
ROW |22319 |34214 |18497 |regexp |"^(0)[0&pipe;1]{15}$" |
-ROW |22320 |34215 |18498 |regexp |"^(0{16})$" |
ROW |22321 |34216 |18499 |min |{$TIME.PERIOD} |
ROW |22322 |34219 |18500 |last | |
ROW |22323 |34219 |18501 |last | |
@@ -13242,6 +14292,453 @@ 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|
@@ -13520,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 |
@@ -13826,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 |
@@ -13834,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|
@@ -13963,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|
@@ -16514,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 |
@@ -16579,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 |
@@ -16600,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 |
@@ -16666,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 |
@@ -16738,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 |
@@ -16850,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 |
@@ -17011,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 |
@@ -17398,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 |
@@ -17411,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|
@@ -17596,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|
@@ -21988,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|
@@ -24102,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|
@@ -25104,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|
@@ -25202,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 |
@@ -26545,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 |
@@ -30252,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 | |
@@ -30467,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 | |
@@ -30630,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|
@@ -30733,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 |
@@ -30923,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 | |